diff options
author | Sergeanur <s.anureev@yandex.ua> | 2021-07-18 00:05:51 +0300 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2021-07-18 00:05:51 +0300 |
commit | 7a034142c99e577b0339aefd9599cb7f373c495e (patch) | |
tree | 722b1946daf2b24374c7fcfab0face06af5eefba /src/renderer/Console.h | |
parent | ec5a07b049ac8ca05c051aa22a16186a298adadf (diff) | |
parent | c937bdbfea8f522d14d7a41f24372bddf5bdafcc (diff) |
Merge branch 'miami' into lcs
# Conflicts:
# premake5.lua
Diffstat (limited to 'src/renderer/Console.h')
-rw-r--r-- | src/renderer/Console.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/renderer/Console.h b/src/renderer/Console.h new file mode 100644 index 00000000..9f22236f --- /dev/null +++ b/src/renderer/Console.h @@ -0,0 +1,27 @@ +#pragma once + +class CConsole +{ + enum + { + MAX_LINES = 8, // BUG? only shows 7 + MAX_STR_LEN = 40, + }; + + uint8 m_nLineCount; + uint8 m_nCurrentLine; + wchar Buffers[MAX_LINES][MAX_STR_LEN]; + uint32 m_aTimer[MAX_LINES]; + uint8 m_aRed[MAX_LINES]; + uint8 m_aGreen[MAX_LINES]; + uint8 m_aBlue[MAX_LINES]; +public: + void AddLine(char *s, uint8 r, uint8 g, uint8 b); + void AddOneLine(char *s, uint8 r, uint8 g, uint8 b); + void Display(); + void Init() { m_nCurrentLine = 0; m_nLineCount = 0; } +}; + +extern CConsole TheConsole; + +void cprintf(char*, ...);
\ No newline at end of file |