SpaceCadetPinball/SpaceCadetPinball/maths.h

100 lines
2.5 KiB
C
Raw Normal View History

2020-11-08 16:37:59 +01:00
#pragma once
class TBall;
2020-11-21 16:14:40 +01:00
struct vector_type
{
float X;
float Y;
float Z;
2020-11-21 16:14:40 +01:00
};
2020-11-08 16:37:59 +01:00
2020-11-15 15:39:00 +01:00
struct __declspec(align(4)) rectangle_type
2020-11-08 16:37:59 +01:00
{
int XPosition;
int YPosition;
int Width;
int Height;
};
2020-11-21 16:14:40 +01:00
struct circle_type
{
vector_type Center;
2020-11-21 16:14:40 +01:00
float RadiusSq;
};
struct __declspec(align(4)) ray_type
{
vector_type Origin;
vector_type Direction;
float MaxDistance;
float MinDistance;
float TimeNow;
float TimeDelta;
2021-01-07 17:00:38 +01:00
int FieldFlag;
2020-11-21 16:14:40 +01:00
};
struct __declspec(align(4)) line_type
{
vector_type PerpendicularL;
vector_type Direction;
float PreComp1;
float OriginX;
float OriginY;
vector_type RayIntersect;
2020-11-21 16:14:40 +01:00
};
2021-01-18 16:30:19 +01:00
struct vector_type2
{
2021-01-19 16:28:48 +01:00
float X;
float Y;
2021-01-18 16:30:19 +01:00
};
struct wall_point_type
{
float X0;
float Y0;
float X1;
float Y1;
};
struct __declspec(align(4)) ramp_plane_type
{
2021-01-19 16:28:48 +01:00
vector_type BallCollisionOffset;
2021-01-18 16:30:19 +01:00
vector_type2 V1;
vector_type2 V2;
vector_type2 V3;
float GravityAngle1;
float GravityAngle2;
2021-01-19 16:28:48 +01:00
vector_type2 FieldForce;
2021-01-18 16:30:19 +01:00
};
2020-11-21 16:14:40 +01:00
2020-11-08 16:37:59 +01:00
class maths
{
public:
2020-11-15 15:39:00 +01:00
static void enclosing_box(rectangle_type* rect1, rectangle_type* rect2, rectangle_type* dstRect);
static int rectangle_clip(rectangle_type* rect1, rectangle_type* rect2, rectangle_type* dstRect);
static int overlapping_box(rectangle_type* rect1, rectangle_type* rect2, rectangle_type* dstRect);
2020-11-21 16:14:40 +01:00
static float ray_intersect_circle(ray_type* ray, circle_type* circle);
static float normalize_2d(vector_type* vec);
static void line_init(line_type* line, float x0, float y0, float x1, float y1);
static float ray_intersect_line(ray_type* ray, line_type* line);
static void cross(vector_type* vec1, vector_type* vec2, vector_type* dstVec);
static float magnitude(vector_type* vec);
static void vector_add(vector_type* vec1Dst, vector_type* vec2);
static float basic_collision(TBall* ball, vector_type* nextPosition, vector_type* direction, float a4, float a5,
float maxSpeed, float multiplier);
static float Distance_Squared(vector_type vec1, vector_type vec2);
2021-01-09 17:11:03 +01:00
static float DotProduct(vector_type* vec1, vector_type* vec2);
static void vswap(vector_type* vec1, vector_type* vec2);
static float Distance(vector_type* vec1, vector_type* vec2);
static void SinCos(float angle, float* sinOut, float* cosOut);
static void RotatePt(vector_type* point, float sin, float cos, vector_type* origin);
static float distance_to_flipper(ray_type* ray1, ray_type* ray2);
static void RotateVector(vector_type* vec, float angle);
2021-01-18 16:30:19 +01:00
static void find_closest_edge(ramp_plane_type* plane, int planeCount, wall_point_type* wall, vector_type** lineEnd,
vector_type** lineStart);
2020-11-08 16:37:59 +01:00
};