mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-10 17:00:19 +00:00
* Updated config file * Added missing files * Temporarily removed asm_processor changes. * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "96ffc1e62" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "96ffc1e62" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "179af7d11" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "179af7d11" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * Cleanup and fixes. * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "50ad2fe78" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "50ad2fe78" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * Makefile fix * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "b9120803e" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "b9120803e" git-subrepo: version: "0.4.3" origin: "???" commit: "???" Co-authored-by: Jack Walker <7463599+Jack-Walker@users.noreply.github.com>
41 lines
No EOL
769 B
C++
41 lines
No EOL
769 B
C++
#pragma once
|
|
|
|
#include <map>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class OutputFormatter
|
|
{
|
|
private:
|
|
const uint32_t tabSize;
|
|
const uint32_t defaultIndent;
|
|
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 OutputFormatter* Instance;
|
|
static int WriteStatic(const char* buf, int count);
|
|
|
|
public:
|
|
OutputFormatter(uint32_t tabSize = 4, uint32_t defaultIndent = 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();
|
|
}; |