Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 13, 2009, 10:50:07 PM (15 years ago)
Author:
rgrieder
Message:

Renamed media to data to restore consistency with game/data/trunk folder name.
Couldn't yet rename the media folder though probably due to some fundamental limitations of SVN (believe me, I tried).

Location:
code/branches/resource2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/resource2

    • Property svn:externals
      •  

        old new  
        1 media_stripped http://svn.orxonox.net/game/data/branches/media_stripped
         1data_stripped https://svn.orxonox.net/game/data/branches/media_stripped
  • code/branches/resource2/src/core/Core.h

    r5641 r5645  
    5757        The Core class is a singleton used to configure the program basics.
    5858    @details
    59         The class provides information about the media, config and log path.
     59        The class provides information about the data, config and log path.
    6060        It determines those by the use of platform specific functions.
    6161    @remark
     
    9191            static void  resetLanguage();
    9292
    93             static void tsetExternalMediaPath(const std::string& path);
     93            static void tsetExternalDataPath(const std::string& path);
    9494            //! Returns the path to the data files as boost::filesystem::path
    95             static const boost::filesystem::path& getMediaPath();
     95            static const boost::filesystem::path& getDataPath();
    9696            //! Returns the path to the external data files as boost::filesystem::path
    97             static const boost::filesystem::path& getExternalMediaPath();
     97            static const boost::filesystem::path& getExternalDataPath();
    9898            //! Returns the path to the config files as boost::filesystem::path
    9999            static const boost::filesystem::path& getConfigPath();
    100100            //! Returns the path to the log files as boost::filesystem::path
    101101            static const boost::filesystem::path& getLogPath();
    102             //! Returns the path to the data files as std::string
    103102            //! Returns the path to the root folder as boost::filesystem::path
    104103            static const boost::filesystem::path& getRootPath();
    105             static std::string getMediaPathString();
     104            //! Returns the path to the data files as std::string
     105            static std::string getDataPathString();
    106106            //! Returns the path to the external data files as std::string
    107             static std::string getExternalMediaPathString();
     107            static std::string getExternalDataPathString();
    108108            //! Returns the path to the config files as std::string
    109109            static std::string getConfigPathString();
Note: See TracChangeset for help on using the changeset viewer.