2020-11-01 15:45:29 +00:00
|
|
|
#include "pch.h"
|
|
|
|
#include "TBall.h"
|
2020-12-27 15:19:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
#include "loader.h"
|
|
|
|
#include "maths.h"
|
|
|
|
#include "objlist_class.h"
|
|
|
|
#include "proj.h"
|
|
|
|
#include "render.h"
|
|
|
|
#include "TPinballTable.h"
|
|
|
|
#include "TZmapList.h"
|
|
|
|
|
|
|
|
TBall::TBall(TPinballTable* table) : TPinballComponent(table, -1, false)
|
|
|
|
{
|
|
|
|
visualStruct visual{};
|
|
|
|
|
2021-01-06 14:06:13 +00:00
|
|
|
TimeNow = 0.0;
|
|
|
|
RayMaxDistance = 0.0;
|
2020-12-27 15:19:36 +00:00
|
|
|
UnknownBaseFlag2 = 1;
|
2021-01-06 14:06:13 +00:00
|
|
|
CollisionComp = nullptr;
|
2020-12-27 15:19:36 +00:00
|
|
|
EdgeCollisionCount = 0;
|
2021-01-06 14:06:13 +00:00
|
|
|
TimeDelta = 0.0;
|
2021-01-07 16:00:38 +00:00
|
|
|
FieldFlag = 1;
|
2020-12-27 15:19:36 +00:00
|
|
|
CollisionFlag = 0;
|
|
|
|
Speed = 0.0;
|
|
|
|
Acceleration.Y = 0.0;
|
|
|
|
Acceleration.X = 0.0;
|
|
|
|
InvAcceleration.Y = 1000000000.0;
|
|
|
|
InvAcceleration.X = 1000000000.0;
|
|
|
|
Position.X = 0.0;
|
|
|
|
Position.Y = 0.0;
|
|
|
|
|
|
|
|
ListBitmap = new TZmapList(0, 4);
|
|
|
|
auto groupIndex = loader::query_handle("ball");
|
|
|
|
Offset = *loader::query_float_attribute(groupIndex, 0, 500);
|
|
|
|
auto visualCount = loader::query_visual_states(groupIndex);
|
|
|
|
auto index = 0;
|
|
|
|
if (visualCount > 0)
|
|
|
|
{
|
|
|
|
auto visualZPtr = VisualZArray;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
loader::query_visual(groupIndex, index, &visual);
|
|
|
|
if (ListBitmap)
|
|
|
|
ListBitmap->Add(visual.Bitmap);
|
|
|
|
auto visVec = reinterpret_cast<vector_type*>(loader::query_float_attribute(groupIndex, index, 501));
|
|
|
|
auto zDepth = proj::z_distance(visVec);
|
|
|
|
++index;
|
|
|
|
*visualZPtr = zDepth;
|
|
|
|
++visualZPtr;
|
|
|
|
}
|
|
|
|
while (index < visualCount);
|
|
|
|
}
|
|
|
|
RenderSprite = render::create_sprite(VisualType::Ball, nullptr, nullptr, 0, 0, nullptr);
|
|
|
|
PinballTable->CollisionCompOffset = Offset;
|
|
|
|
Position.Z = Offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TBall::Repaint()
|
|
|
|
{
|
|
|
|
int pos2D[2];
|
|
|
|
|
|
|
|
if (CollisionFlag)
|
|
|
|
{
|
|
|
|
Position.Z =
|
|
|
|
CollisionOffset.X * Position.X +
|
|
|
|
CollisionOffset.Y * Position.Y +
|
|
|
|
Offset + CollisionOffset.Z;
|
|
|
|
}
|
|
|
|
|
|
|
|
proj::xform_to_2d(&Position, pos2D);
|
|
|
|
auto zDepth = proj::z_distance(&Position);
|
|
|
|
|
|
|
|
auto zArrPtr = VisualZArray;
|
|
|
|
int index;
|
|
|
|
for (index = 0; index < ListBitmap->Count() - 1; ++index, zArrPtr++)
|
|
|
|
{
|
|
|
|
if (*zArrPtr <= zDepth) break;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto bmp = static_cast<gdrv_bitmap8*>(ListBitmap->Get(index));
|
|
|
|
render::ball_set(
|
|
|
|
RenderSprite,
|
|
|
|
bmp,
|
|
|
|
zDepth,
|
2021-01-07 16:00:38 +00:00
|
|
|
pos2D[0] - bmp->Width / 2,
|
|
|
|
pos2D[1] - bmp->Height / 2);
|
2020-12-27 15:19:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TBall::not_again(TEdgeSegment* edge)
|
|
|
|
{
|
|
|
|
if (EdgeCollisionCount < 5)
|
|
|
|
{
|
|
|
|
Collisions[EdgeCollisionCount] = edge;
|
|
|
|
++EdgeCollisionCount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TBall::already_hit(TEdgeSegment* edge)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < EdgeCollisionCount; i++)
|
|
|
|
{
|
|
|
|
if (Collisions[i] == edge)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int TBall::Message(int code, float value)
|
|
|
|
{
|
|
|
|
if (code == 1024)
|
|
|
|
{
|
|
|
|
render::ball_set(RenderSprite, nullptr, 0.0, 0, 0);
|
|
|
|
Position.X = 0.0;
|
2021-01-06 14:06:13 +00:00
|
|
|
CollisionComp = nullptr;
|
2020-12-27 15:19:36 +00:00
|
|
|
Position.Y = 0.0;
|
|
|
|
UnknownBaseFlag2 = 0;
|
|
|
|
CollisionFlag = 0;
|
2021-01-07 16:00:38 +00:00
|
|
|
FieldFlag = 1;
|
2020-12-27 15:19:36 +00:00
|
|
|
Acceleration.Y = 0.0;
|
|
|
|
Position.Z = Offset;
|
|
|
|
Acceleration.X = 0.0;
|
|
|
|
Speed = 0.0;
|
2021-01-06 14:06:13 +00:00
|
|
|
RayMaxDistance = 0.0;
|
2020-12-27 15:19:36 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2021-01-17 15:26:03 +00:00
|
|
|
|
|
|
|
void TBall::throw_ball(TBall* ball, vector_type* acceleration, float angleMult, float speedMult1, float speedMult2)
|
|
|
|
{
|
|
|
|
ball->CollisionComp = nullptr;
|
|
|
|
ball->Acceleration = *acceleration;
|
|
|
|
float rnd = static_cast<float>(rand());
|
|
|
|
float angle = (1.0f - (rnd * 0.00003051850947599719f + rnd * 0.00003051850947599719f)) * angleMult;
|
|
|
|
maths::RotateVector(&ball->Acceleration, angle);
|
|
|
|
rnd = static_cast<float>(rand());
|
|
|
|
ball->Speed = (1.0f - (rnd * 0.00003051850947599719f + rnd * 0.00003051850947599719f)) * (speedMult1 *
|
|
|
|
speedMult2) + speedMult1;
|
|
|
|
}
|