1
0
Fork 0

(svn r22510) -Codechange: Extract filepath creation to its own function.

release/1.2
alberth 2011-05-28 13:54:42 +00:00
parent be048e05f2
commit 84f7fc32fa
1 changed files with 34 additions and 21 deletions

View File

@ -140,6 +140,38 @@ const char *FiosBrowseTo(const FiosItem *item)
return NULL;
}
/**
* Construct a filename from its components in destination buffer \a buf.
* @param buf Destination buffer.
* @param path Directory path, may be \c NULL.
* @param name Filename.
* @param ext Filename extension (use \c "" for no extension).
* @param size Size of \a buf.
*/
static void FiosMakeFilename(char *buf, const char *path, const char *name, const char *ext, size_t size)
{
const char *period;
/* Don't append the extension if it is already there */
period = strrchr(name, '.');
if (period != NULL && strcasecmp(period, ext) == 0) ext = "";
#if defined(__MORPHOS__) || defined(__AMIGAOS__)
if (path != NULL) {
unsigned char sepchar = path[(strlen(path) - 1)];
if (sepchar != ':' && sepchar != '/') {
snprintf(buf, size, "%s" PATHSEP "%s%s", path, name, ext);
} else {
snprintf(buf, size, "%s%s%s", path, name, ext);
}
} else {
snprintf(buf, size, "%s%s", name, ext);
}
#else
snprintf(buf, size, "%s" PATHSEP "%s%s", path, name, ext);
#endif
}
/**
* Make a save game or scenario filename from a name.
* @param buf Destination buffer for saving the filename.
@ -148,28 +180,9 @@ const char *FiosBrowseTo(const FiosItem *item)
*/
void FiosMakeSavegameName(char *buf, const char *name, size_t size)
{
const char *extension, *period;
const char *extension = (_game_mode == GM_EDITOR) ? ".scn" : ".sav";
extension = (_game_mode == GM_EDITOR) ? ".scn" : ".sav";
/* Don't append the extension if it is already there */
period = strrchr(name, '.');
if (period != NULL && strcasecmp(period, extension) == 0) extension = "";
#if defined(__MORPHOS__) || defined(__AMIGAOS__)
if (_fios_path != NULL) {
unsigned char sepchar = _fios_path[(strlen(_fios_path) - 1)];
if (sepchar != ':' && sepchar != '/') {
snprintf(buf, size, "%s" PATHSEP "%s%s", _fios_path, name, extension);
} else {
snprintf(buf, size, "%s%s%s", _fios_path, name, extension);
}
} else {
snprintf(buf, size, "%s%s", name, extension);
}
#else
snprintf(buf, size, "%s" PATHSEP "%s%s", _fios_path, name, extension);
#endif
FiosMakeFilename(buf, _fios_path, name, extension, size);
}
/**