home *** CD-ROM | disk | FTP | other *** search
-
- /* --- SETUP MENU OPTIONS --- */
-
- #define TITLE_MENU_ITEMS 5
- #define TITLE_MENU_DEPTH 4
-
- #define OPTIONS_SUBMENU 4
- #define LASER_SUBMENU 3
- #define CASCADE_SUBMENU 2
- #define ROOTMENU 1
-
- /* --- define menu structure --- */
- const int menu_item[][6]= {{0, 0, 0, 0, 0},
- {0, CASCADE, LEVEL1, LEVEL1, NOT_CODED },
- {0, LASER, LEVEL2, LEVEL2, LESSONS },
- {0, FREETYPE, LEVEL3, LEVEL3, PROJECT_INFO },
- {0, OPTIONS, INSTRUCT, LEVEL4, SET_LANGUAGE},
- {0, QUIT_GAME, MAIN, MAIN, MAIN}};
-
- /* --- menu text --- */
- const unsigned char *menu_text[][6]=
- {{"", "", "", "", "" },
- {"", gettext_noop("Fish Cascade"), gettext_noop("Easy"), gettext_noop("Space Cadet"), gettext_noop("Edit Word Lists")},
- {"", gettext_noop("Comet Zap"), gettext_noop("Medium"), gettext_noop("Pilot"), gettext_noop("Lessons")},
- {"", gettext_noop("Practice"), gettext_noop("Hard"), gettext_noop("Ace"), gettext_noop("Project Info")},
- {"", gettext_noop("Options"), gettext_noop("Instructions"), gettext_noop("Commander"), gettext_noop("Setup Language")},
- {"", gettext_noop("Quit"), gettext_noop("Main Menu"), gettext_noop("Main Menu"), gettext_noop("Main Menu")}};
-
- /* --- menu icons --- */
- const unsigned char *menu_icon[][6]=
- {{"", "", "", "", ""},
- {"", "cascade", "easy", "grade1_", "list" },
- {"", "comet", "medium", "grade2_", "lesson" },
- {"", "practice","hard", "grade3_", "keyboard" },
- {"", "option", "tutor", "grade4_", "lang" },
- {"", "quit", "main", "main", "main" }};
-
- /* --- timings for tux blinking --- */
- #define TUX1 115
- #define TUX2 118
- #define TUX3 121
- #define TUX4 124
- #define TUX5 127
- #define TUX6 130
-