2009-12-04 20:10:49 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "menu_messages.hh"
|
|
|
|
|
2009-12-05 13:04:00 +01:00
|
|
|
const char **exit_dialogue_messages = (const char*[]){
|
|
|
|
/*00*/ "Do you really want to exit",
|
|
|
|
/*01*/ "Frodo?",
|
|
|
|
/*02*/ "#", /* Empty line */
|
|
|
|
/*03*/ "#",
|
|
|
|
/*04*/ "#",
|
2009-12-05 13:04:56 +01:00
|
|
|
/*05*/ "#",
|
2009-12-05 13:04:00 +01:00
|
|
|
/*06*/ "^|Yes|Cancel",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2009-12-04 20:10:49 +01:00
|
|
|
const char **main_menu_messages = (const char*[]){
|
2009-12-05 13:04:00 +01:00
|
|
|
/*00*/ "File",
|
|
|
|
/*01*/ "^|Insert|Start",
|
|
|
|
/*02*/ "States",
|
|
|
|
/*03*/ "^|Load|Save|Delete",
|
|
|
|
/*04*/ "Keyboard",
|
|
|
|
/*05*/ "^|Type|Macro|Bind",
|
|
|
|
/*06*/ " ",
|
|
|
|
/*07*/ "Reset the C=64",
|
|
|
|
/*08*/ "Networking",
|
|
|
|
/*09*/ "Options",
|
|
|
|
/*10*/ "Help",
|
|
|
|
/*11*/ "Quit",
|
|
|
|
NULL
|
2009-12-04 20:10:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const char **main_menu_help[] = {
|
|
|
|
(const char*[]){
|
|
|
|
"Insert a disc/tape or",
|
|
|
|
"start it",
|
|
|
|
NULL,
|
|
|
|
},
|
|
|
|
NULL,
|
|
|
|
(const char*[]){
|
|
|
|
"Load/save or delete game",
|
|
|
|
"states",
|
|
|
|
NULL,
|
|
|
|
},
|
|
|
|
NULL,
|
|
|
|
(const char*[]){
|
|
|
|
"Bind keyboard keys to the",
|
|
|
|
"joysticks, use pre-defined",
|
|
|
|
"macros, or type with the",
|
|
|
|
"virtual keyboard",
|
|
|
|
NULL,
|
|
|
|
},
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
(const char*[]){
|
2009-12-04 21:09:42 +01:00
|
|
|
"Network setup for playing",
|
|
|
|
"C64 games against other",
|
|
|
|
"players online.",
|
2009-12-04 20:10:49 +01:00
|
|
|
NULL,
|
|
|
|
},
|
|
|
|
(const char*[]){
|
|
|
|
"Configure Frodo",
|
|
|
|
NULL,
|
|
|
|
},
|
|
|
|
NULL,
|
2009-12-04 21:00:41 +01:00
|
|
|
NULL,
|
2009-12-04 20:10:49 +01:00
|
|
|
};
|
2009-12-28 13:38:41 +01:00
|
|
|
|
|
|
|
|
|
|
|
const char **options_menu_messages = (const char*[]){
|
|
|
|
/*00*/ "Map Wiimote 1 to:",
|
|
|
|
/*01*/ "^|Port 1|Port 2",
|
|
|
|
/*03*/ "True 1541 emulation",
|
|
|
|
/*04*/ "^|ON|OFF",
|
|
|
|
/*06*/ "1541 Floppy Drive LED",
|
|
|
|
/*07*/ "^|ON|OFF",
|
|
|
|
/*09*/ "Display resolution",
|
|
|
|
/*10*/ "^|double-center|stretched",
|
|
|
|
/*12*/ "Speed (approx. %)",
|
|
|
|
/*13*/ "^|95|100|110",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
const char **options_menu_help[] = {
|
|
|
|
(const char*[]){
|
|
|
|
"Switch controller to",
|
2009-12-29 08:50:36 +01:00
|
|
|
"C64 joystick port",
|
|
|
|
"mapping.",
|
2009-12-28 13:38:41 +01:00
|
|
|
NULL,
|
|
|
|
},
|
|
|
|
NULL,
|
|
|
|
(const char*[]){
|
|
|
|
"Turn on or off true 1541",
|
|
|
|
"floppy emulation. Might",
|
|
|
|
"be needed in some games",
|
2009-12-29 08:50:36 +01:00
|
|
|
"but slows down emulation.",
|
2009-12-28 13:38:41 +01:00
|
|
|
NULL,
|
|
|
|
},
|
|
|
|
NULL,
|
|
|
|
(const char*[]){
|
|
|
|
"Display 1541 drive LED to",
|
|
|
|
"show if the emulation got",
|
2009-12-29 08:50:36 +01:00
|
|
|
"stuck or is running.",
|
2009-12-28 13:38:41 +01:00
|
|
|
NULL,
|
|
|
|
},
|
|
|
|
NULL,
|
|
|
|
(const char*[]){
|
|
|
|
"Select display resolution",
|
|
|
|
"mapping. Double-center",
|
|
|
|
"removes some pixels on the",
|
|
|
|
"borders, stretched fills",
|
2009-12-29 08:50:36 +01:00
|
|
|
"the display but is slower.",
|
2009-12-28 13:38:41 +01:00
|
|
|
NULL,
|
|
|
|
},
|
|
|
|
NULL,
|
|
|
|
(const char*[]){
|
2009-12-29 08:50:36 +01:00
|
|
|
"Setup speed factor (in %).",
|
|
|
|
"Should normally be 100",
|
|
|
|
"unless Simon did some bad",
|
|
|
|
"mistake.",
|
2009-12-28 13:38:41 +01:00
|
|
|
NULL,
|
|
|
|
},
|
|
|
|
NULL,
|
|
|
|
};
|