2019-11-21 21:31:46 +00:00
//-------------------------------------------------------------------------------------------
//
// Text only variant of the main menu for Doom, Strife and Chex Quest to be used with localized content.
//
//-------------------------------------------------------------------------------------------
LISTMENU "MainMenu"
{
2019-11-24 21:31:27 +00:00
ScriptId 0
2019-11-22 21:52:11 +00:00
ifgame(Duke, Nam, WW2GI, Fury)
{
2019-11-23 11:38:38 +00:00
ifgame(fury)
{
2019-11-24 21:31:27 +00:00
position 40, 130, 60
fixedspacing 2
2019-11-23 11:38:38 +00:00
}
else
{
2019-11-24 21:31:27 +00:00
position 160, 55, 115
2019-11-23 16:50:36 +00:00
centermenu
2019-11-23 11:38:38 +00:00
}
2019-11-22 21:52:11 +00:00
class "Duke.MainMenu"
2019-11-23 11:38:38 +00:00
NativeTextItem "$MNU_NEWGAME", "n", "PlayerclassMenu"
2019-11-24 19:40:53 +00:00
//NativeTextItem "$MNU_NEWGAME", "m", "MultiMenu" // In EDuke this replaces "New Game" when in networking mode. Kept here as a reminder (I'm not going to support EDuke's C/S implementation)
2019-11-22 21:52:11 +00:00
ifgame(fury)
{
2019-11-23 11:38:38 +00:00
NativeTextItem "$MNU_CONTINUE", "l", "LoadGameMenu"
2019-11-22 21:52:11 +00:00
}
else
{
2019-11-23 11:38:38 +00:00
NativeTextItem "$MNU_LOADGAME", "l", "LoadGameMenu"
2019-11-22 21:52:11 +00:00
}
2019-11-23 11:38:38 +00:00
NativeTextItem "$MNU_OPTIONS", "o", "OptionsMenu"
NativeTextItem "$MNU_HELP", "h", "HelpMenu"
NativeTextItem "$MNU_CREDITS", "c", "CreditsMenu"
NativeTextItem "$MNU_QUITGAME", "q", "QuitMenu"
2019-11-22 21:52:11 +00:00
}
ifgame(Redneck, RedneckRides)
{
linespacing 15
2019-11-23 11:38:38 +00:00
NativeTextItem "$MNU_NEWGAME", "n", "PlayerclassMenu"
2019-11-24 21:31:27 +00:00
//NativeTextItem "$MNU_NEWGAME", "m", "MultiMenu" // In EDuke this replaces "New Game" when in networking mode. Kept here as a reminder (I'm not going to support EDuke's C/S implementation)
2019-11-23 11:38:38 +00:00
NativeTextItem "$MNU_LOADGAME", "l", "LoadGameMenu"
NativeTextItem "$MNU_OPTIONS", "o", "OptionsMenu"
NativeTextItem "$MNU_HELP", "h", "HelpMenu"
NativeTextItem "$MNU_CREDITS", "c", "CreditsMenu"
NativeTextItem "$MNU_QUITGAME", "q", "QuitMenu"
2019-11-22 21:52:11 +00:00
}
ifgame(Blood)
{
linespacing 15
2019-11-23 11:38:38 +00:00
NativeTextItem "$MNU_NEWGAME", "n", "PlayerclassMenu"
NativeTextItem "$MNU_MULTIPLAYER", "m", "MultiMenu"
NativeTextItem "$MNU_OPTIONS", "o", "OptionsMenu"
NativeTextItem "$MNU_LOADGAME", "l", "LoadGameMenu"
NativeTextItem "$MNU_HELP", "h", "HelpMenu"
NativeTextItem "$MNU_CREDITS", "c", "CreditsMenu"
NativeTextItem "$MNU_QUITGAME", "q", "QuitMenu"
2019-11-22 21:52:11 +00:00
}
ifgame(ShadowWarrior)
{
linespacing 15
2019-11-23 11:38:38 +00:00
NativeTextItem "$MNU_NEWGAME", "n", "PlayerclassMenu"
NativeTextItem "$MNU_LOADGAME", "l", "LoadGameMenu"
NativeTextItem "$MNU_SAVEGAME", "s", "SaveGameMenu"
NativeTextItem "$MNU_OPTIONS", "o", "OptionsMenu"
NativeTextItem "$MNU_COOLSTUFF", "h", "HelpMenu"
NativeTextItem "$MNU_QUITGAME", "q", "QuitMenu"
2019-11-22 21:52:11 +00:00
}
2019-11-21 21:31:46 +00:00
}
2019-11-23 22:05:24 +00:00
LISTMENU "IngameMenu"
{
2019-11-24 22:12:58 +00:00
ScriptId 50
2019-11-23 22:05:24 +00:00
ifgame(Duke, Nam, WW2GI, Fury)
{
ifgame(fury)
{
2019-11-24 21:31:27 +00:00
position 40, 130, 60
fixedspacing 2
2019-11-23 22:05:24 +00:00
}
else
{
2019-11-24 21:31:27 +00:00
position 160, 55, 115
2019-11-23 22:05:24 +00:00
centermenu
}
linespacing 15
class "Duke.MainMenu"
2019-11-24 22:12:58 +00:00
NativeTextItem "$MNU_NEWGAME", "n", "CustomGameMenu"
2019-11-23 22:05:24 +00:00
NativeTextItem "$MNU_SAVEGAME", "s", "SaveGameMenu"
NativeTextItem "$MNU_LOADGAME", "l", "LoadGameMenu"
NativeTextItem "$MNU_OPTIONS", "o", "OptionsMenu"
NativeTextItem "$MNU_HELP", "h", "HelpMenu"
NativeTextItem "$MNU_ENDGAME", "e", "QuitToMenu"
NativeTextItem "$MNU_QUITGAME", "q", "QuitMenu"
}
ifgame(Redneck, RedneckRides)
{
linespacing 15
2019-11-24 22:12:58 +00:00
NativeTextItem "$MNU_NEWGAME", "n", "EpisodeMenu"
2019-11-23 22:05:24 +00:00
NativeTextItem "$MNU_SAVEGAME", "s", "SaveGameMenu"
NativeTextItem "$MNU_LOADGAME", "l", "LoadGameMenu"
NativeTextItem "$MNU_OPTIONS", "o", "OptionsMenu"
NativeTextItem "$MNU_HELP", "h", "HelpMenu"
NativeTextItem "$MNU_ENDGAME", "e", "QuitToMenu"
NativeTextItem "$MNU_QUITGAME", "q", "QuitMenu"
}
ifgame(Blood)
{
linespacing 15
2019-11-24 22:12:58 +00:00
NativeTextItem "$MNU_NEWGAME", "n", "EpisodeMenu"
2019-11-23 22:05:24 +00:00
NativeTextItem "$MNU_MULTIPLAYER", "m", "MultiMenu"
NativeTextItem "$MNU_OPTIONS", "o", "OptionsMenu"
NativeTextItem "$MNU_LOADGAME", "l", "LoadGameMenu"
NativeTextItem "$MNU_HELP", "h", "HelpMenu"
NativeTextItem "$MNU_CREDITS", "c", "CreditsMenu"
NativeTextItem "$MNU_QUITGAME", "q", "QuitMenu"
}
ifgame(ShadowWarrior)
{
linespacing 15
2019-11-24 22:12:58 +00:00
NativeTextItem "$MNU_NEWGAME", "n", "EpisodeMenu"
2019-11-23 22:05:24 +00:00
NativeTextItem "$MNU_LOADGAME", "l", "LoadGameMenu"
NativeTextItem "$MNU_SAVEGAME", "s", "SaveGameMenu"
NativeTextItem "$MNU_OPTIONS", "o", "OptionsMenu"
NativeTextItem "$MNU_COOLSTUFF", "h", "HelpMenu"
NativeTextItem "$MNU_QUITGAME", "q", "QuitMenu"
}
}
2019-11-24 22:12:58 +00:00
LISTMENU "EpisodeMenu"
{
ScriptId 100
// Episode names filled in programmatically
//Spacer
2019-11-25 17:41:39 +00:00
/*
2019-11-24 22:12:58 +00:00
NativeTextItem "$MNU_USERMAP", "u", "UserMap"
2019-11-24 23:02:00 +00:00
ifgame(ShadowWarrior)
{
NativeStaticTextItem "$MNU_SELECTUSERMAP"
}
2019-11-25 17:41:39 +00:00
*/
2019-11-24 22:12:58 +00:00
}
LISTMENU "SkillMenu"
{
NativeTextItem "1", "", "StartGame", 1
}
LISTMENU "CustomGameMenu"
{
ScriptId 102
// Filled in programmatically
//NativeTextItem "1", "", "CustomSubMenu1"
}
LISTMENU "CustomSubMenu1"
{
ScriptId 103
//NativeTextItem "1", "", "SkillMenu"
}
LISTMENU "CustomSubMenu2"
{
ScriptId 103
//NativeTextItem "1", "", "SkillMenu"
}
LISTMENU "CustomSubMenu3"
{
ScriptId 103
//NativeTextItem "1", "", "SkillMenu"
}
LISTMENU "CustomSubMenu4"
{
ScriptId 103
//NativeTextItem "1", "", "SkillMenu"
}
LISTMENU "CustomSubMenu5"
{
ScriptId 103
//NativeTextItem "1", "", "SkillMenu"
}
LISTMENU "CustomSubMenu6"
{
ScriptId 103
//NativeTextItem "1", "", "SkillMenu"
}
LISTMENU "CustomSubMenu7"
{
ScriptId 103
//NativeTextItem "1", "", "SkillMenu"
}