mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-11 13:10:45 +00:00
(svn r19949) -Doc: Mention tricky units (like speed) more often and more consistently.
This commit is contained in:
parent
06ba1c5f5e
commit
e597ec6bf9
@ -43,7 +43,7 @@ struct BridgeSpec {
|
|||||||
byte min_length; ///< the minimum length (not counting start and end tile)
|
byte min_length; ///< the minimum length (not counting start and end tile)
|
||||||
byte max_length; ///< the maximum length (not counting start and end tile)
|
byte max_length; ///< the maximum length (not counting start and end tile)
|
||||||
uint16 price; ///< the price multiplier
|
uint16 price; ///< the price multiplier
|
||||||
uint16 speed; ///< maximum travel speed
|
uint16 speed; ///< maximum travel speed (1 unit = 1/1.6 mph = 1 km-ish/h)
|
||||||
SpriteID sprite; ///< the sprite which is used in the GUI
|
SpriteID sprite; ///< the sprite which is used in the GUI
|
||||||
PaletteID pal; ///< the palette which is used in the GUI
|
PaletteID pal; ///< the palette which is used in the GUI
|
||||||
StringID material; ///< the string that contains the bridge description
|
StringID material; ///< the string that contains the bridge description
|
||||||
|
@ -42,9 +42,9 @@ struct RailVehicleInfo {
|
|||||||
RailVehicleTypes railveh_type;
|
RailVehicleTypes railveh_type;
|
||||||
byte cost_factor; ///< Purchase cost factor; For multiheaded engines the sum of both engine prices.
|
byte cost_factor; ///< Purchase cost factor; For multiheaded engines the sum of both engine prices.
|
||||||
RailTypeByte railtype;
|
RailTypeByte railtype;
|
||||||
uint16 max_speed;
|
uint16 max_speed; ///< Maximum speed (1 unit = 1/1.6 mph = 1 km-ish/h)
|
||||||
uint16 power; ///< Power of engine; For multiheaded engines the sum of both engine powers.
|
uint16 power; ///< Power of engine (hp); For multiheaded engines the sum of both engine powers.
|
||||||
uint16 weight; ///< Weight of vehicle; For multiheaded engines the weight of each single engine.
|
uint16 weight; ///< Weight of vehicle (tons); For multiheaded engines the weight of each single engine.
|
||||||
byte running_cost; ///< Running cost of engine; For multiheaded engines the sum of both running costs.
|
byte running_cost; ///< Running cost of engine; For multiheaded engines the sum of both running costs.
|
||||||
Price running_cost_class;
|
Price running_cost_class;
|
||||||
EngineClass engclass; ///< Class of engine for this vehicle
|
EngineClass engclass; ///< Class of engine for this vehicle
|
||||||
@ -61,7 +61,7 @@ struct RailVehicleInfo {
|
|||||||
struct ShipVehicleInfo {
|
struct ShipVehicleInfo {
|
||||||
byte image_index;
|
byte image_index;
|
||||||
byte cost_factor;
|
byte cost_factor;
|
||||||
uint16 max_speed;
|
uint16 max_speed; ///< Maximum speed (1 unit = 1/3.2 mph = 0.5 km-ish/h)
|
||||||
uint16 capacity;
|
uint16 capacity;
|
||||||
byte running_cost;
|
byte running_cost;
|
||||||
SoundID sfx;
|
SoundID sfx;
|
||||||
@ -84,7 +84,7 @@ struct AircraftVehicleInfo {
|
|||||||
byte subtype;
|
byte subtype;
|
||||||
SoundID sfx;
|
SoundID sfx;
|
||||||
byte acceleration;
|
byte acceleration;
|
||||||
uint16 max_speed;
|
uint16 max_speed; ///< Maximum speed (1 unit = 8 mph = 12.8 km-ish/h)
|
||||||
byte mail_capacity;
|
byte mail_capacity;
|
||||||
uint16 passenger_capacity;
|
uint16 passenger_capacity;
|
||||||
};
|
};
|
||||||
@ -95,7 +95,7 @@ struct RoadVehicleInfo {
|
|||||||
byte running_cost;
|
byte running_cost;
|
||||||
Price running_cost_class;
|
Price running_cost_class;
|
||||||
SoundID sfx;
|
SoundID sfx;
|
||||||
uint16 max_speed; ///< Maximum speed in mph/3.2 units
|
uint16 max_speed; ///< Maximum speed (1 unit = 1/3.2 mph = 0.5 km-ish/h)
|
||||||
byte capacity;
|
byte capacity;
|
||||||
uint8 weight; ///< Weight in 1/4t units
|
uint8 weight; ///< Weight in 1/4t units
|
||||||
uint8 power; ///< Power in 10hp units
|
uint8 power; ///< Power in 10hp units
|
||||||
@ -108,8 +108,8 @@ struct RoadVehicleInfo {
|
|||||||
*/
|
*/
|
||||||
struct EngineInfo {
|
struct EngineInfo {
|
||||||
Date base_intro;
|
Date base_intro;
|
||||||
Year lifelength;
|
Year lifelength; ///< Lifetime of a single vehicle
|
||||||
Year base_life;
|
Year base_life; ///< Basic duration of engine availability (without random parts)
|
||||||
byte decay_speed;
|
byte decay_speed;
|
||||||
byte load_amount;
|
byte load_amount;
|
||||||
byte climates;
|
byte climates;
|
||||||
|
@ -728,10 +728,10 @@ static const PalSpriteID * const * const _bridge_sprite_table[MAX_BRIDGES] = {
|
|||||||
|
|
||||||
/** Describes the data that defines each bridge in the game
|
/** Describes the data that defines each bridge in the game
|
||||||
* @param y year of availablity
|
* @param y year of availablity
|
||||||
* @param mnl minimum length
|
* @param mnl minimum length (not counting bridge heads)
|
||||||
* @param mxl maximum length
|
* @param mxl maximum length (not counting bridge heads)
|
||||||
* @param p price
|
* @param p price multiplier
|
||||||
* @param mxs maximum speed allowed
|
* @param mxs maximum speed allowed (1 unit = 1/1.6 mph = 1 km-ish/h)
|
||||||
* @param spr sprite to use in purchase GUI
|
* @param spr sprite to use in purchase GUI
|
||||||
* @param plt palette for the sprite in purchase GUI
|
* @param plt palette for the sprite in purchase GUI
|
||||||
* @param dsc description of the bridge in purchase GUI
|
* @param dsc description of the bridge in purchase GUI
|
||||||
@ -746,7 +746,7 @@ const BridgeSpec _orig_bridge[] = {
|
|||||||
year of availablity
|
year of availablity
|
||||||
| minimum length
|
| minimum length
|
||||||
| | maximum length
|
| | maximum length
|
||||||
| | | price
|
| | | price multiplier
|
||||||
| | | | maximum speed
|
| | | | maximum speed
|
||||||
| | | | | sprite to use in GUI
|
| | | | | sprite to use in GUI
|
||||||
| | | | | | palette in GUI
|
| | | | | | palette in GUI
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
* @param a base introduction date (days since 1920-01-01)
|
* @param a base introduction date (days since 1920-01-01)
|
||||||
* @param b decay speed
|
* @param b decay speed
|
||||||
* @param c life length (years)
|
* @param c life length (years)
|
||||||
* @param d base life
|
* @param d base life (years)
|
||||||
* @param e cargo type
|
* @param e cargo type
|
||||||
* @param f Bitmask of the climates
|
* @param f Bitmask of the climates
|
||||||
* @note the 0x80 in parameter b sets the "is carriage bit"
|
* @note the 0x80 in parameter b sets the "is carriage bit"
|
||||||
@ -31,7 +31,7 @@
|
|||||||
* @param a base introduction date (days since 1920-01-01)
|
* @param a base introduction date (days since 1920-01-01)
|
||||||
* @param b decay speed
|
* @param b decay speed
|
||||||
* @param c life length (years)
|
* @param c life length (years)
|
||||||
* @param d base life
|
* @param d base life (years)
|
||||||
* @param e cargo type
|
* @param e cargo type
|
||||||
* @param f Bitmask of the climates
|
* @param f Bitmask of the climates
|
||||||
* @see MK
|
* @see MK
|
||||||
@ -43,7 +43,7 @@
|
|||||||
* @param a base introduction date (days since 1920-01-01)
|
* @param a base introduction date (days since 1920-01-01)
|
||||||
* @param b decay speed
|
* @param b decay speed
|
||||||
* @param c life length (years)
|
* @param c life length (years)
|
||||||
* @param d base life
|
* @param d base life (years)
|
||||||
* @param e cargo type
|
* @param e cargo type
|
||||||
* @param f Bitmask of the climates
|
* @param f Bitmask of the climates
|
||||||
* @see MK
|
* @see MK
|
||||||
@ -55,7 +55,7 @@
|
|||||||
* @param a base introduction date (days since 1920-01-01)
|
* @param a base introduction date (days since 1920-01-01)
|
||||||
* @param b decay speed
|
* @param b decay speed
|
||||||
* @param c life length (years)
|
* @param c life length (years)
|
||||||
* @param d base life
|
* @param d base life (years)
|
||||||
* @param e Bitmask of the climates
|
* @param e Bitmask of the climates
|
||||||
* @see MK
|
* @see MK
|
||||||
* @note the 20 between b and e is the load amount
|
* @note the 20 between b and e is the load amount
|
||||||
@ -347,7 +347,7 @@ static const EngineInfo _orig_engine_info[] = {
|
|||||||
* @param a image_index
|
* @param a image_index
|
||||||
* @param b type
|
* @param b type
|
||||||
* @param c cost_factor
|
* @param c cost_factor
|
||||||
* @param d max_speed
|
* @param d max_speed (1 unit = 1/1.6 mph = 1 km-ish/h)
|
||||||
* @param e power (hp)
|
* @param e power (hp)
|
||||||
* @param f weight (tons)
|
* @param f weight (tons)
|
||||||
* @param g running_cost
|
* @param g running_cost
|
||||||
@ -527,7 +527,7 @@ static const RailVehicleInfo _orig_rail_vehicle_info[] = {
|
|||||||
* @see ShipVehicleInfo
|
* @see ShipVehicleInfo
|
||||||
* @param a image_index
|
* @param a image_index
|
||||||
* @param b cost_factor
|
* @param b cost_factor
|
||||||
* @param c max_speed
|
* @param c max_speed (1 unit = 1/3.2 mph = 0.5 km-ish/h)
|
||||||
* @param d capacity (persons, bags, tons, pieces, items, cubic metres, ...)
|
* @param d capacity (persons, bags, tons, pieces, items, cubic metres, ...)
|
||||||
* @param e running_cost
|
* @param e running_cost
|
||||||
* @param f sound effect
|
* @param f sound effect
|
||||||
@ -561,7 +561,7 @@ static const ShipVehicleInfo _orig_ship_vehicle_info[] = {
|
|||||||
* @param d subtype (bit 0 - plane, bit 1 - large plane)
|
* @param d subtype (bit 0 - plane, bit 1 - large plane)
|
||||||
* @param e sound effect
|
* @param e sound effect
|
||||||
* @param f acceleration
|
* @param f acceleration
|
||||||
* @param g max_speed
|
* @param g max_speed (1 unit = 8 mph = 12.8 km-ish/h)
|
||||||
* @param h mail_capacity (bags)
|
* @param h mail_capacity (bags)
|
||||||
* @param i passenger_capacity (persons)
|
* @param i passenger_capacity (persons)
|
||||||
*/
|
*/
|
||||||
@ -628,7 +628,7 @@ static const AircraftVehicleInfo _orig_aircraft_vehicle_info[] = {
|
|||||||
* @param b cost_factor
|
* @param b cost_factor
|
||||||
* @param c running_cost
|
* @param c running_cost
|
||||||
* @param d sound effect
|
* @param d sound effect
|
||||||
* @param e max_speed
|
* @param e max_speed (1 unit = 1/3.2 mph = 0.5 km-ish/h)
|
||||||
* @param f capacity (persons, bags, tons, pieces, items, cubic metres, ...)
|
* @param f capacity (persons, bags, tons, pieces, items, cubic metres, ...)
|
||||||
* @param g weight (1/4 ton)
|
* @param g weight (1/4 ton)
|
||||||
* @param h power (10 hp)
|
* @param h power (10 hp)
|
||||||
|
Loading…
Reference in New Issue
Block a user