mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 18:30:27 +01:00
1a2ccb8f50
Conflicts: Sources/Ecc/Parser.cpp Sources/Ecc/Scanner.cpp Sources/Engine/Base/Scanner.cpp Sources/Engine/GameAgent/GameAgent.cpp Sources/Engine/Graphics/Gfx_wrapper.h Sources/Engine/Network/Network.cpp Sources/Engine/Sound/SoundDecoder.h Sources/Engine/Templates/HashTableTemplate.cpp Sources/Engine/Terrain/Terrain.h Sources/EntitiesMP/ParticleCloudsHolder.es Sources/EntitiesMP/ParticleCloudsMarker.es Sources/SeriousSam/CDCheck.h Sources/SeriousSam/Menu.cpp Sources/SeriousSam/MenuGadgets.cpp Sources/SeriousSam/SeriousSam.cpp Sources/SeriousSam/SplashScreen.cpp Sources/SeriousSam/StdH.cpp Sources/SeriousSam/StdH.h Sources/Shaders/StdH.cpp
87 lines
3.1 KiB
C++
87 lines
3.1 KiB
C++
/* Copyright (c) 2002-2012 Croteam Ltd.
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of version 2 of the GNU General Public License as published by
|
|
the Free Software Foundation
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
|
|
|
|
#ifndef SE_INCL_FILENAME_H
|
|
#define SE_INCL_FILENAME_H
|
|
#ifdef PRAGMA_ONCE
|
|
#pragma once
|
|
#endif
|
|
|
|
#include <Engine/Base/CTString.h>
|
|
|
|
/*
|
|
* Special kind of string, dedicated to storing filenames.
|
|
*/
|
|
class ENGINE_API CTFileName : public CTString {
|
|
public:
|
|
static const char *convertFromWin32(const char *str);
|
|
static const char *convertToWin32(const char *src);
|
|
|
|
class CSerial *fnm_pserPreloaded; // pointer to already loaded object if available
|
|
private:
|
|
|
|
/* Constructor from character string. */
|
|
inline CTFileName(const char *pString) : CTString(convertFromWin32(pString)), fnm_pserPreloaded(NULL) {}
|
|
public:
|
|
/* Default constructor. */
|
|
inline CTFileName(void) : fnm_pserPreloaded(NULL) {};
|
|
/* Copy constructor. */
|
|
inline CTFileName(const CTString &strOriginal) : CTString(convertFromWin32(strOriginal)), fnm_pserPreloaded(NULL) {}
|
|
/* Constructor from character string for insertion in exe-file. */
|
|
inline CTFileName(const char *pString, int i) : CTString(convertFromWin32(pString+i)), fnm_pserPreloaded(NULL) {}
|
|
|
|
void SetAbsolutePath(void) {} // !!! FIXME
|
|
|
|
/* Assignment. */
|
|
CTFileName &operator=(const char *strCharString);
|
|
inline void operator=(const CTString &strOther) {
|
|
CTString::operator=(convertFromWin32(strOther));
|
|
fnm_pserPreloaded = NULL;
|
|
};
|
|
|
|
/* Get CTString with win32-style dir separators for string compares. */
|
|
CTString Win32FmtString(void) const;
|
|
|
|
/* Get directory part of a filename. */
|
|
CTFileName FileDir(void) const;
|
|
/* Get name part of a filename. */
|
|
CTFileName FileName(void) const;
|
|
/* Get extension part of a filename. */
|
|
CTFileName FileExt(void) const;
|
|
/* Get path and file name without extension. */
|
|
CTFileName NoExt(void) const;
|
|
/* Remove application path from a file name. */
|
|
void RemoveApplicationPath_t(void); // throw char *
|
|
|
|
// filename is its own name (used for storing in nametable)
|
|
inline const CTFileName &GetName(void) { return *this; };
|
|
|
|
void ReadFromText_t(CTStream &strmStream, const CTString &strKeyword=""); // throw char *
|
|
|
|
/* Read from stream. */
|
|
ENGINE_API friend CTStream &operator>>(CTStream &strmStream, CTFileName &fnmFileName);
|
|
/* Write to stream. */
|
|
ENGINE_API friend CTStream &operator<<(CTStream &strmStream, const CTFileName &fnmFileName);
|
|
};
|
|
|
|
// macro for defining a literal filename in code (EFNM = exe-filename)
|
|
#define CTFILENAME(string) CTFileName("EFNM" string, 4)
|
|
#define DECLARE_CTFILENAME(name, string) CTFileName name("EFNM" string, 4)
|
|
|
|
|
|
|
|
#endif /* include-once check. */
|
|
|