mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-11-17 15:20:17 +01:00
41 lines
765 B
C++
41 lines
765 B
C++
#include "pch.h"
|
|
#include "TTimer.h"
|
|
|
|
#include "control.h"
|
|
#include "timer.h"
|
|
|
|
TTimer::TTimer(TPinballTable* table, int groupIndex) : TPinballComponent(table, groupIndex, true)
|
|
{
|
|
Timer = 0;
|
|
}
|
|
|
|
int TTimer::Message(MessageCode code, float value)
|
|
{
|
|
switch (code)
|
|
{
|
|
case MessageCode::TTimerResetTimer:
|
|
if (Timer)
|
|
timer::kill(Timer);
|
|
Timer = timer::set(value, this, TimerExpired);
|
|
break;
|
|
case MessageCode::SetTiltLock:
|
|
case MessageCode::GameOver:
|
|
case MessageCode::Reset:
|
|
if (Timer)
|
|
{
|
|
timer::kill(Timer);
|
|
Timer = 0;
|
|
}
|
|
break;
|
|
default: break;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|
|
void TTimer::TimerExpired(int timerId, void* caller)
|
|
{
|
|
auto timer = static_cast<TTimer*>(caller);
|
|
timer->Timer = 0;
|
|
control::handler(MessageCode::ControlTimerExpired, timer);
|
|
}
|