gamelog.h

Go to the documentation of this file.
00001 /* $Id$ */
00002 
00003 /*
00004  * This file is part of OpenTTD.
00005  * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
00006  * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
00007  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
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); // needed for WIN32 / WINCE crash.log
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 #endif /* GAMELOG_H */