1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-16 10:19:47 +02:00
vcmi/AI/Nullkiller/Analyzers
Ivan Savenko 3dd4fa2528 Reduce usage of pointers to VLC entities
Final goal (of multiple PR's) is to remove all remaining pointers from
serializeable game state, and replace them with either identifiers or
with shared/unique pointers.

CGTownInstance::town and CGHeroInstance::type members have been removed.
Now this data is computed dynamically using subID member.

VLC entity of a town can now be accessed via following methods:
- getFactionID() returns ID of a faction
- getFaction() returns pointer to a faction
- getTown() returns pointer to a town

VLC entity of a hero can now be accessed via following methods:
- getHeroTypeID() returns ID of a hero
- getHeroClassID() returns ID of a hero class
- getHeroType() returns pointer to a hero
- getHeroClass() returns pointer to a hero class
2024-10-10 12:28:08 +00:00
..
ArmyManager.cpp Reduce usage of pointers to VLC entities 2024-10-10 12:28:08 +00:00
ArmyManager.h Split CTownHandler into smaller chunks 2024-07-21 18:21:48 +00:00
BuildAnalyzer.cpp Reduce usage of pointers to VLC entities 2024-10-10 12:28:08 +00:00
BuildAnalyzer.h Fix typos using https://github.com/crate-ci/typos 2024-06-24 03:47:19 +02:00
DangerHitMapAnalyzer.cpp BattleAI: improve movement towards unreachable 2024-08-21 22:18:40 +03:00
DangerHitMapAnalyzer.h Reduced usage of global variables - removed or made const / constexpr 2024-02-12 13:49:45 +02:00
HeroManager.cpp Reduce usage of pointers to VLC entities 2024-10-10 12:28:08 +00:00
HeroManager.h Split CTownHandler into smaller chunks 2024-07-21 18:21:48 +00:00
ObjectClusterizer.cpp NKAI: replace hardcoded pandora with more flexible solution 2024-09-20 16:05:57 +03:00
ObjectClusterizer.h Review fixes 2024-06-17 09:43:22 +00:00