1
0
forked from 0ad/0ad
0ad/source/simulation/LOSManager.cpp

254 lines
6.4 KiB
C++
Raw Normal View History

#include "precompiled.h"
#include "LOSManager.h"
#include "ps/Game.h"
#include "ps/Player.h"
#include "graphics/Terrain.h"
#include "Entity.h"
#include "EntityManager.h"
# Added tool for viewing models and animations outside the game. Atlas: Added ActorViewer. Moved GL canvas into separate class for shared use. Disabled message-handling callback while blocked on the game, and stopped creating dialog boxes inside the game thread in order to avoid deadlocks (hopefully). Support multiple Views (for independent sets of camera/update/render code). Recalculate territory boundaries when necessary. Changed default list of animations to match those currently used by actors. # Tidied up more code. Moved some more #includes out of .h files, to minimise unnecessary compilation. MathUtil: Deleted unused/unuseful macros (M_PI (use PI instead), M_PI_2 (use PI/2), MAX3, ABS (use abs)). ObjectManager: Removed some ScEd-specific things. Unit: Moved creation out of UnitManager, so units can be created without adding to the manager. Changed CStr8 to the more conventional CStr. app_hooks: Removed warning for setting multiple times. win: Restored SEH catcher. GameSetup, GameView: Removed RenderNoCull, because it doesn't seem to do what it says it does ("force renderer to load everything") since we're loading-on-demand most stuff and it doesn't seem especially useful since we'd prefer to minimise loading times (but feel free to correct me if I'm wrong). (And because it crashes when things need to be initialised in a different order, so it's easier to remove than to understand and fix it.) PatchRData, Renderer: Work sensibly when there's no game (hence no LOS manager, water, etc). LOSManager: Use entity position instead of actor position when possible. TerritoryManager: Allow delayed recalculations (so Atlas can issue lots of move+recalculate commands per frame). Cinematic: Non-pointer wxTimer, so it doesn't leak and doesn't have to be deleted manually. This was SVN commit r4261.
2006-08-28 19:36:42 +02:00
#include "EntityTemplate.h"
#include "graphics/Unit.h"
#include "maths/Bound.h"
#include "graphics/Model.h"
#include "lib/allocators/allocators.h" // matrix_alloc
#include "lib/timer.h"
CLOSManager::CLOSManager() : m_LOSSetting(LOS_SETTING_NORMAL), m_FogOfWar(true)
{
#ifdef _2_los
m_Explored = 0;
m_Visible = 0;
#else
m_VisibilityMatrix = 0;
#endif
}
CLOSManager::~CLOSManager()
{
#ifdef _2_los
matrix_free((void**)m_Explored);
m_Explored = 0;
matrix_free((void**)m_Visible);
m_Visible = 0;
#else
matrix_free((void**)m_VisibilityMatrix);
m_VisibilityMatrix = 0;
#endif
}
void CLOSManager::Initialize(ELOSSetting losSetting, bool fogOfWar)
{
// Set special LOS setting
m_LOSSetting = losSetting;
m_FogOfWar = fogOfWar;
CTerrain* terrain = g_Game->GetWorld()->GetTerrain();
m_TilesPerSide = terrain->GetVerticesPerSide() - 1;
m_TilesPerSide_1 = m_TilesPerSide-1;
// Create the LOS data arrays
#ifdef _2_los
m_Explored = (int**)matrix_alloc(m_TilesPerSide, m_TilesPerSide, sizeof(int));
m_Visible = (int**)matrix_alloc(m_TilesPerSide, m_TilesPerSide, sizeof(int));
#else
m_VisibilityMatrix = (u16**)matrix_alloc(m_TilesPerSide, m_TilesPerSide, sizeof(u16));
#endif
// TODO: This memory should be freed somewhere when the engine supports
// multiple sessions without restarting the program.
// JW: currently free it in the dtor
// Set initial values
#ifdef _2_los
int explored_value = (m_LOSSetting == LOS_SETTING_EXPLORED || m_LOSSetting == LOS_SETTING_ALL_VISIBLE)? 0xFF : 0;
int vis_value = (m_LOSSetting == LOS_SETTING_ALL_VISIBLE)? 0xFF : 0;
#else
u16 vis_value = 0;
if(m_LOSSetting == LOS_SETTING_EXPLORED || m_LOSSetting == LOS_SETTING_ALL_VISIBLE)
for(int i = 0; i < 8; i++) vis_value |= LOS_EXPLORED << (i*2);
if(m_LOSSetting == LOS_SETTING_ALL_VISIBLE || (m_LOSSetting == LOS_SETTING_EXPLORED && !m_FogOfWar) )
for(int i = 0; i < 8; i++) vis_value |= LOS_VISIBLE << (i*2);
#endif
for(size_t x=0; x<m_TilesPerSide; x++)
{
#ifdef _2_los
memset(m_Explored[x], explored_value, m_TilesPerSide*sizeof(int));
memset(m_Visible [x], vis_value , m_TilesPerSide*sizeof(int));
#else
for(size_t y=0; y<m_TilesPerSide; y++)
for(size_t x=0; x<m_TilesPerSide; x++)
m_VisibilityMatrix[y][x] = vis_value;
#endif
}
// Just Update() to set the visible array and also mark currently visible tiles as explored.
// NOTE: this will have to be changed if we decide to use incremental LOS
Update();
}
// NOTE: this will have to be changed if we decide to use incremental LOS
void CLOSManager::Update()
{
if(m_LOSSetting == LOS_SETTING_ALL_VISIBLE)
return;
// Clear the visible array
#ifdef _2_los
if( m_FogOfWar )
{
for(int x=0; x<m_TilesPerSide; x++)
{
memset(m_Visible[x], 0, m_TilesPerSide*sizeof(int));
}
}
#else
if( m_FogOfWar )
{
u16 not_all_vis = 0xFFFF;
for(int i = 0; i < 8; i++)
not_all_vis &= ~(LOS_VISIBLE << (i*2));
for(size_t y=0; y<m_TilesPerSide; y++)
for(size_t x=0; x<m_TilesPerSide; x++)
m_VisibilityMatrix[y][x] &= not_all_vis;
}
#endif
// Set visibility for each entity
std::vector<CEntity*> extant;
g_EntityManager.GetExtant(extant);
for(size_t i=0; i<extant.size(); i++)
{
CEntity* e = extant[i];
ssize_t los = e->m_los;
if(los == 0)
continue;
#ifdef _2_los
size_t mask = (size_t(1) << e->GetPlayer()->GetPlayerID());
#else
size_t shift = e->GetPlayer()->GetPlayerID()*2;
#endif
ssize_t cx, cz;
CTerrain::CalcFromPosition(e->m_position.X, e->m_position.Z, cx, cz);
ssize_t minX = std::max(cx-los, ssize_t(0));
ssize_t minZ = std::max(cz-los, ssize_t(0));
ssize_t maxX = std::min(cx+los, ssize_t(m_TilesPerSide_1));
ssize_t maxZ = std::min(cz+los, ssize_t(m_TilesPerSide_1));
for(ssize_t x=minX; x<=maxX; x++)
{
for(ssize_t z=minZ; z<=maxZ; z++)
{
if((x-cx)*(x-cx) + (z-cz)*(z-cz) <= los*los)
{
#ifdef _2_los
m_Visible[x][z] |= mask;
m_Explored[x][z] |= mask;
#else
m_VisibilityMatrix[x][z] |= (LOS_EXPLORED|LOS_VISIBLE) << shift;
#endif
}
}
}
}
}
size_t LOS_GetTokenFor(size_t player_id)
{
#ifdef _2_los
return size_t(1) << player_id;
#else
return player_id*2;
#endif
}
//TIMER_ADD_CLIENT(tc_getstatus);
ELOSStatus CLOSManager::GetStatus(ssize_t tx, ssize_t tz, CPlayer* player)
{
//TIMER_ACCRUE(tc_getstatus);
// Ensure that units off the map don't cause the visibility arrays to be
// accessed out of bounds
if ((size_t)tx >= m_TilesPerSide || (size_t)tz >= m_TilesPerSide)
return LOS_VISIBLE; // because we don't want them to be permanently hidden
// TODO: Make the mask depend on the player's diplomacy (just OR all his allies' masks)
#ifdef _2_los
const int mask = player->GetLOSToken();
if((m_Visible[tx][tz] & mask) || m_LOSSetting == LOS_SETTING_ALL_VISIBLE)
{
return LOS_VISIBLE;
}
else if((m_Explored[tx][tz] & mask) || m_LOSSetting == LOS_SETTING_EXPLORED)
{
return LOS_EXPLORED;
}
else
{
return LOS_UNEXPLORED;
}
#else
const size_t shift = player->GetLOSToken();
return (ELOSStatus)((m_VisibilityMatrix[tx][tz] >> shift) & 3);
#endif
}
ELOSStatus CLOSManager::GetStatus(float fx, float fz, CPlayer* player)
{
ssize_t ix, iz;
CTerrain::CalcFromPosition(fx, fz, ix, iz);
return GetStatus(ix, iz, player);
}
EUnitLOSStatus CLOSManager::GetUnitStatus(CUnit* unit, CPlayer* player)
{
# Added tool for viewing models and animations outside the game. Atlas: Added ActorViewer. Moved GL canvas into separate class for shared use. Disabled message-handling callback while blocked on the game, and stopped creating dialog boxes inside the game thread in order to avoid deadlocks (hopefully). Support multiple Views (for independent sets of camera/update/render code). Recalculate territory boundaries when necessary. Changed default list of animations to match those currently used by actors. # Tidied up more code. Moved some more #includes out of .h files, to minimise unnecessary compilation. MathUtil: Deleted unused/unuseful macros (M_PI (use PI instead), M_PI_2 (use PI/2), MAX3, ABS (use abs)). ObjectManager: Removed some ScEd-specific things. Unit: Moved creation out of UnitManager, so units can be created without adding to the manager. Changed CStr8 to the more conventional CStr. app_hooks: Removed warning for setting multiple times. win: Restored SEH catcher. GameSetup, GameView: Removed RenderNoCull, because it doesn't seem to do what it says it does ("force renderer to load everything") since we're loading-on-demand most stuff and it doesn't seem especially useful since we'd prefer to minimise loading times (but feel free to correct me if I'm wrong). (And because it crashes when things need to be initialised in a different order, so it's easier to remove than to understand and fix it.) PatchRData, Renderer: Work sensibly when there's no game (hence no LOS manager, water, etc). LOSManager: Use entity position instead of actor position when possible. TerritoryManager: Allow delayed recalculations (so Atlas can issue lots of move+recalculate commands per frame). Cinematic: Non-pointer wxTimer, so it doesn't leak and doesn't have to be deleted manually. This was SVN commit r4261.
2006-08-28 19:36:42 +02:00
CVector3D centre;
// For entities, we must use the simulation position so that we stay synchronised
// (because the output of this function will presumably affect AI)
CEntity* entity = unit->GetEntity();
if (entity)
centre = entity->m_position;
else
centre = unit->GetModel()->GetTransform().GetTranslation();
ELOSStatus status = GetStatus(centre.X, centre.Z, player);
if(status & LOS_VISIBLE)
return UNIT_VISIBLE;
if(status & LOS_EXPLORED)
{
# Added tool for viewing models and animations outside the game. Atlas: Added ActorViewer. Moved GL canvas into separate class for shared use. Disabled message-handling callback while blocked on the game, and stopped creating dialog boxes inside the game thread in order to avoid deadlocks (hopefully). Support multiple Views (for independent sets of camera/update/render code). Recalculate territory boundaries when necessary. Changed default list of animations to match those currently used by actors. # Tidied up more code. Moved some more #includes out of .h files, to minimise unnecessary compilation. MathUtil: Deleted unused/unuseful macros (M_PI (use PI instead), M_PI_2 (use PI/2), MAX3, ABS (use abs)). ObjectManager: Removed some ScEd-specific things. Unit: Moved creation out of UnitManager, so units can be created without adding to the manager. Changed CStr8 to the more conventional CStr. app_hooks: Removed warning for setting multiple times. win: Restored SEH catcher. GameSetup, GameView: Removed RenderNoCull, because it doesn't seem to do what it says it does ("force renderer to load everything") since we're loading-on-demand most stuff and it doesn't seem especially useful since we'd prefer to minimise loading times (but feel free to correct me if I'm wrong). (And because it crashes when things need to be initialised in a different order, so it's easier to remove than to understand and fix it.) PatchRData, Renderer: Work sensibly when there's no game (hence no LOS manager, water, etc). LOSManager: Use entity position instead of actor position when possible. TerritoryManager: Allow delayed recalculations (so Atlas can issue lots of move+recalculate commands per frame). Cinematic: Non-pointer wxTimer, so it doesn't leak and doesn't have to be deleted manually. This was SVN commit r4261.
2006-08-28 19:36:42 +02:00
if(!entity || entity->m_base->m_visionPermanent)
{
// both actors (which are usually for decoration) and units with the
// permanent flag should be remembered
return UNIT_REMEMBERED;
// TODO: the unit status system will have to be replaced with a "ghost actor"
// system so that we can't remember units that we haven't seen and so we can
// see permanent units that have died but that we haven't been near lately
}
}
return UNIT_HIDDEN;
}
EUnitLOSStatus CLOSManager::GetUnitStatus(CEntity* entity, CPlayer* player)
{
return GetUnitStatus( entity->m_actor, player );
}