mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-01 08:05:07 -04:00
c80f9fbd57
* WIP Multiversion support * GC PAL Non-MQ support complete * Updated OtrGui to handle different game versions * Added version file * Added new extract mode to ZAPD and optimized OTR gen time * Fixed bug causing crash * Further optimized OTRExporter, saving around ~20 seconds. * ZAPD is now multi-threaded. * Fixed merge issue * Fixed memory leak and fog issue on pause screen. * Additional fog fixes. Co-authored-by: Jack Walker <7463599+Jack-Walker@users.noreply.github.com>
41 lines
756 B
C++
41 lines
756 B
C++
#pragma once
|
|
|
|
#include <map>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class OutputFormatter
|
|
{
|
|
private:
|
|
const uint32_t tabSize;
|
|
const uint32_t lineLimit;
|
|
|
|
uint32_t col;
|
|
uint32_t nest;
|
|
uint32_t nestIndent[8];
|
|
uint32_t currentIndent;
|
|
uint32_t wordNests;
|
|
|
|
char word[128];
|
|
char space[128];
|
|
char* wordP;
|
|
char* spaceP;
|
|
|
|
std::string str;
|
|
|
|
void Flush();
|
|
|
|
static __declspec(thread) OutputFormatter* Instance;
|
|
static int WriteStatic(const char* buf, int count);
|
|
|
|
public:
|
|
OutputFormatter(uint32_t tabSize = 4, uint32_t indentation = 4, uint32_t lineLimit = 120);
|
|
|
|
int (*StaticWriter())(const char* buf, int count); // Must be `int` due to libgfxd
|
|
|
|
int Write(const char* buf, int count);
|
|
int Write(const std::string& buf);
|
|
|
|
std::string GetOutput();
|
|
};
|