3#include <initializer_list>
6#include "bn_optional.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"
17#include "bn_sound_item.h"
18#include "bn_sound_actions.h"
20#include "common_variable_8x8_sprite_font.h"
21#include "common_fixed_8x8_sprite_font.h"
22#include "common_fixed_8x16_sprite_font.h"
137 void bg(bn::regular_bg_item item);
143 void show(bn::regular_bg_item who);
147 void play_music(std::initializer_list<bn::sound_item> items);
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);
190 void menu(std::initializer_list<MenuChoice> choices);
192 void menu(std::initializer_list<MenuChoice> choices,
MenuOptions* options);
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);
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
226 void set_keyboard(bn::regular_bg_item bg_keyboard_item);
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));
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
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