mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-04 21:25:55 +00:00
73 lines
1.6 KiB
C++
73 lines
1.6 KiB
C++
#pragma once
|
|
|
|
#include "Vehicle.h"
|
|
|
|
enum ePlanePositions
|
|
{
|
|
PLANE_POS_LIGHT_LEFT,
|
|
PLANE_POS_LIGHT_RIGHT,
|
|
PLANE_POS_LIGHT_TAIL,
|
|
};
|
|
|
|
struct CPlaneNode
|
|
{
|
|
CVector p; // position
|
|
float t; // xy-distance from start on path
|
|
bool bOnGround; // i.e. not flying
|
|
};
|
|
|
|
struct CPlaneInterpolationLine
|
|
{
|
|
uint8 type;
|
|
float time; // when does this keyframe start
|
|
// initial values at start of frame
|
|
float position;
|
|
float speed;
|
|
float acceleration;
|
|
};
|
|
|
|
class CPlane : public CVehicle
|
|
{
|
|
public:
|
|
// 0x288
|
|
int16 m_nPlaneId;
|
|
int16 m_isFarAway;
|
|
int16 m_nCurPathNode;
|
|
char field_654;
|
|
char field_655;
|
|
float m_fSpeed;
|
|
uint32 m_nFrameWhenHit;
|
|
bool m_bHasBeenHit;
|
|
bool m_bIsDrugRunCesna;
|
|
bool m_bIsDropOffCesna;
|
|
|
|
CPlane(int32 id, uint8 CreatedBy);
|
|
~CPlane(void);
|
|
|
|
// from CEntity
|
|
void SetModelIndex(uint32 id);
|
|
void DeleteRwObject(void);
|
|
void ProcessControl(void);
|
|
void PreRender(void);
|
|
void Render(void);
|
|
void FlagToDestroyWhenNextProcessed() { bRemoveFromWorld = true; }
|
|
|
|
static void InitPlanes(void);
|
|
static void Shutdown(void);
|
|
static CPlaneNode *LoadPath(char const *filename, int32 &numNodes, float &totalLength, bool loop);
|
|
static void UpdatePlanes(void);
|
|
static bool TestRocketCollision(CVector *rocketPos);
|
|
static void CreateIncomingCesna(void);
|
|
static void CreateDropOffCesna(void);
|
|
static CVector FindDrugPlaneCoordinates(void);
|
|
static CVector FindDropOffCesnaCoordinates(void);
|
|
static bool HasCesnaLanded(void);
|
|
static bool HasCesnaBeenDestroyed(void);
|
|
static bool HasDropOffCesnaBeenShotDown(void);
|
|
};
|
|
static_assert(sizeof(CPlane) == 0x29C, "CPlane: error");
|
|
|
|
extern float &LandingPoint;
|
|
extern float &TakeOffPoint;
|
|
extern float *PlanePathPosition; //[3]
|