Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix time_duration formatting #40068

Merged
merged 1 commit into from
May 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/calendar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -332,8 +332,14 @@ std::string to_string( const time_duration &d )
divider = 1_minutes;
} else if( d < 1_days ) {
divider = 1_hours;
} else if( d < 1_weeks ) {
divider = 1_days;
} else if( d < calendar::season_length() || calendar::eternal_season() ) {
divider = 1_weeks;
} else if( d < calendar::year_length() ) {
divider = calendar::season_length();
} else {
divider = 24_hours;
divider = calendar::year_length();
}

if( d % divider != 0_turns ) {
Expand Down
8 changes: 8 additions & 0 deletions src/calendar.h
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,10 @@ class time_duration
static constexpr time_duration from_days( const T d ) {
return from_hours( d * 24 );
}
template<typename T>
static constexpr time_duration from_weeks( const T d ) {
return from_days( d * 7 );
}
/**@}*/

/**
Expand Down Expand Up @@ -357,6 +361,10 @@ constexpr time_duration operator"" _days( const unsigned long long int v )
{
return time_duration::from_days( v );
}
constexpr time_duration operator"" _weeks( const unsigned long long int v )
{
return time_duration::from_weeks( v );
}
/**@}*/

/**
Expand Down
38 changes: 38 additions & 0 deletions tests/calendar_test.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "calendar.h"
#include "catch/catch.hpp"
#include "options_helpers.h"

TEST_CASE( "moon_phases_take_28_days", "[calendar]" )
{
Expand Down Expand Up @@ -33,3 +34,40 @@ TEST_CASE( "moon_phase_changes_at_noon", "[calendar]" )
CAPTURE( num_days );
CHECK( get_moon_phase( earlier_11_hours ) == get_moon_phase( later_11_hours ) );
}

TEST_CASE( "time_duration_to_string", "[calendar]" )
{
CHECK( to_string( 10_seconds ) == "10 seconds" );
CHECK( to_string( 60_seconds ) == "1 minute" );
CHECK( to_string( 70_seconds ) == "1 minute and 10 seconds" );
CHECK( to_string( 60_minutes ) == "1 hour" );
CHECK( to_string( 70_minutes ) == "1 hour and 10 minutes" );
CHECK( to_string( 24_hours ) == "1 day" );
CHECK( to_string( 24_hours + 1_seconds ) == "1 day and 1 second" );
CHECK( to_string( 25_hours ) == "1 day and 1 hour" );
CHECK( to_string( 25_hours + 1_seconds ) == "1 day and 1 hour" );
CHECK( to_string( 7_days ) == "1 week" );
CHECK( to_string( 8_days ) == "1 week and 1 day" );
CHECK( to_string( 91_days ) == "1 season" );
CHECK( to_string( 92_days ) == "1 season and 1 day" );
CHECK( to_string( 99_days ) == "1 season and 1 week" );
CHECK( to_string( 364_days ) == "1 year" );
CHECK( to_string( 365_days ) == "1 year and 1 day" );
CHECK( to_string( 465_days ) == "1 year and 1 season" );
CHECK( to_string( 3650_days ) == "10 years and 1 week" );
}

TEST_CASE( "time_duration_to_string_eternal_season", "[calendar]" )
{
calendar::set_eternal_season( true );
CHECK( to_string( 7_days ) == "1 week" );
CHECK( to_string( 8_days ) == "1 week and 1 day" );
CHECK( to_string( 91_days ) == "13 weeks" );
CHECK( to_string( 92_days ) == "13 weeks and 1 day" );
CHECK( to_string( 99_days ) == "14 weeks and 1 day" );
CHECK( to_string( 364_days ) == "52 weeks" );
CHECK( to_string( 365_days ) == "52 weeks and 1 day" );
CHECK( to_string( 465_days ) == "66 weeks and 3 days" );
CHECK( to_string( 3650_days ) == "521 weeks and 3 days" );
calendar::set_eternal_season( false );
}