frodo-wii/Src/menutexts.c

93 lines
3.0 KiB
C
Raw Normal View History

2009-04-18 12:15:08 +02:00
#include <stdlib.h>
#include "menutexts.h"
const char *welcome[] = {
2009-04-19 15:24:27 +02:00
/*03*/ "In the system, hit HOME on the Wiimote to get to ",
/*04*/ "the config-page. Load or autostart a D64, T64, ",
/*05*/ "or PRG image. Use the virtual keyboard or assign ",
/*06*/ "key strokes to buttons on the Wiimote. ",
/*07*/ "You can save the game state in the main menu. ",
/*08*/ "The next time you can load that state instead ",
/*09*/ "and restore the game and everything configured. ",
/*10*/ " ",
/*11*/ "In the networking menu, you can host a game over ",
/*12*/ "the network or browse for active games. During ",
/*13*/ "network play, you can send messages to your peer ",
2009-04-26 07:49:17 +02:00
/*14*/ "by pressing F10 on the USB keyboard. ",
2009-04-19 15:24:27 +02:00
/*10*/ " ",
/*10*/ "In each menu, the '2' button selects and entry ",
/*10*/ "and '1' cancels. ",
2009-04-18 12:15:08 +02:00
NULL
};
const char *new_main_menu_messages[] = {
2009-04-19 15:32:11 +02:00
/*02*/ "File",
2009-04-19 14:57:29 +02:00
/*03*/ "^|Insert|Start",
2009-04-19 15:32:11 +02:00
/*04*/ "States",
2009-04-19 14:57:29 +02:00
/*05*/ "^|Load|Save|Delete",
2009-04-19 15:32:11 +02:00
/*06*/ "Keyboard",
2009-04-18 12:15:08 +02:00
/*07*/ "^|Type|Macro|Bind",
/*08*/ "#1-------------------------------------",
2009-04-19 15:32:11 +02:00
/*09*/ "Reset the C=64",
/*10*/ "Networking",
/*11*/ "Options",
/*12*/ "Advanced Options",
/*13*/ "Help",
/*15*/ "Quit",
2009-04-18 12:15:08 +02:00
NULL
};
const char *new_options_menu_messages[] = {
2009-04-19 15:32:11 +02:00
/*02*/ "Map Wiimote 1 to:",
2009-04-18 12:15:08 +02:00
/*03*/ "^|Port 1|Port 2",
/*04*/ " ",
2009-04-19 15:32:11 +02:00
/*05*/ "True 1541 emulation",
2009-04-18 12:15:08 +02:00
/*06*/ "^|NO|YES",
/*07*/ " ",
2009-04-19 15:32:11 +02:00
/*08*/ "1541 Floppy Drive LED", /* 0 */
2009-04-19 14:57:29 +02:00
/*09*/ "^|OFF|ON",
2009-04-18 12:15:08 +02:00
/*10*/ "#1-------------------------------------",
/*11*/ "#1'2'=SELECT, '1'=CANCEL",
NULL
};
const char *new_advanced_options_menu_messages[] = {
2009-04-19 15:32:11 +02:00
/*02*/ "Display resolution",
2009-04-18 12:15:08 +02:00
/*03*/ "^|double-center|stretched",
/*04*/ " ",
2009-04-19 15:32:11 +02:00
/*05*/ "Speed (approx.)",
2009-04-18 12:15:08 +02:00
/*06*/ "^|95|100|110",
2009-04-19 14:57:29 +02:00
/*07*/ " ",
2009-04-19 15:32:11 +02:00
/*08*/ "Sprite collisions",
2009-04-18 12:15:08 +02:00
/*09*/ "^|OFF|ON",
/*13*/ "#1-------------------------------------",
/*14*/ "#1'2'=SELECT, '1'=CANCEL",
NULL
};
const char *new_help_menu_messages[] = {
2009-04-19 14:57:29 +02:00
/*00*/ "#1.HELP MENU ",
2009-04-18 12:15:08 +02:00
/*01*/ "#1-------------------------------------",
2009-04-19 15:32:11 +02:00
/*02*/ "Wiimote key mappings", /* 0 */
2009-04-18 12:15:08 +02:00
/*03*/ "^|Wiimote Info|Set Default", /* 0 */
/*04*/ " ",
2009-04-19 15:32:11 +02:00
/*05*/ "Show USB-keyboard layout", /* 0 */
2009-04-18 12:15:08 +02:00
/*06*/ "#1-------------------------------------",
/*07*/ "#1'2'=SELECT, '1'=CANCEL",
NULL
};
const char *layout_messages[] = {
"#1.USB-Keyboard Layout ",
"#1-------------------------------------",
"#2ESC = Run/Stop",
"#2F9 = QuickSave",
"#2F10 = QuickLoad",
"#2F11 = Restore",
"#2TAB = CTRL",
"#2INS = Clr/Home",
"#2PGU = ¤",
"#2AGR = C=",
"#2HOM = Menu",
"#1-------------------------------------",
"Back",
NULL,
};