mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
8d3585afe1
The bulk of the console is now free of game dependencies.
39 lines
680 B
C++
39 lines
680 B
C++
#pragma once
|
|
#include "zstring.h"
|
|
#include "tarray.h"
|
|
|
|
class FFont;
|
|
|
|
struct FNotifyText
|
|
{
|
|
int TimeOut;
|
|
int Ticker;
|
|
int PrintLevel;
|
|
FString Text;
|
|
};
|
|
|
|
class FNotifyBufferBase
|
|
{
|
|
public:
|
|
virtual ~FNotifyBufferBase() = default;
|
|
virtual void AddString(int printlevel, FString source) = 0;
|
|
virtual void Shift(int maxlines);
|
|
virtual void Clear();
|
|
virtual void Tick();
|
|
virtual void Draw() = 0;
|
|
|
|
protected:
|
|
TArray<FNotifyText> Text;
|
|
int Top = 0;
|
|
int TopGoal = 0;
|
|
int LineHeight = 0;
|
|
enum { NEWLINE, APPENDLINE, REPLACELINE } AddType = NEWLINE;
|
|
|
|
void AddString(int printlevel, FFont *printFont, const FString &source, int formatwidth, float keeptime, int maxlines);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|