mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2023-12-30 21:52:56 +00:00
39 lines
734 B
C++
39 lines
734 B
C++
#pragma once
|
|
#include "score.h"
|
|
#include "TPinballComponent.h"
|
|
#include "TTextBoxMessage.h"
|
|
|
|
class TTextBox :
|
|
public TPinballComponent
|
|
{
|
|
public:
|
|
int OffsetX;
|
|
int OffsetY;
|
|
int Width;
|
|
int Height;
|
|
int Timer;
|
|
gdrv_bitmap8* BgBmp;
|
|
score_msg_font_type* Font;
|
|
TTextBoxMessage* CurrentMessage;
|
|
TTextBoxMessage* PreviousMessage;
|
|
|
|
TTextBox(TPinballTable* table, int groupIndex);
|
|
~TTextBox() override;
|
|
int Message(MessageCode code, float value) override;
|
|
void Clear();
|
|
void Display(const char* text, float time);
|
|
void DrawImGui();
|
|
|
|
private:
|
|
struct LayoutResult
|
|
{
|
|
char *Start, *End;
|
|
int Width;
|
|
};
|
|
|
|
static void TimerExpired(int timerId, void* caller);
|
|
|
|
void Draw();
|
|
LayoutResult LayoutTextLine(char* textStart) const;
|
|
};
|