Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 24, 2009, 11:02:42 AM (15 years ago)
Author:
rgrieder
Message:

Reverted trunk again. We might want to find a way to delete these revisions again (x3n's changes are still available as diff in the commit mails).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/libraries/core/Core.h

    r5774 r5781  
    8585            static void  resetLanguage();
    8686
     87            static void tsetExternalDataPath(const std::string& path);
    8788            //! Returns the path to the data files as boost::filesystem::path
    8889            static const boost::filesystem::path& getDataPath();
     90            //! Returns the path to the external data files as boost::filesystem::path
     91            static const boost::filesystem::path& getExternalDataPath();
    8992            //! Returns the path to the config files as boost::filesystem::path
    9093            static const boost::filesystem::path& getConfigPath();
     
    9598            //! Returns the path to the data files as std::string
    9699            static std::string getDataPathString();
     100            //! Returns the path to the external data files as std::string
     101            static std::string getExternalDataPathString();
    97102            //! Returns the path to the config files as std::string
    98103            static std::string getConfigPathString();
     
    110115            void postUpdate(const Clock& time);
    111116
     117            void loadGraphics();
     118            void unloadGraphics();
     119
    112120            void setFixedPaths();
    113121            void setConfigurablePaths();
     
    118126            scoped_ptr<SignalHandler>     signalHandler_;
    119127            SimpleScopeGuard              identifierDestroyer_;
     128            SimpleScopeGuard              consoleCommandDestroyer_;
    120129            scoped_ptr<ConfigFileManager> configFileManager_;
    121130            scoped_ptr<Language>          languageInstance_;
    122131            scoped_ptr<CoreConfiguration> configuration_;
     132            scoped_ptr<TclBind>           tclBind_;
     133            scoped_ptr<TclThreadManager>  tclThreadManager_;
     134            scoped_ptr<Shell>             shell_;
     135            // graphical
     136            scoped_ptr<GraphicsManager>   graphicsManager_;     //!< Interface to OGRE
     137            scoped_ptr<InputManager>      inputManager_;        //!< Interface to OIS
     138            scoped_ptr<GUIManager>        guiManager_;          //!< Interface to GUI
    123139
    124140            bool                          bDevRun_;             //!< True for runs in the build directory (not installed)
     141            bool                          bGraphicsLoaded_;
    125142
    126143            static Core* singletonPtr_s;
Note: See TracChangeset for help on using the changeset viewer.