Work Life (Visual Novel / Game)
Loading...
Searching...
No Matches
weekend_event_state.h
1#pragma once
2#include "character.h"
8 int story_progress[character::COUNT];
10 int emergency_progress[character::COUNT];
12 void init() {
13 for (auto c : character::characters) {
14 story_progress[c] = 0;
15 emergency_progress[c] = 0;
16 }
17 }
20 return FMT_8("{}/{}", story_progress[c], 4);
21 }
24 return FMT_8("{}/{}", emergency_progress[c], 4);
25 }
26 };
27}
constexpr int COUNT
there are four characters
Definition character.h:6
const CHAR_ENUM characters[]
conviences array used in loop structures
Definition character.h:16
CHAR_ENUM
the character enum
Definition character.h:8
various progress values for weekend_event state tracking
Definition weekend_event_state.h:4
bn::string< 8 > story_progress_string(character::CHAR_ENUM c)
convenience function to print the story progress
Definition weekend_event_state.h:19
void init()
initialize the struct
Definition weekend_event_state.h:12
bn::string< 8 > emergency_progress_string(character::CHAR_ENUM c)
convenience function to print the emergency progress
Definition weekend_event_state.h:23