mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2024-11-22 03:55:21 +00:00
38 lines
694 B
C++
38 lines
694 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* Message1;
|
|
TTextBoxMessage* Message2;
|
|
|
|
TTextBox(TPinballTable* table, int groupIndex);
|
|
~TTextBox() override;
|
|
int Message(int code, float value) override;
|
|
void Clear();
|
|
void Display(const char* text, float time);
|
|
|
|
private:
|
|
struct LayoutResult
|
|
{
|
|
char *Start, *End;
|
|
int Width;
|
|
};
|
|
|
|
static void TimerExpired(int timerId, void* caller);
|
|
|
|
void Draw();
|
|
LayoutResult LayoutTextLine(char* textStart) const;
|
|
};
|