mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-11 13:10:45 +00:00
Debug: Show engine date properties in vehicle debug window
This commit is contained in:
parent
8f964ee637
commit
7ccbb6cf16
@ -10,6 +10,7 @@
|
|||||||
#include "../newgrf_house.h"
|
#include "../newgrf_house.h"
|
||||||
#include "../newgrf_engine.h"
|
#include "../newgrf_engine.h"
|
||||||
#include "../newgrf_roadtype.h"
|
#include "../newgrf_roadtype.h"
|
||||||
|
#include "../date_func.h"
|
||||||
|
|
||||||
/* Helper for filling property tables */
|
/* Helper for filling property tables */
|
||||||
#define NIP(prop, base, variable, type, name) { name, (ptrdiff_t)cpp_offsetof(base, variable), cpp_sizeof(base, variable), prop, type }
|
#define NIP(prop, base, variable, type, name) { name, (ptrdiff_t)cpp_offsetof(base, variable), cpp_sizeof(base, variable), prop, type }
|
||||||
@ -129,6 +130,18 @@ class NIHVehicle : public NIHelper {
|
|||||||
gvc.cached_total_length, gvc.cached_veh_length);
|
gvc.cached_total_length, gvc.cached_veh_length);
|
||||||
print(buffer);
|
print(buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
seprintf(buffer, lastof(buffer), " Engine: %u", v->engine_type);
|
||||||
|
print(buffer);
|
||||||
|
const Engine *e = Engine::GetIfValid(v->engine_type);
|
||||||
|
if (e != nullptr) {
|
||||||
|
YearMonthDay ymd;
|
||||||
|
ConvertDateToYMD(e->intro_date, &ymd);
|
||||||
|
seprintf(buffer, lastof(buffer), " Intro: %4i-%02i-%02i, Age: %u, Base life: %u, Durations: %u %u %u (sum: %u)",
|
||||||
|
ymd.year, ymd.month + 1, ymd.day, e->age, e->info.base_life, e->duration_phase_1, e->duration_phase_2, e->duration_phase_3,
|
||||||
|
e->duration_phase_1 + e->duration_phase_2 + e->duration_phase_3);
|
||||||
|
print(buffer);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user