1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-18 13:13:13 +00:00
re3/src/control/Script.h

158 lines
2.9 KiB
C
Raw Normal View History

2019-06-12 11:46:02 +00:00
#pragma once
2019-07-03 22:16:24 +00:00
#include "Ped.h"
#include "Object.h"
2019-06-14 23:34:19 +00:00
#include "Sprite2d.h"
2019-07-03 22:16:24 +00:00
#include "Vehicle.h"
2019-06-14 23:34:19 +00:00
struct CScriptRectangle
{
2019-06-16 22:16:38 +00:00
bool m_bIsUsed;
bool m_bIsAntialiased;
2019-06-14 23:34:19 +00:00
uint16 m_wTextureId;
CRect m_sRect;
CRGBA m_sColor;
};
struct CTextLine
{
2019-06-16 22:16:38 +00:00
float m_fScaleX;
float m_fScaleY;
2019-06-14 23:34:19 +00:00
CRGBA m_sColor;
2019-06-16 22:16:38 +00:00
bool m_bJustify;
bool m_bCentered;
bool m_bBackground;
bool m_bBackgroundOnly;
float m_fWrapX;
float m_fCenterSize;
2019-06-14 23:34:19 +00:00
CRGBA m_sBackgroundColor;
2019-06-16 22:16:38 +00:00
bool m_bTextProportional;
2019-06-14 23:34:19 +00:00
int32 field_29;
2019-06-16 22:16:38 +00:00
bool m_bRightJustify;
2019-06-14 23:34:19 +00:00
int32 field_31;
int32 m_nFont;
2019-06-16 22:16:38 +00:00
float field_36;
float field_40;
2019-06-14 23:34:19 +00:00
wchar m_awText[500];
};
2019-06-12 11:46:02 +00:00
2019-07-03 22:16:24 +00:00
struct CRunningScript
{
CRunningScript *next;
CRunningScript *prev;
uint8 m_abScriptName[8];
uint32 m_nIp;
uint32 m_anStack[6];
uint16 m_nStackPointer;
void* m_anLocalVariables[18];
bool m_bCondResult;
bool m_bIsMissionThread;
bool m_bSkipWakeTime;
uint32 m_nWakeTime;
uint16 m_wIfOp;
bool m_bNotFlag;
bool m_bWBCheck;
bool m_bWastedOrBusted;
bool m_bMissionFlag;
};
enum {
CLEANUP_UNUSED = 0,
CLEANUP_CAR,
CLEANUP_CHAR,
CLEANUP_OBJECT
};
struct CMissionCleanupEntity
{
uint8 type;
int32 id;
};
enum {
MAX_CLEANUP = 50,
MAX_UPSIDEDOWN_CAR_CHECKS = 6,
MAX_STUCK_CAR_CHECKS = 6
};
class CMissionCleanup
{
CMissionCleanupEntity m_sEntities[MAX_CLEANUP];
uint8 m_bCount;
public:
CMissionCleanup();
void Init();
CMissionCleanupEntity* FindFree();
void AddEntityToList(int32, uint8);
void RemoveEntityFromList(int32, uint8);
void Process();
};
struct CUpsideDownCarCheckEntry
{
int32 m_nVehicleIndex;
uint32 m_nUpsideDownTimer;
};
class CUpsideDownCarCheck
{
CUpsideDownCarCheckEntry m_sCars[MAX_UPSIDEDOWN_CAR_CHECKS];
public:
void Init();
bool IsCarUpsideDown(int32);
void UpdateTimers();
bool AreAnyCarsUpsideDown();
void AddCarToCheck(int32);
void RemoveCarFromCheck(int32);
bool HasCarBeenUpsideDownForAWhile(int32);
2019-07-03 22:16:24 +00:00
};
struct CStuckCarCheckEntry
{
int32 m_nVehicleIndex;
CVector m_vecPos;
int32 m_nLastCheck;
float m_fRadius;
2019-07-03 22:16:24 +00:00
uint32 m_nStuckTime;
bool m_bStuck;
inline void Reset();
2019-07-03 22:16:24 +00:00
};
class CStuckCarCheck
{
CStuckCarCheckEntry m_sCars[MAX_STUCK_CAR_CHECKS];
public:
void Init();
void Process();
void AddCarToCheck(int32, float, uint32);
void RemoveCarFromCheck(int32);
bool HasCarBeenStuckForAWhile(int32);
2019-07-03 22:16:24 +00:00
};
2019-06-12 11:46:02 +00:00
class CTheScripts
{
public:
2019-07-03 22:16:24 +00:00
static uint8(&ScriptSpace)[160 * 1024];
static CTextLine(&IntroTextLines)[2];
static CScriptRectangle(&IntroRectangles)[16];
static CSprite2d(&ScriptSprites)[16];
static bool &DbgFlag;
static uint32 &OnAMissionFlag;
static CMissionCleanup &MissionCleanup;
static CStuckCarCheck &StuckCars;
static CUpsideDownCarCheck &UpsideDownCars;
static int32 &StoreVehicleIndex;
static bool &StoreVehicleWasRandom;
public:
static bool IsPlayerOnAMission();
2019-06-20 09:20:52 +00:00
static void ScriptDebugLine3D(float x1, float y1, float z1, float x2, float y2, float z2, int col, int col2);
2019-07-03 22:16:24 +00:00
static void CleanUpThisVehicle(CVehicle*);
static void CleanUpThisPed(CPed*);
static void CleanUpThisObject(CObject*);
2019-06-12 11:46:02 +00:00
};