Skip to content

Commit

Permalink
Codechange: Don't use macros for DAYS_TILL and friends
Browse files Browse the repository at this point in the history
  • Loading branch information
2TallTyler committed May 6, 2023
1 parent e3d3dc1 commit 284abd2
Show file tree
Hide file tree
Showing 11 changed files with 26 additions and 36 deletions.
4 changes: 2 additions & 2 deletions src/company_gui.cpp
Expand Up @@ -1866,7 +1866,7 @@ struct CompanyInfrastructureWindow : Window
}

/* Get the date introduced railtypes as well. */
this->railtypes = AddDateIntroducedRailTypes(this->railtypes, MAX_DAY);
this->railtypes = AddDateIntroducedRailTypes(this->railtypes, MAX_DATE);

/* Find the used roadtypes. */
for (const Engine *e : Engine::IterateType(VEH_ROAD)) {
Expand All @@ -1876,7 +1876,7 @@ struct CompanyInfrastructureWindow : Window
}

/* Get the date introduced roadtypes as well. */
this->roadtypes = AddDateIntroducedRoadTypes(this->roadtypes, MAX_DAY);
this->roadtypes = AddDateIntroducedRoadTypes(this->roadtypes, MAX_DATE);
this->roadtypes &= ~_roadtypes_hidden_mask;
}

Expand Down
4 changes: 2 additions & 2 deletions src/console_cmds.cpp
Expand Up @@ -2293,7 +2293,7 @@ DEF_CONSOLE_CMD(ConNewGRFProfile)
GetString(datestrbuf, STR_JUST_DATE_ISO, lastof(datestrbuf));
IConsolePrint(CC_DEBUG, "Profiling will automatically stop on game date {}.", datestrbuf);
} else {
_newgrf_profile_end_date = MAX_DAY;
_newgrf_profile_end_date = MAX_DATE;
}
} else if (_newgrf_profilers.empty()) {
IConsolePrint(CC_ERROR, "No GRFs selected for profiling, did not start.");
Expand All @@ -2314,7 +2314,7 @@ DEF_CONSOLE_CMD(ConNewGRFProfile)
for (NewGRFProfiler &pr : _newgrf_profilers) {
pr.Abort();
}
_newgrf_profile_end_date = MAX_DAY;
_newgrf_profile_end_date = MAX_DATE;
return true;
}

Expand Down
30 changes: 10 additions & 20 deletions src/date_type.h
Expand Up @@ -51,32 +51,22 @@ static const TimerGameCalendar::Year ORIGINAL_END_YEAR = 2051;
/** The maximum year of the original TTD */
static const TimerGameCalendar::Year ORIGINAL_MAX_YEAR = 2090;

/**
* Calculate the number of leap years till a given year.
*
* Each passed leap year adds one day to the 'day count'.
*
* A special case for the year 0 as no year has been passed,
* but '(year - 1) / 4' does not yield '-1' to counteract the
* '+1' at the end of the formula as divisions round to zero.
*
* @param year the year to get the leap years till.
* @return the number of leap years.
*/
#define LEAP_YEARS_TILL(year) ((year) == 0 ? 0 : ((year) - 1) / 4 - ((year) - 1) / 100 + ((year) - 1) / 400 + 1)

/**
* Calculate the date of the first day of a given year.
* @param year the year to get the first day of.
* @return the date.
*/
#define DAYS_TILL(year) (DAYS_IN_YEAR * (year) + LEAP_YEARS_TILL(year))
static inline TimerGameCalendar::Date DateAtStartOfYear(TimerGameCalendar::Year year)
{
uint number_of_leap_years = (year == 0) ? 0 : ((year - 1) / 4 - (year - 1) / 100 + (year - 1) / 400 + 1);

return (DAYS_IN_YEAR * year) + number_of_leap_years;
}

/**
* The offset in days from the 'TimerGameCalendar::date == 0' till
* 'TimerGameCalendar::ConvertYMDToDate(ORIGINAL_BASE_YEAR, 0, 1)'
* The date of the first day of the original base year.
*/
#define DAYS_TILL_ORIGINAL_BASE_YEAR DAYS_TILL(ORIGINAL_BASE_YEAR)
static const TimerGameCalendar::Date DAYS_TILL_ORIGINAL_BASE_YEAR = DateAtStartOfYear(ORIGINAL_BASE_YEAR);

/** The absolute minimum & maximum years in OTTD */
static const TimerGameCalendar::Year MIN_YEAR = 0;
Expand All @@ -92,8 +82,8 @@ static const TimerGameCalendar::Year DEF_END_YEAR = ORIGINAL_END_YEAR - 1;
*/
static const TimerGameCalendar::Year MAX_YEAR = 5000000;

/** The number of days till the last day */
#define MAX_DAY (DAYS_TILL(MAX_YEAR + 1) - 1)
/** The date of the last day of the max year. */
static const TimerGameCalendar::Date MAX_DATE = DateAtStartOfYear(MAX_YEAR + 1) - 1;

static const TimerGameCalendar::Year INVALID_YEAR = -1; ///< Representation of an invalid year
static const TimerGameCalendar::Date INVALID_DATE = -1; ///< Representation of an invalid date
Expand Down
2 changes: 1 addition & 1 deletion src/newgrf_profiling.cpp
Expand Up @@ -156,7 +156,7 @@ uint32 NewGRFProfiler::FinishAll()
IConsolePrint(CC_DEBUG, "Total NewGRF callback processing: {} microseconds over {} ticks.", total_microseconds, max_ticks);
}

_newgrf_profile_end_date = MAX_DAY;
_newgrf_profile_end_date = MAX_DATE;

return total_microseconds;
}
Expand Down
4 changes: 2 additions & 2 deletions src/rail.cpp
Expand Up @@ -225,7 +225,7 @@ RailTypes AddDateIntroducedRailTypes(RailTypes current, TimerGameCalendar::Date
if (rti->label == 0) continue;

/* Not date introduced. */
if (!IsInsideMM(rti->introduction_date, 0, MAX_DAY)) continue;
if (!IsInsideMM(rti->introduction_date, 0, MAX_DATE)) continue;

/* Not yet introduced at this date. */
if (rti->introduction_date > date) continue;
Expand Down Expand Up @@ -298,7 +298,7 @@ RailTypes GetRailTypes(bool introduces)
}
}

if (introduces) return AddDateIntroducedRailTypes(rts, MAX_DAY);
if (introduces) return AddDateIntroducedRailTypes(rts, MAX_DATE);
return rts;
}

Expand Down
6 changes: 3 additions & 3 deletions src/road.cpp
Expand Up @@ -163,7 +163,7 @@ RoadTypes AddDateIntroducedRoadTypes(RoadTypes current, TimerGameCalendar::Date
if (rti->label == 0) continue;

/* Not date introduced. */
if (!IsInsideMM(rti->introduction_date, 0, MAX_DAY)) continue;
if (!IsInsideMM(rti->introduction_date, 0, MAX_DATE)) continue;

/* Not yet introduced at this date. */
if (rti->introduction_date > date) continue;
Expand Down Expand Up @@ -231,7 +231,7 @@ RoadTypes GetRoadTypes(bool introduces)
}
}

if (introduces) return AddDateIntroducedRoadTypes(rts, MAX_DAY);
if (introduces) return AddDateIntroducedRoadTypes(rts, MAX_DATE);
return rts;
}

Expand Down Expand Up @@ -292,7 +292,7 @@ RoadTypes ExistingRoadTypes(CompanyID c)
}

/* Get the date introduced roadtypes as well. */
known_roadtypes = AddDateIntroducedRoadTypes(known_roadtypes, MAX_DAY);
known_roadtypes = AddDateIntroducedRoadTypes(known_roadtypes, MAX_DATE);

return known_roadtypes;
}
2 changes: 1 addition & 1 deletion src/table/object_land.h
Expand Up @@ -121,7 +121,7 @@ static const DrawTileSprites _object_hq[] = {

#undef TILE_SPRITE_LINE

#define M(name, size, build_cost_multiplier, clear_cost_multiplier, height, climate, gen_amount, flags) { GRFFilePropsBase<2>(), {0, 0, 0, 0}, INVALID_OBJECT_CLASS, name, climate, size, build_cost_multiplier, clear_cost_multiplier, 0, MAX_DAY + 1, flags, 0, height, 1, gen_amount }
#define M(name, size, build_cost_multiplier, clear_cost_multiplier, height, climate, gen_amount, flags) { GRFFilePropsBase<2>(), {0, 0, 0, 0}, INVALID_OBJECT_CLASS, name, climate, size, build_cost_multiplier, clear_cost_multiplier, 0, MAX_DATE + 1, flags, 0, height, 1, gen_amount }

/* Climates
* T = Temperate
Expand Down
2 changes: 1 addition & 1 deletion src/timer/timer_game_calendar.cpp
Expand Up @@ -131,7 +131,7 @@ static const uint16 _accum_days_for_month[] = {
/* Account for the missing of the 29th of February in non-leap years */
if (!TimerGameCalendar::IsLeapYear(year) && days >= ACCUM_MAR) days--;

return DAYS_TILL(year) + days;
return DateAtStartOfYear(year) + days;
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/timetable_cmd.cpp
Expand Up @@ -303,11 +303,11 @@ CommandCost CmdSetTimetableStart(DoCommandFlag flags, VehicleID veh_id, bool tim
int total_duration = v->orders->GetTimetableTotalDuration();

/* Don't let a timetable start more than 15 years into the future or 1 year in the past. */
if (start_date < 0 || start_date > MAX_DAY) return CMD_ERROR;
if (start_date < 0 || start_date > MAX_DATE) return CMD_ERROR;
if (start_date - TimerGameCalendar::date > MAX_TIMETABLE_START_YEARS * DAYS_IN_LEAP_YEAR) return CMD_ERROR;
if (TimerGameCalendar::date - start_date > DAYS_IN_LEAP_YEAR) return CMD_ERROR;
if (timetable_all && !v->orders->IsCompleteTimetable()) return CommandCost(STR_ERROR_TIMETABLE_INCOMPLETE);
if (timetable_all && start_date + total_duration / DAY_TICKS > MAX_DAY) return CMD_ERROR;
if (timetable_all && start_date + total_duration / DAY_TICKS > MAX_DATE) return CMD_ERROR;

if (flags & DC_EXEC) {
std::vector<Vehicle *> vehs;
Expand Down
2 changes: 1 addition & 1 deletion src/town_cmd.cpp
Expand Up @@ -873,7 +873,7 @@ RoadType GetTownRoadType(const Town *t)
if (!HasBit(rti->flags, ROTF_TOWN_BUILD)) continue;

/* Not yet introduced at this date. */
if (IsInsideMM(rti->introduction_date, 0, MAX_DAY) && rti->introduction_date > TimerGameCalendar::date) continue;
if (IsInsideMM(rti->introduction_date, 0, MAX_DATE) && rti->introduction_date > TimerGameCalendar::date) continue;

if (best != nullptr) {
if ((rti->max_speed == 0 ? assume_max_speed : rti->max_speed) < (best->max_speed == 0 ? assume_max_speed : best->max_speed)) continue;
Expand Down
2 changes: 1 addition & 1 deletion src/vehicle.cpp
Expand Up @@ -1370,7 +1370,7 @@ bool Vehicle::HandleBreakdown()
*/
void AgeVehicle(Vehicle *v)
{
if (v->age < MAX_DAY) {
if (v->age < MAX_DATE) {
v->age++;
if (v->IsPrimaryVehicle() && v->age == VEHICLE_PROFIT_MIN_AGE + 1) GroupStatistics::VehicleReachedMinAge(v);
}
Expand Down

0 comments on commit 284abd2

Please sign in to comment.