mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-24 23:22:25 +01:00
byuu says: Basically just a project rename, with s/bsnes/higan and the new icon from lowkee added in. It won't compile on Windows because I forgot to update the resource.rc file, and a path transform command isn't working on Windows. It was really just meant as a starting point, so that v091 WIPs can flow starting from .00 with the new name (it overshadows bsnes v091, so publicly speaking this "shouldn't exist" and will probably be deleted from Google Code when v092 is ready.)
201 lines
4.4 KiB
C++
Executable File
201 lines
4.4 KiB
C++
Executable File
#ifdef NALL_STRING_INTERNAL_HPP
|
|
|
|
namespace nall {
|
|
|
|
static void istring(string &output) {
|
|
}
|
|
|
|
template<typename T, typename... Args>
|
|
static void istring(string &output, const T &value, Args&&... args) {
|
|
output.append_(make_string(value));
|
|
istring(output, std::forward<Args>(args)...);
|
|
}
|
|
|
|
void string::reserve(unsigned size_) {
|
|
if(size_ > size) {
|
|
size = size_;
|
|
data = (char*)realloc(data, size + 1);
|
|
data[size] = 0;
|
|
}
|
|
}
|
|
|
|
bool string::empty() const {
|
|
return !*data;
|
|
}
|
|
|
|
template<typename... Args> string& string::assign(Args&&... args) {
|
|
*data = 0;
|
|
istring(*this, std::forward<Args>(args)...);
|
|
return *this;
|
|
}
|
|
|
|
template<typename... Args> string& string::append(Args&&... args) {
|
|
istring(*this, std::forward<Args>(args)...);
|
|
return *this;
|
|
}
|
|
|
|
string& string::assign_(const char *s) {
|
|
unsigned length = strlen(s);
|
|
reserve(length);
|
|
strcpy(data, s);
|
|
return *this;
|
|
}
|
|
|
|
string& string::append_(const char *s) {
|
|
unsigned length = strlen(data) + strlen(s);
|
|
reserve(length);
|
|
strcat(data, s);
|
|
return *this;
|
|
}
|
|
|
|
string::operator const char*() const {
|
|
return data;
|
|
}
|
|
|
|
char* string::operator()() {
|
|
return data;
|
|
}
|
|
|
|
char& string::operator[](int index) {
|
|
reserve(index);
|
|
return data[index];
|
|
}
|
|
|
|
bool string::operator==(const char *str) const { return strcmp(data, str) == 0; }
|
|
bool string::operator!=(const char *str) const { return strcmp(data, str) != 0; }
|
|
bool string::operator< (const char *str) const { return strcmp(data, str) < 0; }
|
|
bool string::operator<=(const char *str) const { return strcmp(data, str) <= 0; }
|
|
bool string::operator> (const char *str) const { return strcmp(data, str) > 0; }
|
|
bool string::operator>=(const char *str) const { return strcmp(data, str) >= 0; }
|
|
|
|
string& string::operator=(const string &value) {
|
|
if(&value == this) return *this;
|
|
assign(value);
|
|
return *this;
|
|
}
|
|
|
|
string& string::operator=(string &&source) {
|
|
if(&source == this) return *this;
|
|
if(data) free(data);
|
|
size = source.size;
|
|
data = source.data;
|
|
source.data = nullptr;
|
|
source.size = 0;
|
|
return *this;
|
|
}
|
|
|
|
template<typename... Args> string::string(Args&&... args) {
|
|
size = 64;
|
|
data = (char*)malloc(size + 1);
|
|
*data = 0;
|
|
istring(*this, std::forward<Args>(args)...);
|
|
}
|
|
|
|
string::string(const string &value) {
|
|
if(&value == this) return;
|
|
size = strlen(value);
|
|
data = strdup(value);
|
|
}
|
|
|
|
string::string(string &&source) {
|
|
if(&source == this) return;
|
|
size = source.size;
|
|
data = source.data;
|
|
source.data = nullptr;
|
|
}
|
|
|
|
string::~string() {
|
|
if(data) free(data);
|
|
}
|
|
|
|
bool string::readfile(const string &filename) {
|
|
assign("");
|
|
|
|
#if !defined(_WIN32)
|
|
FILE *fp = fopen(filename, "rb");
|
|
#else
|
|
FILE *fp = _wfopen(utf16_t(filename), L"rb");
|
|
#endif
|
|
if(!fp) return false;
|
|
|
|
fseek(fp, 0, SEEK_END);
|
|
unsigned size = ftell(fp);
|
|
rewind(fp);
|
|
char *fdata = new char[size + 1];
|
|
unsigned unused = fread(fdata, 1, size, fp);
|
|
fclose(fp);
|
|
fdata[size] = 0;
|
|
assign(fdata);
|
|
delete[] fdata;
|
|
|
|
return true;
|
|
}
|
|
|
|
optional<unsigned> lstring::find(const char *key) const {
|
|
for(unsigned i = 0; i < size(); i++) {
|
|
if(operator[](i) == key) return { true, i };
|
|
}
|
|
return { false, 0 };
|
|
}
|
|
|
|
string lstring::concatenate(const char *separator) const {
|
|
string output;
|
|
for(unsigned i = 0; i < size(); i++) {
|
|
output.append(operator[](i), i < size() - 1 ? separator : "");
|
|
}
|
|
return output;
|
|
}
|
|
|
|
template<typename... Args> void lstring::append(const string &data, Args&&... args) {
|
|
vector::append(data);
|
|
append(std::forward<Args>(args)...);
|
|
}
|
|
|
|
bool lstring::operator==(const lstring &source) const {
|
|
if(this == &source) return true;
|
|
if(size() != source.size()) return false;
|
|
for(unsigned n = 0; n < size(); n++) {
|
|
if(operator[](n) != source[n]) return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool lstring::operator!=(const lstring &source) const {
|
|
return !operator==(source);
|
|
}
|
|
|
|
lstring& lstring::operator=(const lstring &source) {
|
|
vector::operator=(source);
|
|
return *this;
|
|
}
|
|
|
|
lstring& lstring::operator=(lstring &source) {
|
|
vector::operator=(source);
|
|
return *this;
|
|
}
|
|
|
|
lstring& lstring::operator=(lstring &&source) {
|
|
vector::operator=(std::move(source));
|
|
return *this;
|
|
}
|
|
|
|
template<typename... Args> lstring::lstring(Args&&... args) {
|
|
append(std::forward<Args>(args)...);
|
|
}
|
|
|
|
lstring::lstring(const lstring &source) {
|
|
vector::operator=(source);
|
|
}
|
|
|
|
lstring::lstring(lstring &source) {
|
|
vector::operator=(source);
|
|
}
|
|
|
|
lstring::lstring(lstring &&source) {
|
|
vector::operator=(std::move(source));
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|