Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

Changed call to frame rendering in GraphicsManager so that Ogre always receives exactly the delta times it expects.
Just to be sure.

  • Property svn:eol-style set to native
File size: 4.9 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
[1625]56namespace orxonox
57{
[1214]58    /**
[2801]59    @brief
60        Graphics engine manager class
[1214]61    */
[3366]62    class _CoreExport GraphicsManager : public Singleton<GraphicsManager>, public OrxonoxClass, public Ogre::LogListener
[1214]63    {
[3366]64        friend class Singleton<GraphicsManager>;
[1755]65    public:
[5695]66        GraphicsManager(bool bLoadRenderer = true);
[2801]67        ~GraphicsManager();
[612]68
[1755]69        void setConfigValues();
[2801]70
[6417]71        void postUpdate(const Clock& time);
[2801]72
[5695]73        Ogre::Viewport* getViewport()         { return this->viewport_; }
74        Ogre::RenderWindow* getRenderWindow() { return this->renderWindow_; }
75        size_t getRenderWindowHandle();
76        bool isFullScreen() const;
[7993]77        bool hasVSyncEnabled() const;
[2662]78
[5695]79        void upgradeToGraphics();
[5929]80        void loadDebugOverlay();
[5695]81        bool rendererLoaded() const { return renderWindow_ != NULL; }
82
[2850]83        void setCamera(Ogre::Camera* camera);
84
[1755]85    private:
[2801]86        GraphicsManager(GraphicsManager&); // don't mess with singletons
[1502]87
[2801]88        // OGRE initialisation
[5695]89        void loadOgreRoot();
[2801]90        void loadOgrePlugins();
91        void loadRenderer();
[2662]92
[2801]93        // event from Ogre::LogListener
94        void messageLogged(const std::string& message, Ogre::LogMessageLevel lml,
95            bool maskDebug, const std::string& logName);
[612]96
[2801]97        // console commands
98        void printScreen();
[7989]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);
[2801]102
[5695]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
[2801]109        Ogre::RenderWindow* renderWindow_;             //!< the one and only render window
110        Ogre::Viewport*     viewport_;                 //!< default full size viewport
[7995]111        float               lastFrameStartTime_;       //!< Time stamp of the beginning of the last frame
112        float               lastFrameEndTime_;         //!< Time stamp of the end of the last frame
[2801]113
[5929]114        // XML files for the resources and the debug overlay
[5695]115        shared_ptr<XMLFile> resources_;                //!< XML with resource locations
116        shared_ptr<XMLFile> extResources_;             //!< XML with resource locations in the external path (only for dev runs)
[5929]117        shared_ptr<XMLFile> debugOverlay_;             //!< XML with various debug overlays
[5695]118
[1755]119        // config values
[6105]120        std::string         ogreConfigFile_;           //!< ogre config filename
[5695]121        std::string         ogrePluginsDirectory_;     //!< Directory where the Ogre plugins are located
[2801]122        std::string         ogrePlugins_;              //!< Comma separated list of all plugins to load
[6105]123        std::string         ogreLogFile_;              //!< log filename for Ogre log messages
124        int                 ogreLogLevelTrivial_;      //!< Corresponding Orxonox debug level for LL_TRIVIAL
125        int                 ogreLogLevelNormal_;       //!< Corresponding Orxonox debug level for LL_NORMAL
126        int                 ogreLogLevelCritical_;     //!< Corresponding Orxonox debug level for LL_CRITICAL
[1755]127
[3366]128        static GraphicsManager* singletonPtr_s;        //!< Pointer to the Singleton
[1214]129    };
[612]130}
131
[2805]132#endif /* _GraphicsManager_H__ */
Note: See TracBrowser for help on using the repository browser.