2006-05-18 02:43:23 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2007-03-21 03:06:21 +00:00
|
|
|
/** @file newgrf_cargo.h */
|
|
|
|
|
2006-05-18 02:43:23 +00:00
|
|
|
#ifndef NEWGRF_CARGO_H
|
|
|
|
#define NEWGRF_CARGO_H
|
|
|
|
|
2007-07-25 19:06:29 +00:00
|
|
|
#include "newgrf_callbacks.h"
|
|
|
|
|
2006-05-18 02:43:23 +00:00
|
|
|
enum {
|
|
|
|
CC_NOAVAILABLE = 0,
|
|
|
|
CC_PASSENGERS = 1 << 0,
|
|
|
|
CC_MAIL = 1 << 1,
|
|
|
|
CC_EXPRESS = 1 << 2,
|
|
|
|
CC_ARMOURED = 1 << 3,
|
|
|
|
CC_BULK = 1 << 4,
|
|
|
|
CC_PIECE_GOODS = 1 << 5,
|
|
|
|
CC_LIQUID = 1 << 6,
|
|
|
|
CC_REFRIGERATED = 1 << 7,
|
|
|
|
};
|
|
|
|
|
2007-02-24 23:36:40 +00:00
|
|
|
static const CargoID CT_DEFAULT = NUM_CARGO + 0;
|
|
|
|
static const CargoID CT_PURCHASE = NUM_CARGO + 1;
|
|
|
|
static const CargoID CT_DEFAULT_NA = NUM_CARGO + 2;
|
2006-05-18 02:43:23 +00:00
|
|
|
|
2007-04-13 19:32:18 +00:00
|
|
|
/* Forward declarations of structs used */
|
2007-03-24 16:09:39 +00:00
|
|
|
struct CargoSpec;
|
2007-04-13 19:32:18 +00:00
|
|
|
struct GRFFile;
|
2007-03-23 20:55:45 +00:00
|
|
|
|
|
|
|
SpriteID GetCustomCargoSprite(const CargoSpec *cs);
|
2007-07-25 19:06:29 +00:00
|
|
|
uint16 GetCargoCallback(CallbackID callback, uint32 param1, uint32 param2, const CargoSpec *cs);
|
2007-04-13 19:32:18 +00:00
|
|
|
CargoID GetCargoTranslation(uint8 cargo, const GRFFile *grffile);
|
2007-07-08 17:40:04 +00:00
|
|
|
uint8 GetReverseCargoTranslation(CargoID cargo, const GRFFile *grffile);
|
2007-03-23 20:55:45 +00:00
|
|
|
|
2006-05-18 02:43:23 +00:00
|
|
|
#endif /* NEWGRF_CARGO_H */
|