Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00012 #ifndef GAMELOG_H
00013 #define GAMELOG_H
00014
00015 #include "newgrf_config.h"
00016
00018 enum GamelogActionType {
00019 GLAT_START,
00020 GLAT_LOAD,
00021 GLAT_GRF,
00022 GLAT_CHEAT,
00023 GLAT_SETTING,
00024 GLAT_GRFBUG,
00025 GLAT_EMERGENCY,
00026 GLAT_END,
00027 GLAT_NONE = 0xFF,
00028 };
00029
00030 void GamelogStartAction(GamelogActionType at);
00031 void GamelogStopAction();
00032
00033 void GamelogReset();
00034
00039 typedef void GamelogPrintProc(const char *s);
00040 void GamelogPrint(GamelogPrintProc *proc);
00041
00042 void GamelogPrintDebug(int level);
00043 void GamelogPrintConsole();
00044
00045 void GamelogEmergency();
00046 bool GamelogTestEmergency();
00047
00048 void GamelogRevision();
00049 void GamelogMode();
00050 void GamelogOldver();
00051 void GamelogSetting(const char *name, int32 oldval, int32 newval);
00052
00053 void GamelogGRFUpdate(const GRFConfig *oldg, const GRFConfig *newg);
00054 void GamelogGRFAddList(const GRFConfig *newg);
00055 void GamelogGRFRemove(uint32 grfid);
00056 void GamelogGRFAdd(const GRFConfig *newg);
00057 void GamelogGRFCompatible(const GRFIdentifier *newg);
00058
00059 void GamelogTestRevision();
00060 void GamelogTestMode();
00061
00062 bool GamelogGRFBugReverse(uint32 grfid, uint16 internal_id);
00063
00064 void GamelogInfo(struct LoggedAction *gamelog_action, uint gamelog_actions, uint32 *last_ottd_rev, byte *ever_modified, bool *removed_newgrfs);
00065
00066 #endif