BGE patch: logic optimization part 2: remove inactive sensors from logic manager.
With this patch, only sensors that are connected to active states are actually registered in the logic manager. Inactive sensors won't take any CPU, especially the Radar and Near sensors that use a physical object for the detection: these objects are removed from the physics engine. To take advantage of this optimization patch, you need to define very light idle state when the objects are inactive: make them transparent, suspend the physics, keep few sensors active (e,g a message sensor to wake up), etc.
This commit is contained in:
@@ -50,16 +50,9 @@ SCA_RandomEventManager::SCA_RandomEventManager(class SCA_LogicManager* logicmgr)
|
||||
|
||||
void SCA_RandomEventManager::NextFrame()
|
||||
{
|
||||
for (vector<class SCA_ISensor*>::const_iterator i= m_sensors.begin();!(i==m_sensors.end());i++)
|
||||
for (set<class SCA_ISensor*>::const_iterator i= m_sensors.begin();!(i==m_sensors.end());i++)
|
||||
{
|
||||
SCA_ISensor *sensor = *i;
|
||||
sensor->Activate(m_logicmgr, NULL);
|
||||
(*i)->Activate(m_logicmgr, NULL);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
void SCA_RandomEventManager::RegisterSensor(SCA_ISensor* sensor)
|
||||
{
|
||||
m_sensors.push_back(sensor);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user