2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2007-03-21 03:06:21 +00:00
|
|
|
/** @file newgrf.h */
|
|
|
|
|
2004-11-17 20:08:13 +00:00
|
|
|
#ifndef NEWGRF_H
|
|
|
|
#define NEWGRF_H
|
|
|
|
|
2008-01-07 14:02:26 +00:00
|
|
|
#include "town_type.h"
|
2006-12-04 08:30:04 +00:00
|
|
|
#include "newgrf_config.h"
|
2007-02-24 19:36:47 +00:00
|
|
|
#include "cargotype.h"
|
2008-01-07 14:02:26 +00:00
|
|
|
#include "industry_type.h"
|
2008-03-31 00:06:17 +00:00
|
|
|
#include "newgrf_station.h"
|
2004-11-19 22:53:18 +00:00
|
|
|
|
2007-03-07 12:11:48 +00:00
|
|
|
enum GrfLoadingStage {
|
2006-12-04 08:30:04 +00:00
|
|
|
GLS_FILESCAN,
|
2006-12-12 19:38:41 +00:00
|
|
|
GLS_SAFETYSCAN,
|
2006-12-03 23:46:54 +00:00
|
|
|
GLS_LABELSCAN,
|
|
|
|
GLS_INIT,
|
2007-03-22 23:19:40 +00:00
|
|
|
GLS_RESERVE,
|
2006-12-03 23:46:54 +00:00
|
|
|
GLS_ACTIVATION,
|
|
|
|
GLS_END,
|
2007-03-07 12:11:48 +00:00
|
|
|
};
|
2006-12-03 23:46:54 +00:00
|
|
|
|
2007-01-10 18:56:51 +00:00
|
|
|
DECLARE_POSTFIX_INCREMENT(GrfLoadingStage);
|
|
|
|
|
2007-04-27 21:35:02 +00:00
|
|
|
enum GrfMiscBit {
|
|
|
|
GMB_DESERT_TREES_FIELDS = 0, // Unsupported.
|
|
|
|
GMB_DESERT_PAVED_ROADS = 1,
|
|
|
|
GMB_FIELD_BOUNDING_BOX = 2, // Unsupported.
|
|
|
|
GMB_TRAIN_WIDTH_32_PIXELS = 3,
|
|
|
|
GMB_AMBIENT_SOUND_CALLBACK = 4, // Unsupported.
|
|
|
|
GMB_CATENARY_ON_3RD_TRACK = 5, // Unsupported.
|
|
|
|
};
|
2007-01-10 18:56:51 +00:00
|
|
|
|
2008-02-12 11:08:47 +00:00
|
|
|
enum GrfSpecFeature {
|
|
|
|
GSF_TRAIN,
|
|
|
|
GSF_ROAD,
|
|
|
|
GSF_SHIP,
|
|
|
|
GSF_AIRCRAFT,
|
|
|
|
GSF_STATION,
|
|
|
|
GSF_CANAL,
|
|
|
|
GSF_BRIDGE,
|
|
|
|
GSF_TOWNHOUSE,
|
|
|
|
GSF_GLOBALVAR,
|
|
|
|
GSF_INDUSTRYTILES,
|
|
|
|
GSF_INDUSTRIES,
|
|
|
|
GSF_CARGOS,
|
|
|
|
GSF_SOUNDFX,
|
|
|
|
GSF_END,
|
|
|
|
};
|
|
|
|
|
2007-03-07 12:11:48 +00:00
|
|
|
struct GRFLabel {
|
2006-04-15 21:27:59 +00:00
|
|
|
byte label;
|
|
|
|
uint32 nfo_line;
|
|
|
|
uint32 pos;
|
|
|
|
struct GRFLabel *next;
|
2007-03-07 12:11:48 +00:00
|
|
|
};
|
2006-04-15 21:27:59 +00:00
|
|
|
|
2007-03-07 12:11:48 +00:00
|
|
|
struct GRFFile {
|
2004-11-17 20:08:13 +00:00
|
|
|
char *filename;
|
2007-12-31 04:38:11 +00:00
|
|
|
bool is_ottdfile;
|
2004-11-17 20:08:13 +00:00
|
|
|
uint32 grfid;
|
|
|
|
uint16 sprite_offset;
|
2006-04-23 18:03:55 +00:00
|
|
|
byte grf_version;
|
2007-03-07 12:11:48 +00:00
|
|
|
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-09-27 18:17:01 +00:00
|
|
|
uint sound_offset;
|
|
|
|
|
2006-05-06 22:20:16 +00:00
|
|
|
StationSpec **stations;
|
2007-03-19 11:27:30 +00:00
|
|
|
HouseSpec **housespec;
|
2007-05-31 03:35:11 +00:00
|
|
|
IndustrySpec **industryspec;
|
|
|
|
IndustryTileSpec **indtspec;
|
2005-08-15 21:19:28 +00:00
|
|
|
|
|
|
|
uint32 param[0x80];
|
2007-03-21 03:06:21 +00:00
|
|
|
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.
|
2007-02-24 19:36:47 +00:00
|
|
|
|
|
|
|
uint8 cargo_max;
|
|
|
|
CargoLabel *cargo_list;
|
2007-02-24 23:20:21 +00:00
|
|
|
uint8 cargo_map[NUM_CARGO];
|
2007-03-07 12:11:48 +00:00
|
|
|
};
|
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
|
|
|
|
2008-01-24 14:49:40 +00:00
|
|
|
enum ShoreReplacement {
|
|
|
|
SHORE_REPLACE_NONE, ///< No shore sprites were replaced.
|
|
|
|
SHORE_REPLACE_ACTION_5, ///< Shore sprites were replaced by Action5.
|
|
|
|
SHORE_REPLACE_ACTION_A, ///< Shore sprites were replaced by ActionA (using grass tiles for the corner-shores).
|
|
|
|
SHORE_REPLACE_ONLY_NEW, ///< Only corner-shores were loaded by Action5 (openttd(w/d).grf only).
|
|
|
|
};
|
|
|
|
|
2007-06-15 23:55:52 +00:00
|
|
|
struct GRFLoadedFeatures {
|
|
|
|
bool has_2CC; ///< Set if any vehicle is loaded which uses 2cc (two company colours).
|
|
|
|
bool has_newhouses; ///< Set if there are any newhouses loaded.
|
|
|
|
bool has_newindustries; ///< Set if there are any newindustries loaded.
|
2008-01-24 14:49:40 +00:00
|
|
|
ShoreReplacement shore; ///< It which way shore sprites were replaced.
|
2007-05-31 19:13:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Indicates which are the newgrf features currently loaded ingame */
|
2007-06-15 23:55:52 +00:00
|
|
|
extern GRFLoadedFeatures _loaded_newgrf_features;
|
2004-11-19 22:53:18 +00:00
|
|
|
|
2008-01-04 15:39:08 +00:00
|
|
|
void LoadNewGRFFile(GRFConfig *config, uint file_index, GrfLoadingStage stage);
|
2005-08-15 11:39:13 +00:00
|
|
|
void LoadNewGRF(uint load_index, uint file_index);
|
2007-03-21 03:06:21 +00:00
|
|
|
void ReloadNewGRFData(); // in openttd.cpp
|
2004-11-17 20:08:13 +00:00
|
|
|
|
2006-12-26 17:36:18 +00:00
|
|
|
void CDECL grfmsg(int severity, const char *str, ...);
|
|
|
|
|
2007-04-27 21:35:02 +00:00
|
|
|
bool HasGrfMiscBit(GrfMiscBit bit);
|
2008-02-12 15:43:10 +00:00
|
|
|
bool GetGlobalVariable(byte param, uint32 *value);
|
2007-04-27 21:35:02 +00:00
|
|
|
|
2008-02-29 08:48:01 +00:00
|
|
|
StringID MapGRFStringID(uint32 grfid, StringID str);
|
|
|
|
|
2004-11-17 20:08:13 +00:00
|
|
|
#endif /* NEWGRF_H */
|