Vehicles: Difference between revisions
Jump to navigation
Jump to search
(Created page with 'The Vehicles table defines car-specific properties. ;VehicleID :(int) :Automatically increments. ;VehicleDescription :(string) :Defines a name for the type of vehicle. ;Vehi…') |
Signalsoft (talk | contribs) No edit summary |
||
| Line 15: | Line 15: | ||
;VehicleMaxSpeed | ;VehicleMaxSpeed | ||
:(int) | :(int) | ||
:The maximum allowed speed of the vehicle, in | :The maximum allowed speed of the vehicle, in km/h. | ||
;VehiclePower | ;VehiclePower | ||
| Line 31: | Line 31: | ||
;VehicleWeightLoaded | ;VehicleWeightLoaded | ||
:(int) | :(int) | ||
:Mass of the car when | :Mass of the car when loaded, in tons. | ||
;VehicleHasTraction | ;VehicleHasTraction | ||
| Line 43: | Line 43: | ||
;VehicleHasPantoGraph | ;VehicleHasPantoGraph | ||
:(bool) | :(bool) | ||
:True when the vehicle has | :True when the vehicle has one or more pantographs. | ||
;VehicleIsSteamLoco | ;VehicleIsSteamLoco | ||
Revision as of 03:27, 10 January 2011
The Vehicles table defines car-specific properties.
- VehicleID
- (int)
- Automatically increments.
- VehicleDescription
- (string)
- Defines a name for the type of vehicle.
- VehicleLength
- (int)
- Length of the vehicle, in metres.
- VehicleMaxSpeed
- (int)
- The maximum allowed speed of the vehicle, in km/h.
- VehiclePower
- (int)
- Defines the maximum possible power output of the vehicle, in kW.
- VehicleCanCarryPassenger
- (bool)
- True when this is a passenger vehicle.
- VehicleWeightUnloaded
- (int)
- Mass of the car (unloaded) in tons.
- VehicleWeightLoaded
- (int)
- Mass of the car when loaded, in tons.
- VehicleHasTraction
- (bool)
- True when the vehicle can provide locomotion.
- VehicleWeightCoupleType
- (int)
- Defines the coupler on the vehicle. 0 = UIC, 1 = Automatic Coupler High, 2 = Automatic Coupler Low, 4 = compatible with all (coupler car)
- VehicleHasPantoGraph
- (bool)
- True when the vehicle has one or more pantographs.
- VehicleIsSteamLoco
- (bool)
- True when the vehicle is a steam locomotive. This enables some interesting sound effects.
- HasShuntRadio
- (string)
- Defines the type of shunt radio in use, if any.
Return to Timetables