From dbf446ee6c1ff935777805ac16050efdb630a1f3 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 27 Feb 2020 19:26:30 +0100 Subject: [PATCH] - ported the menu changes of the last commit. --- source/common/menu/menu.cpp | 6 ++ source/common/utility/namedef.h | 3 + source/common/version.h | 4 +- source/rr/src/d_menu.cpp | 94 +++++++++++++++++++++++--------- source/rr/src/rrdh.cpp | 48 +++++++++------- wadsrc/static/engine/menudef.txt | 30 +++++----- 6 files changed, 124 insertions(+), 61 deletions(-) diff --git a/source/common/menu/menu.cpp b/source/common/menu/menu.cpp index a02621df2..042d471e7 100644 --- a/source/common/menu/menu.cpp +++ b/source/common/menu/menu.cpp @@ -436,6 +436,8 @@ bool M_SetMenu(FName menu, int param, FName caller) switch (caller) { case NAME_EpisodeMenu: + case NAME_HuntMenu: + case NAME_TargetMenu: // sent from the episode menu GameStartupInfo.Episode = param; GameStartupInfo.Level = 0; @@ -443,6 +445,10 @@ bool M_SetMenu(FName menu, int param, FName caller) GameStartupInfo.Skill = gDefaultSkill; break; + case NAME_WeaponMenu: + GameStartupInfo.Skill = param; + break; + case NAME_CustomGameMenu: GameStartupInfo.CustomLevel1 = param; GameStartupInfo.CustomLevel2 = -1; diff --git a/source/common/utility/namedef.h b/source/common/utility/namedef.h index 653b7b3d3..cc65b9d01 100644 --- a/source/common/utility/namedef.h +++ b/source/common/utility/namedef.h @@ -65,6 +65,9 @@ xx(LoadGameMenu) xx(SoundMenu) xx(ConfirmPlayerReset) xx(EpisodeMenu) +xx(HuntMenu) +xx(WeaponMenu) +xx(TargetMenu) xx(SkillMenu) xx(CustomGameMenu) xx(CustomSubMenu1) diff --git a/source/common/version.h b/source/common/version.h index 244ea3317..78275d2cc 100644 --- a/source/common/version.h +++ b/source/common/version.h @@ -68,13 +68,13 @@ const char *GetVersionString(); #define MINSAVEVER_DN3D 4 #define MINSAVEVER_BLD 4 -#define MINSAVEVER_RR 4 +#define MINSAVEVER_RR 5 #define MINSAVEVER_SW 3 #define MINSAVEVER_PS 3 #define SAVEVER_DN3D 4 #define SAVEVER_BLD 4 -#define SAVEVER_RR 4 +#define SAVEVER_RR 5 #define SAVEVER_SW 3 #define SAVEVER_PS 3 diff --git a/source/rr/src/d_menu.cpp b/source/rr/src/d_menu.cpp index 8a02fafc6..318f43877 100644 --- a/source/rr/src/d_menu.cpp +++ b/source/rr/src/d_menu.cpp @@ -508,6 +508,31 @@ class RedneckWeaponMenu : public RedneckListMenu } }; +class RedneckTrophiesMenu : public RedneckListMenu +{ + void PreDraw() override + { + RedneckListMenu::PreDraw(); + vec2_t forigin = { int(origin.X * 65536), int(origin.Y * 65536) }; + if (g_player[myconnectindex].ps->gm & MODE_GAME) + { + if (ud.level_number < 4) + { + rotatesprite_fs(forigin.x + (160 << 16), forigin.y + (100 << 16), 65536, 0, 1730, 0, 0, 10); + sub_5469C(forigin, 0); + } + else + sub_5469C(forigin, 2); + } + else + { + rotatesprite_fs(forigin.x + (160 << 16), forigin.y + (100 << 16), 65536, 0, 1730, 0, 0, 10); + sub_5469C(forigin, 1); + } + } +}; + + //---------------------------------------------------------------------------- // // Menu related game interface functions @@ -642,43 +667,56 @@ void GameInterface::StartGame(FGameStartup& gs) int32_t skillsound = PISTOL_BODYHIT; soundEngine->StopAllChannels(); - switch (gs.Skill) - { - case 0: - skillsound = RR? 427 : JIBBED_ACTOR6; - break; - case 1: - skillsound = RR? 428 : BONUS_SPEECH1; - break; - case 2: - skillsound = RR? 196 : DUKE_GETWEAPON2; - break; - case 3: - skillsound = RR? 195 : JIBBED_ACTOR5; - break; - case 4: - skillsound = RR? 197 : JIBBED_ACTOR5; // Does not exist in DN3D. - break; - } - ud.m_player_skill = gs.Skill + 1; - if (menu_sounds && skillsound >= 0 && SoundEnabled()) + if (!DEER) { - S_PlaySound(skillsound, CHAN_AUTO, CHANF_UI); - while (S_CheckSoundPlaying(skillsound)) + switch (gs.Skill) { - S_Update(); - G_HandleAsync(); + case 0: + skillsound = RR ? 427 : JIBBED_ACTOR6; + break; + case 1: + skillsound = RR ? 428 : BONUS_SPEECH1; + break; + case 2: + skillsound = RR ? 196 : DUKE_GETWEAPON2; + break; + case 3: + skillsound = RR ? 195 : JIBBED_ACTOR5; + break; + case 4: + skillsound = RR ? 197 : JIBBED_ACTOR5; // Does not exist in DN3D. + break; } + ud.m_player_skill = gs.Skill + 1; + if (menu_sounds && skillsound >= 0 && SoundEnabled()) + { + S_PlaySound(skillsound, CHAN_AUTO, CHANF_UI); + + while (S_CheckSoundPlaying(skillsound)) + { + S_Update(); + G_HandleAsync(); + } + } + ud.m_respawn_monsters = (gs.Skill == 3); + ud.m_volume_number = gs.Episode; + m_level_number = gs.Level; } - ud.m_respawn_monsters = (gs.Skill == 3); + else + { + ud.m_player_skill = 1; + ud.m_respawn_monsters = 0; + ud.m_volume_number = 0; + m_level_number = gs.Episode; + g_player[myconnectindex].ps->dhat61f = gs.Skill; + } + ud.m_monsters_off = ud.monsters_off = 0; ud.m_respawn_items = 0; ud.m_respawn_inventory = 0; ud.multimode = 1; - ud.m_volume_number = gs.Episode; - m_level_number = gs.Level; G_NewGame_EnterLevel(); } @@ -742,6 +780,7 @@ static TMenuClassDescriptor _lm("Redneck.ListMenu"); static TMenuClassDescriptor _dhm("Redneck.HuntMenu"); static TMenuClassDescriptor _dtm("Redneck.TargetMenu"); static TMenuClassDescriptor _dwm("Redneck.WeaponMenu"); +static TMenuClassDescriptor _dttm("Redneck.TrophiesMenu"); static TMenuClassDescriptor _ism("Redneck.ImageScrollerMenu"); // does not implement a new class, we only need the descriptor. void RegisterRedneckMenus() @@ -752,4 +791,5 @@ void RegisterRedneckMenus() menuClasses.Push(&_dhm); menuClasses.Push(&_dtm); menuClasses.Push(&_dwm); + menuClasses.Push(&_dttm); } diff --git a/source/rr/src/rrdh.cpp b/source/rr/src/rrdh.cpp index 4097847a2..ddbfb1ba0 100644 --- a/source/rr/src/rrdh.cpp +++ b/source/rr/src/rrdh.cpp @@ -28,9 +28,21 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #include "baselayer.h" #include "duke3d.h" #include "i_time.h" +#include "files.h" +#include "i_specialpaths.h" BEGIN_RR_NS +inline bool KB_KeyPressed(int code) +{ + return inputState.GetKeyStatus(code); +} + +inline void KB_ClearKeyDown(int key) +{ + inputState.ClearKeyStatus(key); +} + int rrdh_randseed = 1; int rrdh_random(void) @@ -298,15 +310,16 @@ char dword_AA390[43] = " "; void ghtrophy_savebestscores(void) { - FILE *handle; + FileWriter *handle; - handle = Bfopen("scores", "rb"); + FString filename = M_GetDocumentsPath() + "scores"; + + handle = FileWriter::Open(filename); if (!handle) { - initprintf("ghtrophy_savebestscores cant open scores\n"); + Printf("ghtrophy_savebestscores: cannot open scores\n"); // this is not an error! return; } - Bfseek(handle, 0, SEEK_SET); if (dword_AA36C > bestscore.f_0) bestscore.f_0 = dword_AA36C; if (dword_AA370 > bestscore.f_4) @@ -316,35 +329,30 @@ void ghtrophy_savebestscores(void) if (dword_AA378 > bestscore.f_c) bestscore.f_c = dword_AA378; - Bfseek(handle, 0, SEEK_SET); - - if (Bfwrite(&bestscore, sizeof(bestscore), 1, handle) != 1) + if (handle->Write(&bestscore, sizeof(bestscore)) != sizeof(bestscore)) { - initprintf("ghtrophy_savebestscores err write scores\n"); - Bfclose(handle); + initprintf("ghtrophy_savebestscores: error writing scores\n"); + delete handle; return; } - Bfclose(handle); + delete handle; dword_AA380 = 0; } void ghtrophy_loadbestscores(void) { - FILE *handle; - handle = fopen("scores", "wb"); - if (!handle) + FileReader handle; + FString filename = M_GetDocumentsPath() + "scores"; + if (!handle.OpenFile(filename)) { - initprintf("ghtrophy_loadbestscores cant open scores\n"); + // This is not an error. return; } - Bfseek(handle, 0, SEEK_SET); - if (Bfread(&bestscore, sizeof(bestscore), 1, handle) != 1) + if (handle.Read(&bestscore, sizeof(bestscore)) != sizeof(bestscore)) { initprintf("ghtrophy_loadbestscores err read scores\n"); - Bfclose(handle); - return; + memset(&bestscore, 0, sizeof(bestscore)); } - Bfclose(handle); } int ghtrophy_isakill(short a1) @@ -818,6 +826,7 @@ void sub_54A2C(void) char sub_54B80(void) { +#if 0 switch (KB_GetLastScanCode()) { case sc_A: @@ -902,6 +911,7 @@ char sub_54B80(void) KB_SetLastScanCode(sc_None); return ' '; } +#endif return 0; } diff --git a/wadsrc/static/engine/menudef.txt b/wadsrc/static/engine/menudef.txt index 5c76ec167..26681ea32 100644 --- a/wadsrc/static/engine/menudef.txt +++ b/wadsrc/static/engine/menudef.txt @@ -130,11 +130,11 @@ LISTMENU "IngameMenu" position 160, 72, 108 centermenu animatedtransition - NativeTextItem "Go Huntin'!", "g", "HuntMenu" - NativeTextItem "Target Range", "r", "TargetMenu" + NativeTextItem "Keep Huntin'!", "k", "HuntMenu" NativeTextItem "Trophies", "t", "TrophiesMenu" NativeTextItem "$MNU_OPTIONS", "o", "OptionsMenu" NativeTextItem "$MNU_HELP", "h", "HelpMenu" + NativeTextItem "Leave Area", "l", "EndgameMenu" NativeTextItem "$MNU_QUITGAME", "q", "QuitMenu" } ifgame(Blood) @@ -226,10 +226,10 @@ LISTMENU "HuntMenu" position 160, 102, 78 centermenu animatedtransition - NativeTextItem "LAKE SWAMPY", "q", "WeaponsMenu" - NativeTextItem "SAGEBRUSH FLATS", "q", "WeaponsMenu" - NativeTextItem "OZARK FOREST", "q", "WeaponsMenu" - NativeTextItem "SNOWBUSH RIDGE", "q", "WeaponsMenu" + NativeTextItem "LAKE SWAMPY", "q", "WeaponsMenu", 0 + NativeTextItem "SAGEBRUSH FLATS", "q", "WeaponsMenu", 1 + NativeTextItem "OZARK FOREST", "q", "WeaponsMenu", 2 + NativeTextItem "SNOWBUSH RIDGE", "q", "WeaponsMenu", 3 } } @@ -241,13 +241,17 @@ LISTMENU "TargetMenu" position 160, 102, 78 centermenu animatedtransition - NativeTextItem "NORTH RANGE", "q", "WeaponsMenu" - NativeTextItem "SOUTH RANGE", "q", "WeaponsMenu" + NativeTextItem "NORTH RANGE", "q", "WeaponsMenu", 4 + NativeTextItem "SOUTH RANGE", "q", "WeaponsMenu", 5 } } LISTMENU "TrophiesMenu" { + class "$.TrophiesMenu" + position 160, 102, 78 + centermenu + animatedtransition } LISTMENU "WeaponsMenu" @@ -258,11 +262,11 @@ LISTMENU "WeaponsMenu" position 160, 102, 98 centermenu animatedtransition - NativeTextItem "Pistol", "q", "QuitMenu" - NativeTextItem "Rifle", "q", "QuitMenu" - NativeTextItem "Rifle With Scope", "q", "QuitMenu" - NativeTextItem "Shotgun", "q", "QuitMenu" - NativeTextItem "Crossbow", "q", "QuitMenu" + NativeTextItem "Pistol", "q", "StartGame", 0 + NativeTextItem "Rifle", "q", "StartGame", 1 + NativeTextItem "Rifle With Scope", "q", "StartGame", 2 + NativeTextItem "Shotgun", "q", "StartGame", 3 + NativeTextItem "Crossbow", "q", "StartGame", 4 } }