mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2023-12-30 21:52:56 +00:00
81c2034a16
Fixed minor bug in TLightGroup. Cleaned up some warnings.
112 lines
2.5 KiB
C++
112 lines
2.5 KiB
C++
#include "pch.h"
|
|
#include "TCollisionComponent.h"
|
|
#include "loader.h"
|
|
#include "maths.h"
|
|
#include "TEdgeSegment.h"
|
|
#include "TPinballTable.h"
|
|
|
|
|
|
TCollisionComponent::TCollisionComponent(TPinballTable* table, int groupIndex, bool createWall) :
|
|
TPinballComponent(table, groupIndex, true)
|
|
{
|
|
visualStruct visual{};
|
|
|
|
ActiveFlag = 1;
|
|
if (GroupName != nullptr)
|
|
UnusedBaseFlag = 1;
|
|
if (groupIndex <= 0)
|
|
{
|
|
loader::default_vsi(&visual);
|
|
}
|
|
else
|
|
{
|
|
loader::query_visual(groupIndex, 0, &visual);
|
|
if (createWall)
|
|
{
|
|
float offset = table->CollisionCompOffset;
|
|
float* floatArr = loader::query_float_attribute(groupIndex, 0, 600);
|
|
TEdgeSegment::install_wall(floatArr, this, &ActiveFlag, visual.CollisionGroup, offset, 0);
|
|
}
|
|
}
|
|
|
|
Threshold = visual.Kicker.Threshold;
|
|
Elasticity = visual.Elasticity;
|
|
Smoothness = visual.Smoothness;
|
|
Boost = visual.Kicker.Boost;
|
|
HardHitSoundId = visual.Kicker.HardHitSoundId;
|
|
SoftHitSoundId = visual.SoftHitSoundId;
|
|
GroupIndex = groupIndex;
|
|
}
|
|
|
|
TCollisionComponent::~TCollisionComponent()
|
|
{
|
|
for (auto edge : EdgeList)
|
|
delete edge;
|
|
}
|
|
|
|
|
|
void TCollisionComponent::port_draw()
|
|
{
|
|
for (auto edge : EdgeList)
|
|
edge->port_draw();
|
|
}
|
|
|
|
int TCollisionComponent::DefaultCollision(TBall* ball, vector_type* nextPosition, vector_type* direction)
|
|
{
|
|
if (PinballTable->TiltLockFlag)
|
|
{
|
|
maths::basic_collision(ball, nextPosition, direction, Elasticity, Smoothness, 1000000000.0, 0.0);
|
|
return 0;
|
|
}
|
|
auto projSpeed = maths::basic_collision(ball, nextPosition, direction, Elasticity, Smoothness, Threshold, Boost);
|
|
if (projSpeed <= Threshold)
|
|
{
|
|
if (projSpeed > 0.2f)
|
|
{
|
|
if (SoftHitSoundId)
|
|
loader::play_sound(SoftHitSoundId);
|
|
}
|
|
return 0;
|
|
}
|
|
if (HardHitSoundId)
|
|
loader::play_sound(HardHitSoundId);
|
|
return 1;
|
|
}
|
|
|
|
void TCollisionComponent::Collision(TBall* ball, vector_type* nextPosition, vector_type* direction,
|
|
float coef, TEdgeSegment* edge)
|
|
{
|
|
int soundIndex;
|
|
|
|
if (PinballTable->TiltLockFlag)
|
|
{
|
|
maths::basic_collision(ball, nextPosition, direction, Elasticity, Smoothness, 1000000000.0, 0.0);
|
|
return;
|
|
}
|
|
auto projSpeed = maths::basic_collision(
|
|
ball,
|
|
nextPosition,
|
|
direction,
|
|
Elasticity,
|
|
Smoothness,
|
|
Threshold,
|
|
Boost);
|
|
if (projSpeed <= Threshold)
|
|
{
|
|
if (projSpeed <= 0.2f)
|
|
return;
|
|
soundIndex = SoftHitSoundId;
|
|
}
|
|
else
|
|
{
|
|
soundIndex = HardHitSoundId;
|
|
}
|
|
if (soundIndex)
|
|
loader::play_sound(soundIndex);
|
|
}
|
|
|
|
int TCollisionComponent::FieldEffect(TBall* ball, vector_type* vecDst)
|
|
{
|
|
return 0;
|
|
}
|