mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-14 08:04:40 +00:00
Engine directory for ticket #1
This commit is contained in:
parent
352279af7a
commit
7dbfe6994d
3795 changed files with 1363358 additions and 0 deletions
67
Engine/lib/collada/include/dae/daeUtils.h
Normal file
67
Engine/lib/collada/include/dae/daeUtils.h
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
// A home for commonly used utility functions. These are mostly for internal DOM
|
||||
// use, but the automated tests use some of these functions, so we'll export
|
||||
// them.
|
||||
#ifndef daeUtils_h
|
||||
#define daeUtils_h
|
||||
|
||||
#include <string>
|
||||
#include <sstream>
|
||||
#include <list>
|
||||
#include <vector>
|
||||
#include <dae/daePlatform.h>
|
||||
|
||||
namespace cdom {
|
||||
// System type info. We only need to distinguish between Posix and Winodws for now.
|
||||
enum systemType {
|
||||
Posix,
|
||||
Windows
|
||||
};
|
||||
|
||||
// Get the system type at runtime.
|
||||
DLLSPEC systemType getSystemType();
|
||||
|
||||
// String replace function. Usage: replace("abcdef", "cd", "12") --> "ab12ef".
|
||||
DLLSPEC std::string replace(const std::string& s,
|
||||
const std::string& replace,
|
||||
const std::string& replaceWith);
|
||||
|
||||
// Usage:
|
||||
// tokenize("this/is some#text", "/#", true) --> ("this" "/" "is some" "#" "text")
|
||||
// tokenize("this is some text", " ", false) --> ("this" "is" "some" "text")
|
||||
DLLSPEC std::list<std::string> tokenize(const std::string& s,
|
||||
const std::string& separators,
|
||||
bool separatorsInResult = false);
|
||||
// Same as the previous function, but returns the result via a parameter to avoid an object copy.
|
||||
DLLSPEC void tokenize(const std::string& s,
|
||||
const std::string& separators,
|
||||
/* out */ std::list<std::string>& tokens,
|
||||
bool separatorsInResult = false);
|
||||
|
||||
typedef std::list<std::string>::iterator tokenIter;
|
||||
|
||||
DLLSPEC std::vector<std::string> makeStringArray(const char* s, ...);
|
||||
DLLSPEC std::list<std::string> makeStringList(const char* s, ...);
|
||||
|
||||
DLLSPEC std::string getCurrentDir();
|
||||
DLLSPEC std::string getCurrentDirAsUri();
|
||||
|
||||
DLLSPEC int strcasecmp(const char* str1, const char* str2);
|
||||
DLLSPEC std::string tolower(const std::string& s);
|
||||
|
||||
// Disable VS warning
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(push)
|
||||
#pragma warning(disable : 4267)
|
||||
#endif
|
||||
template<typename T>
|
||||
std::string toString(const T& val) {
|
||||
std::ostringstream stream;
|
||||
stream << val;
|
||||
return stream.str();
|
||||
}
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(pop)
|
||||
#endif
|
||||
}
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue