354d022967
commit f44d146e4ac906ff898e8968c6857fd2280f6d20 Author: project-bo4 <127137346+project-bo4@users.noreply.github.com> Date: Thu May 11 13:39:29 2023 -0700 remove lpc package from repository commit 29fb0f63e50de468ab0b9db35f7e8fdadf58afc3 Author: project-bo4 <themanwithantidote@gmail.com> Date: Thu May 11 13:06:13 2023 -0700 generic improvements + added identity configuration + objectstore improvements + added battlenet 'US' servers to blocklist + some other minor improvements commit 5d5e31099ebcce5a637b9a02d4936a97fb0802a7 Author: project-bo4 <themanwithantidote@gmail.com> Date: Sat Mar 25 16:32:52 2023 -0700 lpc improvements + fix lpc issue with foreign languages(non-english) not being considered in listing + check lpc files pre-start and warn user if missing any of core items commit 2de1a54b6f4cc5c44dc906871021cfbc85057ca9 Author: project-bo4 <themanwithantidote@gmail.com> Date: Thu Mar 23 12:45:56 2023 -0700 demonware improvements + handle object store uploadUserObject + silence bdUNK125 commit 710dcc3ec6178071d67c27e5bf6705f08cabe7e2 Author: project-bo4 <themanwithantidote@gmail.com> Date: Mon Mar 20 13:43:56 2023 -0700 forgot to update names commit 217682dfb07b35f7a09399fb2698924bb7fe8b77 Author: project-bo4 <themanwithantidote@gmail.com> Date: Mon Mar 20 11:09:18 2023 -0700 upload lpc and update readme commit 83f812b33b90791a8d13b9468f27da51e0a4f2b9 Author: project-bo4 <themanwithantidote@gmail.com> Date: Mon Mar 20 10:53:43 2023 -0700 demonware emulator + demonware emulator + platform name and id + xxhash and picoproto - remove g_runframe hook -disable discovery(save time) + improvements to utils + add new resources
102 lines
2.4 KiB
C++
102 lines
2.4 KiB
C++
#pragma once
|
|
#include "memory.hpp"
|
|
#include <cstdint>
|
|
|
|
#ifndef ARRAYSIZE
|
|
template <class Type, size_t n>
|
|
size_t ARRAYSIZE(Type (&)[n]) { return n; }
|
|
#endif
|
|
|
|
namespace utils::string
|
|
{
|
|
template <size_t Buffers, size_t MinBufferSize>
|
|
class va_provider final
|
|
{
|
|
public:
|
|
static_assert(Buffers != 0 && MinBufferSize != 0, "Buffers and MinBufferSize mustn't be 0");
|
|
|
|
va_provider() : current_buffer_(0)
|
|
{
|
|
}
|
|
|
|
char* get(const char* format, const va_list ap)
|
|
{
|
|
++this->current_buffer_ %= ARRAYSIZE(this->string_pool_);
|
|
auto entry = &this->string_pool_[this->current_buffer_];
|
|
|
|
if (!entry->size || !entry->buffer)
|
|
{
|
|
throw std::runtime_error("String pool not initialized");
|
|
}
|
|
|
|
while (true)
|
|
{
|
|
const int res = vsnprintf_s(entry->buffer, entry->size, _TRUNCATE, format, ap);
|
|
if (res > 0) break; // Success
|
|
if (res == 0) return nullptr; // Error
|
|
|
|
entry->double_size();
|
|
}
|
|
|
|
return entry->buffer;
|
|
}
|
|
|
|
private:
|
|
class entry final
|
|
{
|
|
public:
|
|
entry(const size_t _size = MinBufferSize) : size(_size), buffer(nullptr)
|
|
{
|
|
if (this->size < MinBufferSize) this->size = MinBufferSize;
|
|
this->allocate();
|
|
}
|
|
|
|
~entry()
|
|
{
|
|
if (this->buffer) memory::get_allocator()->free(this->buffer);
|
|
this->size = 0;
|
|
this->buffer = nullptr;
|
|
}
|
|
|
|
void allocate()
|
|
{
|
|
if (this->buffer) memory::get_allocator()->free(this->buffer);
|
|
this->buffer = memory::get_allocator()->allocate_array<char>(this->size + 1);
|
|
}
|
|
|
|
void double_size()
|
|
{
|
|
this->size *= 2;
|
|
this->allocate();
|
|
}
|
|
|
|
size_t size{};
|
|
char* buffer{nullptr};
|
|
};
|
|
|
|
size_t current_buffer_{};
|
|
entry string_pool_[Buffers]{};
|
|
};
|
|
|
|
const char* va(const char* fmt, ...);
|
|
|
|
std::vector<std::string> split(const std::string& s, char delim);
|
|
std::vector<std::string> split(const std::string& s, const std::string& delim);
|
|
|
|
std::string to_lower(std::string text);
|
|
std::string to_upper(std::string text);
|
|
bool starts_with(const std::string& text, const std::string& substring);
|
|
bool ends_with(const std::string& text, const std::string& substring);
|
|
|
|
std::string dump_hex(const std::string& data, const std::string& separator = " ");
|
|
|
|
std::string get_clipboard_data();
|
|
|
|
void strip(const char* in, char* out, int max);
|
|
|
|
std::string convert(const std::wstring& wstr);
|
|
std::wstring convert(const std::string& str);
|
|
|
|
std::string replace(std::string str, const std::string& from, const std::string& to);
|
|
}
|