mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2023-12-30 21:52:56 +00:00
ea32c08c4f
It involves always on center post and never closing kicker gates. Issue #161.
73 lines
1.5 KiB
C++
73 lines
1.5 KiB
C++
#include "pch.h"
|
|
#include "TBlocker.h"
|
|
|
|
|
|
#include "control.h"
|
|
#include "loader.h"
|
|
#include "render.h"
|
|
#include "timer.h"
|
|
|
|
TBlocker::TBlocker(TPinballTable* table, int groupIndex) : TCollisionComponent(table, groupIndex, true)
|
|
{
|
|
visualStruct visual{};
|
|
|
|
loader::query_visual(groupIndex, 0, &visual);
|
|
SoundIndex4 = visual.SoundIndex4;
|
|
SoundIndex3 = visual.SoundIndex3;
|
|
InitialDuration = 55;
|
|
ExtendedDuration = 5;
|
|
Threshold = 1000000000.0f;
|
|
Timer = 0;
|
|
MessageField = 0;
|
|
ActiveFlag = 0;
|
|
SpriteSet(-1);
|
|
}
|
|
|
|
int TBlocker::Message(MessageCode code, float value)
|
|
{
|
|
switch (code)
|
|
{
|
|
case MessageCode::SetTiltLock:
|
|
case MessageCode::PlayerChanged:
|
|
case MessageCode::Reset:
|
|
case MessageCode::TBlockerDisable:
|
|
if (Timer)
|
|
{
|
|
timer::kill(Timer);
|
|
Timer = 0;
|
|
}
|
|
MessageField = 0;
|
|
ActiveFlag = 0;
|
|
SpriteSet(-1);
|
|
if (code == MessageCode::TBlockerDisable)
|
|
loader::play_sound(SoundIndex3, this, "TBlocker1");
|
|
break;
|
|
case MessageCode::TBlockerEnable:
|
|
ActiveFlag = 1;
|
|
loader::play_sound(SoundIndex4, this, "TBlocker2");
|
|
SpriteSet(0);
|
|
if (Timer)
|
|
timer::kill(Timer);
|
|
Timer = 0;
|
|
if (value >= 0)
|
|
Timer = timer::set(value, this, TimerExpired);
|
|
break;
|
|
case MessageCode::TBlockerRestartTimeout:
|
|
if (Timer)
|
|
timer::kill(Timer);
|
|
Timer = timer::set(std::max(value, 0.0f), this, TimerExpired);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void TBlocker::TimerExpired(int timerId, void* caller)
|
|
{
|
|
auto blocker = static_cast<TBlocker*>(caller);
|
|
blocker->Timer = 0;
|
|
control::handler(MessageCode::ControlTimerExpired, blocker);
|
|
}
|