This website requires JavaScript.
Explore
Help
Sign In
gptbot
/
0ad
Watch
1
Star
0
Fork
0
You've already forked 0ad
forked from
mirrors/0ad
Code
Pull Requests
Activity
Files
9710f3ee725f01a3aad59024282ac2f8d03022bb
0ad
/
source
/
simulation
T
History
Matei
fce3b183bb
This was SVN commit r3311.
2005-12-29 09:12:54 +00:00
..
scripting
…
Aura.cpp
Lots of fixes for the Linux build:
2005-12-17 22:00:54 +00:00
Aura.h
Added C++ code for auras. Some things that still need to be implemented are:
2005-12-13 08:05:30 +00:00
BaseEntity.cpp
Generic orders source commit. Also includes a fix to the animation bug where one frame of "idle" is played at the end of each cycle, and an enhancement to the entity script loading code to only load each script file once, which should save loading time and also allow script files to behave in a more logical way (e.g. no redeclaration errors when you have a constant).
2005-12-29 08:42:44 +00:00
BaseEntity.h
Generic orders source commit. Also includes a fix to the animation bug where one frame of "idle" is played at the end of each cycle, and an enhancement to the entity script loading code to only load each script file once, which should save loading time and also allow script files to behave in a more logical way (e.g. no redeclaration errors when you have a constant).
2005-12-29 08:42:44 +00:00
BaseEntityCollection.cpp
…
BaseEntityCollection.h
…
BoundingObjects.cpp
…
BoundingObjects.h
…
Collision.cpp
Added a "collision patch" system that groups entities into a grid on top of the map to make aura checking and collision detection faster.
2005-12-16 05:35:26 +00:00
Collision.h
Added a "collision patch" system that groups entities into a grid on top of the map to make aura checking and collision detection faster.
2005-12-16 05:35:26 +00:00
Entity.cpp
This was SVN commit r3311.
2005-12-29 09:12:54 +00:00
Entity.h
Generic orders source commit. Also includes a fix to the animation bug where one frame of "idle" is played at the end of each cycle, and an enhancement to the entity script loading code to only load each script file once, which should save loading time and also allow script files to behave in a more logical way (e.g. no redeclaration errors when you have a constant).
2005-12-29 08:42:44 +00:00
EntityHandles.cpp
…
EntityHandles.h
…
EntityManager.cpp
Actual death flag and CHandle entity handle retrieval.
2005-12-29 04:57:02 +00:00
EntityManager.h
(see EntityManger.cpp log)
2005-12-29 04:58:41 +00:00
EntityMessage.h
…
EntityOrders.h
Generic orders source commit. Also includes a fix to the animation bug where one frame of "idle" is played at the end of each cycle, and an enhancement to the entity script loading code to only load each script file once, which should save loading time and also allow script files to behave in a more logical way (e.g. no redeclaration errors when you have a constant).
2005-12-29 08:42:44 +00:00
EntityPredicate.h
…
EntityProperties.cpp
…
EntityProperties.h
…
EntityStateProcessing.cpp
Generic orders source commit. Also includes a fix to the animation bug where one frame of "idle" is played at the end of each cycle, and an enhancement to the entity script loading code to only load each script file once, which should save loading time and also allow script files to behave in a more logical way (e.g. no redeclaration errors when you have a constant).
2005-12-29 08:42:44 +00:00
EntitySupport.h
Generic orders source commit. Also includes a fix to the animation bug where one frame of "idle" is played at the end of each cycle, and an enhancement to the entity script loading code to only load each script file once, which should save loading time and also allow script files to behave in a more logical way (e.g. no redeclaration errors when you have a constant).
2005-12-29 08:42:44 +00:00
EventHandlers.cpp
Generic orders source commit. Also includes a fix to the animation bug where one frame of "idle" is played at the end of each cycle, and an enhancement to the entity script loading code to only load each script file once, which should save loading time and also allow script files to behave in a more logical way (e.g. no redeclaration errors when you have a constant).
2005-12-29 08:42:44 +00:00
EventHandlers.h
Generic orders source commit. Also includes a fix to the animation bug where one frame of "idle" is played at the end of each cycle, and an enhancement to the entity script loading code to only load each script file once, which should save loading time and also allow script files to behave in a more logical way (e.g. no redeclaration errors when you have a constant).
2005-12-29 08:42:44 +00:00
LOSManager.cpp
Terrain, Interact, LOSManager, Atlas, etc: Fixed some off-by-one and off-by-FLT_EPSILON problems with objects near/off the edge of the map. Also changed some model.GetBounds().GetCentre() into model.GetTransform().GetTranslation() to fix off-by-centre-of-bounds-minus-position problems. Thus, you can no longer make units in Atlas disappear off the edge and never be seen or selected again. Also changed out-of-bounds LOS value to make them visible if they somehow escape anyway. Also fixed out-of-bounds access of terrain heightmap.
2005-12-09 01:08:08 +00:00
LOSManager.h
…
PathfindEngine.cpp
Generic orders source commit. Also includes a fix to the animation bug where one frame of "idle" is played at the end of each cycle, and an enhancement to the entity script loading code to only load each script file once, which should save loading time and also allow script files to behave in a more logical way (e.g. no redeclaration errors when you have a constant).
2005-12-29 08:42:44 +00:00
PathfindEngine.h
Generic orders source commit. Also includes a fix to the animation bug where one frame of "idle" is played at the end of each cycle, and an enhancement to the entity script loading code to only load each script file once, which should save loading time and also allow script files to behave in a more logical way (e.g. no redeclaration errors when you have a constant).
2005-12-29 08:42:44 +00:00
PathfindSparse.cpp
…
PathfindSparse.h
…
Projectile.cpp
Terrain, Interact, LOSManager, Atlas, etc: Fixed some off-by-one and off-by-FLT_EPSILON problems with objects near/off the edge of the map. Also changed some model.GetBounds().GetCentre() into model.GetTransform().GetTranslation() to fix off-by-centre-of-bounds-minus-position problems. Thus, you can no longer make units in Atlas disappear off the edge and never be seen or selected again. Also changed out-of-bounds LOS value to make them visible if they somehow escape anyway. Also fixed out-of-bounds access of terrain heightmap.
2005-12-09 01:08:08 +00:00
Projectile.h
…
Scheduler.cpp
Added support for cancelling a timeout or interval set using setTimeout/setInterval, which is used by the infidelity aura.
2005-12-18 07:33:16 +00:00
Scheduler.h
Removed a compile warning and changed scheduler's "tasks to cancel" set to a hash set.
2005-12-18 07:41:02 +00:00
ScriptObject.cpp
…
ScriptObject.h
…
Simulation.cpp
Generic orders source commit. Also includes a fix to the animation bug where one frame of "idle" is played at the end of each cycle, and an enhancement to the entity script loading code to only load each script file once, which should save loading time and also allow script files to behave in a more logical way (e.g. no redeclaration errors when you have a constant).
2005-12-29 08:42:44 +00:00
Simulation.h
…
TurnManager.cpp
…
TurnManager.h
…