mirror of
https://github.com/GTAmodding/re3.git
synced 2021-02-19 17:49:54 +01:00
2 new opcodes
This commit is contained in:
parent
9956b27767
commit
980dd1b5a1
@ -1824,7 +1824,7 @@ void CMissionCleanup::Process()
|
||||
CWorld::Players[0].MakePlayerSafe(false);
|
||||
CWorld::Players[0].m_pPed->m_nFadeDrunkenness = 1;
|
||||
CWorld::Players[0].m_pPed->m_nDrunkCountdown = 0;
|
||||
// CPad::GetPad(0)->SetDrunkInputDelay(0); // TODO(Miami)
|
||||
CPad::GetPad(0)->SetDrunkInputDelay(0);
|
||||
CWorld::Players[0].m_bDriveByAllowed = true;
|
||||
// DMAudio::ShutUpPlayerTalking(0); // TODO(Miami)
|
||||
CVehicle::bDisableRemoteDetonation = false;
|
||||
@ -10645,7 +10645,8 @@ int8 CRunningScript::ProcessCommands1000To1099(int32 command)
|
||||
case COMMAND_SET_DRUNK_INPUT_DELAY:
|
||||
{
|
||||
CollectParameters(&m_nIp, 2);
|
||||
debug("SET_DRUNK_INPUT_DELAY not implemented\n");
|
||||
assert(ScriptParams[1] < CPad::DRUNK_STEERING_BUFFER_SIZE);
|
||||
CPad::GetPad(ScriptParams[0])->SetDrunkInputDelay(ScriptParams[1]);
|
||||
return 0;
|
||||
}
|
||||
case COMMAND_SET_CHAR_MONEY:
|
||||
@ -13606,9 +13607,11 @@ int8 CRunningScript::ProcessCommands1400To1499(int32 command)
|
||||
case COMMAND_GET_BUS_FARES_COLLECTED_BY_PLAYER:
|
||||
{
|
||||
CollectParameters(&m_nIp, 1);
|
||||
debug("GET_BUS_FARES_COLLECTED_BY_PLAYER not implemented\n"); // TODO(MIAMI)
|
||||
ScriptParams[0] = 0;
|
||||
CPlayerInfo* pPlayerInfo = &CWorld::Players[ScriptParams[0]];
|
||||
ScriptParams[0] = pPlayerInfo->m_pPed->m_nLastBusFareCollected;
|
||||
pPlayerInfo->m_pPed->m_nLastBusFareCollected = 0;
|
||||
StoreParameters(&m_nIp, 1);
|
||||
return 0;
|
||||
}
|
||||
case COMMAND_SET_CHAR_OBJ_BUY_ICE_CREAM:
|
||||
{
|
||||
|
@ -631,6 +631,11 @@ void CPad::Clear(bool bResetPlayerControls)
|
||||
ShakeFreq = 0;
|
||||
ShakeDur = 0;
|
||||
|
||||
for (int32 i = 0; i < DRUNK_STEERING_BUFFER_SIZE; i++)
|
||||
SteeringLeftRightBuffer[i] = 0;
|
||||
|
||||
DrunkDrivingBufferUsed = 0;
|
||||
|
||||
if ( bResetPlayerControls )
|
||||
DisablePlayerControls = PLAYERCONTROL_ENABLED;
|
||||
|
||||
@ -1806,6 +1811,9 @@ void CPad::Update(int16 pad)
|
||||
|
||||
bHornHistory[iCurrHornHistory] = GetHorn();
|
||||
|
||||
for (int32 i = DRUNK_STEERING_BUFFER_SIZE - 2; i >= 0; i--) {
|
||||
SteeringLeftRightBuffer[i + 1] = SteeringLeftRightBuffer[i];
|
||||
}
|
||||
|
||||
if ( !bDisplayNoControllerMessage )
|
||||
CGame::bDemoMode = false;
|
||||
@ -1899,6 +1907,7 @@ int16 CPad::GetSteeringLeftRight(void)
|
||||
if ( ArePlayerControlsDisabled() )
|
||||
return 0;
|
||||
|
||||
int16 value;
|
||||
switch (CURMODE)
|
||||
{
|
||||
case 0:
|
||||
@ -1908,9 +1917,12 @@ int16 CPad::GetSteeringLeftRight(void)
|
||||
int16 dpad = (NewState.DPadRight - NewState.DPadLeft) / 2;
|
||||
|
||||
if ( Abs(axis) > Abs(dpad) )
|
||||
return axis;
|
||||
value = axis;
|
||||
else
|
||||
return dpad;
|
||||
value = dpad;
|
||||
|
||||
SteeringLeftRightBuffer[0] = value;
|
||||
value = SteeringLeftRightBuffer[DrunkDrivingBufferUsed];
|
||||
|
||||
break;
|
||||
}
|
||||
@ -1918,13 +1930,18 @@ int16 CPad::GetSteeringLeftRight(void)
|
||||
case 1:
|
||||
case 3:
|
||||
{
|
||||
return NewState.LeftStickX;
|
||||
|
||||
SteeringLeftRightBuffer[0] = NewState.LeftStickX;
|
||||
value = SteeringLeftRightBuffer[DrunkDrivingBufferUsed];
|
||||
break;
|
||||
}
|
||||
default:
|
||||
{
|
||||
value = 0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
return value;
|
||||
}
|
||||
|
||||
int16 CPad::GetSteeringUpDown(void)
|
||||
|
@ -141,9 +141,12 @@ public:
|
||||
enum
|
||||
{
|
||||
HORNHISTORY_SIZE = 5,
|
||||
DRUNK_STEERING_BUFFER_SIZE = 10,
|
||||
};
|
||||
CControllerState NewState;
|
||||
CControllerState OldState;
|
||||
int16 SteeringLeftRightBuffer[DRUNK_STEERING_BUFFER_SIZE];
|
||||
int32 DrunkDrivingBufferUsed;
|
||||
CControllerState PCTempKeyState;
|
||||
CControllerState PCTempJoyState;
|
||||
CControllerState PCTempMouseState;
|
||||
@ -263,6 +266,7 @@ public:
|
||||
static char *EditString(char *pStr, int32 nSize);
|
||||
static int32 *EditCodesForControls(int32 *pRsKeys, int32 nSize);
|
||||
uint32 InputHowLongAgo(void);
|
||||
void SetDrunkInputDelay(int32 delay) { DrunkDrivingBufferUsed = delay; }
|
||||
|
||||
#ifdef XINPUT
|
||||
void AffectFromXinput(uint32 pad);
|
||||
|
@ -439,7 +439,7 @@ CPed::CPed(uint32 pedType) : m_pedIK(this)
|
||||
bCrouchWhenScared = false;
|
||||
bKnockedOffBike = false;
|
||||
b158_8 = false;
|
||||
b158_10 = false;
|
||||
bCollectBusFare = false;
|
||||
bBoughtIceCream = false;
|
||||
b158_40 = false;
|
||||
|
||||
@ -12986,10 +12986,10 @@ CPed::PedSetInCarCB(CAnimBlendAssociation *animAssoc, void *arg)
|
||||
ped->b157_40 = false;
|
||||
ped->bRemoveFromWorld = true;
|
||||
}
|
||||
if (ped->b158_10) {
|
||||
ped->b158_10 = false;
|
||||
if (ped->bCollectBusFare) {
|
||||
ped->bCollectBusFare = false;
|
||||
if (FindPlayerPed())
|
||||
FindPlayerPed()->m_nPadUpPressedInMilliseconds += 5;
|
||||
FindPlayerPed()->m_nLastBusFareCollected += 5;
|
||||
}
|
||||
|
||||
if (!ped->IsNotInWreckedVehicle() || ped->DyingOrDead())
|
||||
@ -15176,7 +15176,7 @@ CPed::ProcessObjective(void)
|
||||
b157_40 = true;
|
||||
CPlayerPed *player = FindPlayerPed();
|
||||
if (pBus->IsPassenger(player) || pBus->IsDriver(player)) {
|
||||
b158_10 = true;
|
||||
bCollectBusFare = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -485,7 +485,7 @@ public:
|
||||
uint32 bCrouchWhenScared : 1;
|
||||
uint32 bKnockedOffBike : 1;
|
||||
uint32 b158_8 : 1;
|
||||
uint32 b158_10 : 1;
|
||||
uint32 bCollectBusFare : 1;
|
||||
uint32 bBoughtIceCream : 1;
|
||||
uint32 b158_40 : 1;
|
||||
//uint32 b158_80
|
||||
|
@ -83,7 +83,7 @@ CPlayerPed::CPlayerPed(void) : CPed(PEDTYPE_PLAYER1)
|
||||
m_pMeleeList[i] = nil;
|
||||
}
|
||||
m_nCheckPlayersIndex = 0;
|
||||
m_nPadUpPressedInMilliseconds = 0;
|
||||
m_nLastBusFareCollected = 0;
|
||||
idleAnimBlockIndex = CAnimManager::GetAnimationBlockIndex("playidles");
|
||||
}
|
||||
|
||||
|
@ -43,7 +43,7 @@ public:
|
||||
float m_fGunSpinSpeed; // for minigun
|
||||
float m_fGunSpinAngle;
|
||||
unsigned int m_nPadDownPressedInMilliseconds;
|
||||
unsigned int m_nPadUpPressedInMilliseconds;
|
||||
unsigned int m_nLastBusFareCollected;
|
||||
|
||||
CPlayerPed();
|
||||
~CPlayerPed();
|
||||
|
Loading…
Reference in New Issue
Block a user