Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/usability/src/libraries/core/GraphicsManager.h @ 7993

Last change on this file since 7993 was 7993, checked in by landauf, 13 years ago

moved fpsLimit_ config value to GraphicsSettings (seems more intuitive)
disabled fps limit if VSync is active (limits the fps anyway, but to the monitors refresh rate)

  • Property svn:eol-style set to native
File size: 4.7 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
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:
23 *      Reto Grieder
24 *      Benjamin Knecht <beni_at_orxonox.net>, (C) 2007
25 *   Co-authors:
26 *      Felix Schulthess
27 *
28 */
29
30/**
31    @defgroup Graphics Graphics and GUI
32    @ingroup Core
33*/
34
35/**
36@file
37@ingroup Graphics
38@brief
39    Declaration of GraphicsManager Singleton.
40 */
41
42#ifndef _GraphicsManager_H__
43#define _GraphicsManager_H__
44
45#include "CorePrereqs.h"
46
47#include <cassert>
48#include <string>
49#include <OgreLog.h>
50#include <boost/scoped_ptr.hpp>
51#include <boost/shared_ptr.hpp>
52
53#include "util/Singleton.h"
54#include "OrxonoxClass.h"
55
56namespace orxonox
57{
58    /**
59    @brief
60        Graphics engine manager class
61    */
62    class _CoreExport GraphicsManager : public Singleton<GraphicsManager>, public OrxonoxClass, public Ogre::LogListener
63    {
64        friend class Singleton<GraphicsManager>;
65    public:
66        GraphicsManager(bool bLoadRenderer = true);
67        ~GraphicsManager();
68
69        void setConfigValues();
70
71        void postUpdate(const Clock& time);
72
73        Ogre::Viewport* getViewport()         { return this->viewport_; }
74        Ogre::RenderWindow* getRenderWindow() { return this->renderWindow_; }
75        size_t getRenderWindowHandle();
76        bool isFullScreen() const;
77        bool hasVSyncEnabled() const;
78
79        void upgradeToGraphics();
80        void loadDebugOverlay();
81        bool rendererLoaded() const { return renderWindow_ != NULL; }
82
83        void setCamera(Ogre::Camera* camera);
84
85    private:
86        GraphicsManager(GraphicsManager&); // don't mess with singletons
87
88        // OGRE initialisation
89        void loadOgreRoot();
90        void loadOgrePlugins();
91        void loadRenderer();
92
93        // event from Ogre::LogListener
94        void messageLogged(const std::string& message, Ogre::LogMessageLevel lml,
95            bool maskDebug, const std::string& logName);
96
97        // console commands
98        void printScreen();
99        std::string setScreenResolution(unsigned int width, unsigned int height, bool fullscreen);
100        std::string setFSAA(const std::string& mode);
101        std::string setVSync(bool vsync);
102
103        scoped_ptr<OgreWindowEventListener> ogreWindowEventListener_; //!< Pimpl to hide OgreWindowUtilities.h
104#if OGRE_VERSION < 0x010600
105        scoped_ptr<MemoryArchiveFactory>    memoryArchiveFactory_;    //!< Stores the modified particle scripts
106#endif
107        scoped_ptr<Ogre::LogManager>        ogreLogger_;
108        scoped_ptr<Ogre::Root>              ogreRoot_;                //!< Ogre's root
109        Ogre::RenderWindow* renderWindow_;             //!< the one and only render window
110        Ogre::Viewport*     viewport_;                 //!< default full size viewport
111
112        // XML files for the resources and the debug overlay
113        shared_ptr<XMLFile> resources_;                //!< XML with resource locations
114        shared_ptr<XMLFile> extResources_;             //!< XML with resource locations in the external path (only for dev runs)
115        shared_ptr<XMLFile> debugOverlay_;             //!< XML with various debug overlays
116
117        // config values
118        std::string         ogreConfigFile_;           //!< ogre config filename
119        std::string         ogrePluginsDirectory_;     //!< Directory where the Ogre plugins are located
120        std::string         ogrePlugins_;              //!< Comma separated list of all plugins to load
121        std::string         ogreLogFile_;              //!< log filename for Ogre log messages
122        int                 ogreLogLevelTrivial_;      //!< Corresponding Orxonox debug level for LL_TRIVIAL
123        int                 ogreLogLevelNormal_;       //!< Corresponding Orxonox debug level for LL_NORMAL
124        int                 ogreLogLevelCritical_;     //!< Corresponding Orxonox debug level for LL_CRITICAL
125
126        static GraphicsManager* singletonPtr_s;        //!< Pointer to the Singleton
127    };
128}
129
130#endif /* _GraphicsManager_H__ */
Note: See TracBrowser for help on using the repository browser.