Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/orxonox/GraphicsManager.h @ 3339

Last change on this file since 3339 was 3280, checked in by rgrieder, 15 years ago

Merged most of the core4 revisions back to the trunk except for:

  • orxonox_cast
  • all the radical changes in the input library
  • Property svn:eol-style set to native
File size: 4.1 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/**
[2801]31@file
32@brief
33    Declaration of GraphicsManager Singleton.
[612]34 */
35
[2805]36#ifndef _GraphicsManager_H__
37#define _GraphicsManager_H__
[612]38
[1039]39#include "OrxonoxPrereqs.h"
40
[3196]41#include <cassert>
[715]42#include <string>
[2801]43#include <OgreLog.h>
[1021]44#include "core/OrxonoxClass.h"
[612]45
[1625]46namespace orxonox
47{
[1214]48    /**
[2801]49    @brief
50        Graphics engine manager class
[1214]51    */
[2801]52    class _OrxonoxExport GraphicsManager : public OrxonoxClass, public Ogre::LogListener
[1214]53    {
[1755]54    public:
[2801]55        GraphicsManager();
56        ~GraphicsManager();
[612]57
[1755]58        void setConfigValues();
[2801]59
60        void update(const Clock& time);
61
[1755]62        void detailLevelParticleChanged();
[2801]63        inline unsigned int getDetailLevelParticle() const
64            { return this->detailLevelParticle_; }
[1293]65
[3196]66        inline Ogre::Viewport* getViewport()
[2662]67            { return this->viewport_; }
[2801]68        inline Ogre::RenderWindow* getRenderWindow()
69            { return this->renderWindow_; }
[2662]70
[2850]71        void setCamera(Ogre::Camera* camera);
72
[3196]73        inline static GraphicsManager& getInstance()
74            { assert(singletonRef_s); return *singletonRef_s; }
[2801]75
[1755]76    private:
[2801]77        GraphicsManager(GraphicsManager&); // don't mess with singletons
[1502]78
[2801]79        // OGRE initialisation
80        void setupOgre();
81        void loadOgrePlugins();
82        void declareResources();
83        void loadRenderer();
84        void initialiseResources();
[2662]85
[2801]86        // event from Ogre::LogListener
87        void messageLogged(const std::string& message, Ogre::LogMessageLevel lml,
88            bool maskDebug, const std::string& logName);
[612]89
[2801]90        // console commands
91        void printScreen();
92
93    private:
94        Ogre::Root*         ogreRoot_;                 //!< Ogre's root
95        Ogre::LogManager*   ogreLogger_;
96        Ogre::RenderWindow* renderWindow_;             //!< the one and only render window
97        Ogre::Viewport*     viewport_;                 //!< default full size viewport
[3280]98        OgreWindowEventListener* ogreWindowEventListener_; //!< Pimpl to hide OgreWindowUtilities.h
[2801]99
[1755]100        // config values
[2801]101        unsigned int        detailLevelParticle_;      //!< Detail level of particle effects (0: off, 1: low, 2: normal, 3: high)
102        std::string         resourceFile_;             //!< resources file name
103        std::string         ogreConfigFile_;           //!< ogre config file name
104        std::string         ogrePluginsFolder_;        //!< Folder where the Ogre plugins are located
105        std::string         ogrePlugins_;              //!< Comma separated list of all plugins to load
106        std::string         ogreLogFile_;              //!< log file name for Ogre log messages
107        int                 ogreLogLevelTrivial_;      //!< Corresponding Orxonx debug level for LL_TRIVIAL
108        int                 ogreLogLevelNormal_;       //!< Corresponding Orxonx debug level for LL_NORMAL
109        int                 ogreLogLevelCritical_;     //!< Corresponding Orxonx debug level for LL_CRITICAL
[1755]110
[2801]111        // console commands
112        ConsoleCommand*     ccPrintScreen_;
113
114        static GraphicsManager* singletonRef_s;        //!< Pointer to the Singleton
[1214]115    };
[612]116}
117
[2805]118#endif /* _GraphicsManager_H__ */
Note: See TracBrowser for help on using the repository browser.