mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-11-17 15:20:17 +01:00
46 lines
1 KiB
C++
46 lines
1 KiB
C++
#pragma once
|
|
#include "TPinballComponent.h"
|
|
|
|
struct TLight_player_backup
|
|
{
|
|
int MessageField;
|
|
bool LightOnFlag;
|
|
int LightOnBmpIndex;
|
|
bool FlasherOnFlag;
|
|
};
|
|
|
|
|
|
class TLight :
|
|
public TPinballComponent
|
|
{
|
|
public:
|
|
TLight(TPinballTable* table, int groupIndex);
|
|
int Message(MessageCode code, float value) override;
|
|
void Reset();
|
|
void schedule_timeout(float time);
|
|
void flasher_stop(int bmpIndex);
|
|
void flasher_start(bool bmpIndex);
|
|
void SetSpriteBmp(int index);
|
|
bool light_on() const;
|
|
|
|
static void TimerExpired(int timerId, void* caller);
|
|
static void flasher_callback(int timerId, void* caller);
|
|
static void UndoTmpOverride(int timerId, void* caller);
|
|
|
|
int BmpArr[2]{-1};
|
|
float FlashDelay[2]{};
|
|
int FlashTimer;
|
|
bool FlashLightOnFlag{};
|
|
bool LightOnFlag{};
|
|
bool FlasherOnFlag;
|
|
bool ToggledOffFlag{};
|
|
bool ToggledOnFlag{};
|
|
bool TurnOffAfterFlashingFg{};
|
|
int LightOnBmpIndex{};
|
|
float SourceDelay[2]{};
|
|
int TimeoutTimer;
|
|
int UndoOverrideTimer;
|
|
bool TemporaryOverrideFlag{};
|
|
int PreviousBitmap = -1;
|
|
TLight_player_backup PlayerData[4]{};
|
|
};
|