N64FlashcartMenu
Loading...
Searching...
No Matches
menu_state.h
Go to the documentation of this file.
1
7#ifndef MENU_STRUCT_H__
8#define MENU_STRUCT_H__
9
10
11#include <time.h>
12
13#include "boot/boot.h"
14#include "disk_info.h"
15#include "flashcart/flashcart.h"
16#include "path.h"
17#include "rom_info.h"
18#include "settings.h"
19#include "bookkeeping.h"
20
21
23typedef enum {
24 MENU_MODE_NONE,
25 MENU_MODE_STARTUP,
26 MENU_MODE_BROWSER,
27 MENU_MODE_FILE_INFO,
28 MENU_MODE_SYSTEM_INFO,
29 MENU_MODE_IMAGE_VIEWER,
30 MENU_MODE_TEXT_VIEWER,
31 MENU_MODE_MUSIC_PLAYER,
32 MENU_MODE_CREDITS,
33 MENU_MODE_SETTINGS_EDITOR,
34 MENU_MODE_RTC,
35 MENU_MODE_FLASHCART,
36 MENU_MODE_LOAD_ROM,
37 MENU_MODE_LOAD_DISK,
38 MENU_MODE_LOAD_EMULATOR,
39 MENU_MODE_ERROR,
40 MENU_MODE_FAULT,
41 MENU_MODE_BOOT,
42 MENU_MODE_FAVORITE,
43 MENU_MODE_HISTORY
45
47typedef enum {
48 ENTRY_TYPE_DIR,
49 ENTRY_TYPE_ROM,
50 ENTRY_TYPE_DISK,
51 ENTRY_TYPE_EMULATOR,
52 ENTRY_TYPE_SAVE,
53 ENTRY_TYPE_IMAGE,
54 ENTRY_TYPE_MUSIC,
55 ENTRY_TYPE_TEXT,
56 ENTRY_TYPE_OTHER,
58
60typedef struct {
61 char *name;
62 entry_type_t type;
63 int64_t size;
64} entry_t;
65
67typedef struct {
68 menu_mode_t mode;
69 menu_mode_t next_mode;
70
71 const char *storage_prefix;
72 settings_t settings;
73 bookkeeping_t bookkeeping;
74 boot_params_t *boot_params;
75
76 char *error_message;
77 flashcart_err_t flashcart_err;
78
79 time_t current_time;
80
81 struct {
82 bool go_up;
83 bool go_down;
84 bool go_left;
85 bool go_right;
86 bool go_fast;
87
88 bool enter;
89 bool back;
90 bool options;
91 bool settings;
92 bool lz_context;
93 bool previous_tab;
94 bool next_tab;
95 } actions;
96
97 struct {
98 bool valid;
99 bool reload;
100 path_t *directory;
101 entry_t *list;
102 int entries;
103 entry_t *entry;
104 int selected;
105 } browser;
106
107 struct {
108 path_t *rom_path;
109 rom_info_t rom_info;
110 path_t *disk_path;
111 disk_info_t disk_info;
112 int load_history;
113 int load_favorite;
114 bool combined_disk_rom;
115 } load;
116
117 struct {
118 bool rom_file;
119 bool disk_file;
120 bool emulator_file;
121 } boot_pending;
122} menu_t;
123
124
125#endif
Bookkeeping of loaded ROMs.
ROM bookkeeping structure.
Definition bookkeeping.h:30
Flashcart Boot Subsystem.
Boot Parameters Structure.
Definition boot.h:34
64DD disk information
Disk Information Structure.
Definition disk_info.h:44
Flashcart Subsystem.
flashcart_err_t
Flashcart error enumeration.
Definition flashcart.h:14
entry_type_t
File entry type enumeration.
Definition menu_state.h:47
menu_mode_t
Menu mode enumeration.
Definition menu_state.h:23
File Entry Structure.
Definition menu_state.h:60
Menu Structure.
Definition menu_state.h:67
Menu Path.
Path Structure.
Definition path.h:16
N64 ROM Database.
ROM Information Structure.
Definition rom_info.h:115
Menu Settings.
Settings Structure.
Definition settings.h:12