/usr/include/tuxcap/Common.h is in libtuxcap-dev 1.4.0.dfsg2-2.3+b2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | #ifndef __SEXYAPPFRAMEWORK_COMMON_H__
#define __SEXYAPPFRAMEWORK_COMMON_H__
#include <string>
#include <vector>
#include <set>
#include <map>
#include <list>
#include <algorithm>
#include <cstdlib>
#include <stdarg.h>
#include <wchar.h>
#include "SDL.h"
#include "SDL_keysym.h"
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
const Uint32 SDL_rmask = 0x000000FF;
const Uint32 SDL_gmask = 0x0000FF00;
const Uint32 SDL_bmask = 0x00FF0000;
const Uint32 SDL_amask = 0xFF000000;
#else
const Uint32 SDL_rmask = 0xFF000000;
const Uint32 SDL_gmask = 0x00FF0000;
const Uint32 SDL_bmask = 0x0000FF00;
const Uint32 SDL_amask = 0x000000FF;
#endif
//FIXME map popcap keycodes to sdl
#define KeyCode SDLKey
//#define USE_AUDIERE
#ifdef _USE_WIDE_STRING
#define sexystricmp wcscasecmp
typedef std::wstring SexyString;
#define _S(x) L ##x
#if 0
#include "ModVal.h"
#define sexystrncmp wcsncmp
#define sexystrcmp wcscmp
#define sexysscanf swscanf
#define sexyatoi _wtoi
#define sexystrcpy wcscpy
#define SexyStringToStringFast(x) WStringToString(x)
#define SexyStringToWStringFast(x) (x)
#define StringToSexyStringFast(x) StringToWString(x)
#define WStringToSexyStringFast(x) (x)
#ifndef SEXYFRAMEWORK_NO_REDEFINE_WIN_API
// Redefine the functions and structs we need to be wide-string
#undef CreateWindowEx
#undef RegisterClass
#undef MessageBox
#undef ShellExecute
#undef GetTextExtentPoint32
#undef RegisterWindowMessage
#undef CreateMutex
#undef DrawTextEx
#undef TextOut
#define CreateWindowEx CreateWindowExW
#define RegisterClass RegisterClassW
#define WNDCLASS WNDCLASSW
#define MessageBox MessageBoxW
#define ShellExecute ShellExecuteW
#define GetTextExtentPoint32 GetTextExtentPoint32W
#define RegisterWindowMessage RegisterWindowMessageW
#define CreateMutex CreateMutexW
#define DrawTextEx DrawTextExW
#define TextOut TextOutW
#endif
#endif
#else
typedef std::string SexyString;
#define _S(x) x
#define sexystrncmp strncmp
#define sexystrcmp strcmp
#define sexystricmp strcasecmp
#define sexysscanf sscanf
#define sexyatoi atoi
#define sexystrcpy strcpy
#define SexyStringToStringFast(x) (x)
#define SexyStringToWStringFast(x) StringToWString(x)
#define StringToSexyStringFast(x) (x)
#define WStringToSexyStringFast(x) WStringToString(x)
#endif
#define LONG_BIGE_TO_NATIVE(l) (((l >> 24) & 0xFF) | ((l >> 8) & 0xFF00) | ((l << 8) & 0xFF0000) | ((l << 24) & 0xFF000000))
#define WORD_BIGE_TO_NATIVE(w) (((w >> 8) & 0xFF) | ((w << 8) & 0xFF00))
#define LONG_LITTLEE_TO_NATIVE(l) (l)
#define WORD_LITTLEE_TO_NATIVE(w) (w)
#define LENGTH(anyarray) (sizeof(anyarray) / sizeof(anyarray[0]))
typedef unsigned char uchar;
typedef unsigned short ushort;
typedef unsigned int uint;
//typedef unsigned long ulong;
//typedef long long int64;
typedef std::map<std::string, std::string> DefinesMap;
typedef std::map<std::wstring, std::wstring> WStringWStringMap;
typedef SexyString::value_type SexyChar;
#define HAS_SEXYCHAR
namespace Sexy
{
const uint32_t SEXY_RAND_MAX = 0x7FFFFFFF;
extern bool gDebug;
int Rand();
int Rand(int range);
float Rand(float range);
void SRand(uint32_t theSeed);
extern std::string vformat(const char* fmt, va_list argPtr);
extern std::string StrFormat(const char* fmt ...);
std::string GetAppDataFolder();
void SetAppDataFolder(const std::string& thePath);
std::string GetAppResourceFolder();
void SetAppResourceFolder(const std::string& thePath);
std::vector<std::string> GetFilesInDir(const std::string& theDir);
std::string GetPathFrom(const std::string& theRelPath, const std::string& theDir);
std::string GetFileDir(const std::string& thePath, bool withSlash = false);
std::string GetFileName(const std::string& thePath, bool noExtension = false);
std::string RemoveTrailingSlash(const std::string& theDirectory);
std::string BuildIniName(std::string copy, const std::string& theSubstitute);
std::string ReplaceBackSlashes(std::string copy);
void MkDir(const std::string& theDir);
bool AllowAllAccess(const std::string& theFileName);
bool FileExists(const std::string& theFileName);
bool CreateFile(const std::string& theFileName);
std::string GetFullPath(const std::string& theRelPath);
std::string GetCurDir();
#if 0
bool Deltree(const std::string& thePath);
std::string AddTrailingSlash(const std::string& theDirectory, bool backSlash = false);
time_t GetFileDate(const std::string& theFileName);
std::string Trim(const std::string& theString);
std::wstring Trim(const std::wstring& theString);
extern std::wstring StrFormat(const wchar_t* fmt ...);
extern std::wstring vformat(const wchar_t* fmt, va_list argPtr);
#endif
std::string Upper(const std::string& theData);
std::wstring Upper(const std::wstring& theData);
std::string Lower(const std::string& theData);
std::wstring Lower(const std::wstring& theData);
std::string StringToUpper(const std::string& theString);
std::wstring StringToUpper(const std::wstring& theString);
std::string URLEncode(const std::string& theString);
std::string StringToLower(const std::string& theString);
std::wstring StringToLower(const std::wstring& theString);
std::wstring StringToWString(const std::string &theString);
std::string WStringToString(const std::wstring &theString);
SexyString StringToSexyString(const std::string& theString);
SexyString WStringToSexyString(const std::wstring& theString);
std::string SexyStringToString(const SexyString& theString);
std::wstring SexyStringToWString(const SexyString& theString);
bool StringToInt(const std::string theString, int* theIntVal);
bool StringToDouble(const std::string theString, double* theDoubleVal);
bool StringToInt(const std::wstring theString, int* theIntVal);
bool StringToDouble(const std::wstring theString, double* theDoubleVal);
int StrFindNoCase(const char *theStr, const char *theFind);
bool StrPrefixNoCase(const char *theStr, const char *thePrefix, int maxLength = 10000000);
SexyString CommaSeperate(int theValue);
std::string Evaluate(const std::string& theString, const DefinesMap& theDefinesMap);
std::string XMLDecodeString(const std::string& theString);
std::string XMLEncodeString(const std::string& theString);
std::wstring XMLDecodeString(const std::wstring& theString);
std::wstring XMLEncodeString(const std::wstring& theString);
inline void inlineUpper(std::string &theData)
{
//std::transform(theData.begin(), theData.end(), theData.begin(), toupper);
int aStrLen = (int) theData.length();
for (int i = 0; i < aStrLen; i++)
{
theData[i] = toupper(theData[i]);
}
}
#if 0
inline void inlineUpper(std::wstring &theData)
{
//std::transform(theData.begin(), theData.end(), theData.begin(), toupper);
int aStrLen = (int) theData.length();
for (int i = 0; i < aStrLen; i++)
{
theData[i] = towupper(theData[i]);
}
}
#endif
inline void inlineLower(std::string &theData)
{
std::transform(theData.begin(), theData.end(), theData.begin(), tolower);
}
inline void inlineLower(std::wstring &theData)
{
std::transform(theData.begin(), theData.end(), theData.begin(), tolower);
}
inline void inlineLTrim(std::string &theData, const std::string& theChars = " \t\r\n")
{
theData.erase(0, theData.find_first_not_of(theChars));
}
inline void inlineLTrim(std::wstring &theData, const std::wstring& theChars = L" \t\r\n")
{
theData.erase(0, theData.find_first_not_of(theChars));
}
inline void inlineRTrim(std::string &theData, const std::string& theChars = " \t\r\n")
{
theData.resize(theData.find_last_not_of(theChars) + 1);
}
inline void inlineTrim(std::string &theData, const std::string& theChars = " \t\r\n")
{
inlineRTrim(theData, theChars);
inlineLTrim(theData, theChars);
}
struct StringLessNoCase { bool operator()(const std::string &s1, const std::string &s2) const { return strcasecmp(s1.c_str(),s2.c_str())<0; } };
}
#endif //__SEXYAPPFRAMEWORK_COMMON_H__
|