1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-26 17:47:37 +00:00

Disable water creatures

This commit is contained in:
Sergeanur 2021-01-08 18:26:35 +02:00
parent 95260371cb
commit e9001207ea
5 changed files with 15 additions and 11 deletions

View file

@ -1287,7 +1287,7 @@ void CReplay::TriggerPlayback(uint8 cam_mode, float cam_x, float cam_y, float ca
DMAudio.SetEffectsFadeVol(0);
DMAudio.SetMusicFadeVol(0);
CEscalators::Shutdown();
CWaterCreatures::RemoveAll();
//CWaterCreatures::RemoveAll();
int current;
for (current = 0; current < NUM_REPLAYBUFFERS; current++)
if (BufferStatus[current] == REPLAYBUFFER_RECORD)

View file

@ -587,7 +587,7 @@ bool CGame::ShutDown(void)
CPlane::Shutdown();
CTrain::Shutdown();
CScriptPaths::Shutdown();
CWaterCreatures::RemoveAll();
//CWaterCreatures::RemoveAll();
CSpecialFX::Shutdown();
CGarages::Shutdown();
CMovingThings::Shutdown();
@ -749,7 +749,7 @@ void CGame::ShutDownForRestart(void)
CRadar::RemoveRadarSections();
FrontEndMenuManager.UnloadTextures();
CParticleObject::RemoveAllExpireableParticleObjects();
CWaterCreatures::RemoveAll();
//CWaterCreatures::RemoveAll();
CSetPieces::Init();
CPedType::Shutdown();
CSpecialFX::Shutdown();

View file

@ -7,6 +7,7 @@
#include "config.h"
#include "General.h"
/*
int CWaterCreatures::nNumActiveSeaLifeForms;
CWaterCreature CWaterCreatures::aWaterCreatures[NUM_WATER_CREATURES];
@ -271,4 +272,5 @@ void CWaterCreatures::RemoveAll() {
nNumActiveSeaLifeForms--;
}
}
}
}
*/

View file

@ -1,6 +1,7 @@
#pragma once
#include "Object.h"
/*
enum eFishSlotState {
WATER_CREATURE_INIT = 0,
WATER_CREATURE_ACTIVE,
@ -45,4 +46,4 @@ struct WaterCreatureProperties {
float fLevel;
float fUnknown; //unused
float fWaterDepth;
};
};*/

View file

@ -1175,13 +1175,13 @@ CWaterLevel::RenderWater()
if ( WavesCalculatedThisFrame )
{
RenderSeaBirds();
RenderShipsOnHorizon();
CParticle::HandleShipsAtHorizonStuff();
HandleBeachToysStuff();
//RenderShipsOnHorizon();
//CParticle::HandleShipsAtHorizonStuff();
//HandleBeachToysStuff();
}
if ( _bSeaLife )
HandleSeaLifeForms();
//if ( _bSeaLife )
// HandleSeaLifeForms();
DefinedState();
}
@ -3105,6 +3105,7 @@ CWaterLevel::RenderShipsOnHorizon()
}
}
/*
void
CWaterLevel::HandleSeaLifeForms()
{
@ -3145,7 +3146,7 @@ CWaterLevel::HandleSeaLifeForms()
}
CWaterCreatures::UpdateAll();
}
}*/
void
CWaterLevel::HandleBeachToysStuff(void)