Files
@ r5312:ffd375effb01
Branch filter:
Location: cpp/openttd-patchpack/source/newgrf_config.h - annotation
r5312:ffd375effb01
1.1 KiB
text/x-c
(svn r7468) -Codechange: [win32] Add some comments to MB/WIDE_TO_WIDE/MB_[BUFFER] macros and
use them some more in win32 code. Also for the clipboard use the convert_from_fs
function instead of calling Win32 API directly. Make the static buffers in OTTD2FS
and FS2OTTD the same size (character-length wise)
use them some more in win32 code. Also for the clipboard use the convert_from_fs
function instead of calling Win32 API directly. Make the static buffers in OTTD2FS
and FS2OTTD the same size (character-length wise)
r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5234:0b67c0cda2bd r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5228:68969c6ab65b r5308:f99fd7e1f052 r5228:68969c6ab65b r5237:cc044906a066 r5237:cc044906a066 r5237:cc044906a066 r5228:68969c6ab65b | /* $Id$ */
#ifndef NEWGRF_CONFIG_H
#define NEWGRF_CONFIG_H
/* GRF config bit flags */
enum {
GCF_DISABLED,
GCF_NOT_FOUND,
GCF_ACTIVATED,
};
typedef struct GRFConfig {
char *filename;
char *name;
char *info;
uint32 grfid;
uint8 flags;
uint8 md5sum[16];
uint32 param[0x80];
uint8 num_params;
struct GRFConfig *next;
} GRFConfig;
/* First item in list of all scanned NewGRFs */
extern GRFConfig *_all_grfs;
/* First item in list of current GRF set up */
extern GRFConfig *_grfconfig;
/* First item in list of default GRF set up */
extern GRFConfig *_grfconfig_newgame;
void ScanNewGRFFiles(void);
const GRFConfig *FindGRFConfig(uint32 grfid, uint8 *md5sum);
const GRFConfig *GetGRFConfig(uint32 grfid);
void ClearGRFConfigList(GRFConfig *config);
void ResetGRFConfig(bool defaults);
bool IsGoodGRFConfigList(void);
bool FillGRFDetails(GRFConfig *config);
char *GRFBuildParamList(char *dst, const GRFConfig *c, const char *last);
/* In newgrf_gui.c */
void ShowNewGRFSettings(bool editable, bool show_params, GRFConfig **config);
#endif /* NEWGRF_CONFIG_H */
|