Work Life (Visual Novel / Game)
Loading...
Searching...
No Matches
vnlib.h
1#pragma once
2#include <functional>
3#include <initializer_list>
4#include "util.h"
5#include "bn_core.h"
6#include "bn_optional.h"
7#include "bn_keypad.h"
8#include "bn_sprite_ptr.h"
9#include "bn_regular_bg_ptr.h"
10#include "bn_regular_bg_item.h"
11#include "bn_sprite_item.h"
12#include "bn_string_view.h"
13#include "bn_sprite_text_generator.h"
14#include "bn_sprite_animate_actions.h"
15#include "bn_blending.h"
16#include "bn_timer.h"
17#include "bn_sound_item.h"
18#include "bn_sound_actions.h"
19
20#include "common_variable_8x8_sprite_font.h"
21#include "common_fixed_8x8_sprite_font.h"
22#include "common_fixed_8x16_sprite_font.h"
23
32namespace vnlib {
44 typedef void (*story_fx)();
45
47 struct MenuChoice {
49 bn::string_view option;
51 void (*story)();
52 };
54 struct MenuOptions {
55 // ** text options **
57 bn::fixed choice_x;
59 bn::fixed choice_y;
62 // ** cursor options **
64 bn::fixed cursor_x;
66 bn::fixed cursor_y;
67 // ** background options **
69 bool use_bg;
71 bn::fixed bg_x;
73 bn::fixed bg_y;
75 bn::fixed bg_width;
76 // ** selection options **
81 // ** grid options **
83 int cols;
85 bn::fixed ani_x_inc;
87 bn::fixed ani_y_inc;
88
90 MenuOptions* with_choice_x(bn::fixed x) { choice_x = x; return this; }
92 MenuOptions* with_choice_y(bn::fixed y) { choice_y = y; return this; }
94 MenuOptions* with_cursor_x(bn::fixed x) { cursor_x = x; return this; }
96 MenuOptions* with_cursor_y(bn::fixed y) { cursor_y = y; return this; }
98 MenuOptions* with_cols(int c) { cols = c; return this; }
100 MenuOptions* with_use_bg(bool u) { use_bg = u; return this; }
101 };
111 SLOT_8_1 = 0,
112 SLOT_8_2 = 1,
113 SLOT_8_3 = 2,
114 SLOT_8_4 = 3,
115 SLOT_8_5 = 4,
116 SLOT_8_6 = 5,
117 SLOT_8_7 = 6,
118 SLOT_8_8 = 7,
119 SLOT_8_9 = 8,
120 SLOT_8_10 = 9,
121 SLOT_32_1 = 24,
122 SLOT_32_2 = 25,
123 };
134 typedef void (*end_fx)(EndingType);
135
137 void bg(bn::regular_bg_item item);
139 void fade_out_to_black();
141 void fade_in_from_black();
143 void show(bn::regular_bg_item who);
145 void hide();
147 void play_music(std::initializer_list<bn::sound_item> items);
149 void stop_music();
151 void say(bn::string_view who, std::initializer_list<bn::string_view> what);
167 void say(bn::string_view who, std::initializer_list<bn::string_view> what, SayOptions options);
169 void hide_say();
186 MenuChoice choice(bn::string_view option, story_fx);
190 void menu(std::initializer_list<MenuChoice> choices);
192 void menu(std::initializer_list<MenuChoice> choices, MenuOptions* options);
194 bn::string<8> keyboard_input_8();
196 bn::string<8> keyboard_input_8(bn::string<8> starting_from);
198 void text(bn::string_view text, bn::fixed x, bn::fixed y);
200 void sprite(bn::sprite_item item, bn::fixed x, bn::fixed y);
202 void animate_8(bn::sprite_item item, bn::fixed x, bn::fixed y, AnimationSlot slot, int,int,int,int,int,int,int,int);
204 void animate_32(bn::sprite_item item, bn::fixed x, bn::fixed y, AnimationSlot slot,
205 int,int,int,int,int,int,int,int,
206 int,int,int,int,int,int,int,int,
207 int,int,int,int,int,int,int,int,
208 int,int,int,int,int,int,int,int
209 );
211 void free(AnimationSlot slot);
213 void end(EndingType type);
215 void free();
217 bool wait_save_screen();
219 bool wait_load_screen();
220
222 void set_save_screen(bn::regular_bg_item bg_save_screen_item);
224 void set_bg_textbox(bn::regular_bg_item bg_textbox_item);
226 void set_keyboard(bn::regular_bg_item bg_keyboard_item);
228 void set_cursor(bn::sprite_item cursor_item);
230 void set_menu_option_left(bn::sprite_item menu_option_item);
232 void set_menu_option_right(bn::sprite_item menu_option_item);
236 void set_read_all_saves(void (*read_all_saves)());
238 void set_save_slot_selected(void (*save_slot_selected)(int slot));
240 void set_write_to_slot(void (*write_to_slot)(int slot));
242 void set_render_save_slot(void (*render)(int slot, bn::fixed x, bn::fixed y, bn::sprite_text_generator gen, bn::vector<bn::sprite_ptr, 96>* sprites));
244 void set_end_fx(end_fx);
246 void set_fade_times(int times);
248 void maybe_handle_ending();
250 void main();
252 void next(story_fx);
253}
Daytime story progression. Happens before work.
Definition story.h:10
visual-novel library
Definition vnlib.h:32
void sprite(bn::sprite_item item, bn::fixed x, bn::fixed y)
ad-hoc sprite display
Definition vnlib.cpp:550
void bg(bn::regular_bg_item item)
show a bg. see Design: Sprite Sizes
Definition vnlib.cpp:255
MenuOptions dense_MenuOptions()
brief dense MenuOptions (used for playtest menus)
Definition vnlib.cpp:348
void text(bn::string_view text, bn::fixed x, bn::fixed y)
ad-hoc text display
Definition vnlib.cpp:544
void set_cursor(bn::sprite_item cursor_item)
cursor used for main menu, keyboard, save screen, and in-game menu prompts. see Design: Sprite Sizes
Definition vnlib.cpp:696
MenuChoice choice(bn::string_view option, story_fx)
convenience factory function for menu options
Definition vnlib.cpp:303
void menu(std::initializer_list< MenuChoice > choices)
prompt the player for a menu choice (menu options on screen)
Definition vnlib.cpp:418
void set_end_fx(end_fx)
set the end_fx when vnlib::end is called
Definition vnlib.cpp:736
void set_save_screen(bn::regular_bg_item bg_save_screen_item)
used when save/load. see Design: Sprite Sizes
Definition vnlib.cpp:684
void set_bg_textbox(bn::regular_bg_item bg_textbox_item)
textbox used when displaying dialog. see Design: Sprite Sizes
Definition vnlib.cpp:688
bn::string< 8 > keyboard_input_8()
prompt the player for text input (keyboard on screen)
Definition vnlib.cpp:540
void hide()
hide a person if shown
Definition vnlib.cpp:285
void(* story_fx)()
a function used to store part of a story
Definition vnlib.h:44
void play_music(std::initializer_list< bn::sound_item > items)
queue a list of musical sounds
Definition vnlib.cpp:289
void(* end_fx)(EndingType)
called when an end happens. should queue or reset gameplay
Definition vnlib.h:134
void stop_music()
stop all music instantly
Definition vnlib.cpp:297
void set_write_to_slot(void(*write_to_slot)(int slot))
callback function used when a slot is selected to write to (global game state => global save state =>...
Definition vnlib.cpp:728
void hide_say()
hide the dialog box
Definition vnlib.cpp:456
void fade_out_to_black()
bg => black
Definition vnlib.cpp:265
void say(bn::string_view who, std::initializer_list< bn::string_view > what)
say function using default SayOptions
Definition vnlib.cpp:449
void set_menu_option_left(bn::sprite_item menu_option_item)
set sprite behind menu options (left) see Design: Sprite Sizes
Definition vnlib.cpp:700
void next(story_fx)
queue the next story function onto a size-1 stack. will overwrite if a value exists!
Definition vnlib.cpp:712
void set_story_init(story_fx)
set the story called when game is initialized (usually a title or splash screen)
Definition vnlib.cpp:708
void end(EndingType type)
end the story run
Definition vnlib.cpp:716
void set_menu_option_right(bn::sprite_item menu_option_item)
set sprite behind menu options (right) see Design: Sprite Sizes
Definition vnlib.cpp:704
void animate_32(bn::sprite_item item, bn::fixed x, bn::fixed y, AnimationSlot slot, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)
ad-hoc sprite display using 32 frames
Definition vnlib.cpp:577
bool wait_save_screen()
trigger the save/load screen where a selection should persist data from Global Game State => Global S...
Definition vnlib.cpp:655
void set_fade_times(int times)
control the global fade count when fading in or out
Definition vnlib.cpp:740
void set_keyboard(bn::regular_bg_item bg_keyboard_item)
keyboard used when prompting for keyboard input. see Design: Sprite Sizes
Definition vnlib.cpp:692
void fade_in_from_black()
black => bg
Definition vnlib.cpp:273
bool wait_load_screen()
trigger the save/load screen where a selection should load data from SRAM => Global Save State => Glo...
Definition vnlib.cpp:664
void main()
control loop that will run the story_fx stored in vnlib::next
Definition vnlib.cpp:752
void free()
destroy all element in the scene manage by vnlib
Definition vnlib.cpp:101
MenuOptions default_MenuOptions()
default MenuOptions
Definition vnlib.cpp:324
void set_read_all_saves(void(*read_all_saves)())
callback function used to read all save functions from SRAM (read SRAM into global save state)
Definition vnlib.cpp:720
AnimationSlot
animation slot to save to (workaround vector of animation bug)
Definition vnlib.h:110
void set_save_slot_selected(void(*save_slot_selected)(int slot))
callback function used when a save slot is selected (load slot into global game state)
Definition vnlib.cpp:724
EndingType
type of ending. these options may or may not stop gameplay
Definition vnlib.h:125
@ GOOD_END
GOOD ending, you progressed normally and are on good terms with the character.
Definition vnlib.h:129
@ BAD_END
BAD ending, some decisions made depply conflit with the character.
Definition vnlib.h:127
@ PERFECT_END
PERFECT ending, you chose the right options and are a good match for hte character.
Definition vnlib.h:131
void animate_8(bn::sprite_item item, bn::fixed x, bn::fixed y, AnimationSlot slot, int, int, int, int, int, int, int, int)
ad-hoc sprite display using 8 frames
Definition vnlib.cpp:557
void show(bn::regular_bg_item who)
show a person stored in bg. see Design: Sprite Sizes
Definition vnlib.cpp:281
void set_render_save_slot(void(*render)(int slot, bn::fixed x, bn::fixed y, bn::sprite_text_generator gen, bn::vector< bn::sprite_ptr, 96 > *sprites))
callback function used to paint the save slot on Save Screen. x and y are used to denote top-left cor...
Definition vnlib.cpp:732
void maybe_handle_ending()
if global end state is set, run the end_fx
Definition vnlib.cpp:744
struct passed to a vnlib::menu
Definition vnlib.h:47
bn::string_view option
text to display
Definition vnlib.h:49
struct pass to vnlib::menu
Definition vnlib.h:54
bn::fixed choice_x
text, top-left x
Definition vnlib.h:57
bn::fixed bg_y
top-left bg y
Definition vnlib.h:73
bool use_variable_width
variable/fixed font
Definition vnlib.h:61
bn::fixed cursor_x
cursor, top-left x
Definition vnlib.h:64
bn::fixed ani_y_inc
y inc between both animations, text, cursor
Definition vnlib.h:87
MenuOptions * with_choice_x(bn::fixed x)
set the choice_x
Definition vnlib.h:90
MenuOptions * with_use_bg(bool u)
set the use_bg
Definition vnlib.h:100
bool store_selection_as_default
store the eventual selection into passed struct's default_selection
Definition vnlib.h:80
bn::fixed choice_y
text, top-left y
Definition vnlib.h:59
bn::fixed bg_width
background width
Definition vnlib.h:75
bool use_bg
use the default menu background
Definition vnlib.h:69
bn::fixed ani_x_inc
x inc between both animations, text, cursor
Definition vnlib.h:85
bn::fixed bg_x
top-left bg x
Definition vnlib.h:71
MenuOptions * with_choice_y(bn::fixed y)
set the choice_y
Definition vnlib.h:92
bn::fixed cursor_y
cursor, top-left y
Definition vnlib.h:66
MenuOptions * with_cursor_y(bn::fixed y)
set the cursor_y
Definition vnlib.h:96
int default_selection
default selection to hover/render
Definition vnlib.h:78
MenuOptions * with_cursor_x(bn::fixed x)
set the cursor_x
Definition vnlib.h:94
int cols
columns to use in an ani grid
Definition vnlib.h:83
MenuOptions * with_cols(int c)
set the cols
Definition vnlib.h:98
options passed to vnlib::say
Definition vnlib.h:103
bool enable_fastforward
if b key is pressed, skip rendering (disabled during ??)
Definition vnlib.h:105
bool disable_blocking
enable to skip waiting for a/b key press (used in minigames)
Definition vnlib.h:107