mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2024-11-22 03:55:21 +00:00
30 lines
748 B
C++
30 lines
748 B
C++
#pragma once
|
|
#include "maths.h"
|
|
#include "TCollisionComponent.h"
|
|
|
|
class TSink :
|
|
public TCollisionComponent
|
|
{
|
|
public:
|
|
TSink(TPinballTable* table, int groupIndex);
|
|
int Message(int code, float value) override;
|
|
void put_scoring(int index, int score) override;
|
|
int get_scoring(int index) override;
|
|
void Collision(TBall* ball, vector_type* nextPosition, vector_type* direction, float coef,
|
|
TEdgeSegment* edge) override;
|
|
|
|
static void TimerExpired(int timerId, void* caller);
|
|
|
|
int Timer;
|
|
float TimerTime;
|
|
vector_type BallPosition{};
|
|
vector_type BallAcceleration{};
|
|
float ThrowAngleMult;
|
|
float ThrowSpeedMult1;
|
|
float ThrowSpeedMult2;
|
|
int SoundIndex4;
|
|
int SoundIndex3;
|
|
int Scores[3]{};
|
|
int PlayerMessagefieldBackup[4]{};
|
|
};
|