OpenTTD Source
20241108-master-g80f628063a
|
Helper for unit conversion. More...
Public Member Functions | |
int64_t | ToDisplay (int64_t input, bool round=true) const |
Convert value from OpenTTD's internal unit into the displayed value. More... | |
int64_t | FromDisplay (int64_t input, bool round=true, int64_t divider=1) const |
Convert the displayed value back into a value of OpenTTD's internal unit. More... | |
Data Fields | |
double | factor |
Amount to multiply or divide upon conversion. | |
Helper for unit conversion.
Definition at line 711 of file strings.cpp.
|
inline |
Convert the displayed value back into a value of OpenTTD's internal unit.
input | The input to convert. |
round | Whether to round the value up or not. |
divider | Divide the return value by this. |
Definition at line 734 of file strings.cpp.
Referenced by ConvertDisplaySpeedToKmhishSpeed(), and ConvertDisplaySpeedToSpeed().
|
inline |
Convert value from OpenTTD's internal unit into the displayed value.
input | The input to convert. |
round | Whether to round the value or not. |
Definition at line 720 of file strings.cpp.
Referenced by ConvertKmhishSpeedToDisplaySpeed(), and ConvertSpeedToDisplaySpeed().