mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-30 04:54:15 +01:00
commit
568b3de9cc
@ -72,8 +72,8 @@ public:
|
|||||||
int8 m_nPreviousDirection;
|
int8 m_nPreviousDirection;
|
||||||
int8 m_nCurrentDirecton;
|
int8 m_nCurrentDirecton;
|
||||||
int8 m_nNextDirection;
|
int8 m_nNextDirection;
|
||||||
int8 m_nPreviousPathDirection;
|
int8 m_nPreviousLane;
|
||||||
int8 m_nCurrentPathDirection;
|
int8 m_nCurrentLane;
|
||||||
eCarDrivingStyle m_nDrivingStyle;
|
eCarDrivingStyle m_nDrivingStyle;
|
||||||
eCarMission m_nCarMission;
|
eCarMission m_nCarMission;
|
||||||
eCarTempAction m_nAnimationId;
|
eCarTempAction m_nAnimationId;
|
||||||
@ -101,8 +101,7 @@ public:
|
|||||||
m_nCurrentPathNodeInfo = m_nNextPathNodeInfo;
|
m_nCurrentPathNodeInfo = m_nNextPathNodeInfo;
|
||||||
m_nNextDirection = 1;
|
m_nNextDirection = 1;
|
||||||
m_nCurrentDirecton = m_nNextDirection;
|
m_nCurrentDirecton = m_nNextDirection;
|
||||||
m_nCurrentPathDirection = 0;
|
m_nPreviousLane = m_nCurrentLane = 0;
|
||||||
m_nPreviousPathDirection = m_nCurrentPathDirection;
|
|
||||||
m_nDrivingStyle = DRIVINGSTYLE_STOP_FOR_CARS;
|
m_nDrivingStyle = DRIVINGSTYLE_STOP_FOR_CARS;
|
||||||
m_nCarMission = MISSION_NONE;
|
m_nCarMission = MISSION_NONE;
|
||||||
m_nAnimationId = TEMPACT_NONE;
|
m_nAnimationId = TEMPACT_NONE;
|
||||||
|
@ -12,3 +12,5 @@ WRAPPER void CCarCtrl::SwitchVehicleToRealPhysics(CVehicle*) { EAXJMP(0x41F7F0);
|
|||||||
WRAPPER void CCarCtrl::AddToCarArray(int32 id, int32 vehclass) { EAXJMP(0x4182F0); }
|
WRAPPER void CCarCtrl::AddToCarArray(int32 id, int32 vehclass) { EAXJMP(0x4182F0); }
|
||||||
WRAPPER void CCarCtrl::UpdateCarCount(CVehicle*, bool) { EAXJMP(0x4202E0); }
|
WRAPPER void CCarCtrl::UpdateCarCount(CVehicle*, bool) { EAXJMP(0x4202E0); }
|
||||||
WRAPPER int32 CCarCtrl::ChooseCarModel(int32 vehclass) { EAXJMP(0x418110); }
|
WRAPPER int32 CCarCtrl::ChooseCarModel(int32 vehclass) { EAXJMP(0x418110); }
|
||||||
|
WRAPPER bool CCarCtrl::JoinCarWithRoadSystemGotoCoors(CVehicle*, CVector, bool) { EAXJMP(0x41FA00); }
|
||||||
|
WRAPPER void CCarCtrl::JoinCarWithRoadSystem(CVehicle*) { EAXJMP(0x41F820); }
|
||||||
|
@ -9,6 +9,8 @@ public:
|
|||||||
static void AddToCarArray(int32 id, int32 vehclass);
|
static void AddToCarArray(int32 id, int32 vehclass);
|
||||||
static void UpdateCarCount(CVehicle*, bool);
|
static void UpdateCarCount(CVehicle*, bool);
|
||||||
static int32 ChooseCarModel(int32 vehclass);
|
static int32 ChooseCarModel(int32 vehclass);
|
||||||
|
static bool JoinCarWithRoadSystemGotoCoors(CVehicle*, CVector, bool);
|
||||||
|
static void JoinCarWithRoadSystem(CVehicle*);
|
||||||
|
|
||||||
static int32 &NumLawEnforcerCars;
|
static int32 &NumLawEnforcerCars;
|
||||||
static int32 &NumAmbulancesOnDuty;
|
static int32 &NumAmbulancesOnDuty;
|
||||||
|
@ -7,6 +7,7 @@ PedGroup *CPopulation::ms_pPedGroups = (PedGroup*)0x6E9248;
|
|||||||
bool &CPopulation::ms_bGivePedsWeapons = *(bool*)0x95CCF6;
|
bool &CPopulation::ms_bGivePedsWeapons = *(bool*)0x95CCF6;
|
||||||
int32 &CPopulation::m_AllRandomPedsThisType = *(int32*)0x5FA570;
|
int32 &CPopulation::m_AllRandomPedsThisType = *(int32*)0x5FA570;
|
||||||
float &CPopulation::PedDensityMultiplier = *(float*)0x5FA56C;
|
float &CPopulation::PedDensityMultiplier = *(float*)0x5FA56C;
|
||||||
|
uint32 &CPopulation::ms_nTotalMissionPeds = *(uint32*)0x8F5F70;
|
||||||
|
|
||||||
WRAPPER void CPopulation::UpdatePedCount(uint32, bool) { EAXJMP(0x4F5A60); }
|
WRAPPER void CPopulation::UpdatePedCount(uint32, bool) { EAXJMP(0x4F5A60); }
|
||||||
WRAPPER void CPopulation::DealWithZoneChange(eLevelName oldLevel, eLevelName newLevel, bool) { EAXJMP(0x4F6200); }
|
WRAPPER void CPopulation::DealWithZoneChange(eLevelName oldLevel, eLevelName newLevel, bool) { EAXJMP(0x4F6200); }
|
||||||
|
@ -15,6 +15,7 @@ public:
|
|||||||
static bool &ms_bGivePedsWeapons;
|
static bool &ms_bGivePedsWeapons;
|
||||||
static int32 &m_AllRandomPedsThisType;
|
static int32 &m_AllRandomPedsThisType;
|
||||||
static float &PedDensityMultiplier;
|
static float &PedDensityMultiplier;
|
||||||
|
static uint32 &ms_nTotalMissionPeds;
|
||||||
|
|
||||||
static void UpdatePedCount(uint32, bool);
|
static void UpdatePedCount(uint32, bool);
|
||||||
static void DealWithZoneChange(eLevelName oldLevel, eLevelName newLevel, bool);
|
static void DealWithZoneChange(eLevelName oldLevel, eLevelName newLevel, bool);
|
||||||
|
@ -4,10 +4,17 @@
|
|||||||
#include "Script.h"
|
#include "Script.h"
|
||||||
#include "ScriptCommands.h"
|
#include "ScriptCommands.h"
|
||||||
|
|
||||||
|
#include "Boat.h"
|
||||||
#include "Camera.h"
|
#include "Camera.h"
|
||||||
#include "CarCtrl.h"
|
#include "CarCtrl.h"
|
||||||
|
#include "CivilianPed.h"
|
||||||
|
#include "Clock.h"
|
||||||
|
#include "CopPed.h"
|
||||||
#include "DMAudio.h"
|
#include "DMAudio.h"
|
||||||
|
#include "EmergencyPed.h"
|
||||||
#include "FileMgr.h"
|
#include "FileMgr.h"
|
||||||
|
#include "General.h"
|
||||||
|
#include "HandlingMgr.h"
|
||||||
#include "Hud.h"
|
#include "Hud.h"
|
||||||
#include "Messages.h"
|
#include "Messages.h"
|
||||||
#include "ModelIndices.h"
|
#include "ModelIndices.h"
|
||||||
@ -18,9 +25,11 @@
|
|||||||
#include "Population.h"
|
#include "Population.h"
|
||||||
#include "Replay.h"
|
#include "Replay.h"
|
||||||
#include "Streaming.h"
|
#include "Streaming.h"
|
||||||
|
#include "Text.h"
|
||||||
#include "User.h"
|
#include "User.h"
|
||||||
#include "Weather.h"
|
#include "Weather.h"
|
||||||
#include "World.h"
|
#include "World.h"
|
||||||
|
#include "Zones.h"
|
||||||
|
|
||||||
uint8 (&CTheScripts::ScriptSpace)[SIZE_SCRIPT_SPACE] = *(uint8(*)[SIZE_SCRIPT_SPACE])*(uintptr*)0x74B248;
|
uint8 (&CTheScripts::ScriptSpace)[SIZE_SCRIPT_SPACE] = *(uint8(*)[SIZE_SCRIPT_SPACE])*(uintptr*)0x74B248;
|
||||||
CRunningScript(&CTheScripts::ScriptsArray)[MAX_NUM_SCRIPTS] = *(CRunningScript(*)[MAX_NUM_SCRIPTS])*(uintptr*)0x6F5C08;
|
CRunningScript(&CTheScripts::ScriptsArray)[MAX_NUM_SCRIPTS] = *(CRunningScript(*)[MAX_NUM_SCRIPTS])*(uintptr*)0x6F5C08;
|
||||||
@ -1342,6 +1351,7 @@ int8 CRunningScript::ProcessCommandsFrom0To99(int32 command)
|
|||||||
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL) -= *(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL) -= *(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
return 0;
|
return 0;
|
||||||
default:
|
default:
|
||||||
|
assert(0);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return -1;
|
return -1;
|
||||||
@ -1374,7 +1384,813 @@ void CRunningScript::UpdateCompareFlag(bool flag)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
WRAPPER int8 CRunningScript::ProcessCommandsFrom100To199(int32 command) { EAXJMP(0x43AEA0); }
|
int8 CRunningScript::ProcessCommandsFrom100To199(int32 command)
|
||||||
|
{
|
||||||
|
switch (command) {
|
||||||
|
case COMMAND_SUB_INT_LVAR_FROM_INT_VAR:
|
||||||
|
*GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL) -= *GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_SUB_INT_VAR_FROM_INT_LVAR:
|
||||||
|
*GetPointerToScriptVariable(&m_nIp, VAR_LOCAL) -= *GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_SUB_FLOAT_LVAR_FROM_FLOAT_VAR:
|
||||||
|
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL) -= *(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_SUB_FLOAT_VAR_FROM_FLOAT_LVAR:
|
||||||
|
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL) -= *(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_MULT_INT_VAR_BY_INT_VAR:
|
||||||
|
*GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL) *= *GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_MULT_INT_LVAR_BY_INT_VAR:
|
||||||
|
*GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL) *= *GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_MULT_INT_VAR_BY_INT_LVAR:
|
||||||
|
*GetPointerToScriptVariable(&m_nIp, VAR_LOCAL) *= *GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_MULT_INT_LVAR_BY_INT_LVAR:
|
||||||
|
*GetPointerToScriptVariable(&m_nIp, VAR_LOCAL) *= *GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_MULT_FLOAT_VAR_BY_FLOAT_VAR:
|
||||||
|
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL) *= *(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_MULT_FLOAT_LVAR_BY_FLOAT_VAR:
|
||||||
|
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL) *= *(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_MULT_FLOAT_VAR_BY_FLOAT_LVAR:
|
||||||
|
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL) *= *(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_MULT_FLOAT_LVAR_BY_FLOAT_LVAR:
|
||||||
|
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL) *= *(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_DIV_INT_VAR_BY_INT_VAR:
|
||||||
|
*GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL) /= *GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_DIV_INT_LVAR_BY_INT_VAR:
|
||||||
|
*GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL) /= *GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_DIV_INT_VAR_BY_INT_LVAR:
|
||||||
|
*GetPointerToScriptVariable(&m_nIp, VAR_LOCAL) /= *GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_DIV_INT_LVAR_BY_INT_LVAR:
|
||||||
|
*GetPointerToScriptVariable(&m_nIp, VAR_LOCAL) /= *GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_DIV_FLOAT_VAR_BY_FLOAT_VAR:
|
||||||
|
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL) /= *(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_DIV_FLOAT_LVAR_BY_FLOAT_VAR:
|
||||||
|
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL) /= *(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_DIV_FLOAT_VAR_BY_FLOAT_LVAR:
|
||||||
|
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL) /= *(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_DIV_FLOAT_LVAR_BY_FLOAT_LVAR:
|
||||||
|
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL) /= *(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_ADD_TIMED_VAL_TO_FLOAT_VAR:
|
||||||
|
{
|
||||||
|
int32* ptr = GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
CollectParameters(&m_nIp, 1);
|
||||||
|
*(float*)ptr += CTimer::GetTimeStep() * *(float*)&ScriptParams[0];
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_ADD_TIMED_VAL_TO_FLOAT_LVAR:
|
||||||
|
{
|
||||||
|
int32* ptr = GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
CollectParameters(&m_nIp, 1);
|
||||||
|
*(float*)ptr += CTimer::GetTimeStep() * *(float*)&ScriptParams[0];
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_ADD_TIMED_FLOAT_VAR_TO_FLOAT_VAR:
|
||||||
|
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL) += CTimer::GetTimeStep() * *(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_ADD_TIMED_FLOAT_LVAR_TO_FLOAT_VAR:
|
||||||
|
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL) += CTimer::GetTimeStep() * *(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_ADD_TIMED_FLOAT_VAR_TO_FLOAT_LVAR:
|
||||||
|
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL) += CTimer::GetTimeStep() * *(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_ADD_TIMED_FLOAT_LVAR_TO_FLOAT_LVAR:
|
||||||
|
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL) += CTimer::GetTimeStep() * *(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_SUB_TIMED_VAL_FROM_FLOAT_VAR:
|
||||||
|
{
|
||||||
|
int32* ptr = GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
CollectParameters(&m_nIp, 1);
|
||||||
|
*(float*)ptr -= CTimer::GetTimeStep() * *(float*)&ScriptParams[0];
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_SUB_TIMED_VAL_FROM_FLOAT_LVAR:
|
||||||
|
{
|
||||||
|
int32* ptr = GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
CollectParameters(&m_nIp, 1);
|
||||||
|
*(float*)ptr -= CTimer::GetTimeStep() * *(float*)&ScriptParams[0];
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_SUB_TIMED_FLOAT_VAR_FROM_FLOAT_VAR:
|
||||||
|
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL) -= CTimer::GetTimeStep() * *(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_SUB_TIMED_FLOAT_LVAR_FROM_FLOAT_VAR:
|
||||||
|
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL) -= CTimer::GetTimeStep() * *(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_SUB_TIMED_FLOAT_VAR_FROM_FLOAT_LVAR:
|
||||||
|
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL) -= CTimer::GetTimeStep() * *(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_SUB_TIMED_FLOAT_LVAR_FROM_FLOAT_LVAR:
|
||||||
|
*(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL) -= CTimer::GetTimeStep() * *(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_SET_VAR_INT_TO_VAR_INT:
|
||||||
|
{
|
||||||
|
int32* ptr = GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
*ptr = *GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_SET_LVAR_INT_TO_VAR_INT:
|
||||||
|
{
|
||||||
|
int32* ptr = GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
*ptr = *GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_SET_VAR_INT_TO_LVAR_INT:
|
||||||
|
{
|
||||||
|
int32* ptr = GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
*ptr = *GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_SET_LVAR_INT_TO_LVAR_INT:
|
||||||
|
{
|
||||||
|
int32* ptr = GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
*ptr = *GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_SET_VAR_FLOAT_TO_VAR_FLOAT:
|
||||||
|
{
|
||||||
|
float* ptr = (float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
*ptr = *(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_SET_LVAR_FLOAT_TO_VAR_FLOAT:
|
||||||
|
{
|
||||||
|
float* ptr = (float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
*ptr = *(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_SET_VAR_FLOAT_TO_LVAR_FLOAT:
|
||||||
|
{
|
||||||
|
float* ptr = (float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
*ptr = *(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_SET_LVAR_FLOAT_TO_LVAR_FLOAT:
|
||||||
|
{
|
||||||
|
float* ptr = (float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
*ptr = *(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_CSET_VAR_INT_TO_VAR_FLOAT:
|
||||||
|
{
|
||||||
|
int32* ptr = GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
*ptr = *(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_CSET_LVAR_INT_TO_VAR_FLOAT:
|
||||||
|
{
|
||||||
|
int32* ptr = GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
*ptr = *(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_CSET_VAR_INT_TO_LVAR_FLOAT:
|
||||||
|
{
|
||||||
|
int32* ptr = GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
*ptr = *(float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_CSET_LVAR_INT_TO_LVAR_FLOAT:
|
||||||
|
{
|
||||||
|
int32* ptr = GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
*ptr = *(float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_CSET_VAR_FLOAT_TO_VAR_INT:
|
||||||
|
{
|
||||||
|
float* ptr = (float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
*ptr = *GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_CSET_LVAR_FLOAT_TO_VAR_INT:
|
||||||
|
{
|
||||||
|
float* ptr = (float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
*ptr = *GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_CSET_VAR_FLOAT_TO_LVAR_INT:
|
||||||
|
{
|
||||||
|
float* ptr = (float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
*ptr = *GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_CSET_LVAR_FLOAT_TO_LVAR_INT:
|
||||||
|
{
|
||||||
|
float* ptr = (float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
*ptr = *GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_ABS_VAR_INT:
|
||||||
|
{
|
||||||
|
int32* ptr = GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
*ptr = ABS(*ptr);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_ABS_LVAR_INT:
|
||||||
|
{
|
||||||
|
int32* ptr = GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
*ptr = ABS(*ptr);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_ABS_VAR_FLOAT:
|
||||||
|
{
|
||||||
|
float* ptr = (float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
*ptr = ABS(*ptr);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_ABS_LVAR_FLOAT:
|
||||||
|
{
|
||||||
|
float* ptr = (float*)GetPointerToScriptVariable(&m_nIp, VAR_LOCAL);
|
||||||
|
*ptr = ABS(*ptr);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_GENERATE_RANDOM_FLOAT:
|
||||||
|
{
|
||||||
|
float* ptr = (float*)GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL);
|
||||||
|
CGeneral::GetRandomNumber();
|
||||||
|
CGeneral::GetRandomNumber();
|
||||||
|
CGeneral::GetRandomNumber(); /* To make it EXTRA random! */
|
||||||
|
*ptr = CGeneral::GetRandomNumber() / 65536.0f;
|
||||||
|
/* Between 0 and 0.5 on PC (oh well...), never used in original script. */
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_GENERATE_RANDOM_INT:
|
||||||
|
/* On PC between 0 and 32767, even though script expects values between 0 and 65536 */
|
||||||
|
*GetPointerToScriptVariable(&m_nIp, VAR_GLOBAL) = CGeneral::GetRandomNumber();
|
||||||
|
return 0;
|
||||||
|
case COMMAND_CREATE_CHAR:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 5);
|
||||||
|
switch (ScriptParams[1]) {
|
||||||
|
case MI_COP:
|
||||||
|
if (ScriptParams[0] = PEDTYPE_COP)
|
||||||
|
ScriptParams[1] = COP_STREET;
|
||||||
|
break;
|
||||||
|
case MI_SWAT:
|
||||||
|
if (ScriptParams[0] = PEDTYPE_COP)
|
||||||
|
ScriptParams[1] = COP_SWAT;
|
||||||
|
break;
|
||||||
|
case MI_FBI:
|
||||||
|
if (ScriptParams[0] = PEDTYPE_COP)
|
||||||
|
ScriptParams[1] = COP_FBI;
|
||||||
|
break;
|
||||||
|
case MI_ARMY:
|
||||||
|
if (ScriptParams[0] = PEDTYPE_COP)
|
||||||
|
ScriptParams[1] = COP_ARMY;
|
||||||
|
break;
|
||||||
|
case MI_MEDIC:
|
||||||
|
if (ScriptParams[0] = PEDTYPE_EMERGENCY)
|
||||||
|
ScriptParams[1] = PEDTYPE_EMERGENCY;
|
||||||
|
break;
|
||||||
|
case MI_FIREMAN:
|
||||||
|
if (ScriptParams[0] = PEDTYPE_FIREMAN)
|
||||||
|
ScriptParams[1] = PEDTYPE_FIREMAN;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
CPed* ped;
|
||||||
|
if (ScriptParams[0] == PEDTYPE_COP)
|
||||||
|
ped = new CCopPed((eCopType)ScriptParams[1]);
|
||||||
|
else if (ScriptParams[0] == PEDTYPE_EMERGENCY || ScriptParams[0] == PEDTYPE_FIREMAN)
|
||||||
|
ped = new CEmergencyPed(ScriptParams[1]);
|
||||||
|
else
|
||||||
|
ped = new CCivilianPed(ScriptParams[0], ScriptParams[1]);
|
||||||
|
ped->CharCreatedBy = MISSION_CHAR;
|
||||||
|
ped->bRespondsToThreats = false;
|
||||||
|
ped->m_ped_flagG2 = false;
|
||||||
|
CVector pos = *(CVector*)&ScriptParams[2];
|
||||||
|
if (pos.z <= -100.0f)
|
||||||
|
pos.z = CWorld::FindGroundZForCoord(pos.x, pos.y);
|
||||||
|
pos.z += 1.0f;
|
||||||
|
ped->GetPosition() = pos;
|
||||||
|
ped->SetOrientation(0.0f, 0.0f, 0.0f);
|
||||||
|
CTheScripts::ClearSpaceForMissionEntity(pos, ped);
|
||||||
|
CWorld::Add(ped);
|
||||||
|
ped->m_level = CTheZones::GetLevelFromPosition(pos);
|
||||||
|
CPopulation::ms_nTotalMissionPeds++;
|
||||||
|
ScriptParams[0] = CPools::GetPedPool()->GetIndex(ped);
|
||||||
|
StoreParameters(&m_nIp, 1);
|
||||||
|
if (m_bIsMissionScript)
|
||||||
|
CTheScripts::MissionCleanup.AddEntityToList(ScriptParams[0], CLEANUP_CHAR);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_DELETE_CHAR:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 1);
|
||||||
|
CPed* ped = CPools::GetPedPool()->GetAt(ScriptParams[0]);
|
||||||
|
if (ped) {
|
||||||
|
if (ped->bInVehicle && ped->m_pMyVehicle) {
|
||||||
|
if (ped->m_pMyVehicle->pDriver == ped) {
|
||||||
|
ped->m_pMyVehicle->RemoveDriver();
|
||||||
|
ped->m_pMyVehicle->m_status = STATUS_ABANDONED;
|
||||||
|
if (ped->m_pMyVehicle->m_nDoorLock == CARLOCK_LOCKED_INITIALLY)
|
||||||
|
ped->m_pMyVehicle->m_nDoorLock = CARLOCK_UNLOCKED;
|
||||||
|
if (ped->m_nPedType == PEDTYPE_COP && ped->m_pMyVehicle->IsLawEnforcementVehicle())
|
||||||
|
ped->m_pMyVehicle->ChangeLawEnforcerState(0);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
ped->m_pMyVehicle->RemovePassenger(ped);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
CWorld::RemoveReferencesToDeletedObject(ped);
|
||||||
|
delete ped;
|
||||||
|
--CPopulation::ms_nTotalMissionPeds;
|
||||||
|
}
|
||||||
|
if (m_bIsMissionScript)
|
||||||
|
CTheScripts::MissionCleanup.RemoveEntityFromList(ScriptParams[0], CLEANUP_CHAR);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_CHAR_WANDER_DIR:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 2);
|
||||||
|
CPed* ped = CPools::GetPedPool()->GetAt(ScriptParams[0]);
|
||||||
|
assert(ped);
|
||||||
|
ped->ClearAll();
|
||||||
|
int8 path = ScriptParams[1];
|
||||||
|
if (ScriptParams[1] < 0 || ScriptParams[1] > 7)
|
||||||
|
path = CGeneral::GetRandomNumberInRange(0, 7);
|
||||||
|
ped->SetWanderPath(path);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_CHAR_FOLLOW_PATH:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 4);
|
||||||
|
CPed* ped = CPools::GetPedPool()->GetAt(ScriptParams[0]);
|
||||||
|
assert(ped);
|
||||||
|
CVector pos = *(CVector*)&ScriptParams[1];
|
||||||
|
if (pos.z <= -100.0f)
|
||||||
|
pos.z = CWorld::FindGroundZForCoord(pos.x, pos.y);
|
||||||
|
ped->ClearAll();
|
||||||
|
ped->SetFollowPath(pos);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_CHAR_SET_IDLE:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 1);
|
||||||
|
CPed* ped = CPools::GetPedPool()->GetAt(ScriptParams[0]);
|
||||||
|
assert(ped);
|
||||||
|
ped->m_bScriptObjectiveCompleted = false;
|
||||||
|
ped->SetObjective(OBJECTIVE_IDLE);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_GET_CHAR_COORDINATES:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 1);
|
||||||
|
CPed* ped = CPools::GetPedPool()->GetAt(ScriptParams[0]);
|
||||||
|
assert(ped);
|
||||||
|
CVehicle* vehicle;
|
||||||
|
CVector pos;
|
||||||
|
/* Seems a bit clumsy but I'll leave original flow */
|
||||||
|
if (ped->bInVehicle)
|
||||||
|
vehicle = ped->m_pMyVehicle;
|
||||||
|
else
|
||||||
|
vehicle = nil;
|
||||||
|
if (vehicle)
|
||||||
|
pos = vehicle->GetPosition();
|
||||||
|
else
|
||||||
|
pos = ped->GetPosition();
|
||||||
|
*(CVector*)&ScriptParams[0] = pos;
|
||||||
|
StoreParameters(&m_nIp, 3);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_SET_CHAR_COORDINATES:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 4);
|
||||||
|
CPed* ped = CPools::GetPedPool()->GetAt(ScriptParams[0]);
|
||||||
|
assert(ped);
|
||||||
|
CVehicle* vehicle;
|
||||||
|
if (ped->bInVehicle)
|
||||||
|
vehicle = ped->m_pMyVehicle;
|
||||||
|
else
|
||||||
|
vehicle = nil;
|
||||||
|
CVector pos = *(CVector*)&ScriptParams[1];
|
||||||
|
if (pos.z <= -100.0f)
|
||||||
|
pos.z = CWorld::FindGroundZForCoord(pos.x, pos.y);
|
||||||
|
/* The following block was once again written
|
||||||
|
* by someone not familiar with virtual functions.
|
||||||
|
* It doesn't require any ifs at all.
|
||||||
|
* To keep as close to original as possible, I'll keep it.
|
||||||
|
* Maybe there was more commented out/debug
|
||||||
|
* stuff, but I doubt it.
|
||||||
|
*/
|
||||||
|
if (!vehicle) {
|
||||||
|
pos.z += ped->GetDistanceFromCentreOfMassToBaseOfModel();
|
||||||
|
ped->Teleport(pos);
|
||||||
|
CTheScripts::ClearSpaceForMissionEntity(pos, ped);
|
||||||
|
}
|
||||||
|
else if (vehicle->IsBoat()) {
|
||||||
|
pos.z += vehicle->GetDistanceFromCentreOfMassToBaseOfModel();
|
||||||
|
vehicle->Teleport(pos);
|
||||||
|
CTheScripts::ClearSpaceForMissionEntity(pos, vehicle);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
pos.z += vehicle->GetDistanceFromCentreOfMassToBaseOfModel();
|
||||||
|
vehicle->Teleport(pos);
|
||||||
|
CTheScripts::ClearSpaceForMissionEntity(pos, vehicle);
|
||||||
|
}
|
||||||
|
/* Short version of this command.
|
||||||
|
*
|
||||||
|
* CollectParameters(&m_nIp, 4);
|
||||||
|
* CPed* ped = CPools::GetPedPool()->GetAt(ScriptParams[0]);
|
||||||
|
* assert(ped);
|
||||||
|
* CEntity* entityToMove = ped->bInVehicle ? ped->m_pMyVehicle : ped;
|
||||||
|
* CVector pos = *(CVector*)&ScriptParams[1];
|
||||||
|
* if (pos.z <= -100.0f)
|
||||||
|
* pos.z = CWorld::FindGroundZForCoord(pos.x, pos.y);
|
||||||
|
* pos.z += entityToMove->GetDistanceFromCentreOfMassToBaseOfModel();
|
||||||
|
* entityToMove->Teleport(pos);
|
||||||
|
* CTheScripts::ClearSpaceForMissionEntity(pos, entityToMove);
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_IS_CHAR_STILL_ALIVE:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 1);
|
||||||
|
CPed* ped = CPools::GetPedPool()->GetAt(ScriptParams[0]);
|
||||||
|
UpdateCompareFlag(ped && ped->m_status != PED_DEAD && ped->m_status != PED_DIE);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_IS_CHAR_IN_AREA_2D:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 6);
|
||||||
|
CPed* ped = CPools::GetPedPool()->GetAt(ScriptParams[0]);
|
||||||
|
assert(ped);
|
||||||
|
CVehicle* vehicle;
|
||||||
|
if (ped->bInVehicle)
|
||||||
|
vehicle = ped->m_pMyVehicle;
|
||||||
|
else
|
||||||
|
vehicle = nil;
|
||||||
|
float x1, y1, x2, y2;
|
||||||
|
x1 = *(float*)&ScriptParams[1];
|
||||||
|
y1 = *(float*)&ScriptParams[2];
|
||||||
|
x2 = *(float*)&ScriptParams[3];
|
||||||
|
y2 = *(float*)&ScriptParams[4];
|
||||||
|
if (vehicle)
|
||||||
|
UpdateCompareFlag(ped->m_pMyVehicle->IsWithinArea(x1, y1, x2, y2));
|
||||||
|
else
|
||||||
|
UpdateCompareFlag(ped->IsWithinArea(x1, y1, x2, y2));
|
||||||
|
CTheScripts::HighlightImportantArea((uint32)this + m_nIp, x1, y1, x2, y2, -100.0f);
|
||||||
|
if (CTheScripts::DbgFlag)
|
||||||
|
CTheScripts::DrawDebugSquare(x1, y1, x2, y2);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_IS_CHAR_IN_AREA_3D:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 8);
|
||||||
|
CPed* ped = CPools::GetPedPool()->GetAt(ScriptParams[0]);
|
||||||
|
assert(ped);
|
||||||
|
CVehicle* vehicle;
|
||||||
|
if (ped->bInVehicle)
|
||||||
|
vehicle = ped->m_pMyVehicle;
|
||||||
|
else
|
||||||
|
vehicle = nil;
|
||||||
|
float x1, y1, z1, x2, y2, z2;
|
||||||
|
x1 = *(float*)&ScriptParams[1];
|
||||||
|
y1 = *(float*)&ScriptParams[2];
|
||||||
|
z1 = *(float*)&ScriptParams[3];
|
||||||
|
x2 = *(float*)&ScriptParams[4];
|
||||||
|
y2 = *(float*)&ScriptParams[5];
|
||||||
|
z2 = *(float*)&ScriptParams[6];
|
||||||
|
if (vehicle)
|
||||||
|
UpdateCompareFlag(ped->m_pMyVehicle->IsWithinArea(x1, y1, z1, x2, y2, z2));
|
||||||
|
else
|
||||||
|
UpdateCompareFlag(ped->IsWithinArea(x1, y1, z1, x2, y2, z2));
|
||||||
|
CTheScripts::HighlightImportantArea((uint32)this + m_nIp, x1, y1, x2, y2, -100.0f);
|
||||||
|
if (CTheScripts::DbgFlag)
|
||||||
|
CTheScripts::DrawDebugCube(x1, y1, z1, x2, y2, z2);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_CREATE_CAR:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 4);
|
||||||
|
int32 handle;
|
||||||
|
if (CModelInfo::IsBoatModel(ScriptParams[0])) {
|
||||||
|
CBoat* boat = new CBoat(ScriptParams[0], MISSION_VEHICLE);
|
||||||
|
CVector pos = *(CVector*)&ScriptParams[1];
|
||||||
|
if (pos.z <= -100.0f)
|
||||||
|
pos.z = CWorld::FindGroundZForCoord(pos.x, pos.y);
|
||||||
|
pos.z += boat->GetDistanceFromCentreOfMassToBaseOfModel();
|
||||||
|
boat->GetPosition() = pos;
|
||||||
|
CTheScripts::ClearSpaceForMissionEntity(pos, boat);
|
||||||
|
boat->m_status = STATUS_ABANDONED;
|
||||||
|
boat->bIsLocked = true;
|
||||||
|
boat->m_autoPilot.m_nCarMission = MISSION_NONE;
|
||||||
|
boat->m_autoPilot.m_nAnimationId = TEMPACT_NONE; /* Animation ID? */
|
||||||
|
boat->m_autoPilot.m_nCruiseSpeed = boat->m_autoPilot.m_fMaxTrafficSpeed = 20.0f;
|
||||||
|
CWorld::Add(boat);
|
||||||
|
handle = CPools::GetVehiclePool()->GetIndex(boat);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
CVehicle* car;
|
||||||
|
if (!CModelInfo::IsBikeModel(ScriptParams[0]))
|
||||||
|
car = new CAutomobile(ScriptParams[0], MISSION_VEHICLE);
|
||||||
|
CVector pos = *(CVector*)&ScriptParams[1];
|
||||||
|
if (pos.z <= -100.0f)
|
||||||
|
pos.z = CWorld::FindGroundZForCoord(pos.x, pos.y);
|
||||||
|
pos.z += car->GetDistanceFromCentreOfMassToBaseOfModel();
|
||||||
|
car->GetPosition() = pos;
|
||||||
|
CTheScripts::ClearSpaceForMissionEntity(pos, car);
|
||||||
|
car->m_status = STATUS_ABANDONED;
|
||||||
|
car->bIsLocked = true;
|
||||||
|
car->m_autoPilot.m_nCarMission = MISSION_NONE;
|
||||||
|
car->m_autoPilot.m_nAnimationId = TEMPACT_NONE; /* Animation ID? */
|
||||||
|
car->m_autoPilot.m_nDrivingStyle = DRIVINGSTYLE_STOP_FOR_CARS;
|
||||||
|
car->m_autoPilot.m_nCruiseSpeed = car->m_autoPilot.m_fMaxTrafficSpeed = 9.0f;
|
||||||
|
car->m_autoPilot.m_nPreviousLane = car->m_autoPilot.m_nCurrentLane = 0;
|
||||||
|
car->bEngineOn = false;
|
||||||
|
car->m_level = CTheZones::GetLevelFromPosition(pos);
|
||||||
|
car->bHasBeenOwnedByPlayer = true;
|
||||||
|
CWorld::Add(car);
|
||||||
|
handle = CPools::GetVehiclePool()->GetIndex(car);
|
||||||
|
}
|
||||||
|
ScriptParams[0] = handle;
|
||||||
|
StoreParameters(&m_nIp, 1);
|
||||||
|
if (m_bIsMissionScript)
|
||||||
|
CTheScripts::MissionCleanup.AddEntityToList(handle, CLEANUP_CAR);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_DELETE_CAR:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 1);
|
||||||
|
CVehicle* car = CPools::GetVehiclePool()->GetAt(ScriptParams[0]);
|
||||||
|
if (car) {
|
||||||
|
CWorld::Remove(car);
|
||||||
|
CWorld::RemoveReferencesToDeletedObject(car);
|
||||||
|
delete car;
|
||||||
|
}
|
||||||
|
if (m_bIsMissionScript)
|
||||||
|
CTheScripts::MissionCleanup.RemoveEntityFromList(ScriptParams[0], CLEANUP_CAR);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_CAR_GOTO_COORDINATES:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 4);
|
||||||
|
CVehicle* car = CPools::GetVehiclePool()->GetAt(ScriptParams[0]);
|
||||||
|
assert(car);
|
||||||
|
CVector pos = *(CVector*)&ScriptParams[1];
|
||||||
|
if (pos.z <= -100.0f)
|
||||||
|
pos.z = CWorld::FindGroundZForCoord(pos.x, pos.y);
|
||||||
|
pos.z += car->GetDistanceFromCentreOfMassToBaseOfModel();
|
||||||
|
if (CCarCtrl::JoinCarWithRoadSystemGotoCoors(car, pos, false))
|
||||||
|
car->m_autoPilot.m_nCarMission = MISSION_GOTOCOORDS_STRAIGHT;
|
||||||
|
else
|
||||||
|
car->m_autoPilot.m_nCarMission = MISSION_GOTOCOORDS;
|
||||||
|
car->m_status = STATUS_PHYSICS;
|
||||||
|
car->bEngineOn = true;
|
||||||
|
car->m_autoPilot.m_nCruiseSpeed = max(car->m_autoPilot.m_nCruiseSpeed, 6);
|
||||||
|
car->m_autoPilot.m_nTimeToStartMission = CTimer::GetTimeInMilliseconds();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_CAR_WANDER_RANDOMLY:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 1);
|
||||||
|
CVehicle* car = CPools::GetVehiclePool()->GetAt(ScriptParams[0]);
|
||||||
|
assert(car);
|
||||||
|
CCarCtrl::JoinCarWithRoadSystem(car);
|
||||||
|
car->m_autoPilot.m_nCarMission = MISSION_CRUISE;
|
||||||
|
car->bEngineOn = true;
|
||||||
|
car->m_autoPilot.m_nCruiseSpeed = max(car->m_autoPilot.m_nCruiseSpeed, 6);
|
||||||
|
car->m_autoPilot.m_nTimeToStartMission = CTimer::GetTimeInMilliseconds();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_CAR_SET_IDLE:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 1);
|
||||||
|
CVehicle* car = CPools::GetVehiclePool()->GetAt(ScriptParams[0]);
|
||||||
|
assert(car);
|
||||||
|
car->m_autoPilot.m_nCarMission = MISSION_NONE;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_GET_CAR_COORDINATES:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 1);
|
||||||
|
CVehicle* car = CPools::GetVehiclePool()->GetAt(ScriptParams[0]);
|
||||||
|
assert(car);
|
||||||
|
*(CVector*)&ScriptParams[0] = car->GetPosition();
|
||||||
|
StoreParameters(&m_nIp, 3);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_SET_CAR_COORDINATES:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 4);
|
||||||
|
CVehicle* car = CPools::GetVehiclePool()->GetAt(ScriptParams[0]);
|
||||||
|
assert(car);
|
||||||
|
CVector pos = *(CVector*)&ScriptParams[1];
|
||||||
|
if (pos.z <= -100.0f)
|
||||||
|
pos.z = CWorld::FindGroundZForCoord(pos.x, pos.y);
|
||||||
|
pos.z += car->GetDistanceFromCentreOfMassToBaseOfModel();
|
||||||
|
car->bIsStatic = false;
|
||||||
|
/* Again weird usage of virtual functions. */
|
||||||
|
if (car->IsBoat()) {
|
||||||
|
car->Teleport(pos);
|
||||||
|
CTheScripts::ClearSpaceForMissionEntity(pos, car);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
car->Teleport(pos);
|
||||||
|
CTheScripts::ClearSpaceForMissionEntity(pos, car);
|
||||||
|
/* May the following be inlined CCarCtrl function? */
|
||||||
|
switch (car->m_autoPilot.m_nCarMission) {
|
||||||
|
case MISSION_CRUISE:
|
||||||
|
CCarCtrl::JoinCarWithRoadSystem(car);
|
||||||
|
break;
|
||||||
|
case MISSION_RAMPLAYER_FARAWAY:
|
||||||
|
case MISSION_RAMPLAYER_CLOSE:
|
||||||
|
case MISSION_BLOCKPLAYER_FARAWAY:
|
||||||
|
case MISSION_BLOCKPLAYER_CLOSE:
|
||||||
|
case MISSION_BLOCKPLAYER_HANDBRAKESTOP:
|
||||||
|
CCarCtrl::JoinCarWithRoadSystemGotoCoors(car, FindPlayerCoors(), false);
|
||||||
|
break;
|
||||||
|
case MISSION_GOTOCOORDS:
|
||||||
|
case MISSION_GOTOCOORDS_STRAIGHT:
|
||||||
|
CCarCtrl::JoinCarWithRoadSystemGotoCoors(car, car->m_autoPilot.m_vecDestinationCoors, false);
|
||||||
|
break;
|
||||||
|
case MISSION_GOTOCOORDS_ACCURATE:
|
||||||
|
case MISSION_GOTO_COORDS_STRAIGHT_ACCURATE:
|
||||||
|
CCarCtrl::JoinCarWithRoadSystemGotoCoors(car, car->m_autoPilot.m_vecDestinationCoors, false);
|
||||||
|
break;
|
||||||
|
case MISSION_RAMCAR_FARAWAY:
|
||||||
|
case MISSION_RAMCAR_CLOSE:
|
||||||
|
case MISSION_BLOCKCAR_FARAWAY:
|
||||||
|
case MISSION_BLOCKCAR_CLOSE:
|
||||||
|
case MISSION_BLOCKCAR_HANDBRAKESTOP:
|
||||||
|
CCarCtrl::JoinCarWithRoadSystemGotoCoors(car, car->m_autoPilot.m_pTargetCar->GetPosition(), false);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_IS_CAR_STILL_ALIVE:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 4);
|
||||||
|
CVehicle* car = CPools::GetVehiclePool()->GetAt(ScriptParams[0]);
|
||||||
|
UpdateCompareFlag(car && car->m_status != STATUS_WRECKED && (car->IsBoat() || !car->bIsInWater));
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_SET_CAR_CRUISE_SPEED:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 2);
|
||||||
|
CVehicle* car = CPools::GetVehiclePool()->GetAt(ScriptParams[0]);
|
||||||
|
assert(car);
|
||||||
|
car->m_autoPilot.m_nCruiseSpeed = min(*(float*)&ScriptParams[1], 60.0f * car->m_handling->TransmissionData.fUnkMaxVelocity);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_SET_CAR_DRIVING_STYLE:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 2);
|
||||||
|
CVehicle* car = CPools::GetVehiclePool()->GetAt(ScriptParams[0]);
|
||||||
|
assert(car);
|
||||||
|
car->m_autoPilot.m_nDrivingStyle = (eCarDrivingStyle)ScriptParams[1];
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_SET_CAR_MISSION:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 2);
|
||||||
|
CVehicle* car = CPools::GetVehiclePool()->GetAt(ScriptParams[0]);
|
||||||
|
assert(car);
|
||||||
|
car->m_autoPilot.m_nCarMission = (eCarMission)ScriptParams[1];
|
||||||
|
car->m_autoPilot.m_nTimeToStartMission = CTimer::GetTimeInMilliseconds();
|
||||||
|
car->bEngineOn = true;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_IS_CAR_IN_AREA_2D:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 6);
|
||||||
|
CVehicle* vehicle = CPools::GetVehiclePool()->GetAt(ScriptParams[0]);
|
||||||
|
assert(vehicle);
|
||||||
|
float x1, y1, x2, y2;
|
||||||
|
x1 = *(float*)&ScriptParams[1];
|
||||||
|
y1 = *(float*)&ScriptParams[2];
|
||||||
|
x2 = *(float*)&ScriptParams[3];
|
||||||
|
y2 = *(float*)&ScriptParams[4];
|
||||||
|
UpdateCompareFlag(vehicle->IsWithinArea(x1, y1, x2, y2));
|
||||||
|
CTheScripts::HighlightImportantArea((uint32)this + m_nIp, x1, y1, x2, y2, -100.0f);
|
||||||
|
if (CTheScripts::DbgFlag)
|
||||||
|
CTheScripts::DrawDebugSquare(x1, y1, x2, y2);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_IS_CAR_IN_AREA_3D:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 8);
|
||||||
|
CVehicle* vehicle = CPools::GetVehiclePool()->GetAt(ScriptParams[0]);
|
||||||
|
assert(vehicle);
|
||||||
|
float x1, y1, z1, x2, y2, z2;
|
||||||
|
x1 = *(float*)&ScriptParams[1];
|
||||||
|
y1 = *(float*)&ScriptParams[2];
|
||||||
|
z1 = *(float*)&ScriptParams[3];
|
||||||
|
x2 = *(float*)&ScriptParams[4];
|
||||||
|
y2 = *(float*)&ScriptParams[5];
|
||||||
|
z2 = *(float*)&ScriptParams[6];
|
||||||
|
UpdateCompareFlag(vehicle->IsWithinArea(x1, y1, z1, x2, y2, z2));
|
||||||
|
CTheScripts::HighlightImportantArea((uint32)this + m_nIp, x1, y1, x2, y2, -100.0f);
|
||||||
|
if (CTheScripts::DbgFlag)
|
||||||
|
CTheScripts::DrawDebugCube(x1, y1, z1, x2, y2, z2);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_SPECIAL_0:
|
||||||
|
case COMMAND_SPECIAL_1:
|
||||||
|
case COMMAND_SPECIAL_2:
|
||||||
|
case COMMAND_SPECIAL_3:
|
||||||
|
case COMMAND_SPECIAL_4:
|
||||||
|
case COMMAND_SPECIAL_5:
|
||||||
|
case COMMAND_SPECIAL_6:
|
||||||
|
case COMMAND_SPECIAL_7:
|
||||||
|
assert(0);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_PRINT_BIG:
|
||||||
|
{
|
||||||
|
wchar* key = TheText.Get((char*)&CTheScripts::ScriptSpace[m_nIp]);
|
||||||
|
m_nIp += 8;
|
||||||
|
CollectParameters(&m_nIp, 2);
|
||||||
|
CMessages::AddBigMessage(key, ScriptParams[0], ScriptParams[1] - 1);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_PRINT:
|
||||||
|
{
|
||||||
|
wchar* key = TheText.Get((char*)&CTheScripts::ScriptSpace[m_nIp]);
|
||||||
|
m_nIp += 8;
|
||||||
|
CollectParameters(&m_nIp, 2);
|
||||||
|
CMessages::AddMessage(key, ScriptParams[0], ScriptParams[1]);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_PRINT_NOW:
|
||||||
|
{
|
||||||
|
wchar* key = TheText.Get((char*)&CTheScripts::ScriptSpace[m_nIp]);
|
||||||
|
m_nIp += 8;
|
||||||
|
CollectParameters(&m_nIp, 2);
|
||||||
|
CMessages::AddMessageJumpQ(key, ScriptParams[0], ScriptParams[1]);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_PRINT_SOON:
|
||||||
|
{
|
||||||
|
wchar* key = TheText.Get((char*)&CTheScripts::ScriptSpace[m_nIp]);
|
||||||
|
m_nIp += 8;
|
||||||
|
CollectParameters(&m_nIp, 2);
|
||||||
|
CMessages::AddMessage(key, ScriptParams[0], ScriptParams[1]);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
case COMMAND_CLEAR_PRINTS:
|
||||||
|
CMessages::ClearMessages();
|
||||||
|
return 0;
|
||||||
|
case COMMAND_GET_TIME_OF_DAY:
|
||||||
|
ScriptParams[0] = CClock::GetHours();
|
||||||
|
ScriptParams[1] = CClock::GetMinutes();
|
||||||
|
StoreParameters(&m_nIp, 2);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_SET_TIME_OF_DAY:
|
||||||
|
CollectParameters(&m_nIp, 2);
|
||||||
|
CClock::SetGameClock(ScriptParams[0], ScriptParams[1]);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_GET_MINUTES_TO_TIME_OF_DAY:
|
||||||
|
CollectParameters(&m_nIp, 2);
|
||||||
|
ScriptParams[0] = CClock::GetGameClockMinutesUntil(ScriptParams[0], ScriptParams[1]);
|
||||||
|
StoreParameters(&m_nIp, 1);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_IS_POINT_ON_SCREEN:
|
||||||
|
{
|
||||||
|
CollectParameters(&m_nIp, 4);
|
||||||
|
CVector pos = *(CVector*)&ScriptParams[0];
|
||||||
|
if (pos.z <= -100)
|
||||||
|
pos.z = CWorld::FindGroundZForCoord(pos.x, pos.y);
|
||||||
|
UpdateCompareFlag(TheCamera.IsSphereVisible(pos, *(float*)&ScriptParams[3]));
|
||||||
|
}
|
||||||
|
case COMMAND_DEBUG_ON:
|
||||||
|
CTheScripts::DbgFlag = true;
|
||||||
|
return 0;
|
||||||
|
case COMMAND_DEBUG_OFF:
|
||||||
|
CTheScripts::DbgFlag = false;
|
||||||
|
return 0;
|
||||||
|
case COMMAND_RETURN_TRUE:
|
||||||
|
UpdateCompareFlag(true);
|
||||||
|
return 0;
|
||||||
|
case COMMAND_RETURN_FALSE:
|
||||||
|
UpdateCompareFlag(false);
|
||||||
|
return 0;
|
||||||
|
default:
|
||||||
|
assert(0);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
WRAPPER int8 CRunningScript::ProcessCommandsFrom200To299(int32 command) { EAXJMP(0x43D530); }
|
WRAPPER int8 CRunningScript::ProcessCommandsFrom200To299(int32 command) { EAXJMP(0x43D530); }
|
||||||
WRAPPER int8 CRunningScript::ProcessCommandsFrom300To399(int32 command) { EAXJMP(0x43ED30); }
|
WRAPPER int8 CRunningScript::ProcessCommandsFrom300To399(int32 command) { EAXJMP(0x43ED30); }
|
||||||
WRAPPER int8 CRunningScript::ProcessCommandsFrom400To499(int32 command) { EAXJMP(0x440CB0); }
|
WRAPPER int8 CRunningScript::ProcessCommandsFrom400To499(int32 command) { EAXJMP(0x440CB0); }
|
||||||
|
@ -40,6 +40,13 @@ CCamera::IsSphereVisible(const CVector ¢er, float radius, const CMatrix *mat
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
CCamera::IsSphereVisible(const CVector ¢er, float radius)
|
||||||
|
{
|
||||||
|
CMatrix mat = m_cameraMatrix;
|
||||||
|
return IsSphereVisible(center, radius, &mat);
|
||||||
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
CCamera::IsPointVisible(const CVector ¢er, const CMatrix *mat)
|
CCamera::IsPointVisible(const CVector ¢er, const CMatrix *mat)
|
||||||
{
|
{
|
||||||
@ -1290,7 +1297,7 @@ CCam::GetWeaponFirstPersonOn()
|
|||||||
}
|
}
|
||||||
|
|
||||||
STARTPATCHES
|
STARTPATCHES
|
||||||
InjectHook(0x42C760, &CCamera::IsSphereVisible, PATCH_JUMP);
|
InjectHook(0x42C760, (bool (CCamera::*)(const CVector ¢er, float radius, const CMatrix *mat))&CCamera::IsSphereVisible, PATCH_JUMP);
|
||||||
InjectHook(0x46FD00, &CCamera::SetFadeColour, PATCH_JUMP);
|
InjectHook(0x46FD00, &CCamera::SetFadeColour, PATCH_JUMP);
|
||||||
|
|
||||||
InjectHook(0x46FD40, &CCamera::SetMotionBlur, PATCH_JUMP);
|
InjectHook(0x46FD40, &CCamera::SetMotionBlur, PATCH_JUMP);
|
||||||
|
@ -445,6 +445,7 @@ int m_iModeObbeCamIsInForCar;
|
|||||||
CVector &GetGameCamPosition(void) { return m_vecGameCamPos; }
|
CVector &GetGameCamPosition(void) { return m_vecGameCamPos; }
|
||||||
bool IsPointVisible(const CVector ¢er, const CMatrix *mat);
|
bool IsPointVisible(const CVector ¢er, const CMatrix *mat);
|
||||||
bool IsSphereVisible(const CVector ¢er, float radius, const CMatrix *mat);
|
bool IsSphereVisible(const CVector ¢er, float radius, const CMatrix *mat);
|
||||||
|
bool IsSphereVisible(const CVector ¢er, float radius);
|
||||||
bool IsBoxVisible(RwV3d *box, const CMatrix *mat);
|
bool IsBoxVisible(RwV3d *box, const CMatrix *mat);
|
||||||
int GetLookDirection(void);
|
int GetLookDirection(void);
|
||||||
|
|
||||||
|
@ -9,6 +9,11 @@ WRAPPER char CMessages::WideStringCompare(wchar* str1, wchar* str2, unsigned sho
|
|||||||
WRAPPER void CMessages::InsertNumberInString(wchar* src, int n1, int n2, int n3, int n4, int n5, int n6, wchar* dst) { EAXJMP(0x52A1A0); }
|
WRAPPER void CMessages::InsertNumberInString(wchar* src, int n1, int n2, int n3, int n4, int n5, int n6, wchar* dst) { EAXJMP(0x52A1A0); }
|
||||||
WRAPPER void CMessages::InsertPlayerControlKeysInString(wchar* src) { EAXJMP(0x52A490); }
|
WRAPPER void CMessages::InsertPlayerControlKeysInString(wchar* src) { EAXJMP(0x52A490); }
|
||||||
WRAPPER int CMessages::GetWideStringLength(wchar* src) { EAXJMP(0x529490); }
|
WRAPPER int CMessages::GetWideStringLength(wchar* src) { EAXJMP(0x529490); }
|
||||||
|
WRAPPER void CMessages::AddBigMessage(wchar* key, uint32 time, uint16 pos) { EAXJMP(0x529EB0); }
|
||||||
|
WRAPPER void CMessages::AddMessage(wchar* key, uint32 time, uint16 pos) { EAXJMP(0x529900); }
|
||||||
|
WRAPPER void CMessages::AddMessageJumpQ(wchar* key, uint32 time, uint16 pos) { EAXJMP(0x529A10); }
|
||||||
|
WRAPPER void CMessages::AddMessageSoon(wchar* key, uint32 time, uint16 pos) { EAXJMP(0x529AF0); }
|
||||||
|
WRAPPER void CMessages::ClearMessages() { EAXJMP(0x529CE0); }
|
||||||
|
|
||||||
tPreviousBrief *CMessages::PreviousBriefs = (tPreviousBrief *)0x713C08;
|
tPreviousBrief *CMessages::PreviousBriefs = (tPreviousBrief *)0x713C08;
|
||||||
tMessage *CMessages::BriefMessages = (tMessage *)0x8786E0;
|
tMessage *CMessages::BriefMessages = (tMessage *)0x8786E0;
|
||||||
|
@ -41,4 +41,9 @@ public:
|
|||||||
static void InsertNumberInString(wchar* src, int n1, int n2, int n3, int n4, int n5, int n6, wchar* dst);
|
static void InsertNumberInString(wchar* src, int n1, int n2, int n3, int n4, int n5, int n6, wchar* dst);
|
||||||
static void InsertPlayerControlKeysInString(wchar* src);
|
static void InsertPlayerControlKeysInString(wchar* src);
|
||||||
static int GetWideStringLength(wchar *src);
|
static int GetWideStringLength(wchar *src);
|
||||||
|
static void AddBigMessage(wchar* key, uint32 time, uint16 pos);
|
||||||
|
static void AddMessage(wchar* key, uint32 time, uint16 pos);
|
||||||
|
static void AddMessageJumpQ(wchar* key, uint32 time, uint16 pos);
|
||||||
|
static void AddMessageSoon(wchar* key, uint32 time, uint16 pos);
|
||||||
|
static void ClearMessages();
|
||||||
};
|
};
|
||||||
|
@ -26,6 +26,8 @@ bool &CWorld::bSecondShift = *(bool*)0x95CD54;
|
|||||||
bool &CWorld::bForceProcessControl = *(bool*)0x95CD6C;
|
bool &CWorld::bForceProcessControl = *(bool*)0x95CD6C;
|
||||||
bool &CWorld::bProcessCutsceneOnly = *(bool*)0x95CD8B;
|
bool &CWorld::bProcessCutsceneOnly = *(bool*)0x95CD8B;
|
||||||
|
|
||||||
|
WRAPPER void CWorld::RemoveReferencesToDeletedObject(CEntity*) { EAXJMP(0x4B3BF0); }
|
||||||
|
|
||||||
void
|
void
|
||||||
CWorld::Add(CEntity *ent)
|
CWorld::Add(CEntity *ent)
|
||||||
{
|
{
|
||||||
|
@ -99,6 +99,7 @@ public:
|
|||||||
static float FindGroundZForCoord(float x, float y);
|
static float FindGroundZForCoord(float x, float y);
|
||||||
static float FindGroundZFor3DCoord(float x, float y, float z, bool *found);
|
static float FindGroundZFor3DCoord(float x, float y, float z, bool *found);
|
||||||
static float FindRoofZFor3DCoord(float x, float y, float z, bool *found);
|
static float FindRoofZFor3DCoord(float x, float y, float z, bool *found);
|
||||||
|
static void RemoveReferencesToDeletedObject(CEntity*);
|
||||||
|
|
||||||
static float GetSectorX(float f) { return ((f - WORLD_MIN_X)/SECTOR_SIZE_X); }
|
static float GetSectorX(float f) { return ((f - WORLD_MIN_X)/SECTOR_SIZE_X); }
|
||||||
static float GetSectorY(float f) { return ((f - WORLD_MIN_Y)/SECTOR_SIZE_Y); }
|
static float GetSectorY(float f) { return ((f - WORLD_MIN_Y)/SECTOR_SIZE_Y); }
|
||||||
|
@ -178,3 +178,4 @@ void re3_assert(const char *expr, const char *filename, unsigned int lineno, con
|
|||||||
|
|
||||||
#define max(a, b) (((a) > (b)) ? (a) : (b))
|
#define max(a, b) (((a) > (b)) ? (a) : (b))
|
||||||
#define min(a, b) (((a) < (b)) ? (a) : (b))
|
#define min(a, b) (((a) < (b)) ? (a) : (b))
|
||||||
|
#define ABS(a) (((a) < 0) ? (-a) : (a))
|
||||||
|
@ -175,6 +175,13 @@ CModelInfo::IsBoatModel(int32 id)
|
|||||||
((CVehicleModelInfo*)GetModelInfo(id))->m_vehicleType == VEHICLE_TYPE_BOAT;
|
((CVehicleModelInfo*)GetModelInfo(id))->m_vehicleType == VEHICLE_TYPE_BOAT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
CModelInfo::IsBikeModel(int32 id)
|
||||||
|
{
|
||||||
|
return GetModelInfo(id)->m_type == MITYPE_VEHICLE &&
|
||||||
|
((CVehicleModelInfo*)GetModelInfo(id))->m_vehicleType == VEHICLE_TYPE_BIKE;
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
CModelInfo::RemoveColModelsFromOtherLevels(eLevelName level)
|
CModelInfo::RemoveColModelsFromOtherLevels(eLevelName level)
|
||||||
{
|
{
|
||||||
|
@ -36,5 +36,6 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
static bool IsBoatModel(int32 id);
|
static bool IsBoatModel(int32 id);
|
||||||
|
static bool IsBikeModel(int32 id);
|
||||||
static void RemoveColModelsFromOtherLevels(eLevelName level);
|
static void RemoveColModelsFromOtherLevels(eLevelName level);
|
||||||
};
|
};
|
||||||
|
@ -6,7 +6,7 @@ WRAPPER void CCivilianPed::ProcessControl(void) { EAXJMP(0x4BFFE0); }
|
|||||||
|
|
||||||
CCivilianPed::CCivilianPed(int pedtype, int mi) : CPed(pedtype)
|
CCivilianPed::CCivilianPed(int pedtype, int mi) : CPed(pedtype)
|
||||||
{
|
{
|
||||||
CPed::SetModelIndex(mi);
|
SetModelIndex(mi);
|
||||||
for (int i = 0; i < 10; i++)
|
for (int i = 0; i < 10; i++)
|
||||||
{
|
{
|
||||||
m_nearPeds[i] = nil;
|
m_nearPeds[i] = nil;
|
||||||
|
@ -1,6 +1,64 @@
|
|||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "patcher.h"
|
#include "patcher.h"
|
||||||
#include "CopPed.h"
|
#include "CopPed.h"
|
||||||
|
#include "ModelIndices.h"
|
||||||
|
|
||||||
|
WRAPPER void CCopPed::ProcessControl() { EAXJMP(0x4C1400); }
|
||||||
|
|
||||||
|
CCopPed::CCopPed(eCopType copType) : CPed(PEDTYPE_COP)
|
||||||
|
{
|
||||||
|
m_nCopType = copType;
|
||||||
|
switch (copType) {
|
||||||
|
case COP_STREET:
|
||||||
|
SetModelIndex(MI_COP);
|
||||||
|
GiveWeapon(WEAPONTYPE_COLT45, 1000);
|
||||||
|
m_currentWeapon = WEAPONTYPE_UNARMED;
|
||||||
|
m_fArmour = 0.0f;
|
||||||
|
m_wepSkills = 208; /* TODO: what is this? seems unused */
|
||||||
|
m_wepAccuracy = 60;
|
||||||
|
break;
|
||||||
|
case COP_FBI:
|
||||||
|
SetModelIndex(MI_FBI);
|
||||||
|
GiveWeapon(WEAPONTYPE_COLT45, 1000);
|
||||||
|
GiveWeapon(WEAPONTYPE_AK47, 1000);
|
||||||
|
SetCurrentWeapon(WEAPONTYPE_AK47);
|
||||||
|
m_fArmour = 100.0f;
|
||||||
|
m_wepSkills = 176; /* TODO: what is this? seems unused */
|
||||||
|
m_wepAccuracy = 76;
|
||||||
|
break;
|
||||||
|
case COP_SWAT:
|
||||||
|
SetModelIndex(MI_SWAT);
|
||||||
|
GiveWeapon(WEAPONTYPE_COLT45, 1000);
|
||||||
|
GiveWeapon(WEAPONTYPE_UZI, 1000);
|
||||||
|
SetCurrentWeapon(WEAPONTYPE_UZI);
|
||||||
|
m_fArmour = 50.0f;
|
||||||
|
m_wepSkills = 32; /* TODO: what is this? seems unused */
|
||||||
|
m_wepAccuracy = 64;
|
||||||
|
break;
|
||||||
|
case COP_ARMY:
|
||||||
|
SetModelIndex(MI_ARMY);
|
||||||
|
GiveWeapon(WEAPONTYPE_COLT45, 1000);
|
||||||
|
GiveWeapon(WEAPONTYPE_M16, 1000);
|
||||||
|
GiveWeapon(WEAPONTYPE_GRENADE, 10);
|
||||||
|
SetCurrentWeapon(WEAPONTYPE_M16);
|
||||||
|
m_fArmour = 100.0f;
|
||||||
|
m_wepSkills = 32; /* TODO: what is this? seems unused */
|
||||||
|
m_wepAccuracy = 84;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
m_bIsInPursuit = false;
|
||||||
|
field_1350 = 1;
|
||||||
|
m_bIsDisabledCop = false;
|
||||||
|
field_1356 = 0;
|
||||||
|
m_attackTimer = 0;
|
||||||
|
field_1351 = 0;
|
||||||
|
m_bZoneDisabledButClose = false;
|
||||||
|
m_bZoneDisabled = false;
|
||||||
|
field_1364 = -1;
|
||||||
|
m_pPointGunAt = nil;
|
||||||
|
}
|
||||||
|
|
||||||
CCopPed::~CCopPed()
|
CCopPed::~CCopPed()
|
||||||
{
|
{
|
||||||
@ -12,9 +70,11 @@ WRAPPER void CCopPed::ClearPursuit(void) { EAXJMP(0x4C28C0); }
|
|||||||
class CCopPed_ : public CCopPed
|
class CCopPed_ : public CCopPed
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
CCopPed *ctor(eCopType type) { return ::new (this) CCopPed(type); };
|
||||||
void dtor(void) { CCopPed::~CCopPed(); }
|
void dtor(void) { CCopPed::~CCopPed(); }
|
||||||
};
|
};
|
||||||
|
|
||||||
STARTPATCHES
|
STARTPATCHES
|
||||||
|
InjectHook(0x4C11B0, &CCopPed_::ctor, PATCH_JUMP);
|
||||||
InjectHook(0x4C13E0, &CCopPed_::dtor, PATCH_JUMP);
|
InjectHook(0x4C13E0, &CCopPed_::dtor, PATCH_JUMP);
|
||||||
ENDPATCHES
|
ENDPATCHES
|
||||||
|
@ -31,9 +31,11 @@ public:
|
|||||||
int8 field_1366;
|
int8 field_1366;
|
||||||
int8 field_1367;
|
int8 field_1367;
|
||||||
|
|
||||||
|
CCopPed(eCopType);
|
||||||
~CCopPed();
|
~CCopPed();
|
||||||
|
|
||||||
void ClearPursuit(void);
|
void ClearPursuit(void);
|
||||||
|
void ProcessControl(void);
|
||||||
};
|
};
|
||||||
|
|
||||||
static_assert(sizeof(CCopPed) == 0x558, "CCopPed: error");
|
static_assert(sizeof(CCopPed) == 0x558, "CCopPed: error");
|
||||||
|
@ -1,13 +1,38 @@
|
|||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "patcher.h"
|
#include "patcher.h"
|
||||||
#include "EmergencyPed.h"
|
#include "EmergencyPed.h"
|
||||||
|
#include "ModelIndices.h"
|
||||||
|
|
||||||
class CEmergencyPed_ : public CEmergencyPed
|
class CEmergencyPed_ : public CEmergencyPed
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
CEmergencyPed *ctor(int pedtype) { return ::new (this) CEmergencyPed(pedtype); };
|
||||||
void dtor(void) { CEmergencyPed::~CEmergencyPed(); }
|
void dtor(void) { CEmergencyPed::~CEmergencyPed(); }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
WRAPPER void CEmergencyPed::ProcessControl(void) { EAXJMP(0x4C2F10); }
|
||||||
|
|
||||||
|
CEmergencyPed::CEmergencyPed(uint32 type) : CPed(type)
|
||||||
|
{
|
||||||
|
switch (type){
|
||||||
|
case PEDTYPE_EMERGENCY:
|
||||||
|
SetModelIndex(MI_MEDIC);
|
||||||
|
m_pRevivedPed = nil;
|
||||||
|
field_1360 = 0;
|
||||||
|
break;
|
||||||
|
case PEDTYPE_FIREMAN:
|
||||||
|
SetModelIndex(MI_FIREMAN);
|
||||||
|
m_pRevivedPed = nil;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
m_nEmergencyPedState = 0;
|
||||||
|
m_pAttendedAccident = nil;
|
||||||
|
field_1356 = 0;
|
||||||
|
}
|
||||||
|
|
||||||
STARTPATCHES
|
STARTPATCHES
|
||||||
|
InjectHook(0x4C2E40, &CEmergencyPed_::ctor, PATCH_JUMP);
|
||||||
InjectHook(0x4C2EF0, &CEmergencyPed_::dtor, PATCH_JUMP);
|
InjectHook(0x4C2EF0, &CEmergencyPed_::dtor, PATCH_JUMP);
|
||||||
ENDPATCHES
|
ENDPATCHES
|
||||||
|
@ -1,11 +1,20 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include "Fire.h"
|
||||||
#include "Ped.h"
|
#include "Ped.h"
|
||||||
|
|
||||||
class CEmergencyPed : public CPed
|
class CEmergencyPed : public CPed
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
// 0x53C
|
// 0x53C
|
||||||
uint8 stuff[24];
|
CPed* m_pRevivedPed;
|
||||||
|
int32 m_nEmergencyPedState; // looks like flags
|
||||||
|
void* m_pAttendedAccident; //TODO: CAccident*
|
||||||
|
CFire* m_pAttendedFire;
|
||||||
|
int8 field_1356;
|
||||||
|
int32 field_1360;
|
||||||
|
|
||||||
|
CEmergencyPed(uint32);
|
||||||
|
void ProcessControl(void);
|
||||||
};
|
};
|
||||||
static_assert(sizeof(CEmergencyPed) == 0x554, "CEmergencyPed: error");
|
static_assert(sizeof(CEmergencyPed) == 0x554, "CEmergencyPed: error");
|
||||||
|
@ -46,6 +46,9 @@ WRAPPER void CPed::SetDuck(uint32) { EAXJMP(0x4E4920); }
|
|||||||
WRAPPER void CPed::RegisterThreatWithGangPeds(CEntity*) { EAXJMP(0x4E3870); }
|
WRAPPER void CPed::RegisterThreatWithGangPeds(CEntity*) { EAXJMP(0x4E3870); }
|
||||||
WRAPPER void CPed::MakeChangesForNewWeapon(int8) { EAXJMP(0x4F2560); }
|
WRAPPER void CPed::MakeChangesForNewWeapon(int8) { EAXJMP(0x4F2560); }
|
||||||
WRAPPER bool CPed::Seek(void) { EAXJMP(0x4D1640); }
|
WRAPPER bool CPed::Seek(void) { EAXJMP(0x4D1640); }
|
||||||
|
WRAPPER void CPed::ClearAll(void) { EAXJMP(0x4C7F20); }
|
||||||
|
WRAPPER void CPed::SetWanderPath(int8) { EAXJMP(0x4D2750); }
|
||||||
|
WRAPPER void CPed::SetFollowPath(CVector) { EAXJMP(0x4D2EA0); }
|
||||||
|
|
||||||
bool &CPed::bNastyLimbsCheat = *(bool*)0x95CD44;
|
bool &CPed::bNastyLimbsCheat = *(bool*)0x95CD44;
|
||||||
bool &CPed::bPedCheat2 = *(bool*)0x95CD5A;
|
bool &CPed::bPedCheat2 = *(bool*)0x95CD5A;
|
||||||
@ -393,7 +396,7 @@ CPed::CPed(uint32 pedType) : m_pedIK(this)
|
|||||||
m_ped_flagD10 = false;
|
m_ped_flagD10 = false;
|
||||||
m_ped_flagD20 = false;
|
m_ped_flagD20 = false;
|
||||||
m_ped_flagD40 = false;
|
m_ped_flagD40 = false;
|
||||||
m_ped_flagD80 = false;
|
m_bScriptObjectiveCompleted = false;
|
||||||
|
|
||||||
m_ped_flagE1 = false;
|
m_ped_flagE1 = false;
|
||||||
m_ped_flagE2 = false;
|
m_ped_flagE2 = false;
|
||||||
@ -1404,7 +1407,7 @@ CPed::PedSetDraggedOutCarCB(CAnimBlendAssociation *dragAssoc, void *arg)
|
|||||||
|
|
||||||
if (vehicle->pDriver == ped) {
|
if (vehicle->pDriver == ped) {
|
||||||
vehicle->RemoveDriver();
|
vehicle->RemoveDriver();
|
||||||
if (vehicle->m_nDoorLock == CARLOCK_COP_CAR)
|
if (vehicle->m_nDoorLock == CARLOCK_LOCKED_INITIALLY)
|
||||||
vehicle->m_nDoorLock = CARLOCK_UNLOCKED;
|
vehicle->m_nDoorLock = CARLOCK_UNLOCKED;
|
||||||
|
|
||||||
if (ped->m_nPedType == PEDTYPE_COP && vehicle->IsLawEnforcementVehicle())
|
if (ped->m_nPedType == PEDTYPE_COP && vehicle->IsLawEnforcementVehicle())
|
||||||
|
@ -210,7 +210,7 @@ public:
|
|||||||
uint8 m_ped_flagD10 : 1;
|
uint8 m_ped_flagD10 : 1;
|
||||||
uint8 m_ped_flagD20 : 1;
|
uint8 m_ped_flagD20 : 1;
|
||||||
uint8 m_ped_flagD40 : 1; // reset when objective changes
|
uint8 m_ped_flagD40 : 1; // reset when objective changes
|
||||||
uint8 m_ped_flagD80 : 1;
|
uint8 m_bScriptObjectiveCompleted : 1;
|
||||||
|
|
||||||
uint8 m_ped_flagE1 : 1;
|
uint8 m_ped_flagE1 : 1;
|
||||||
uint8 m_ped_flagE2 : 1;
|
uint8 m_ped_flagE2 : 1;
|
||||||
@ -460,6 +460,9 @@ public:
|
|||||||
void MakeChangesForNewWeapon(int8);
|
void MakeChangesForNewWeapon(int8);
|
||||||
void CheckAroundForPossibleCollisions(void);
|
void CheckAroundForPossibleCollisions(void);
|
||||||
bool Seek(void);
|
bool Seek(void);
|
||||||
|
void ClearAll(void);
|
||||||
|
void SetWanderPath(int8);
|
||||||
|
void SetFollowPath(CVector);
|
||||||
|
|
||||||
// Static methods
|
// Static methods
|
||||||
static void GetLocalPositionToOpenCarDoor(CVector *output, CVehicle *veh, uint32 enterType, float offset);
|
static void GetLocalPositionToOpenCarDoor(CVector *output, CVehicle *veh, uint32 enterType, float offset);
|
||||||
|
@ -65,7 +65,7 @@ CVehicle::CVehicle(uint8 CreatedBy)
|
|||||||
bIsDamaged = false;
|
bIsDamaged = false;
|
||||||
m_veh_flagC8 = false;
|
m_veh_flagC8 = false;
|
||||||
m_veh_flagC10 = false;
|
m_veh_flagC10 = false;
|
||||||
m_veh_flagC4 = false;
|
bHasBeenOwnedByPlayer = false;
|
||||||
m_veh_flagC20 = false;
|
m_veh_flagC20 = false;
|
||||||
bCanBeDamaged = true;
|
bCanBeDamaged = true;
|
||||||
m_veh_flagC80 = false;
|
m_veh_flagC80 = false;
|
||||||
@ -519,7 +519,7 @@ bool
|
|||||||
CVehicle::CanPedOpenLocks(CPed *ped)
|
CVehicle::CanPedOpenLocks(CPed *ped)
|
||||||
{
|
{
|
||||||
if(m_nDoorLock == CARLOCK_LOCKED ||
|
if(m_nDoorLock == CARLOCK_LOCKED ||
|
||||||
m_nDoorLock == CARLOCK_COP_CAR ||
|
m_nDoorLock == CARLOCK_LOCKED_INITIALLY ||
|
||||||
m_nDoorLock == CARLOCK_LOCKED_PLAYER_INSIDE)
|
m_nDoorLock == CARLOCK_LOCKED_PLAYER_INSIDE)
|
||||||
return false;
|
return false;
|
||||||
if(ped->IsPlayer() && m_nDoorLock == CARLOCK_LOCKOUT_PLAYER_ONLY)
|
if(ped->IsPlayer() && m_nDoorLock == CARLOCK_LOCKOUT_PLAYER_ONLY)
|
||||||
|
@ -20,7 +20,7 @@ enum eCarLock {
|
|||||||
CARLOCK_LOCKED,
|
CARLOCK_LOCKED,
|
||||||
CARLOCK_LOCKOUT_PLAYER_ONLY,
|
CARLOCK_LOCKOUT_PLAYER_ONLY,
|
||||||
CARLOCK_LOCKED_PLAYER_INSIDE,
|
CARLOCK_LOCKED_PLAYER_INSIDE,
|
||||||
CARLOCK_COP_CAR,
|
CARLOCK_LOCKED_INITIALLY,
|
||||||
CARLOCK_FORCE_SHUT_DOORS,
|
CARLOCK_FORCE_SHUT_DOORS,
|
||||||
CARLOCK_SKIP_SHUT_DOORS
|
CARLOCK_SKIP_SHUT_DOORS
|
||||||
};
|
};
|
||||||
@ -168,7 +168,7 @@ public:
|
|||||||
|
|
||||||
uint8 m_veh_flagC1 : 1;
|
uint8 m_veh_flagC1 : 1;
|
||||||
uint8 bIsDamaged : 1; // This vehicle has been damaged and is displaying all its components
|
uint8 bIsDamaged : 1; // This vehicle has been damaged and is displaying all its components
|
||||||
uint8 m_veh_flagC4 : 1;
|
uint8 bHasBeenOwnedByPlayer : 1;
|
||||||
uint8 m_veh_flagC8 : 1;
|
uint8 m_veh_flagC8 : 1;
|
||||||
uint8 m_veh_flagC10 : 1;
|
uint8 m_veh_flagC10 : 1;
|
||||||
uint8 m_veh_flagC20 : 1;
|
uint8 m_veh_flagC20 : 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user