mirror of
https://github.com/DrBeef/JKXR.git
synced 2024-12-03 09:32:54 +00:00
143 lines
3.2 KiB
C++
143 lines
3.2 KiB
C++
/*
|
|
===========================================================================
|
|
Copyright (C) 2000 - 2013, Raven Software, Inc.
|
|
Copyright (C) 2001 - 2013, Activision, Inc.
|
|
Copyright (C) 2013 - 2015, OpenJK contributors
|
|
|
|
This file is part of the OpenJK source code.
|
|
|
|
OpenJK is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License version 2 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, see <http://www.gnu.org/licenses/>.
|
|
===========================================================================
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "../qcommon/q_shared.h"
|
|
|
|
// Filename:- sstring.h
|
|
//
|
|
// Gil's string template, used to replace Microsoft's <string> vrsion which doesn't compile under certain stl map<>
|
|
// conditions...
|
|
|
|
|
|
template<int MaxSize>
|
|
class sstring
|
|
{
|
|
struct SStorage
|
|
{
|
|
char data[MaxSize];
|
|
};
|
|
SStorage mStorage;
|
|
public:
|
|
/* don't figure we need this
|
|
template<int oMaxSize>
|
|
sstring(const sstring<oMaxSize> &o)
|
|
{
|
|
assert(strlen(o.mStorage.data)<MaxSize);
|
|
strcpy(mStorage.data,o.mStorage.data);
|
|
}
|
|
*/
|
|
sstring(const sstring<MaxSize> &o)
|
|
{
|
|
//strcpy(mStorage.data,o.mStorage.data);
|
|
Q_strncpyz(mStorage.data,o.mStorage.data,sizeof(mStorage.data));
|
|
}
|
|
sstring(const char *s)
|
|
{
|
|
//assert(strlen(s)<MaxSize);
|
|
//strcpy(mStorage.data,s);
|
|
Q_strncpyz(mStorage.data,s,sizeof(mStorage.data));
|
|
}
|
|
sstring()
|
|
{
|
|
mStorage.data[0]=0;
|
|
}
|
|
/* don't figure we need this
|
|
template<int oMaxSize>
|
|
sstring<oMaxSize> & operator =(const sstring<oMaxSize> &o)
|
|
{
|
|
assert(strlen(o.mStorage.data)<MaxSize);
|
|
strcpy(mStorage.data,o.mStorage.data);
|
|
return *this;
|
|
}
|
|
*/
|
|
sstring<MaxSize> & operator=(const sstring<MaxSize> &o)
|
|
{
|
|
//strcpy(mStorage.data,o.mStorage.data);
|
|
Q_strncpyz(mStorage.data,o.mStorage.data,sizeof(mStorage.data));
|
|
return *this;
|
|
}
|
|
sstring<MaxSize> & operator=(const char *s)
|
|
{
|
|
assert(strlen(s)<MaxSize);
|
|
//strcpy(mStorage.data,s);
|
|
Q_strncpyz(mStorage.data,s,sizeof(mStorage.data));
|
|
return *this;
|
|
}
|
|
char *c_str()
|
|
{
|
|
return mStorage.data;
|
|
}
|
|
const char *c_str() const
|
|
{
|
|
return mStorage.data;
|
|
}
|
|
int capacity() const
|
|
{
|
|
return MaxSize;
|
|
}
|
|
int length() const
|
|
{
|
|
return strlen(mStorage.data);
|
|
}
|
|
bool empty() const
|
|
{
|
|
return mStorage.data[0] == '\0'; //FIXME: might want to check MaxSize instead?
|
|
}
|
|
bool operator==(const sstring<MaxSize> &o) const
|
|
{
|
|
if (!Q_stricmp(mStorage.data,o.mStorage.data))
|
|
{
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
bool operator!=(const sstring<MaxSize> &o) const
|
|
{
|
|
if (Q_stricmp(mStorage.data,o.mStorage.data)!=0)
|
|
{
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
bool operator<(const sstring<MaxSize> &o) const
|
|
{
|
|
if (Q_stricmp(mStorage.data,o.mStorage.data)<0)
|
|
{
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
bool operator>(const sstring<MaxSize> &o) const
|
|
{
|
|
if (Q_stricmp(mStorage.data,o.mStorage.data)>0)
|
|
{
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
};
|
|
|
|
typedef sstring<MAX_QPATH> sstring_t;
|
|
|
|
/////////////////// eof ////////////////////
|