diff options
author | rubidium <rubidium@openttd.org> | 2007-12-06 20:36:46 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-12-06 20:36:46 +0000 |
commit | 9b7b34fc2cbb7ab14c90d33c792b629723fb4b77 (patch) | |
tree | f6bf4403062d85fa5fa558058b46b3586468c6f9 /src | |
parent | b57274cdf23b799474efebaf8269d652ef44de1a (diff) | |
download | openttd-9b7b34fc2cbb7ab14c90d33c792b629723fb4b77.tar.xz |
(svn r11581) -Codechange: add some missing cargo classes and some documentation.
Diffstat (limited to 'src')
-rw-r--r-- | src/newgrf_cargo.h | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/src/newgrf_cargo.h b/src/newgrf_cargo.h index 25cc59e14..b28512ed0 100644 --- a/src/newgrf_cargo.h +++ b/src/newgrf_cargo.h @@ -8,15 +8,18 @@ #include "newgrf_callbacks.h" 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, + CC_NOAVAILABLE = 0, ///< No cargo class has been specified + CC_PASSENGERS = 1 << 0, ///< Passengers + CC_MAIL = 1 << 1, ///< Mail + CC_EXPRESS = 1 << 2, ///< Express cargo (Goods, Food, Candy, but also possible for passengers) + CC_ARMOURED = 1 << 3, ///< Armoured cargo (Valuables, Gold, Diamonds) + CC_BULK = 1 << 4, ///< Bulk cargo (Coal, Grain etc., Ores, Fruit) + CC_PIECE_GOODS = 1 << 5, ///< Piece goods (Livestock, Wood, Steel, Paper) + CC_LIQUID = 1 << 6, ///< Liquids (Oil, Water, Rubber) + CC_REFRIGERATED = 1 << 7, ///< Refrigerated cargo (Food, Fruit) + CC_HAZARDOUS = 1 << 8, ///< Hazardous cargo (Nucleair Fuel, Explosives, etc.) + CC_COVERED = 1 << 9, ///< Covered/Sheltered Freight (Transporation in Box Vans, Silo Wagons, etc.) + CC_SPECIAL = 1 << 15 ///< Special bit used for livery refit tricks instead of normal cargoes. }; static const CargoID CT_DEFAULT = NUM_CARGO + 0; |