'OHRRPGCE - Some of the editors shared between Custom and Game '(C) Copyright 1997-2020 James Paige, Ralph Versteegen, and the OHRRPGCE Developers 'Dual licensed under the GNU GPL v2+ and MIT Licenses. Read LICENSE.txt for terms and disclaimer of liability. #ifndef COMMON_MENUS_BI #define COMMON_MENUS_BI #include "udts.bi" ' A function which returns true to quit the menu TYPE FnMenuLogic as FUNCTION (menu as MenuDef, state as MenuState, dataptr as any ptr) as bool DECLARE SUB run_MenuDef(menu as MenuDef, each_tick as FnMenuLogic, dataptr as any ptr = NULL) ENUM 'EditBitsetResult edbitCancelled edbitBack edbitPickedBit END ENUM TYPE EditBitsetResult as integer DECLARE FUNCTION edit_all_bits (array() as integer, wof as integer, bitmenu() as IntStrPair, numbits as integer, helpkey as string="editbitset", byref remem_pt as integer = -1, immediate_quit as bool = NO, title as string = "", prevmenu as string="Previous Menu") as EditBitsetResult DECLARE FUNCTION editbitset overload (array() as integer, wof as integer, names() as string, helpkey as string="editbitset", byref remem_pt as integer = -1, immediate_quit as bool = NO, title as string = "", prevmenu as string="Previous Menu", show_all as bool = NO, show_index as bool = NO) as EditBitsetResult DECLARE FUNCTION editbitset overload (array() as integer, wof as integer, bitmenu() as IntStrPair, helpkey as string="editbitset", byref remem_pt as integer = -1, immediate_quit as bool = NO, title as string = "", prevmenu as string="Previous Menu", show_index as bool = NO, show_hidden as bool = NO) as EditBitsetResult DECLARE FUNCTION editbools (bools() as bool, names() as string, helpkey as string = "editbitset", byref remem_pt as integer = -2, immediate_quit as bool = NO, title as string = "", prevmenu as string="Previous Menu") as EditBitsetResult DECLARE SUB edit_general_bitsets() DECLARE SUB edit_backcompat_bitsets() DECLARE SUB edit_battle_bitsets() DECLARE SUB edit_mouse_options () DECLARE FUNCTION prompt_animation_name(title as string, anim_context as AnimationContext, add_none as bool = NO) as string DECLARE FUNCTION prompt_variant_name(title as string, anim_context as AnimationContext) as string 'Globals EXTERN npc_movetypes() as string EXTERN npc_pushtypes() as string EXTERN npc_usetypes() as string EXTERN npc_facetypes() as string #endif