home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 123 / cdrom123.iso / edu / tux / Tuxtype2-1.5.3-installer.exe / src / titlescreen.h < prev   
Encoding:
C/C++ Source or Header  |  2004-03-25  |  2.0 KB  |  45 lines

  1.  
  2. /* --- SETUP MENU OPTIONS --- */
  3.  
  4. #define TITLE_MENU_ITEMS                5
  5. #define TITLE_MENU_DEPTH                4
  6.  
  7. #define OPTIONS_SUBMENU                 4
  8. #define LASER_SUBMENU                3
  9. #define CASCADE_SUBMENU                2
  10. #define ROOTMENU                1
  11.  
  12. /* --- define menu structure --- */
  13. const int menu_item[][6]= {{0, 0,         0,         0,          0},
  14.                {0, CASCADE,   LEVEL1,    LEVEL1,  NOT_CODED },
  15.                {0, LASER,     LEVEL2,    LEVEL2,  LESSONS   },
  16.                {0, FREETYPE,  LEVEL3,    LEVEL3,  PROJECT_INFO },
  17.                {0, OPTIONS,   INSTRUCT,  LEVEL4,  SET_LANGUAGE},
  18.                {0, QUIT_GAME, MAIN,      MAIN,    MAIN}};
  19.  
  20. /* --- menu text --- */
  21. const unsigned char *menu_text[][6]= 
  22. {{"", "",            "",             "",            ""    },
  23.  {"", gettext_noop("Fish Cascade"), gettext_noop("Easy"),         gettext_noop("Space Cadet"), gettext_noop("Edit Word Lists")},
  24.  {"", gettext_noop("Comet Zap"),    gettext_noop("Medium"),       gettext_noop("Pilot"),       gettext_noop("Lessons")},
  25.  {"", gettext_noop("Practice"),     gettext_noop("Hard"),         gettext_noop("Ace"),         gettext_noop("Project Info")},
  26.  {"", gettext_noop("Options"),      gettext_noop("Instructions"), gettext_noop("Commander"),   gettext_noop("Setup Language")},
  27.  {"", gettext_noop("Quit"),         gettext_noop("Main Menu"),    gettext_noop("Main Menu"),   gettext_noop("Main Menu")}};
  28.  
  29. /* --- menu icons --- */
  30. const unsigned char *menu_icon[][6]= 
  31. {{"", "", "", "", ""},
  32.  {"", "cascade", "easy",   "grade1_", "list"   },
  33.  {"", "comet",   "medium", "grade2_", "lesson" },
  34.  {"", "practice","hard",   "grade3_", "keyboard"   },
  35.  {"", "option",  "tutor",  "grade4_", "lang" },
  36.  {"", "quit",    "main",   "main",    "main"   }};
  37.  
  38. /* --- timings for tux blinking --- */
  39. #define TUX1                            115
  40. #define TUX2                            118
  41. #define TUX3                            121
  42. #define TUX4                            124
  43. #define TUX5                            127
  44. #define TUX6                            130
  45.