mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Changed: Minor changes
This commit is contained in:
parent
2c8b51e9f9
commit
b05b865cfb
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
|
||||
|
|
|
@ -80,7 +80,7 @@ bool fillTileFar (uint tile, const char* sName, CTileFarBank::TFarType type, CTi
|
|||
// Get bitmap size
|
||||
uint width=bitmap.getWidth();
|
||||
uint height=bitmap.getHeight();
|
||||
|
||||
|
||||
|
||||
// Check size..
|
||||
if ((!((_256&&(width==256)&&(height==256))||((!_256)&&(width==128)&&(height==128)))))
|
||||
|
@ -210,7 +210,7 @@ int main (int argc, char **argv)
|
|||
// Serial the bank in input
|
||||
farBank.serial (inputFarBank);
|
||||
}
|
||||
|
||||
|
||||
// Force recomputation ?
|
||||
if (recompute (argv[1], argv[2]))
|
||||
{
|
||||
|
@ -294,7 +294,7 @@ int main (int argc, char **argv)
|
|||
{
|
||||
// One more tile
|
||||
tileCount++;
|
||||
|
||||
|
||||
printf ("Skipping %s...\n", tileFilename.c_str());
|
||||
bDeleteDiffuse=false;
|
||||
}
|
||||
|
@ -405,7 +405,7 @@ int main (int argc, char **argv)
|
|||
{
|
||||
nlwarning ("ERROR Can't open file %s for reading\n", argv[1]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// exit
|
||||
return 0;
|
||||
|
|
|
@ -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