From 7e758a5e48b505884edf417c6b6312addf162c94 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 27 Dec 2019 17:07:09 +0100 Subject: [PATCH] - hook up the savegame code in Exhumed. Superficially it looks like it works but it will require a lot more testing. - fixed per-frame sound system update in Exhumed. Sound is still quite broken and will require more work. --- source/exhumed/src/exhumed.cpp | 20 ++++++------ source/exhumed/src/save.cpp | 7 ++-- source/exhumed/src/sound.cpp | 58 +++++++++++++++++++++++----------- source/sw/src/sounds.cpp | 2 +- 4 files changed, 55 insertions(+), 32 deletions(-) diff --git a/source/exhumed/src/exhumed.cpp b/source/exhumed/src/exhumed.cpp index 5d1c01696..c7abed46b 100644 --- a/source/exhumed/src/exhumed.cpp +++ b/source/exhumed/src/exhumed.cpp @@ -1680,15 +1680,6 @@ void ExitGame() fclose(vcrfp); } - FadeSong(); - if (CDplaying()) { - fadecdaudio(); - } - - StopAllSounds(); - StopLocalSound(); - mysaveconfig(); - if (bSerialPlay) { if (nNetPlayerCount != 0) { @@ -1704,7 +1695,7 @@ void ExitGame() } ShutDown(); - exit(0); + throw ExitEvent(0); } static int32_t nonsharedtimer; @@ -2026,6 +2017,8 @@ MENU: case 3: forcelevel = 0; goto STARTGAME2; + case 6: + goto GAMELOOP; case 9: vcrfp = fopen("demo.vcr", "rb"); if (vcrfp == NULL) { @@ -2192,6 +2185,7 @@ LOOP3: //int edi = totalclock; tclocks2 = totalclock; // Game Loop +GAMELOOP: while (1) { if (levelnew >= 0) @@ -2408,6 +2402,8 @@ LOOP3: goto STARTGAME2; } + case 6: + goto GAMELOOP; } totalclock = ototalclock = tclocks; @@ -2615,9 +2611,11 @@ void DoTitle() var_18 += theArray[0]; + inputState.ClearAllKeyStatus(); while (LocalSoundPlaying()) { HandleAsync(); + if (inputState.CheckAllInput()) break; menu_DoPlasma(); overwritesprite(160, 100, nTile, 0, 3, kPalNormal); @@ -2636,7 +2634,7 @@ void DoTitle() { nCount++; - assert(nCount <= 12); + if (nCount > 12) break; var_18 = nStartTime + theArray[nCount]; var_4 = var_4 == 0; diff --git a/source/exhumed/src/save.cpp b/source/exhumed/src/save.cpp index 6f235fbc8..f144ac562 100644 --- a/source/exhumed/src/save.cpp +++ b/source/exhumed/src/save.cpp @@ -20,6 +20,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #include #include #include "init.h" +#include "music/z_music.h" //#include //#include //#include @@ -30,6 +31,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. BEGIN_PS_NS +extern int MenuExitCondition; void SaveTextureState(); void LoadTextureState(); @@ -113,7 +115,7 @@ bool GameInterface::LoadGame(FSaveGameNode* sv) fr.Read(show2dwall, sizeof(show2dwall)); fr.Read(show2dsprite, sizeof(show2dsprite)); fr.Read(show2dsector, sizeof(show2dsector)); - + fr.Close(); } for (auto sgh : sghelpers) sgh->Load(); @@ -133,7 +135,8 @@ bool GameInterface::LoadGame(FSaveGameNode* sv) parallaxtype = 2; g_visibility = 2048; ototalclock = totalclock; - + MenuExitCondition = 6; + Mus_ResumeSaved(); return 1; // CHECKME } diff --git a/source/exhumed/src/sound.cpp b/source/exhumed/src/sound.cpp index b25ef36eb..9569ed503 100644 --- a/source/exhumed/src/sound.cpp +++ b/source/exhumed/src/sound.cpp @@ -555,45 +555,67 @@ void UpdateSounds() int nLocalSectFlags = SectFlag[nPlayerViewSect[nLocalPlayer]]; - int x, y; + vec3_t pos; short ang; if (nSnakeCam > -1) { Snake *pSnake = &SnakeList[nSnakeCam]; spritetype *pSnakeSprite = &sprite[pSnake->nSprites[0]]; - x = pSnakeSprite->x; - y = pSnakeSprite->y; + pos = pSnakeSprite->pos; ang = pSnakeSprite->ang; } else { - x = initx; - y = inity; + pos = { initx, inity, initz }; ang = inita; } + auto fv = GetSoundPos(&pos); + SoundListener listener; + listener.angle = -(float)ang * pi::pi() / 1024; // Build uses a period of 2048. + listener.velocity.Zero(); + listener.position = GetSoundPos(&pos); + listener.underwater = false; + // This should probably use a real environment instead of the pitch hacking in S_PlaySound3D. + // listenactor->waterlevel == 3; + //assert(primaryLevel->Zones.Size() > listenactor->Sector->ZoneNumber); + listener.Environment = 0;// primaryLevel->Zones[listenactor->Sector->ZoneNumber].Environment; + listener.valid = true; + + + soundEngine->SetListener(listener); + soundEngine->UpdateSounds((int)totalclock); ActiveSound* pASound = sActiveSound; pASound++; for (int i = 1; i < kMaxActiveSounds; i++, pASound++) { if (pASound->snd_channel != nullptr) { - short nSoundSprite = pASound->snd_sprite; - int nPitch = pASound->snd_pitch; - short nSoundSect; - if (nSoundSprite >= 0) + if (pASound->snd_channel->ChanFlags & CHANF_FORGETTABLE) { - if (nSoundSprite == nLocalSpr) - nSoundSect = nPlayerViewSect[nLocalPlayer]; - else - nSoundSect = sprite[nSoundSprite].sectnum; + // If the channel has become invalid, remove the reference. + // ChannelEnded may be called late so waiting for it is problematic. + pASound->snd_channel = nullptr; } else - nSoundSect = pASound->snd_sector; + { + short nSoundSprite = pASound->snd_sprite; + int nPitch = pASound->snd_pitch; + short nSoundSect; + if (nSoundSprite >= 0) + { + if (nSoundSprite == nLocalSpr) + nSoundSect = nPlayerViewSect[nLocalPlayer]; + else + nSoundSect = sprite[nSoundSprite].sectnum; + } + else + nSoundSect = pASound->snd_sector; - int nVolume = pASound->snd_volume; - GetSpriteSoundPitch(nSoundSect, &nVolume, &nPitch, nLocalSectFlags); - soundEngine->SetPitch(pASound->snd_channel, (11025 + nPitch) / 11025.f); - soundEngine->SetVolume(pASound->snd_channel, nVolume / 255.f); + int nVolume = pASound->snd_volume; + GetSpriteSoundPitch(nSoundSect, &nVolume, &nPitch, nLocalSectFlags); + soundEngine->SetPitch(pASound->snd_channel, (11025 + nPitch) / 11025.f); + soundEngine->SetVolume(pASound->snd_channel, nVolume / 255.f); + } } } } diff --git a/source/sw/src/sounds.cpp b/source/sw/src/sounds.cpp index 0a30cece2..38a4f34d5 100644 --- a/source/sw/src/sounds.cpp +++ b/source/sw/src/sounds.cpp @@ -354,7 +354,7 @@ static void DoTimedSound(AmbientSound* amb) amb->curIndex += synctics; if (amb->curIndex >= amb->maxIndex) { - if (amb->sndChan == nullptr) + if (amb->sndChan == nullptr || (amb->sndChan->ChanFlags & CHANF_FORGETTABLE)) { // Check for special case ambient sounds. Since the sound is stopped and doesn't occupy a real channel at this time we can just swap out the sound ID before restarting it. int ambid = RandomizeAmbientSpecials(amb->vocIndex);