Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/libraries/core/GraphicsManager.h @ 8373

Last change on this file since 8373 was 8351, checked in by rgrieder, 13 years ago

Merged kicklib2 branch back to trunk (includes former branches ois_update, mac_osx and kicklib).

Notes for updating

Linux:
You don't need an extra package for CEGUILua and Tolua, it's already shipped with CEGUI.
However you do need to make sure that the OgreRenderer is installed too with CEGUI 0.7 (may be a separate package).
Also, Orxonox now recognises if you install the CgProgramManager (a separate package available on newer Ubuntu on Debian systems).

Windows:
Download the new dependency packages versioned 6.0 and use these. If you have problems with that or if you don't like the in game console problem mentioned below, you can download the new 4.3 version of the packages (only available for Visual Studio 2005/2008).

Key new features:

  • *Support for Mac OS X*
  • Visual Studio 2010 support
  • Bullet library update to 2.77
  • OIS library update to 1.3
  • Support for CEGUI 0.7 —> Support for Arch Linux and even SuSE
  • Improved install target
  • Compiles now with GCC 4.6
  • Ogre Cg Shader plugin activated for Linux if available
  • And of course lots of bug fixes

There are also some regressions:

  • No support for CEGUI 0.5, Ogre 1.4 and boost 1.35 - 1.39 any more
  • In game console is not working in main menu for CEGUI 0.7
  • Tolua (just the C lib, not the application) and CEGUILua libraries are no longer in our repository. —> You will need to get these as well when compiling Orxonox
  • And of course lots of new bugs we don't yet know about
  • Property svn:eol-style set to native
File size: 5.0 KB
RevLine 
[1035]1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
[1505]3 *                    > www.orxonox.net <
[1035]4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
[1535]23 *      Reto Grieder
[1755]24 *      Benjamin Knecht <beni_at_orxonox.net>, (C) 2007
[1035]25 *   Co-authors:
[1755]26 *      Felix Schulthess
[1035]27 *
28 */
29
[612]30/**
[7401]31    @defgroup Graphics Graphics and GUI
32    @ingroup Core
33*/
34
35/**
[2801]36@file
[7401]37@ingroup Graphics
[2801]38@brief
39    Declaration of GraphicsManager Singleton.
[612]40 */
41
[2805]42#ifndef _GraphicsManager_H__
43#define _GraphicsManager_H__
[612]44
[3346]45#include "CorePrereqs.h"
[1039]46
[3196]47#include <cassert>
[715]48#include <string>
[2801]49#include <OgreLog.h>
[5695]50#include <boost/scoped_ptr.hpp>
51#include <boost/shared_ptr.hpp>
52
[3366]53#include "util/Singleton.h"
[3346]54#include "OrxonoxClass.h"
[612]55
[8079]56// tolua_begin
[1625]57namespace orxonox
58{
[1214]59    /**
[2801]60    @brief
61        Graphics engine manager class
[1214]62    */
[8079]63    class _CoreExport GraphicsManager
64// tolua_end
65        : public Singleton<GraphicsManager>, public OrxonoxClass, public Ogre::LogListener
66    { // tolua_export
[3366]67        friend class Singleton<GraphicsManager>;
[1755]68    public:
[5695]69        GraphicsManager(bool bLoadRenderer = true);
[2801]70        ~GraphicsManager();
[612]71
[1755]72        void setConfigValues();
[2801]73
[6417]74        void postUpdate(const Clock& time);
[2801]75
[5695]76        Ogre::Viewport* getViewport()         { return this->viewport_; }
77        Ogre::RenderWindow* getRenderWindow() { return this->renderWindow_; }
78        size_t getRenderWindowHandle();
[8079]79
80// tolua_begin
81        static GraphicsManager& getInstance() { return Singleton<GraphicsManager>::getInstance(); } // tolua_export
82
[5695]83        bool isFullScreen() const;
[8079]84        unsigned int getWindowWidth() const;
85        unsigned int getWindowHeight() const;
[2662]86
[8079]87        bool hasVSyncEnabled() const;
88        std::string getFSAAMode() const;
89// tolua_end
90
[5695]91        void upgradeToGraphics();
[5929]92        void loadDebugOverlay();
[5695]93        bool rendererLoaded() const { return renderWindow_ != NULL; }
94
[2850]95        void setCamera(Ogre::Camera* camera);
96
[1755]97    private:
[2801]98        GraphicsManager(GraphicsManager&); // don't mess with singletons
[1502]99
[2801]100        // OGRE initialisation
[5695]101        void loadOgreRoot();
[2801]102        void loadOgrePlugins();
103        void loadRenderer();
[2662]104
[2801]105        // event from Ogre::LogListener
106        void messageLogged(const std::string& message, Ogre::LogMessageLevel lml,
107            bool maskDebug, const std::string& logName);
[612]108
[2801]109        // console commands
110        void printScreen();
[8079]111        std::string setScreenResolution(unsigned int width, unsigned int height, bool fullscreen);
112        std::string setFSAA(const std::string& mode);
113        std::string setVSync(bool vsync);
[2801]114
[5695]115        scoped_ptr<OgreWindowEventListener> ogreWindowEventListener_; //!< Pimpl to hide OgreWindowUtilities.h
116        scoped_ptr<Ogre::LogManager>        ogreLogger_;
117        scoped_ptr<Ogre::Root>              ogreRoot_;                //!< Ogre's root
[2801]118        Ogre::RenderWindow* renderWindow_;             //!< the one and only render window
119        Ogre::Viewport*     viewport_;                 //!< default full size viewport
[8079]120        float               lastFrameStartTime_;       //!< Time stamp of the beginning of the last frame
121        float               lastFrameEndTime_;         //!< Time stamp of the end of the last frame
[2801]122
[5929]123        // XML files for the resources and the debug overlay
[5695]124        shared_ptr<XMLFile> resources_;                //!< XML with resource locations
125        shared_ptr<XMLFile> extResources_;             //!< XML with resource locations in the external path (only for dev runs)
[5929]126        shared_ptr<XMLFile> debugOverlay_;             //!< XML with various debug overlays
[5695]127
[1755]128        // config values
[6105]129        std::string         ogreConfigFile_;           //!< ogre config filename
[2801]130        std::string         ogrePlugins_;              //!< Comma separated list of all plugins to load
[6105]131        std::string         ogreLogFile_;              //!< log filename for Ogre log messages
132        int                 ogreLogLevelTrivial_;      //!< Corresponding Orxonox debug level for LL_TRIVIAL
133        int                 ogreLogLevelNormal_;       //!< Corresponding Orxonox debug level for LL_NORMAL
134        int                 ogreLogLevelCritical_;     //!< Corresponding Orxonox debug level for LL_CRITICAL
[1755]135
[3366]136        static GraphicsManager* singletonPtr_s;        //!< Pointer to the Singleton
[8079]137// tolua_begin
[1214]138    };
[612]139}
[8079]140// tolua_end
[612]141
[2805]142#endif /* _GraphicsManager_H__ */
Note: See TracBrowser for help on using the repository browser.