mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-15 12:09:06 +00:00
Changed: Minor changes
This commit is contained in:
parent
54eb46bd15
commit
854d4dd624
3 changed files with 15 additions and 17 deletions
|
@ -497,7 +497,7 @@ public:
|
|||
static void getFileListByName(const std::string &extension, const std::string &name, std::vector<std::string> &filenames);
|
||||
|
||||
/** Create a list of file having the requested string in the path and the requested extension
|
||||
*/
|
||||
*/
|
||||
static void getFileListByPath(const std::string &extension, const std::string &path, std::vector<std::string> &filenames);
|
||||
|
||||
/** Make a path relative to another if possible, else doesn't change it.
|
||||
|
@ -508,10 +508,10 @@ public:
|
|||
static bool makePathRelative (const char *basePath, std::string &relativePath);
|
||||
|
||||
/** Make path absolute
|
||||
* \param relativePath - The relative path
|
||||
* \param directory - the directory to which the path is relative to
|
||||
* returns the absolute path, or empty if something went wrong.
|
||||
*/
|
||||
* \param relativePath - The relative path
|
||||
* \param directory - the directory to which the path is relative to
|
||||
* returns the absolute path, or empty if something went wrong.
|
||||
*/
|
||||
static std::string makePathAbsolute (const std::string &relativePath, const std::string &directory );
|
||||
|
||||
/** Return if a path is absolute or not.
|
||||
|
@ -525,7 +525,7 @@ public:
|
|||
static void addIgnoredDoubleFile(const std::string &ignoredFile);
|
||||
|
||||
/** For the moment after memoryCompress you cant addsearchpath anymore
|
||||
*/
|
||||
*/
|
||||
static void memoryCompress();
|
||||
|
||||
static void memoryUncompress();
|
||||
|
@ -533,17 +533,17 @@ public:
|
|||
static bool isMemoryCompressed() { return getInstance()->_FileContainer.isMemoryCompressed(); }
|
||||
|
||||
/** Get the ms windows directory (in standardized way with end slash), or returns an empty string on other os
|
||||
*/
|
||||
*/
|
||||
static std::string getWindowsDirectory();
|
||||
|
||||
/** Get application directory.
|
||||
* \return directory where applications should write files.
|
||||
*/
|
||||
* \return directory where applications should write files.
|
||||
*/
|
||||
static std::string getApplicationDirectory(const std::string &appName = "");
|
||||
|
||||
/** Get a temporary directory.
|
||||
* \return temporary directory where applications should write files.
|
||||
*/
|
||||
* \return temporary directory where applications should write files.
|
||||
*/
|
||||
static std::string getTemporaryDirectory();
|
||||
|
||||
// release singleton
|
||||
|
|
|
@ -542,7 +542,6 @@ sint main( sint argc, char ** argv )
|
|||
|
||||
|
||||
// output begin skill.h file
|
||||
//if( ! fo.open( string( "r:/code/ryzom/src_v2/game_share/skills.h" ) ) )
|
||||
if( ! fo.open( srcDir + string( "skills.h" ) ) )
|
||||
{
|
||||
nlwarning(" Can't open file %s for writing", "skills.h" );
|
||||
|
@ -648,7 +647,6 @@ sint main( sint argc, char ** argv )
|
|||
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
// begin output skill.cpp file
|
||||
// if( ! fo.open( string( "r:/code/ryzom/src_v2/game_share/skills.cpp" ) ) )
|
||||
if( ! fo.open( srcDir + string( "skills.cpp" ) ) )
|
||||
{
|
||||
nlwarning(" Can't open file skills.cpp for writing");
|
||||
|
|
Loading…
Reference in a new issue