forked from keirf/flashfloppy-hxc-file-selector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmsg_txt.c
116 lines (107 loc) · 3.48 KB
/
msg_txt.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include "version.h"
#include "cfg_file.h"
#include "ui_context.h"
#include "gui_utils.h"
#include "msg_txt.h"
const char startup_msg[]=
{
"FlashFloppy File Selector\n"
"v" VERSIONCODE " - " DATECODE "\n"
"\n"
"Facebook : https://www.facebook.com/groups/flashfloppy\n"
"Email : keir.xen@gmail.com\n"
"Git : https://github.com/keirf\n"
"\n"
"Based on original HxC Emulator file selector\n"
"(c) 2006-2018 HxC2001 / Jean-Francois DEL NERO\n"
"http://hxc2001.com\n"
"\n"
"\n"
">>> Press HELP key for the function key list <<<"
"\n"
"\n"
"This software uses the FAT16/32 File IO Library v2.6\n"
"(c) 2003-2013 Ultra-Embedded.com\n"
};
const char help_scr1_msg[]=
{
"Function Keys (1/2):\n"
"\n"
"-> Into the files browser :\n"
"\n"
"Keyboard Arrows and Joystick : Browse the SD/USB files\n"
"Right Shift : Go back to the top of the folder\n"
"F7 : Insert the selected file in the slot 1\n"
" and restart the computer with this disk.\n"
"ENTER/Joystick Fire : Enter a subfolder/ Select an image\n"
" and enter the slots selection\n"
"\n"
"\n"
"->Into the slots browser :\n"
"\n"
"Keyboard Arrows and Joystick : Browse the slots selection\n"
"BACKSPACE : Clear the current slot\n"
"ENTER/Joystick Fire : Set the current slot\n"
" and leave the slots browser\n"
"ESCAPE : Leave the slots browser\n"
"\n"
"\n"
" ---Press Enter / Fire to continue---"
};
const char help_scr2_msg[]=
{
"Function Keys (2/2):\n"
"\n"
"F1 : Search files in the current folder\n"
" Type the word to search then enter\n"
" Escape to abort the search\n"
"F2 : Change color\n"
"F3 : Settings menu\n"
"F8 : Reboot\n"
"F9 : Save\n"
"F10 : Save and Reboot\n"
"\n"
"The joystick can be used to browse all the interface and select the images.\n"
"The keyboard is not required.\n"
"The first line of each page allows to switch to the next one :\n"
"Media files list-> Drive A slots list-> Drive B slots list-> Save/Settings page\n"
"\n"
"\n"
" ---Press Enter / Fire to continue---"
};
const char help_scr3_msg[]=
{
"\n"
"\n"
"FlashFloppy File Selector\n"
"v" VERSIONCODE " - " DATECODE "\n"
"\n"
"Facebook : https://www.facebook.com/groups/flashfloppy\n"
"Email : keir.xen@gmail.com\n"
"Git : https://github.com/keirf\n"
"\n"
"Based on original HxC Emulator file selector\n"
"(c) 2006-2018 HxC2001 / Jean-Francois DEL NERO\n"
"\n"
"This software uses the\n"
"FAT16/32 File IO Library v2.6\n"
"(c) 2003-2013 Ultra-Embedded.com\n"
"\n"
"---Press Enter / Fire to continue---"
};
const pagedesc help_pages[]=
{
{help_scr1_msg,LEFT_ALIGNED},
{help_scr2_msg,LEFT_ALIGNED},
{help_scr3_msg,CENTER_ALIGNED},
{0,0}
};
const char cur_folder_msg[] = "Current folder:";
const char reboot_msg[] = ">>>>>Rebooting...<<<<<";
const char save_msg[] = "Saving selection...";
const char save_and_restart_msg[] = "Saving selection and restart...";
const char title_msg[] = { "FlashFloppy Selector v" VERSIONCODE};
const char copyright_msg[] = "";