2005-07-24 15:12:37 +01:00
/* $Id$ */
2009-08-21 21:21:05 +01:00
/*
* This file is part of OpenTTD .
* 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.
* 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 .
* 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/>.
*/
2008-05-06 16:11:33 +01:00
/** @file newgrf.h Base for the NewGRF implementation. */
2007-03-21 03:06:21 +00:00
2004-11-17 20:08:13 +00:00
# ifndef NEWGRF_H
# define NEWGRF_H
2007-02-24 19:36:47 +00:00
# include "cargotype.h"
2009-02-08 18:11:06 +00:00
# include "rail_type.h"
2011-08-24 14:48:29 +01:00
# include "fileio_type.h"
2004-11-19 22:53:18 +00:00
2011-09-11 10:31:57 +01:00
/**
* List of different canal ' features ' .
* Each feature gets an entry in the canal spritegroup table
*/
enum CanalFeature {
CF_WATERSLOPE ,
CF_LOCKS ,
CF_DIKES ,
CF_ICON ,
CF_DOCKS ,
CF_RIVER_SLOPE ,
CF_RIVER_EDGE ,
2011-10-02 21:26:43 +01:00
CF_RIVER_GUI ,
CF_BUOY ,
2011-09-11 10:31:57 +01:00
CF_END ,
} ;
/** Canal properties local to the NewGRF */
struct CanalProperties {
uint8 callback_mask ; ///< Bitmask of canal callbacks that have to be called.
uint8 flags ; ///< Flags controlling display.
} ;
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
2010-03-23 22:25:43 +00:00
DECLARE_POSTFIX_INCREMENT ( GrfLoadingStage )
2007-01-10 18:56:51 +00:00
2007-04-27 22:35:02 +01:00
enum GrfMiscBit {
GMB_DESERT_TREES_FIELDS = 0 , // Unsupported.
GMB_DESERT_PAVED_ROADS = 1 ,
GMB_FIELD_BOUNDING_BOX = 2 , // Unsupported.
2009-07-17 23:00:13 +01:00
GMB_TRAIN_WIDTH_32_PIXELS = 3 , ///< Use 32 pixels per train vehicle in depot gui and vehicle details. Never set in the global variable; @see GRFFile::traininfo_vehicle_width
2011-11-04 21:05:08 +00:00
GMB_AMBIENT_SOUND_CALLBACK = 4 ,
2007-04-27 22:35:02 +01:00
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 {
2010-04-24 12:52:58 +01:00
GSF_TRAINS ,
GSF_ROADVEHICLES ,
GSF_SHIPS ,
2008-02-12 11:08:47 +00:00
GSF_AIRCRAFT ,
2010-04-24 12:52:58 +01:00
GSF_STATIONS ,
GSF_CANALS ,
GSF_BRIDGES ,
GSF_HOUSES ,
2008-02-12 11:08:47 +00:00
GSF_GLOBALVAR ,
GSF_INDUSTRYTILES ,
GSF_INDUSTRIES ,
2011-12-15 21:56:00 +00:00
GSF_CARGOES ,
2008-02-12 11:08:47 +00:00
GSF_SOUNDFX ,
2010-01-30 21:49:22 +00:00
GSF_AIRPORTS ,
GSF_SIGNALS ,
GSF_OBJECTS ,
GSF_RAILTYPES ,
2010-02-22 14:16:19 +00:00
GSF_AIRPORTTILES ,
2008-02-12 11:08:47 +00:00
GSF_END ,
2010-04-24 14:36:29 +01:00
GSF_FAKE_TOWNS = GSF_END , ///< Fake town GrfSpecFeature for NewGRF debugging (parent scope)
GSF_FAKE_END , ///< End of the fake features
GSF_INVALID = 0xFF ///< An invalid spec feature
2008-02-12 11:08:47 +00:00
} ;
2009-03-08 16:51:08 +00:00
static const uint32 INVALID_GRFID = 0xFFFFFFFF ;
2007-03-07 12:11:48 +00:00
struct GRFLabel {
2006-04-15 22:27:59 +01:00
byte label ;
uint32 nfo_line ;
2008-05-27 22:41:00 +01:00
size_t pos ;
2006-04-15 22:27:59 +01:00
struct GRFLabel * next ;
2007-03-07 12:11:48 +00:00
} ;
2006-04-15 22:27:59 +01:00
2009-07-17 23:00:13 +01:00
/** Dynamic data of a loaded NewGRF */
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 ;
2006-04-23 19:03:55 +01:00
byte grf_version ;
2004-11-17 20:08:13 +00:00
2006-09-27 19:17:01 +01:00
uint sound_offset ;
2010-04-20 06:52:51 +01:00
uint16 num_sounds ;
2006-09-27 19:17:01 +01:00
2010-08-08 10:07:40 +01:00
struct StationSpec * * stations ;
struct HouseSpec * * housespec ;
struct IndustrySpec * * industryspec ;
struct IndustryTileSpec * * indtspec ;
2010-08-28 19:21:09 +01:00
struct ObjectSpec * * objectspec ;
2010-03-18 23:12:38 +00:00
struct AirportSpec * * airportspec ;
2010-02-22 14:16:19 +00:00
struct AirportTileSpec * * airtspec ;
2005-08-15 22:19:28 +01: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 22:27:59 +01: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 ] ;
2009-02-08 18:11:06 +00:00
uint8 railtype_max ;
RailTypeLabel * railtype_list ;
2010-01-30 21:49:22 +00:00
RailType railtype_map [ RAILTYPE_END ] ;
2009-07-17 23:00:13 +01:00
2011-09-11 10:31:57 +01:00
CanalProperties canal_local_properties [ CF_END ] ; ///< Canal properties as set by this NewGRF
2010-11-16 12:47:22 +00:00
struct LanguageMap * language_map ; ///< Mappings related to the languages.
2009-07-17 23:00:13 +01:00
int traininfo_vehicle_pitch ; ///< Vertical offset for draing train images in depot GUI and vehicle details
2010-05-13 10:44:44 +01:00
uint traininfo_vehicle_width ; ///< Width (in pixels) of a 8/8 train vehicle in depot GUI and vehicle details
2009-11-24 13:15:58 +00:00
uint32 grf_features ; ///< Bitset of GrfSpecFeature the grf uses
PriceMultipliers price_base_multipliers ; ///< Price base multipliers as set by the grf.
2010-01-03 19:29:56 +00:00
/** Get GRF Parameter with range checking */
uint32 GetParam ( uint number ) const
{
/* Note: We implicitly test for number < lengthof(this->param) and return 0 for invalid parameters.
* In fact this is the more important test , as param is zeroed anyway . */
assert ( this - > param_end < = lengthof ( this - > param ) ) ;
return ( number < this - > param_end ) ? this - > param [ number ] : 0 ;
}
2007-03-07 12:11:48 +00:00
} ;
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-16 00:55:52 +01:00
struct GRFLoadedFeatures {
bool has_2CC ; ///< Set if any vehicle is loaded which uses 2cc (two company colours).
2010-09-25 22:59:22 +01:00
uint64 used_liveries ; ///< Bitmask of #LiveryScheme used by the defined engines.
2007-06-16 00:55:52 +01:00
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 20:13:41 +01:00
} ;
/* Indicates which are the newgrf features currently loaded ingame */
2007-06-16 00:55:52 +01:00
extern GRFLoadedFeatures _loaded_newgrf_features ;
2004-11-19 22:53:18 +00:00
2011-08-24 14:48:29 +01:00
void LoadNewGRFFile ( struct GRFConfig * config , uint file_index , GrfLoadingStage stage , Subdirectory subdir ) ;
2005-08-15 12:39:13 +01:00
void LoadNewGRF ( uint load_index , uint file_index ) ;
2009-01-04 15:32:25 +00:00
void ReloadNewGRFData ( ) ; // in saveload/afterload.cpp
2010-09-06 19:20:07 +01:00
void ResetNewGRFData ( ) ;
2011-07-29 23:23:17 +01:00
void ResetPersistentNewGRFData ( ) ;
2004-11-17 20:08:13 +00:00
2009-05-10 18:27:25 +01:00
void CDECL grfmsg ( int severity , const char * str , . . . ) WARN_FORMAT ( 2 , 3 ) ;
2006-12-26 17:36:18 +00:00
2007-04-27 22:35:02 +01:00
bool HasGrfMiscBit ( GrfMiscBit bit ) ;
2011-11-08 17:28:52 +00:00
bool GetGlobalVariable ( byte param , uint32 * value , const GRFFile * grffile ) ;
2007-04-27 22:35:02 +01:00
2008-02-29 08:48:01 +00:00
StringID MapGRFStringID ( uint32 grfid , StringID str ) ;
2009-12-15 00:00:51 +00:00
void ShowNewGRFError ( ) ;
2008-02-29 08:48:01 +00:00
2004-11-17 20:08:13 +00:00
# endif /* NEWGRF_H */