2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2004-11-17 20:08:13 +00:00
|
|
|
#ifndef NEWGRF_H
|
|
|
|
#define NEWGRF_H
|
|
|
|
|
2004-11-19 22:53:18 +00:00
|
|
|
#include "station.h"
|
|
|
|
|
2006-04-15 21:27:59 +00:00
|
|
|
typedef struct GRFLabel {
|
|
|
|
byte label;
|
|
|
|
uint32 nfo_line;
|
|
|
|
uint32 pos;
|
|
|
|
struct GRFLabel *next;
|
|
|
|
} GRFLabel;
|
|
|
|
|
2006-04-22 13:17:13 +00:00
|
|
|
typedef struct GRFFile {
|
2004-11-17 20:08:13 +00:00
|
|
|
char *filename;
|
|
|
|
uint32 grfid;
|
|
|
|
uint16 flags;
|
|
|
|
uint16 sprite_offset;
|
2006-04-23 18:03:55 +00:00
|
|
|
byte grf_version;
|
2006-04-22 13:17:13 +00:00
|
|
|
struct GRFFile *next;
|
2004-11-17 20:08:13 +00:00
|
|
|
|
|
|
|
/* A sprite group contains all sprites of a given vehicle (or multiple
|
|
|
|
* vehicles) when carrying given cargo. It consists of several sprite
|
|
|
|
* sets. Group ids are refered as "cargo id"s by TTDPatch
|
|
|
|
* documentation, contributing to the global confusion.
|
|
|
|
*
|
|
|
|
* A sprite set contains all sprites of a given vehicle carrying given
|
|
|
|
* cargo at a given *stage* - that is usually its load stage. Ie. you
|
|
|
|
* can have a spriteset for an empty wagon, wagon full of coal,
|
|
|
|
* half-filled wagon etc. Each spriteset contains eight sprites (one
|
|
|
|
* per direction) or four sprites if the vehicle is symmetric. */
|
|
|
|
|
2006-05-01 16:52:43 +00:00
|
|
|
SpriteID spriteset_start;
|
2004-11-17 20:08:13 +00:00
|
|
|
int spriteset_numsets;
|
|
|
|
int spriteset_numents;
|
|
|
|
int spriteset_feature;
|
|
|
|
|
|
|
|
int spritegroups_count;
|
2006-05-17 21:26:12 +00:00
|
|
|
struct SpriteGroup **spritegroups;
|
2004-11-17 20:08:13 +00:00
|
|
|
|
2006-05-06 22:20:16 +00:00
|
|
|
StationSpec **stations;
|
2005-08-15 21:19:28 +00:00
|
|
|
|
|
|
|
uint32 param[0x80];
|
|
|
|
uint param_end; /// one more than the highest set parameter
|
2006-04-15 21:27:59 +00:00
|
|
|
|
|
|
|
GRFLabel *label; ///< Pointer to the first label. This is a linked list, not an array.
|
2006-04-22 13:17:13 +00:00
|
|
|
} GRFFile;
|
2004-11-17 20:08:13 +00:00
|
|
|
|
2005-03-10 07:01:43 +00:00
|
|
|
extern GRFFile *_first_grffile;
|
2004-11-17 20:08:13 +00:00
|
|
|
|
2006-04-22 13:17:13 +00:00
|
|
|
typedef struct GRFConfig {
|
|
|
|
const char *filename;
|
|
|
|
uint32 param[0x80];
|
|
|
|
byte num_params;
|
|
|
|
|
|
|
|
struct GRFConfig *next;
|
|
|
|
} GRFConfig;
|
|
|
|
|
|
|
|
extern GRFConfig *_first_grfconfig;
|
2006-04-23 15:57:34 +00:00
|
|
|
extern SpriteID _signal_base;
|
2004-11-19 22:53:18 +00:00
|
|
|
|
2005-08-15 11:39:13 +00:00
|
|
|
void LoadNewGRF(uint load_index, uint file_index);
|
2004-11-17 20:08:13 +00:00
|
|
|
|
|
|
|
#endif /* NEWGRF_H */
|