diff options
author | truebrain <truebrain@openttd.org> | 2011-11-13 20:41:17 +0000 |
---|---|---|
committer | truebrain <truebrain@openttd.org> | 2011-11-13 20:41:17 +0000 |
commit | 70b6b3cc2ce7eb37679ce6f4d26f54fd790589fc (patch) | |
tree | 6db3f6f28bf2e498b8cd522a946ee51e1476df08 /src/ai/api | |
parent | 049bea1e8a4573f7f841ba77f579516d7b5e793a (diff) | |
download | openttd-70b6b3cc2ce7eb37679ce6f4d26f54fd790589fc.tar.xz |
(svn r23207) -Codechange: make functions private/protected/public depending on their current usage (and reorder functions a bit)
Diffstat (limited to 'src/ai/api')
-rw-r--r-- | src/ai/api/ai_object.hpp | 45 |
1 files changed, 23 insertions, 22 deletions
diff --git a/src/ai/api/ai_object.hpp b/src/ai/api/ai_object.hpp index 48be653d5..3df150bac 100644 --- a/src/ai/api/ai_object.hpp +++ b/src/ai/api/ai_object.hpp @@ -39,6 +39,18 @@ friend void CcAI(const CommandCost &result, TileIndex tile, uint32 p1, uint32 p2 friend class AIInstance; friend class AIController; #ifndef DOXYGEN_AI_DOCS +public: + /** + * Store the latest result of a DoCommand per company. + * @param res The result of the last command. + */ + static void SetLastCommandRes(bool res); + + /** + * Get the pointer to store log message in. + */ + static void *&GetLogPointer(); + protected: /** * Executes a raw DoCommand for the AI. @@ -141,9 +153,10 @@ protected: static GroupID GetNewGroupID(); /** - * Can we suspend the AI at this moment? + * Store a allow_do_command per company. + * @param allow The new allow. */ - static bool CanSuspend(); + static void SetAllowDoCommand(bool allow); /** * Get the internal value of allow_do_command. This can differ @@ -155,11 +168,6 @@ protected: static bool GetAllowDoCommand(); /** - * Get the pointer to store event data in. - */ - static void *&GetEventPointer(); - - /** * Set the cost of the last command. */ static void SetLastCost(Money last_cost); @@ -179,13 +187,17 @@ protected: */ static int GetCallbackVariable(int index); -public: /** - * Store the latest result of a DoCommand per company. - * @param res The result of the last command. + * Can we suspend the AI at this moment? */ - static void SetLastCommandRes(bool res); + static bool CanSuspend(); + + /** + * Get the pointer to store event data in. + */ + static void *&GetEventPointer(); +private: /** * Store a new_vehicle_id per company. * @param vehicle_id The new VehicleID. @@ -209,17 +221,6 @@ public: * @param group_id The new GroupID. */ static void SetNewGroupID(GroupID group_id); - - /** - * Store a allow_do_command per company. - * @param allow The new allow. - */ - static void SetAllowDoCommand(bool allow); - - /** - * Get the pointer to store log message in. - */ - static void *&GetLogPointer(); #endif /* DOXYGEN_AI_DOCS */ }; |