2019-09-19 22:42:45 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
Copyright (C) 2010-2019 EDuke32 developers and contributors
|
|
|
|
Copyright (C) 2019 Nuke.YKT
|
|
|
|
|
|
|
|
This file is part of NBlood.
|
|
|
|
|
|
|
|
NBlood is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License version 2
|
|
|
|
as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
2019-09-21 18:59:54 +00:00
|
|
|
|
|
|
|
#include "ns.h" // Must come before everything else!
|
|
|
|
|
2019-09-19 22:42:45 +00:00
|
|
|
#include "build.h"
|
|
|
|
#include "common_game.h"
|
2019-06-27 04:33:22 +00:00
|
|
|
//#include "blood.h"
|
2019-10-12 20:45:46 +00:00
|
|
|
#include "view.h"
|
2020-07-26 21:59:29 +00:00
|
|
|
#include "globals.h"
|
2019-09-19 22:42:45 +00:00
|
|
|
#include "db.h"
|
|
|
|
#include "player.h"
|
|
|
|
#include "sound.h"
|
2020-02-11 23:43:13 +00:00
|
|
|
#include "loadsave.h"
|
2020-04-12 06:09:38 +00:00
|
|
|
#include "raze_sound.h"
|
2019-09-19 22:42:45 +00:00
|
|
|
|
2019-09-22 06:39:22 +00:00
|
|
|
BEGIN_BLD_NS
|
|
|
|
|
2020-10-11 10:18:25 +00:00
|
|
|
enum {kMaxAmbChannel = 64 };
|
2019-09-19 22:42:45 +00:00
|
|
|
|
|
|
|
struct AMB_CHANNEL
|
|
|
|
{
|
2019-12-17 18:37:05 +00:00
|
|
|
FSoundID soundID;
|
|
|
|
int distance;
|
|
|
|
int check;
|
2019-09-19 22:42:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
AMB_CHANNEL ambChannels[kMaxAmbChannel];
|
|
|
|
int nAmbChannels = 0;
|
|
|
|
|
|
|
|
void ambProcess(void)
|
|
|
|
{
|
2019-10-28 21:19:50 +00:00
|
|
|
if (!SoundEnabled())
|
2019-09-19 22:42:45 +00:00
|
|
|
return;
|
2019-10-07 19:29:52 +00:00
|
|
|
for (int nSprite = headspritestat[kStatAmbience]; nSprite >= 0; nSprite = nextspritestat[nSprite])
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
|
|
|
spritetype *pSprite = &sprite[nSprite];
|
|
|
|
if (pSprite->owner < 0 || pSprite->owner >= kMaxAmbChannel)
|
|
|
|
continue;
|
|
|
|
int nXSprite = pSprite->extra;
|
|
|
|
if (nXSprite > 0 && nXSprite < kMaxXSprites)
|
|
|
|
{
|
|
|
|
XSPRITE *pXSprite = &xsprite[nXSprite];
|
|
|
|
if (pXSprite->state)
|
|
|
|
{
|
|
|
|
int dx = pSprite->x-gMe->pSprite->x;
|
|
|
|
int dy = pSprite->y-gMe->pSprite->y;
|
|
|
|
int dz = pSprite->z-gMe->pSprite->z;
|
|
|
|
dx >>= 4;
|
|
|
|
dy >>= 4;
|
|
|
|
dz >>= 8;
|
|
|
|
int nDist = ksqrt(dx*dx+dy*dy+dz*dz);
|
|
|
|
int vs = mulscale16(pXSprite->data4, pXSprite->busy);
|
2019-12-17 18:37:05 +00:00
|
|
|
ambChannels[pSprite->owner].distance += ClipRange(scale(nDist, pXSprite->data1, pXSprite->data2, vs, 0), 0, vs);
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
AMB_CHANNEL *pChannel = ambChannels;
|
|
|
|
for (int i = 0; i < nAmbChannels; i++, pChannel++)
|
|
|
|
{
|
2019-12-17 18:37:05 +00:00
|
|
|
if (soundEngine->IsSourcePlayingSomething(SOURCE_Ambient, pChannel, CHAN_BODY, -1))
|
2019-09-19 22:42:45 +00:00
|
|
|
{
|
2019-12-17 18:37:05 +00:00
|
|
|
if (pChannel->distance > 0)
|
|
|
|
{
|
|
|
|
soundEngine->ChangeSoundVolume(SOURCE_Ambient, pChannel, CHAN_BODY, pChannel->distance / 255.f);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Stop the sound if it cannot be heard so that it doesn't occupy a physical channel.
|
|
|
|
soundEngine->StopSound(SOURCE_Ambient, pChannel, CHAN_BODY);
|
|
|
|
}
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
2019-12-17 18:37:05 +00:00
|
|
|
else if (pChannel->distance > 0)
|
|
|
|
{
|
|
|
|
FVector3 pt{};
|
2020-02-23 17:30:48 +00:00
|
|
|
soundEngine->StartSound(SOURCE_Ambient, pChannel, &pt, CHAN_BODY, CHANF_LOOP|CHANF_TRANSIENT, pChannel->soundID, pChannel->distance / 255.f, ATTN_NONE);
|
2019-12-17 18:37:05 +00:00
|
|
|
}
|
|
|
|
pChannel->distance = 0;
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ambKillAll(void)
|
|
|
|
{
|
|
|
|
AMB_CHANNEL *pChannel = ambChannels;
|
|
|
|
for (int i = 0; i < nAmbChannels; i++, pChannel++)
|
|
|
|
{
|
2019-12-17 18:37:05 +00:00
|
|
|
soundEngine->StopSound(SOURCE_Ambient, pChannel, CHAN_BODY);
|
|
|
|
pChannel->soundID = 0;
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
nAmbChannels = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ambInit(void)
|
|
|
|
{
|
|
|
|
ambKillAll();
|
|
|
|
memset(ambChannels, 0, sizeof(ambChannels));
|
2019-10-12 20:45:46 +00:00
|
|
|
for (int nSprite = headspritestat[kStatAmbience]; nSprite >= 0; nSprite = nextspritestat[nSprite]) {
|
|
|
|
if (sprite[nSprite].extra <= 0 || sprite[nSprite].extra >= kMaxXSprites) continue;
|
|
|
|
|
|
|
|
XSPRITE *pXSprite = &xsprite[sprite[nSprite].extra];
|
|
|
|
if (pXSprite->data1 >= pXSprite->data2) continue;
|
|
|
|
|
|
|
|
int i; AMB_CHANNEL *pChannel = ambChannels;
|
|
|
|
for (i = 0; i < nAmbChannels; i++, pChannel++)
|
2019-12-17 18:37:05 +00:00
|
|
|
if (pXSprite->data3 == pChannel->check) break;
|
2019-10-12 20:45:46 +00:00
|
|
|
|
|
|
|
if (i == nAmbChannels) {
|
|
|
|
|
|
|
|
if (i >= kMaxAmbChannel) {
|
|
|
|
sprite[nSprite].owner = -1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
int nSFX = pXSprite->data3;
|
2019-12-17 18:37:05 +00:00
|
|
|
auto snd = soundEngine->FindSoundByResID(nSFX);
|
|
|
|
if (!snd) {
|
2019-10-12 20:45:46 +00:00
|
|
|
//ThrowError("Missing sound #%d used in ambient sound generator %d\n", nSFX);
|
2019-12-05 20:42:35 +00:00
|
|
|
viewSetSystemMessage("Missing sound #%d used in ambient sound generator #%d\n", nSFX, nSprite);
|
|
|
|
actPostSprite(nSprite, kStatDecoration);
|
2019-10-12 20:45:46 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-12-17 18:37:05 +00:00
|
|
|
pChannel->soundID = FSoundID(snd);
|
|
|
|
pChannel->check = nSFX;
|
|
|
|
pChannel->distance = 0;
|
|
|
|
nAmbChannels++;
|
2019-10-12 20:45:46 +00:00
|
|
|
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
2019-10-12 20:45:46 +00:00
|
|
|
|
|
|
|
sprite[nSprite].owner = i;
|
2019-09-19 22:42:45 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-22 06:39:22 +00:00
|
|
|
|
|
|
|
END_BLD_NS
|