mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-15 15:11:41 +00:00
146 lines
3.1 KiB
C
146 lines
3.1 KiB
C
//-------------------------------------------------------------------------
|
|
/*
|
|
Copyright (C) 2010-2019 EDuke32 developers and contributors
|
|
Copyright (C) 2019 sirlemonhead, Nuke.YKT
|
|
This file is part of PCExhumed.
|
|
PCExhumed 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.
|
|
*/
|
|
//-------------------------------------------------------------------------
|
|
|
|
#ifndef __sound_h__
|
|
#define __sound_h__
|
|
|
|
#define kMaxSoundFiles 80
|
|
#define kMaxSounds 200
|
|
#define kMaxSoundNameLen 8
|
|
#define kMaxActiveSounds 8
|
|
|
|
#define kCreepyCount 150
|
|
|
|
enum {
|
|
kSound0 = 0,
|
|
kSound1,
|
|
kSound2,
|
|
kSound3,
|
|
kSound4,
|
|
kSound5,
|
|
kSound6,
|
|
kSound7,
|
|
kSound8,
|
|
kSound9,
|
|
kSound10,
|
|
kSound11,
|
|
kSoundTorchOn,
|
|
kSound13,
|
|
kSound14,
|
|
kSound15,
|
|
kSound16,
|
|
kSound17,
|
|
kSound18,
|
|
kSound19,
|
|
kSound20,
|
|
kSound21,
|
|
kSound22,
|
|
kSound23,
|
|
kSound24,
|
|
kSound25,
|
|
kSound26,
|
|
kSound27,
|
|
kSound28,
|
|
kSound29,
|
|
kSound30,
|
|
kSound31,
|
|
kSound32,
|
|
kSound33,
|
|
kSound34,
|
|
kSound35,
|
|
kSound36,
|
|
kSound38 = 38,
|
|
kSound39,
|
|
kSound40,
|
|
kSound41,
|
|
kSound42,
|
|
kSound43,
|
|
kSound47 = 47,
|
|
kSound48 = 48,
|
|
kSoundQTail = 50,
|
|
kSound52 = 52,
|
|
kSoundTauntStart = 53,
|
|
kSoundJonFDie = 60,
|
|
kSound61,
|
|
kSound62,
|
|
kSound63,
|
|
kSound64,
|
|
kSound65,
|
|
kSound66,
|
|
kSound67,
|
|
kSound68,
|
|
kSound69,
|
|
kSound70,
|
|
kSound71,
|
|
kSound72,
|
|
kSoundAlarm,
|
|
kSound74,
|
|
kSound75,
|
|
kSound76,
|
|
kSound77,
|
|
kSound78,
|
|
kSound79,
|
|
};
|
|
|
|
extern short gMusicVolume;
|
|
extern short gFXVolume;
|
|
|
|
extern short nStopSound;
|
|
extern short nStoneSound;
|
|
extern short nSwitchSound;
|
|
extern short nLocalEyeSect;
|
|
extern short nElevSound;
|
|
extern short nCreepyTimer;
|
|
|
|
extern short StaticSound[];
|
|
|
|
|
|
void UpdateSounds();
|
|
void UpdateCreepySounds();
|
|
|
|
void InitFX();
|
|
void UnInitFX();
|
|
void FadeSong();
|
|
int LocalSoundPlaying();
|
|
void LoadFX();
|
|
void StopAllSounds();
|
|
void SetLocalChan(int nChannel);
|
|
int GetLocalSound();
|
|
void UpdateLocalSound();
|
|
void StopLocalSound();
|
|
void PlayLocalSound(short nSound, short val);
|
|
int LoadSound(const char* sound);
|
|
|
|
void BendAmbientSound();
|
|
void CheckAmbience(short nSector);
|
|
|
|
short PlayFX2(unsigned short nSound, short nSprite);
|
|
short PlayFXAtXYZ(unsigned short ax, int x, int y, int z, int nSector);
|
|
short D3PlayFX(unsigned short nSound, short nVal);
|
|
void StopSpriteSound(short nSprite);
|
|
|
|
void StartSwirlies();
|
|
void UpdateSwirlies();
|
|
|
|
void PlayLogoSound(void);
|
|
void PlayTitleSound(void);
|
|
void PlayGameOverSound(void);
|
|
|
|
void SoundBigEntrance(void);
|
|
|
|
#endif
|