Merge remote-tracking branch 'upstream/master' into script_dev
This commit is contained in:
commit
f93285df79
@ -282,7 +282,7 @@ CDarkel::Update()
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
int32 FrameTime = TimeLimit - (CTimer::GetTimeInMilliseconds() - TimeOfFrenzyStart);
|
int32 FrameTime = TimeLimit - (CTimer::GetTimeInMilliseconds() - TimeOfFrenzyStart);
|
||||||
if ((TimeLimit - (CTimer::GetTimeInMilliseconds() - TimeOfFrenzyStart)) > 0 || TimeLimit < 0) {
|
if (FrameTime > 0 || TimeLimit < 0) {
|
||||||
|
|
||||||
DMAudio.PlayFrontEndSound(SOUND_RAMPAGE_ONGOING, FrameTime);
|
DMAudio.PlayFrontEndSound(SOUND_RAMPAGE_ONGOING, FrameTime);
|
||||||
|
|
||||||
|
@ -9,6 +9,8 @@
|
|||||||
|
|
||||||
CPathFind &ThePaths = *(CPathFind*)0x8F6754;
|
CPathFind &ThePaths = *(CPathFind*)0x8F6754;
|
||||||
|
|
||||||
|
WRAPPER bool CPedPath::CalcPedRoute(uint8, CVector, CVector, CVector*, int16*, int16) { EAXJMP(0x42E680); }
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
NodeTypeExtern = 1,
|
NodeTypeExtern = 1,
|
||||||
@ -1197,9 +1199,9 @@ CPathFind::FindNextNodeWandering(uint8 type, CVector coors, CPathNode **lastNode
|
|||||||
CTreadable *obj = FindRoadObjectClosestToCoors(coors, type);
|
CTreadable *obj = FindRoadObjectClosestToCoors(coors, type);
|
||||||
float nodeDist = 1000000000.0f;
|
float nodeDist = 1000000000.0f;
|
||||||
for(i = 0; i < 12; i++){
|
for(i = 0; i < 12; i++){
|
||||||
if(obj->m_nodeIndices[i] < 0)
|
if(obj->m_nodeIndices[type][i] < 0)
|
||||||
break;
|
break;
|
||||||
float dist = (coors - m_pathNodes[obj->m_nodeIndices[type][i]].pos).Magnitude2D();
|
float dist = (coors - m_pathNodes[obj->m_nodeIndices[type][i]].pos).MagnitudeSqr();
|
||||||
if(dist < nodeDist){
|
if(dist < nodeDist){
|
||||||
nodeDist = dist;
|
nodeDist = dist;
|
||||||
node = &m_pathNodes[obj->m_nodeIndices[type][i]];
|
node = &m_pathNodes[obj->m_nodeIndices[type][i]];
|
||||||
@ -1207,12 +1209,12 @@ CPathFind::FindNextNodeWandering(uint8 type, CVector coors, CPathNode **lastNode
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
CVector2D vCurDir(Cos(curDir*PI/4.0f), Sin(curDir*PI/4.0f));
|
CVector2D vCurDir(Sin(curDir*PI/4.0f), Cos(curDir * PI / 4.0f));
|
||||||
*nextNode = 0;
|
*nextNode = 0;
|
||||||
float bestDot = -999999.0f;
|
float bestDot = -999999.0f;
|
||||||
for(i = 0; i < node->numLinks; i++){
|
for(i = 0; i < node->numLinks; i++){
|
||||||
int next = m_connections[node->firstLink+i];
|
int next = m_connections[node->firstLink+i];
|
||||||
if(node->bDisabled || m_pathNodes[next].bDisabled)
|
if(!node->bDisabled && m_pathNodes[next].bDisabled)
|
||||||
continue;
|
continue;
|
||||||
CVector pedCoors = coors;
|
CVector pedCoors = coors;
|
||||||
pedCoors.z += 1.0f;
|
pedCoors.z += 1.0f;
|
||||||
@ -1221,9 +1223,9 @@ CPathFind::FindNextNodeWandering(uint8 type, CVector coors, CPathNode **lastNode
|
|||||||
if(!CWorld::GetIsLineOfSightClear(pedCoors, nodeCoors, true, false, false, false, false, false))
|
if(!CWorld::GetIsLineOfSightClear(pedCoors, nodeCoors, true, false, false, false, false, false))
|
||||||
continue;
|
continue;
|
||||||
CVector2D nodeDir = m_pathNodes[next].pos - node->pos;
|
CVector2D nodeDir = m_pathNodes[next].pos - node->pos;
|
||||||
nodeDir /= nodeDir.Magnitude();
|
nodeDir.Normalise();
|
||||||
float dot = DotProduct2D(nodeDir, vCurDir);
|
float dot = DotProduct2D(nodeDir, vCurDir);
|
||||||
if(dot > bestDot){
|
if(dot >= bestDot){
|
||||||
*nextNode = &m_pathNodes[next];
|
*nextNode = &m_pathNodes[next];
|
||||||
bestDot = dot;
|
bestDot = dot;
|
||||||
|
|
||||||
|
@ -4,6 +4,11 @@
|
|||||||
|
|
||||||
class CVehicle;
|
class CVehicle;
|
||||||
|
|
||||||
|
class CPedPath {
|
||||||
|
public:
|
||||||
|
static bool CalcPedRoute(uint8, CVector, CVector, CVector*, int16*, int16);
|
||||||
|
};
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
PATH_CAR = 0,
|
PATH_CAR = 0,
|
||||||
|
@ -1357,6 +1357,18 @@ void CCamera::SetCameraDirectlyInFrontForFollowPed_CamOnAString()
|
|||||||
m_PedOrientForBehindOrInFront = CGeneral::GetATanOfXY(player->GetForward().x, player->GetForward().y);
|
m_PedOrientForBehindOrInFront = CGeneral::GetATanOfXY(player->GetForward().x, player->GetForward().y);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
CCamera::SetWideScreenOn(void)
|
||||||
|
{
|
||||||
|
m_WideScreenOn = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
CCamera::SetWideScreenOff(void)
|
||||||
|
{
|
||||||
|
m_bWantsToSwitchWidescreenOff = m_WideScreenOn;
|
||||||
|
}
|
||||||
|
|
||||||
STARTPATCHES
|
STARTPATCHES
|
||||||
InjectHook(0x42C760, (bool (CCamera::*)(const CVector ¢er, float radius, const CMatrix *mat))&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);
|
||||||
@ -1367,6 +1379,9 @@ STARTPATCHES
|
|||||||
|
|
||||||
InjectHook(0x46FC90, &CCamera::SetCameraDirectlyInFrontForFollowPed_CamOnAString, PATCH_JUMP);
|
InjectHook(0x46FC90, &CCamera::SetCameraDirectlyInFrontForFollowPed_CamOnAString, PATCH_JUMP);
|
||||||
|
|
||||||
|
InjectHook(0x46FF00, &CCamera::SetWideScreenOn, PATCH_JUMP);
|
||||||
|
InjectHook(0x46FF10, &CCamera::SetWideScreenOff, PATCH_JUMP);
|
||||||
|
|
||||||
InjectHook(0x456F40, WellBufferMe, PATCH_JUMP);
|
InjectHook(0x456F40, WellBufferMe, PATCH_JUMP);
|
||||||
InjectHook(0x4582F0, &CCam::GetVectorsReadyForRW, PATCH_JUMP);
|
InjectHook(0x4582F0, &CCam::GetVectorsReadyForRW, PATCH_JUMP);
|
||||||
InjectHook(0x457710, &CCam::DoAverageOnVector, PATCH_JUMP);
|
InjectHook(0x457710, &CCam::DoAverageOnVector, PATCH_JUMP);
|
||||||
|
@ -468,8 +468,8 @@ int m_iModeObbeCamIsInForCar;
|
|||||||
|
|
||||||
void DrawBordersForWideScreen(void);
|
void DrawBordersForWideScreen(void);
|
||||||
void Restore(void);
|
void Restore(void);
|
||||||
void SetWideScreenOn(void) { m_WideScreenOn = true; }
|
void SetWideScreenOn(void);
|
||||||
void SetWideScreenOff(void) { m_WideScreenOn = false; }
|
void SetWideScreenOff(void);
|
||||||
|
|
||||||
float Find3rdPersonQuickAimPitch(void);
|
float Find3rdPersonQuickAimPitch(void);
|
||||||
|
|
||||||
|
309
src/peds/Ped.cpp
309
src/peds/Ped.cpp
@ -46,14 +46,14 @@
|
|||||||
#include "Zones.h"
|
#include "Zones.h"
|
||||||
#include "Cranes.h"
|
#include "Cranes.h"
|
||||||
#include "MusicManager.h"
|
#include "MusicManager.h"
|
||||||
|
#include "Timecycle.h"
|
||||||
|
#include "ParticleObject.h"
|
||||||
|
#include "Floater.h"
|
||||||
|
|
||||||
WRAPPER void CPed::SpawnFlyingComponent(int, int8) { EAXJMP(0x4EB060); }
|
WRAPPER void CPed::SpawnFlyingComponent(int, int8) { EAXJMP(0x4EB060); }
|
||||||
WRAPPER void CPed::SetPedPositionInCar(void) { EAXJMP(0x4D4970); }
|
WRAPPER void CPed::SetPedPositionInCar(void) { EAXJMP(0x4D4970); }
|
||||||
WRAPPER void CPed::PreRender(void) { EAXJMP(0x4CFDD0); }
|
|
||||||
WRAPPER void CPed::SetMoveAnim(void) { EAXJMP(0x4C5A40); }
|
WRAPPER void CPed::SetMoveAnim(void) { EAXJMP(0x4C5A40); }
|
||||||
WRAPPER void CPed::SetFollowPath(CVector) { EAXJMP(0x4D2EA0); }
|
|
||||||
WRAPPER void CPed::StartFightDefend(uint8, uint8, uint8) { EAXJMP(0x4E7780); }
|
WRAPPER void CPed::StartFightDefend(uint8, uint8, uint8) { EAXJMP(0x4E7780); }
|
||||||
WRAPPER void CPed::ProcessBuoyancy(void) { EAXJMP(0x4C7FF0); }
|
|
||||||
WRAPPER void CPed::ServiceTalking(void) { EAXJMP(0x4E5870); }
|
WRAPPER void CPed::ServiceTalking(void) { EAXJMP(0x4E5870); }
|
||||||
WRAPPER void CPed::UpdatePosition(void) { EAXJMP(0x4C7A00); }
|
WRAPPER void CPed::UpdatePosition(void) { EAXJMP(0x4C7A00); }
|
||||||
WRAPPER void CPed::WanderPath(void) { EAXJMP(0x4D28D0); }
|
WRAPPER void CPed::WanderPath(void) { EAXJMP(0x4D28D0); }
|
||||||
@ -803,9 +803,9 @@ CPed::ApplyHeadShot(eWeaponType weaponType, CVector pos, bool evenOnPlayer)
|
|||||||
++CStats::HeadsPopped;
|
++CStats::HeadsPopped;
|
||||||
|
|
||||||
// BUG: This condition will always return true. Even fixing it won't work, because these states are unused.
|
// BUG: This condition will always return true. Even fixing it won't work, because these states are unused.
|
||||||
if (m_nPedState != PED_PASSENGER || m_nPedState != PED_TAXI_PASSENGER) {
|
// if (m_nPedState != PED_PASSENGER || m_nPedState != PED_TAXI_PASSENGER) {
|
||||||
CPed::SetDie(ANIM_KO_SHOT_FRONT1, 4.0f, 0.0f);
|
CPed::SetDie(ANIM_KO_SHOT_FRONT1, 4.0f, 0.0f);
|
||||||
}
|
// }
|
||||||
|
|
||||||
bBodyPartJustCameOff = true;
|
bBodyPartJustCameOff = true;
|
||||||
m_nPedStateTimer = CTimer::GetTimeInMilliseconds() + 150;
|
m_nPedStateTimer = CTimer::GetTimeInMilliseconds() + 150;
|
||||||
@ -1212,7 +1212,8 @@ CPed::Attack(void)
|
|||||||
|
|
||||||
if (GetWeapon()->m_eWeaponState != WEAPONSTATE_MELEE_MADECONTACT) {
|
if (GetWeapon()->m_eWeaponState != WEAPONSTATE_MELEE_MADECONTACT) {
|
||||||
// If reloading just began, start the animation
|
// If reloading just began, start the animation
|
||||||
if (GetWeapon()->m_eWeaponState == WEAPONSTATE_RELOADING && reloadAnim != NUM_ANIMS && !reloadAnimAssoc) {
|
// Last condition will always return true, even IDA hides it
|
||||||
|
if (GetWeapon()->m_eWeaponState == WEAPONSTATE_RELOADING && reloadAnim != NUM_ANIMS /* && !reloadAnimAssoc*/) {
|
||||||
CAnimManager::BlendAnimation(GetClump(), ASSOCGRP_STD, reloadAnim, 8.0f);
|
CAnimManager::BlendAnimation(GetClump(), ASSOCGRP_STD, reloadAnim, 8.0f);
|
||||||
ClearLookFlag();
|
ClearLookFlag();
|
||||||
ClearAimFlag();
|
ClearAimFlag();
|
||||||
@ -3993,7 +3994,7 @@ CPed::SetGetUp(void)
|
|||||||
if (m_fHealth >= 1.0f || IsPedHeadAbovePos(-0.3f)) {
|
if (m_fHealth >= 1.0f || IsPedHeadAbovePos(-0.3f)) {
|
||||||
if (bUpdateAnimHeading) {
|
if (bUpdateAnimHeading) {
|
||||||
m_fRotationCur = CGeneral::LimitRadianAngle(m_fRotationCur);
|
m_fRotationCur = CGeneral::LimitRadianAngle(m_fRotationCur);
|
||||||
m_fRotationCur -= 0.5f*PI;
|
m_fRotationCur -= HALFPI;
|
||||||
bUpdateAnimHeading = false;
|
bUpdateAnimHeading = false;
|
||||||
}
|
}
|
||||||
if (m_nPedState != PED_GETUP) {
|
if (m_nPedState != PED_GETUP) {
|
||||||
@ -10330,7 +10331,8 @@ CPed::ProcessControl(void)
|
|||||||
rDriveAssoc = RpAnimBlendClumpGetAssociation(GetClump(), ANIM_DRIVE_R);
|
rDriveAssoc = RpAnimBlendClumpGetAssociation(GetClump(), ANIM_DRIVE_R);
|
||||||
lbAssoc = RpAnimBlendClumpGetAssociation(GetClump(), ANIM_CAR_LB);
|
lbAssoc = RpAnimBlendClumpGetAssociation(GetClump(), ANIM_CAR_LB);
|
||||||
|
|
||||||
if (TheCamera.Cams[TheCamera.ActiveCam].Mode == CCam::MODE_FIRSTPERSON
|
if (lbAssoc &&
|
||||||
|
TheCamera.Cams[TheCamera.ActiveCam].Mode == CCam::MODE_FIRSTPERSON
|
||||||
&& TheCamera.Cams[TheCamera.ActiveCam].DirectionWasLooking == LOOKING_LEFT) {
|
&& TheCamera.Cams[TheCamera.ActiveCam].DirectionWasLooking == LOOKING_LEFT) {
|
||||||
lbAssoc->blendDelta = -1000.0f;
|
lbAssoc->blendDelta = -1000.0f;
|
||||||
}
|
}
|
||||||
@ -12995,7 +12997,11 @@ CPed::ProcessObjective(void)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (m_objective == OBJECTIVE_ENTER_CAR_AS_DRIVER) {
|
if (m_objective == OBJECTIVE_ENTER_CAR_AS_DRIVER) {
|
||||||
if (m_carInObjective->pDriver) {
|
if (m_carInObjective->pDriver
|
||||||
|
#ifdef VC_PED_PORTS
|
||||||
|
&& !IsPlayer()
|
||||||
|
#endif
|
||||||
|
) {
|
||||||
if (m_carInObjective->pDriver->m_objective == OBJECTIVE_KILL_CHAR_ANY_MEANS && m_carInObjective->pDriver != m_pedInObjective) {
|
if (m_carInObjective->pDriver->m_objective == OBJECTIVE_KILL_CHAR_ANY_MEANS && m_carInObjective->pDriver != m_pedInObjective) {
|
||||||
SetObjective(OBJECTIVE_ENTER_CAR_AS_PASSENGER, m_carInObjective);
|
SetObjective(OBJECTIVE_ENTER_CAR_AS_PASSENGER, m_carInObjective);
|
||||||
m_carInObjective->bIsBeingCarJacked = false;
|
m_carInObjective->bIsBeingCarJacked = false;
|
||||||
@ -13003,7 +13009,11 @@ CPed::ProcessObjective(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (m_objective != OBJECTIVE_ENTER_CAR_AS_PASSENGER) {
|
} else if (m_objective != OBJECTIVE_ENTER_CAR_AS_PASSENGER) {
|
||||||
if (m_carInObjective->pDriver) {
|
if (m_carInObjective->pDriver
|
||||||
|
#ifdef VC_PED_PORTS
|
||||||
|
&& (CharCreatedBy != MISSION_CHAR || m_carInObjective->pDriver->CharCreatedBy != RANDOM_CHAR)
|
||||||
|
#endif
|
||||||
|
) {
|
||||||
if (m_carInObjective->pDriver->m_nPedType == m_nPedType) {
|
if (m_carInObjective->pDriver->m_nPedType == m_nPedType) {
|
||||||
SetObjective(OBJECTIVE_ENTER_CAR_AS_PASSENGER, m_carInObjective);
|
SetObjective(OBJECTIVE_ENTER_CAR_AS_PASSENGER, m_carInObjective);
|
||||||
m_carInObjective->bIsBeingCarJacked = false;
|
m_carInObjective->bIsBeingCarJacked = false;
|
||||||
@ -13031,7 +13041,11 @@ CPed::ProcessObjective(void)
|
|||||||
if (!m_carInObjective->pDriver && !m_carInObjective->GetIsOnScreen() && !GetIsOnScreen())
|
if (!m_carInObjective->pDriver && !m_carInObjective->GetIsOnScreen() && !GetIsOnScreen())
|
||||||
WarpPedToNearEntityOffScreen(m_carInObjective);
|
WarpPedToNearEntityOffScreen(m_carInObjective);
|
||||||
|
|
||||||
if (CharCreatedBy != MISSION_CHAR || m_prevObjective == OBJECTIVE_KILL_CHAR_ANY_MEANS) {
|
if (CharCreatedBy != MISSION_CHAR || m_prevObjective == OBJECTIVE_KILL_CHAR_ANY_MEANS
|
||||||
|
#ifdef VC_PED_PORTS
|
||||||
|
|| IsPlayer() && !CPad::GetPad(0)->ArePlayerControlsDisabled()
|
||||||
|
#endif
|
||||||
|
) {
|
||||||
RestorePreviousObjective();
|
RestorePreviousObjective();
|
||||||
RestorePreviousState();
|
RestorePreviousState();
|
||||||
if (IsPedInControl())
|
if (IsPedInControl())
|
||||||
@ -13528,7 +13542,11 @@ CPed::SetSeekCar(CVehicle *car, uint32 doorNode)
|
|||||||
void
|
void
|
||||||
CPed::SetSeekBoatPosition(CVehicle *boat)
|
CPed::SetSeekBoatPosition(CVehicle *boat)
|
||||||
{
|
{
|
||||||
if (m_nPedState == PED_SEEK_IN_BOAT || boat->pDriver)
|
if (m_nPedState == PED_SEEK_IN_BOAT || boat->pDriver
|
||||||
|
#ifdef VC_PED_PORTS
|
||||||
|
|| !IsPedInControl()
|
||||||
|
#endif
|
||||||
|
)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
SetStoredState();
|
SetStoredState();
|
||||||
@ -13538,7 +13556,6 @@ CPed::SetSeekBoatPosition(CVehicle *boat)
|
|||||||
m_pMyVehicle->RegisterReference((CEntity **) &m_pMyVehicle);
|
m_pMyVehicle->RegisterReference((CEntity **) &m_pMyVehicle);
|
||||||
m_distanceToCountSeekDone = 0.5f;
|
m_distanceToCountSeekDone = 0.5f;
|
||||||
m_nPedState = PED_SEEK_IN_BOAT;
|
m_nPedState = PED_SEEK_IN_BOAT;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -14588,7 +14605,7 @@ CPed::SetEnterCar(CVehicle *car, uint32 unused)
|
|||||||
void
|
void
|
||||||
CPed::SetRadioStation(void)
|
CPed::SetRadioStation(void)
|
||||||
{
|
{
|
||||||
uint8 radiosPerRadioCategories[10][4] = {
|
static const uint8 radiosPerRadioCategories[10][4] = {
|
||||||
{JAH_RADIO, RISE_FM, GAME_FM, MSX_FM},
|
{JAH_RADIO, RISE_FM, GAME_FM, MSX_FM},
|
||||||
{HEAD_RADIO, DOUBLE_CLEF, LIPS_106, FLASHBACK},
|
{HEAD_RADIO, DOUBLE_CLEF, LIPS_106, FLASHBACK},
|
||||||
{RISE_FM, GAME_FM, MSX_FM, FLASHBACK},
|
{RISE_FM, GAME_FM, MSX_FM, FLASHBACK},
|
||||||
@ -14600,7 +14617,7 @@ CPed::SetRadioStation(void)
|
|||||||
{HEAD_RADIO, DOUBLE_CLEF, LIPS_106, FLASHBACK},
|
{HEAD_RADIO, DOUBLE_CLEF, LIPS_106, FLASHBACK},
|
||||||
{CHATTERBOX, HEAD_RADIO, LIPS_106, GAME_FM}
|
{CHATTERBOX, HEAD_RADIO, LIPS_106, GAME_FM}
|
||||||
};
|
};
|
||||||
uint8 orderInCat;
|
uint8 orderInCat = 0; // BUG: this wasn't initialized
|
||||||
|
|
||||||
if (IsPlayer() || !m_pMyVehicle || m_pMyVehicle->pDriver != this)
|
if (IsPlayer() || !m_pMyVehicle || m_pMyVehicle->pDriver != this)
|
||||||
return;
|
return;
|
||||||
@ -14636,7 +14653,262 @@ CPed::SetRadioStation(void)
|
|||||||
bool
|
bool
|
||||||
CPed::IsNotInWreckedVehicle()
|
CPed::IsNotInWreckedVehicle()
|
||||||
{
|
{
|
||||||
return m_pMyVehicle != nil && !m_pMyVehicle->IsWrecked();
|
return m_pMyVehicle != nil && m_pMyVehicle->m_status != STATUS_WRECKED;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
CPed::PreRender(void)
|
||||||
|
{
|
||||||
|
CShadows::StoreShadowForPed(this,
|
||||||
|
CTimeCycle::m_fShadowDisplacementX[CTimeCycle::m_CurrentStoredValue], CTimeCycle::m_fShadowDisplacementY[CTimeCycle::m_CurrentStoredValue],
|
||||||
|
CTimeCycle::m_fShadowFrontX[CTimeCycle::m_CurrentStoredValue], CTimeCycle::m_fShadowFrontY[CTimeCycle::m_CurrentStoredValue],
|
||||||
|
CTimeCycle::m_fShadowSideX[CTimeCycle::m_CurrentStoredValue], CTimeCycle::m_fShadowSideY[CTimeCycle::m_CurrentStoredValue]);
|
||||||
|
|
||||||
|
if (bBodyPartJustCameOff && bIsPedDieAnimPlaying && m_bodyPartBleeding != -1 && (CTimer::GetFrameCounter() & 7) > 3) {
|
||||||
|
CVector bloodDir(0.0f, 0.0f, 0.0f);
|
||||||
|
CVector bloodPos(0.0f, 0.0f, 0.0f);
|
||||||
|
|
||||||
|
for (RwFrame *frame = GetNodeFrame(m_bodyPartBleeding); frame; frame = RwFrameGetParent(frame))
|
||||||
|
RwV3dTransformPoints(bloodPos, bloodPos, 1, RwFrameGetMatrix(frame));
|
||||||
|
|
||||||
|
switch (m_bodyPartBleeding) {
|
||||||
|
case PED_HEAD:
|
||||||
|
bloodDir = 0.1f * GetUp();
|
||||||
|
break;
|
||||||
|
case PED_UPPERARML:
|
||||||
|
bloodDir = 0.04f * GetUp() - 0.04f * GetRight();
|
||||||
|
break;
|
||||||
|
case PED_UPPERARMR:
|
||||||
|
bloodDir = 0.04f * GetUp() - 0.04f * GetRight();
|
||||||
|
break;
|
||||||
|
case PED_UPPERLEGL:
|
||||||
|
bloodDir = 0.04f * GetUp() + 0.05f * GetForward();
|
||||||
|
break;
|
||||||
|
case PED_UPPERLEGR:
|
||||||
|
bloodDir = 0.04f * GetUp() + 0.05f * GetForward();
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
bloodDir = CVector(0.0f, 0.0f, 0.0f);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
for(int i = 0; i < 4; i++)
|
||||||
|
CParticle::AddParticle(PARTICLE_BLOOD_SPURT, bloodPos, bloodDir, nil, 0.0f, 0, 0, 0, 0);
|
||||||
|
}
|
||||||
|
if (CWeather::Rain > 0.3f && TheCamera.SoundDistUp > 15.0f) {
|
||||||
|
if ((TheCamera.GetPosition() - GetPosition()).Magnitude() < 25.0f) {
|
||||||
|
bool doSplashUp = true;
|
||||||
|
CColModel *ourCol = CModelInfo::GetModelInfo(m_modelIndex)->GetColModel();
|
||||||
|
CVector speed = FindPlayerSpeed();
|
||||||
|
|
||||||
|
if (Abs(speed.x) <= 0.05f && Abs(speed.y) <= 0.05f) {
|
||||||
|
if (m_nPedState != PED_FALL && !DyingOrDead() && m_nPedState != PED_ATTACK && m_nPedState != PED_FIGHT) {
|
||||||
|
if (!IsPedHeadAbovePos(0.3f) || RpAnimBlendClumpGetAssociation(GetClump(), ANIM_IDLE_TIRED)) {
|
||||||
|
doSplashUp = false;
|
||||||
|
}
|
||||||
|
} else
|
||||||
|
doSplashUp = false;
|
||||||
|
} else
|
||||||
|
doSplashUp = false;
|
||||||
|
|
||||||
|
if (doSplashUp && ourCol->numSpheres > 0) {
|
||||||
|
for(int i = 0; i < ourCol->numSpheres; i++) {
|
||||||
|
CColSphere *sphere = &ourCol->spheres[i];
|
||||||
|
CVector splashPos;
|
||||||
|
switch (sphere->piece) {
|
||||||
|
case PEDPIECE_LEFTARM:
|
||||||
|
case PEDPIECE_RIGHTARM:
|
||||||
|
case PEDPIECE_HEAD:
|
||||||
|
splashPos = GetMatrix() * ourCol->spheres[i].center;
|
||||||
|
splashPos.z += 0.7f * sphere->radius;
|
||||||
|
splashPos.x += CGeneral::GetRandomNumberInRange(-0.15f, 0.15f);
|
||||||
|
splashPos.y += CGeneral::GetRandomNumberInRange(-0.15f, 0.15f);
|
||||||
|
CParticle::AddParticle(PARTICLE_RAIN_SPLASHUP, splashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.0f, 0, 0, CGeneral::GetRandomNumber() & 1, 0);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
CPed::ProcessBuoyancy(void)
|
||||||
|
{
|
||||||
|
static uint32 nGenerateRaindrops = 0;
|
||||||
|
static uint32 nGenerateWaterCircles = 0;
|
||||||
|
CRGBA color(((0.5f * CTimeCycle::GetDirectionalRed() + CTimeCycle::GetAmbientRed()) * 127.5f),
|
||||||
|
((0.5f * CTimeCycle::GetDirectionalBlue() + CTimeCycle::GetAmbientBlue()) * 127.5f),
|
||||||
|
((0.5f * CTimeCycle::GetDirectionalGreen() + CTimeCycle::GetAmbientGreen()) * 127.5f),
|
||||||
|
(CGeneral::GetRandomNumber() % 256 * 48.0f) + 48);
|
||||||
|
|
||||||
|
if (bInVehicle)
|
||||||
|
return;
|
||||||
|
|
||||||
|
CVector buoyancyPoint;
|
||||||
|
CVector buoyancyImpulse;
|
||||||
|
|
||||||
|
#ifndef VC_PED_PORTS
|
||||||
|
float buoyancyLevel = (m_nPedState == PED_DEAD ? 1.5f : 1.3f);
|
||||||
|
#else
|
||||||
|
float buoyancyLevel = (m_nPedState == PED_DEAD ? 1.8f : 1.1f);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
if (mod_Buoyancy.ProcessBuoyancy(this, 0.008f * m_fMass * buoyancyLevel, &buoyancyPoint, &buoyancyImpulse)) {
|
||||||
|
m_flagD8 = true;
|
||||||
|
CEntity *entity;
|
||||||
|
CColPoint point;
|
||||||
|
if (CWorld::ProcessVerticalLine(GetPosition(), GetPosition().z - 3.0f, point, entity, false, true, false, false, false, false, false)
|
||||||
|
&& entity->IsVehicle() && ((CVehicle*)entity)->IsBoat()) {
|
||||||
|
bIsInWater = false;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
bIsInWater = true;
|
||||||
|
ApplyMoveForce(buoyancyImpulse);
|
||||||
|
if (!DyingOrDead()) {
|
||||||
|
if (m_ped_flagH10) {
|
||||||
|
if (buoyancyImpulse.z / m_fMass > 0.0032f * CTimer::GetTimeStep()) {
|
||||||
|
m_ped_flagH10 = false;
|
||||||
|
CVector pos = GetPosition();
|
||||||
|
if (PlacePedOnDryLand()) {
|
||||||
|
if (m_fHealth > 20.0f)
|
||||||
|
InflictDamage(nil, WEAPONTYPE_WATER, 15.0f, PEDPIECE_TORSO, false);
|
||||||
|
|
||||||
|
if (bIsInTheAir) {
|
||||||
|
RpAnimBlendClumpSetBlendDeltas(GetClump(), ASSOC_PARTIAL, -1000.0f);
|
||||||
|
bIsInTheAir = false;
|
||||||
|
}
|
||||||
|
pos.z = pos.z - 0.8f;
|
||||||
|
CParticleObject::AddObject(POBJECT_PED_WATER_SPLASH, pos, CVector(0.0f, 0.0f, 0.0f), 0.0f, 50, color, true);
|
||||||
|
m_vecMoveSpeed = CVector(0.0f, 0.0f, 0.0f);
|
||||||
|
m_nPedState = PED_IDLE;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
float speedMult = 0.0f;
|
||||||
|
if (buoyancyImpulse.z / m_fMass > 0.006f * CTimer::GetTimeStep()
|
||||||
|
|| mod_Buoyancy.m_waterlevel > GetPosition().z) {
|
||||||
|
speedMult = pow(0.9f, CTimer::GetTimeStep());
|
||||||
|
m_vecMoveSpeed.x *= speedMult;
|
||||||
|
m_vecMoveSpeed.y *= speedMult;
|
||||||
|
m_vecMoveSpeed.z *= speedMult;
|
||||||
|
bIsStanding = false;
|
||||||
|
InflictDamage(nil, WEAPONTYPE_WATER, 3.0f * CTimer::GetTimeStep(), PEDPIECE_TORSO, 0);
|
||||||
|
}
|
||||||
|
if (buoyancyImpulse.z / m_fMass > 0.002f * CTimer::GetTimeStep()) {
|
||||||
|
if (speedMult == 0.0f) {
|
||||||
|
speedMult = pow(0.9f, CTimer::GetTimeStep());
|
||||||
|
}
|
||||||
|
m_vecMoveSpeed.x *= speedMult;
|
||||||
|
m_vecMoveSpeed.y *= speedMult;
|
||||||
|
if (m_vecMoveSpeed.z >= -0.1f) {
|
||||||
|
if (m_vecMoveSpeed.z < -0.04f)
|
||||||
|
m_vecMoveSpeed.z = -0.02;
|
||||||
|
} else {
|
||||||
|
m_vecMoveSpeed.z = -0.01f;
|
||||||
|
DMAudio.PlayOneShot(m_audioEntityId, SOUND_SPLASH, 0.0f);
|
||||||
|
CVector aBitForward = 2.2f * m_vecMoveSpeed + GetPosition();
|
||||||
|
float level = 0.0f;
|
||||||
|
if (CWaterLevel::GetWaterLevel(aBitForward, &level, false))
|
||||||
|
aBitForward.z = level;
|
||||||
|
|
||||||
|
CParticleObject::AddObject(POBJECT_PED_WATER_SPLASH, aBitForward, CVector(0.0f, 0.0f, 0.1f), 0.0f, 200, color, true);
|
||||||
|
nGenerateRaindrops = CTimer::GetTimeInMilliseconds() + 80;
|
||||||
|
nGenerateWaterCircles = CTimer::GetTimeInMilliseconds() + 100;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else
|
||||||
|
return;
|
||||||
|
} else
|
||||||
|
m_flagD8 = false;
|
||||||
|
|
||||||
|
if (nGenerateWaterCircles && CTimer::GetTimeInMilliseconds() >= nGenerateWaterCircles) {
|
||||||
|
CVector pos = GetPosition();
|
||||||
|
float level = 0.0f;
|
||||||
|
if (CWaterLevel::GetWaterLevel(pos, &level, false))
|
||||||
|
pos.z = level;
|
||||||
|
|
||||||
|
if (pos.z != 0.0f) {
|
||||||
|
nGenerateWaterCircles = 0;
|
||||||
|
for(int i = 0; i < 4; i++) {
|
||||||
|
pos.x += CGeneral::GetRandomNumberInRange(-0.75f, 0.75f);
|
||||||
|
pos.y += CGeneral::GetRandomNumberInRange(-0.75f, 0.75f);
|
||||||
|
CParticle::AddParticle(PARTICLE_RAIN_SPLASH_BIGGROW, pos, CVector(0.0f, 0.0f, 0.0f), nil, 0.0f, color, 0, 0, 0, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (nGenerateRaindrops && CTimer::GetTimeInMilliseconds() >= nGenerateRaindrops) {
|
||||||
|
CVector pos = GetPosition();
|
||||||
|
float level = 0.0f;
|
||||||
|
if (CWaterLevel::GetWaterLevel(pos, &level, false))
|
||||||
|
pos.z = level;
|
||||||
|
|
||||||
|
if (pos.z >= 0.0f) {
|
||||||
|
pos.z += 0.25f;
|
||||||
|
nGenerateRaindrops = 0;
|
||||||
|
CParticleObject::AddObject(POBJECT_SPLASHES_AROUND, pos, CVector(0.0f, 0.0f, 0.0f), 4.5f, 1500, CRGBA(0,0,0,0), true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
CPed::SetSolicit(uint32 time)
|
||||||
|
{
|
||||||
|
if (m_nPedState == PED_SOLICIT || !IsPedInControl() || !m_carInObjective)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (CharCreatedBy != MISSION_CHAR && m_carInObjective->m_nNumGettingIn == 0
|
||||||
|
&& CTimer::GetTimeInMilliseconds() < m_objectiveTimer) {
|
||||||
|
if (m_vehEnterType == CAR_DOOR_LF) {
|
||||||
|
m_fRotationDest = m_carInObjective->GetForward().Heading() - HALFPI;
|
||||||
|
} else {
|
||||||
|
m_fRotationDest = m_carInObjective->GetForward().Heading() + HALFPI;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Abs(m_fRotationDest - m_fRotationCur) < HALFPI) {
|
||||||
|
m_standardTimer = CTimer::GetTimeInMilliseconds() + time;
|
||||||
|
|
||||||
|
if(!m_carInObjective->bIsVan && !m_carInObjective->bIsBus)
|
||||||
|
m_pVehicleAnim = CAnimManager::BlendAnimation(GetClump(), ASSOCGRP_STD, ANIM_CAR_HOOKERTALK, 4.0f);
|
||||||
|
|
||||||
|
m_nPedState = PED_SOLICIT;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
CPed::SetFollowPath(CVector dest)
|
||||||
|
{
|
||||||
|
if (m_nPedState == PED_FOLLOW_PATH)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (FindPlayerPed() != this)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if ((dest - GetPosition()).Magnitude() <= 2.0f)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
CVector pointPoses[7];
|
||||||
|
int16 pointsFound;
|
||||||
|
CPedPath::CalcPedRoute(0, GetPosition(), dest, pointPoses, &pointsFound, 7);
|
||||||
|
for(int i = 0; i < pointsFound; i++) {
|
||||||
|
m_stPathNodeStates[i].x = pointPoses[i].x;
|
||||||
|
m_stPathNodeStates[i].y = pointPoses[i].y;
|
||||||
|
}
|
||||||
|
|
||||||
|
m_nCurPathNode = 0;
|
||||||
|
m_nPathNodes = pointsFound;
|
||||||
|
if (m_nPathNodes < 1)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
SetStoredState();
|
||||||
|
m_nPedState = PED_FOLLOW_PATH;
|
||||||
|
SetMoveState(PEDMOVE_WALK);
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
class CPed_ : public CPed
|
class CPed_ : public CPed
|
||||||
@ -14652,6 +14924,7 @@ public:
|
|||||||
void Teleport_(CVector pos) { CPed::Teleport(pos); }
|
void Teleport_(CVector pos) { CPed::Teleport(pos); }
|
||||||
void ProcessControl_(void) { CPed::ProcessControl(); }
|
void ProcessControl_(void) { CPed::ProcessControl(); }
|
||||||
void Render_(void) { CPed::Render(); }
|
void Render_(void) { CPed::Render(); }
|
||||||
|
void PreRender_(void) { CPed::PreRender(); }
|
||||||
int32 ProcessEntityCollision_(CEntity *collidingEnt, CColPoint *collidingPoints) { return CPed::ProcessEntityCollision(collidingEnt, collidingPoints); }
|
int32 ProcessEntityCollision_(CEntity *collidingEnt, CColPoint *collidingPoints) { return CPed::ProcessEntityCollision(collidingEnt, collidingPoints); }
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -14666,6 +14939,7 @@ STARTPATCHES
|
|||||||
InjectHook(0x4C8910, &CPed_::ProcessControl_, PATCH_JUMP);
|
InjectHook(0x4C8910, &CPed_::ProcessControl_, PATCH_JUMP);
|
||||||
InjectHook(0x4D03F0, &CPed_::Render_, PATCH_JUMP);
|
InjectHook(0x4D03F0, &CPed_::Render_, PATCH_JUMP);
|
||||||
InjectHook(0x4CBB30, &CPed_::ProcessEntityCollision_, PATCH_JUMP);
|
InjectHook(0x4CBB30, &CPed_::ProcessEntityCollision_, PATCH_JUMP);
|
||||||
|
InjectHook(0x4CFDD0, &CPed_::PreRender_, PATCH_JUMP);
|
||||||
|
|
||||||
InjectHook(0x4CF8F0, &CPed::AddWeaponModel, PATCH_JUMP);
|
InjectHook(0x4CF8F0, &CPed::AddWeaponModel, PATCH_JUMP);
|
||||||
InjectHook(0x4C6AA0, &CPed::AimGun, PATCH_JUMP);
|
InjectHook(0x4C6AA0, &CPed::AimGun, PATCH_JUMP);
|
||||||
@ -14848,4 +15122,7 @@ STARTPATCHES
|
|||||||
InjectHook(0x4E4920, &CPed::SetDuck, PATCH_JUMP);
|
InjectHook(0x4E4920, &CPed::SetDuck, PATCH_JUMP);
|
||||||
InjectHook(0x4E0920, &CPed::SetEnterCar, PATCH_JUMP);
|
InjectHook(0x4E0920, &CPed::SetEnterCar, PATCH_JUMP);
|
||||||
InjectHook(0x4D7BC0, &CPed::SetRadioStation, PATCH_JUMP);
|
InjectHook(0x4D7BC0, &CPed::SetRadioStation, PATCH_JUMP);
|
||||||
|
InjectHook(0x4C7FF0, &CPed::ProcessBuoyancy, PATCH_JUMP);
|
||||||
|
InjectHook(0x4D6620, &CPed::SetSolicit, PATCH_JUMP);
|
||||||
|
InjectHook(0x4D2EA0, &CPed::SetFollowPath, PATCH_JUMP);
|
||||||
ENDPATCHES
|
ENDPATCHES
|
@ -478,7 +478,7 @@ public:
|
|||||||
int32 m_bloodyFootprintCount;
|
int32 m_bloodyFootprintCount;
|
||||||
uint8 m_panicCounter;
|
uint8 m_panicCounter;
|
||||||
bool m_deadBleeding;
|
bool m_deadBleeding;
|
||||||
int8 m_bodyPartBleeding; // PedNode
|
int8 m_bodyPartBleeding; // PedNode, but -1 if there isn't
|
||||||
uint8 m_field_4F3;
|
uint8 m_field_4F3;
|
||||||
CPed *m_nearPeds[10];
|
CPed *m_nearPeds[10];
|
||||||
uint16 m_numNearPeds;
|
uint16 m_numNearPeds;
|
||||||
@ -576,7 +576,7 @@ public:
|
|||||||
void SetPointGunAt(CEntity*);
|
void SetPointGunAt(CEntity*);
|
||||||
bool Seek(void);
|
bool Seek(void);
|
||||||
bool SetWanderPath(int8);
|
bool SetWanderPath(int8);
|
||||||
void SetFollowPath(CVector);
|
bool SetFollowPath(CVector);
|
||||||
void ClearAttackByRemovingAnim(void);
|
void ClearAttackByRemovingAnim(void);
|
||||||
void SetStoredState(void);
|
void SetStoredState(void);
|
||||||
void StopNonPartialAnims(void);
|
void StopNonPartialAnims(void);
|
||||||
@ -677,6 +677,7 @@ public:
|
|||||||
bool WillChat(CPed*);
|
bool WillChat(CPed*);
|
||||||
void SetEnterTrain(CVehicle*, uint32);
|
void SetEnterTrain(CVehicle*, uint32);
|
||||||
void SetEnterCar_AllClear(CVehicle*, uint32, uint32);
|
void SetEnterCar_AllClear(CVehicle*, uint32, uint32);
|
||||||
|
void SetSolicit(uint32 time);
|
||||||
|
|
||||||
// Static methods
|
// Static methods
|
||||||
static CVector GetLocalPositionToOpenCarDoor(CVehicle *veh, uint32 component, float offset);
|
static CVector GetLocalPositionToOpenCarDoor(CVehicle *veh, uint32 component, float offset);
|
||||||
|
@ -35,7 +35,7 @@ public:
|
|||||||
float m_volumeUnderWater;
|
float m_volumeUnderWater;
|
||||||
CVector m_impulsePoint;
|
CVector m_impulsePoint;
|
||||||
|
|
||||||
bool ProcessBuoyancy(CPhysical *phys, float buoyancy, CVector *impulse, CVector *point);
|
bool ProcessBuoyancy(CPhysical *phys, float buoyancy, CVector *point, CVector *impulse);
|
||||||
void PreCalcSetup(CPhysical *phys, float buoyancy);
|
void PreCalcSetup(CPhysical *phys, float buoyancy);
|
||||||
void SimpleCalcBuoyancy(void);
|
void SimpleCalcBuoyancy(void);
|
||||||
float SimpleSumBuoyancyData(CVector &waterLevel, tWaterLevel waterPosition);
|
float SimpleSumBuoyancyData(CVector &waterLevel, tWaterLevel waterPosition);
|
||||||
|
@ -898,9 +898,9 @@ CPlane::TestRocketCollision(CVector *rocketPos)
|
|||||||
CPlane *plane = (CPlane*)CPools::GetVehiclePool()->GetSlot(i);
|
CPlane *plane = (CPlane*)CPools::GetVehiclePool()->GetSlot(i);
|
||||||
if(plane &&
|
if(plane &&
|
||||||
#ifdef EXPLODING_AIRTRAIN
|
#ifdef EXPLODING_AIRTRAIN
|
||||||
(plane->GetModelIndex() == MI_AIRTRAIN || plane->GetModelIndex() == MI_DODO) &&
|
(plane->GetModelIndex() == MI_AIRTRAIN || plane->GetModelIndex() == MI_DEADDODO) &&
|
||||||
#else
|
#else
|
||||||
plane->GetModelIndex() != MI_AIRTRAIN && plane->GetModelIndex() == MI_DODO && // strange check
|
plane->GetModelIndex() != MI_AIRTRAIN && plane->GetModelIndex() == MI_DEADDODO && // strange check
|
||||||
#endif
|
#endif
|
||||||
!plane->m_bHasBeenHit && (*rocketPos - plane->GetPosition()).Magnitude() < 25.0f){
|
!plane->m_bHasBeenHit && (*rocketPos - plane->GetPosition()).Magnitude() < 25.0f){
|
||||||
plane->m_nFrameWhenHit = CTimer::GetFrameCounter();
|
plane->m_nFrameWhenHit = CTimer::GetFrameCounter();
|
||||||
|
@ -266,7 +266,6 @@ public:
|
|||||||
bool ShufflePassengersToMakeSpace(void);
|
bool ShufflePassengersToMakeSpace(void);
|
||||||
|
|
||||||
bool IsAlarmOn(void) { return m_nAlarmState != 0 && m_nAlarmState != -1; }
|
bool IsAlarmOn(void) { return m_nAlarmState != 0 && m_nAlarmState != -1; }
|
||||||
bool IsWrecked(void) { return m_status == STATUS_WRECKED; }
|
|
||||||
CVehicleModelInfo* GetModelInfo() { return (CVehicleModelInfo*)CModelInfo::GetModelInfo(GetModelIndex()); }
|
CVehicleModelInfo* GetModelInfo() { return (CVehicleModelInfo*)CModelInfo::GetModelInfo(GetModelIndex()); }
|
||||||
|
|
||||||
static bool &bWheelsOnlyCheat;
|
static bool &bWheelsOnlyCheat;
|
||||||
|
Loading…
Reference in New Issue
Block a user