mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-05 12:45:55 +00:00
some more miami
This commit is contained in:
parent
6b4b708fa7
commit
918d6dbf56
|
@ -146,7 +146,7 @@ void CCarAI::UpdateCarAI(CVehicle* pVehicle)
|
|||
case MISSION_BLOCKPLAYER_CLOSE:
|
||||
if (FindSwitchDistanceFar(pVehicle) >= (FindPlayerCoors() - pVehicle->GetPosition()).Magnitude2D() ||
|
||||
pVehicle->AutoPilot.m_bIgnorePathfinding) {
|
||||
if (FindPlayerVehicle() && FindPlayerVehicle()->GetMoveSpeed().Magnitude() < 0.05f)
|
||||
if (FindPlayerVehicle() && FindPlayerVehicle()->GetMoveSpeed().Magnitude() < 0.04f)
|
||||
#ifdef FIX_BUGS
|
||||
pVehicle->m_nTimeBlocked += CTimer::GetTimeStepInMilliseconds();
|
||||
#else
|
||||
|
@ -155,7 +155,7 @@ void CCarAI::UpdateCarAI(CVehicle* pVehicle)
|
|||
else
|
||||
pVehicle->m_nTimeBlocked = 0;
|
||||
if (!FindPlayerVehicle() || FindPlayerVehicle()->IsUpsideDown() ||
|
||||
FindPlayerVehicle()->GetMoveSpeed().Magnitude() < 0.05f && pVehicle->m_nTimeBlocked > TIME_COPS_WAIT_TO_EXIT_AFTER_STOPPING) {
|
||||
FindPlayerVehicle()->GetMoveSpeed().Magnitude() < 0.04f && pVehicle->m_nTimeBlocked > TIME_COPS_WAIT_TO_EXIT_AFTER_STOPPING) {
|
||||
if (pVehicle->bIsLawEnforcer &&
|
||||
(pVehicle->GetModelIndex() != MI_RHINO || pVehicle->m_randomSeed > 10000) &&
|
||||
(FindPlayerCoors() - pVehicle->GetPosition()).Magnitude2D() < 10.0f) {
|
||||
|
|
|
@ -90,14 +90,16 @@ uint32 aCarsToKeepTime[MAX_CARS_TO_KEEP];
|
|||
void
|
||||
CCarCtrl::GenerateRandomCars()
|
||||
{
|
||||
if (CCutsceneMgr::IsRunning())
|
||||
if (CCutsceneMgr::IsRunning()) {
|
||||
CountDownToCarsAtStart = 2;
|
||||
return;
|
||||
}
|
||||
if (NumRandomCars < 30){
|
||||
if (CountDownToCarsAtStart == 0){
|
||||
GenerateOneRandomCar();
|
||||
}
|
||||
else if (--CountDownToCarsAtStart == 0) {
|
||||
for (int i = 0; i < 50; i++)
|
||||
for (int i = 0; i < 100; i++)
|
||||
GenerateOneRandomCar();
|
||||
CTheCarGenerators::GenerateEvenIfPlayerIsCloseCounter = 20;
|
||||
}
|
||||
|
|
|
@ -8,6 +8,29 @@ enum eLevelName {
|
|||
LEVEL_SUBURBAN
|
||||
};
|
||||
|
||||
enum eVisibilityArea
|
||||
{
|
||||
VIS_MAIN_MAP = 0,
|
||||
VIS_HOTEL,
|
||||
VIS_MANSION,
|
||||
VIS_BANK,
|
||||
VIS_MALL,
|
||||
VIS_STRIP_CLUB,
|
||||
VIS_LAWYERS,
|
||||
VIS_COFFEE_SHOP,
|
||||
VIS_CONCERT_HALL,
|
||||
VIS_STUDIO,
|
||||
VIS_RIFLE_RANGE,
|
||||
VIS_BIKER_BAR,
|
||||
VIS_POLICE_STATION,
|
||||
VIS_EVERYWHERE,
|
||||
VIS_DIRT,
|
||||
VIS_BLOOD,
|
||||
VIS_OVALRING,
|
||||
VIS_MALIBU_CLUB,
|
||||
VIS_PRINT_WORKS,
|
||||
};
|
||||
|
||||
class CGame
|
||||
{
|
||||
public:
|
||||
|
|
Loading…
Reference in a new issue