3#define EMERGENCIES_ARE_ON_SATURDAY (state::st.runtime_state.em_day == runtime_state::EMERGENCIES_ON_SATURDAY)
4#define EMERGENCIES_ARE_ON_SUNDAY (state::st.runtime_state.em_day == runtime_state::EMERGENCIES_ON_SUNDAY)
36 require_weekly_progress =
true;
42 require_weekly_progress =
false;
various settings that can be changed at runtime
Definition runtime_state.h:7
void toggle(bool *option)
toggle a generic boolean option
Definition runtime_state.cpp:4
minigame_mode
toggle the way minigames should be played
Definition runtime_state.h:9
@ AUTOWIN
do not play the game and have a magical force complete the task
Definition runtime_state.h:15
@ PLAY
play the game without any help (default)
Definition runtime_state.h:11
@ HINT
play the game with a hint
Definition runtime_state.h:13
bn::string< 8 > to_str(minigame_mode option)
convert the minigame_mode to a string
Definition runtime_state.cpp:22
emergency_day
toggle the day when emergencies should happen
Definition runtime_state.h:18
@ EMERGENCIES_ON_SATURDAY
emergencies should happen on Saturday (default)
Definition runtime_state.h:20
@ EMERGENCIES_ON_SUNDAY
emergencies should happen on Sunday (see weekend_event::generic_event and weekend_event::generic_emer...
Definition runtime_state.h:22
void init()
initialize the struct
Definition runtime_state.h:34
emergency_day em_day
the emergency_day option
Definition runtime_state.h:31
void reset_to_casual()
re-inintialize the struct to casual difficulty. chosen both at game start and in options screen
Definition runtime_state.h:40
minigame_mode mg_mode
the minigame_mode option
Definition runtime_state.h:27
bool require_weekly_progress
the require_weekly_progress option
Definition runtime_state.h:29