Work Life (Visual Novel / Game)
Loading...
Searching...
No Matches
runtime_state.h
1#pragma once
2#include "util.h"
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)
5
7namespace runtime_state {
11 PLAY = 0,
13 HINT = 1,
15 AUTOWIN = 2
16 };
32
34 void init() {
35 mg_mode = PLAY;
36 require_weekly_progress = true;
38 }
41 mg_mode = HINT;
42 require_weekly_progress = false;
43 em_day = EMERGENCIES_ON_SUNDAY;
44 }
45 };
47 void toggle(bool* option);
49 void toggle(minigame_mode* option);
51 void toggle(emergency_day* option);
53 bn::string<8> to_str(minigame_mode option);
55 bn::string<8> to_str(emergency_day option);
56}
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