2019-08-10 11:43:24 +00:00
|
|
|
// Hyperbolic Rogue -- sound effects and music
|
2018-02-08 23:40:26 +00:00
|
|
|
// Copyright (C) 2011-2018 Zeno Rogue, see 'hyper.cpp' for details
|
|
|
|
|
2019-08-10 11:43:24 +00:00
|
|
|
/** \file sound.cpp
|
|
|
|
* \brief sound effects and music
|
|
|
|
*/
|
|
|
|
|
2019-09-05 07:15:40 +00:00
|
|
|
#include "hyper.h"
|
2018-06-10 23:58:31 +00:00
|
|
|
namespace hr {
|
|
|
|
|
2020-04-06 06:37:22 +00:00
|
|
|
#if HDR
|
|
|
|
void playSound(cell *c, const string& fname, int vol = 100);
|
|
|
|
void resetmusic();
|
|
|
|
#endif
|
|
|
|
|
2019-08-09 21:24:33 +00:00
|
|
|
EX const char *musicfile = "";
|
|
|
|
EX bool audio;
|
|
|
|
EX string musiclicense;
|
|
|
|
EX string musfname[landtypes];
|
|
|
|
EX int musicvolume = 60;
|
|
|
|
EX int effvolume = 60;
|
2017-03-23 10:53:57 +00:00
|
|
|
|
2019-08-09 19:00:52 +00:00
|
|
|
EX eLand getCurrentLandForMusic() {
|
2019-11-13 23:26:50 +00:00
|
|
|
eLand id = ((anims::center_music()) && centerover) ? centerover->land : cwt.at->land;
|
2017-03-23 10:53:57 +00:00
|
|
|
if(isHaunted(id)) id = laHaunted;
|
|
|
|
if(id == laWarpSea) id = laWarpCoast;
|
2019-09-27 14:47:57 +00:00
|
|
|
if(id == laMercuryRiver) id = laTerracotta;
|
2017-03-23 10:53:57 +00:00
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2019-08-09 19:00:52 +00:00
|
|
|
EX void playSeenSound(cell *c) {
|
2017-03-23 10:53:57 +00:00
|
|
|
if(!c->monst) return;
|
|
|
|
bool nearme = c->cpdist <= 7;
|
|
|
|
forCellEx(c2, c) if(c2->cpdist <= 7) nearme = true;
|
|
|
|
if(!nearme) return;
|
2019-01-02 21:01:00 +00:00
|
|
|
if(among(c->monst, moEagle, moWindCrow, moAcidBird))
|
2017-03-23 10:53:57 +00:00
|
|
|
playSound(c, "seen-eagle");
|
|
|
|
else if(c->monst == moEarthElemental)
|
|
|
|
playSound(c, "seen-earth");
|
|
|
|
else if(c->monst == moAirElemental)
|
|
|
|
playSound(c, "seen-air");
|
2020-07-07 19:24:56 +00:00
|
|
|
else if(c->monst == moPhaser)
|
|
|
|
playSound(c, "seen-frog1");
|
|
|
|
else if(c->monst == moFrog)
|
|
|
|
playSound(c, "seen-frog2");
|
|
|
|
else if(c->monst == moVaulter)
|
|
|
|
playSound(c, "seen-frog3");
|
2017-03-23 10:53:57 +00:00
|
|
|
else if(c->monst == moWaterElemental)
|
|
|
|
playSound(c, "seen-water");
|
|
|
|
else if(c->monst == moFireElemental)
|
|
|
|
playSound(c, "fire");
|
|
|
|
else if(c->monst == moDragonHead)
|
|
|
|
playSound(c, "seen-dragon");
|
|
|
|
else if(c->monst == moWorm)
|
|
|
|
playSound(c, "seen-sandworm");
|
|
|
|
else if(c->monst == moSkeleton && c->land != laDungeon)
|
|
|
|
playSound(c, "seen-skeleton");
|
|
|
|
else if(c->monst == moHexSnake)
|
|
|
|
playSound(c, "seen-snake");
|
|
|
|
else if(c->monst == moWolf || c->monst == moRedFox)
|
|
|
|
playSound(c, "seen-woof");
|
|
|
|
else if(isTroll(c->monst))
|
|
|
|
playSound(c, "seen-troll");
|
|
|
|
else if(c->monst == moNecromancer)
|
|
|
|
playSound(c, "seen-necromancer");
|
|
|
|
else if(c->monst == moGhost)
|
|
|
|
playSound(c, "seen-ghost");
|
|
|
|
else if(c->monst == moRoseBeauty)
|
|
|
|
playSound(c, princessgender() ? "seen-rosebeauty" : "seen-gardener");
|
|
|
|
else if(c->monst == moVizier)
|
|
|
|
playSound(c, "seen-vizier");
|
|
|
|
else if(c->monst == moFireFairy)
|
|
|
|
playSound(c, "seen-fairy");
|
|
|
|
else if(c->monst == moCultist)
|
|
|
|
playSound(c, "seen-cultist");
|
|
|
|
else if(c->monst == moPyroCultist)
|
|
|
|
playSound(c, "seen-cultistfire");
|
|
|
|
else if(c->monst == moCultistLeader)
|
|
|
|
playSound(c, "seen-cultistleader");
|
|
|
|
}
|
|
|
|
|
2017-07-22 23:33:27 +00:00
|
|
|
#if CAP_SDLAUDIO
|
2017-03-23 10:53:57 +00:00
|
|
|
|
|
|
|
bool loaded[landtypes];
|
|
|
|
Mix_Music* music[landtypes];
|
|
|
|
int musicpos[landtypes];
|
|
|
|
int musstart;
|
|
|
|
int musfadeval = 2000;
|
|
|
|
|
|
|
|
eLand cid = laNone;
|
|
|
|
|
2020-04-11 18:47:14 +00:00
|
|
|
hookset<bool(eLand&)> hooks_music;
|
2017-07-10 18:47:38 +00:00
|
|
|
|
2020-05-15 12:54:45 +00:00
|
|
|
EX bool music_out_of_focus = false;
|
2019-09-13 15:45:44 +00:00
|
|
|
|
2019-08-09 19:00:52 +00:00
|
|
|
EX void handlemusic() {
|
2019-05-12 23:57:40 +00:00
|
|
|
DEBBI(DF_GRAPH, ("handle music"));
|
2017-03-23 10:53:57 +00:00
|
|
|
if(audio && musicvolume) {
|
|
|
|
eLand id = getCurrentLandForMusic();
|
2017-07-10 18:47:38 +00:00
|
|
|
if(callhandlers(false, hooks_music, id)) return;
|
2019-09-13 15:45:44 +00:00
|
|
|
if(outoffocus && !music_out_of_focus) id = eLand(0);
|
2017-03-23 10:53:57 +00:00
|
|
|
if(musfname[id] == "LAST") id = cid;
|
2019-06-06 17:37:17 +00:00
|
|
|
if(!loaded[id] && !memory_issues()) {
|
2017-03-23 10:53:57 +00:00
|
|
|
loaded[id] = true;
|
2019-06-06 17:37:17 +00:00
|
|
|
// printf("loading (%d)> %s\n", id, musfname[id].c_str());
|
|
|
|
// reuse music
|
2017-03-23 10:53:57 +00:00
|
|
|
if(musfname[id] != "") {
|
2019-06-06 17:37:17 +00:00
|
|
|
for(int i=0; i<landtypes; i++)
|
|
|
|
if(music[i] && musfname[i] == musfname[id])
|
|
|
|
music[id] = music[i];
|
|
|
|
}
|
|
|
|
if(!music[id]) {
|
|
|
|
memory_for_lib();
|
2017-03-23 10:53:57 +00:00
|
|
|
music[id] = Mix_LoadMUS(musfname[id].c_str());
|
|
|
|
if(!music[id]) {
|
|
|
|
printf("Mix_LoadMUS: %s\n", Mix_GetError());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(cid != id && !musfadeval) {
|
|
|
|
musicpos[cid] = SDL_GetTicks() - musstart;
|
|
|
|
musfadeval = musicpos[id] ? 500 : 2000;
|
|
|
|
Mix_FadeOutMusic(musfadeval);
|
|
|
|
// printf("fadeout %d, pos %d\n", musfadeval, musicpos[cid]);
|
|
|
|
}
|
|
|
|
if(music[id] && !Mix_PlayingMusic()) {
|
|
|
|
cid = id;
|
|
|
|
Mix_VolumeMusic(musicvolume);
|
|
|
|
Mix_FadeInMusicPos(music[id], -1, musfadeval, musicpos[id] / 1000.0);
|
|
|
|
// printf("fadein %d, pos %d\n", musfadeval, musicpos[cid]);
|
|
|
|
musstart = SDL_GetTicks() - musicpos[id];
|
|
|
|
musicpos[id] = 0;
|
|
|
|
musfadeval = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-11 18:47:14 +00:00
|
|
|
hookset<bool(eLand&)> hooks_resetmusic;
|
2017-03-23 10:53:57 +00:00
|
|
|
|
2019-08-09 19:00:52 +00:00
|
|
|
EX void resetmusic() {
|
2017-03-23 10:53:57 +00:00
|
|
|
if(audio && musicvolume) {
|
|
|
|
Mix_FadeOutMusic(3000);
|
|
|
|
cid = laNone;
|
|
|
|
for(int i=0; i<landtypes; i++) musicpos[i] = 0;
|
|
|
|
musfadeval = 2000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-09 19:00:52 +00:00
|
|
|
EX bool loadMusicInfo(string dir) {
|
2019-05-12 23:57:40 +00:00
|
|
|
DEBBI(DF_INIT, ("load music info"));
|
2017-03-23 10:53:57 +00:00
|
|
|
if(dir == "") return false;
|
|
|
|
FILE *f = fopen(dir.c_str(), "rt");
|
|
|
|
if(f) {
|
|
|
|
string dir2;
|
2018-06-22 12:47:24 +00:00
|
|
|
for(int i=0; i<isize(dir); i++) if(dir[i] == '/' || dir[i] == '\\')
|
2017-03-23 10:53:57 +00:00
|
|
|
dir2 = dir.substr(0, i+1);
|
|
|
|
char buf[1000];
|
2017-06-26 19:19:57 +00:00
|
|
|
while(fgets(buf, 800, f) != NULL) {
|
2017-03-23 10:53:57 +00:00
|
|
|
for(int i=0; buf[i]; i++) if(buf[i] == 10 || buf[i] == 13) buf[i] = 0;
|
|
|
|
if(buf[0] == '[' && buf[3] == ']') {
|
|
|
|
int id = (buf[1] - '0') * 10 + buf[2] - '0';
|
|
|
|
if(id >= 0 && id < landtypes) {
|
|
|
|
if(buf[5] == '*' && buf[6] == '/') musfname[id] = dir2 + (buf+7);
|
|
|
|
else musfname[id] = buf+5;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fprintf(stderr, "warning: bad soundtrack id, use the following format:\n");
|
|
|
|
fprintf(stderr, "[##] */filename\n");
|
|
|
|
fprintf(stderr, "where ## are two digits, and */ is optional and replaced by path to the music\n");
|
|
|
|
fprintf(stderr, "alternatively LAST = reuse the last track instead of having a special one");
|
|
|
|
}
|
|
|
|
// printf("[%2d] %s\n", id, buf);
|
|
|
|
}
|
|
|
|
else if(buf[0] == '#') {
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
musiclicense += buf;
|
|
|
|
musiclicense += "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(f);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-08-09 19:00:52 +00:00
|
|
|
EX bool loadMusicInfo() {
|
2017-03-23 10:53:57 +00:00
|
|
|
return
|
|
|
|
loadMusicInfo(musicfile)
|
2017-07-04 13:38:33 +00:00
|
|
|
|| loadMusicInfo(HYPERPATH "hyperrogue-music.txt")
|
2017-03-23 10:53:57 +00:00
|
|
|
|| loadMusicInfo("./hyperrogue-music.txt")
|
|
|
|
|| loadMusicInfo("music/hyperrogue-music.txt")
|
|
|
|
// Destination set by ./configure (in the GitHub repository)
|
|
|
|
#ifdef MUSICDESTDIR
|
|
|
|
|| loadMusicInfo(MUSICDESTDIR)
|
|
|
|
#endif
|
|
|
|
#ifdef FHS
|
|
|
|
|| loadMusicInfo("/usr/share/hyperrogue/hyperrogue-music.txt")
|
|
|
|
|| loadMusicInfo(s0 + getenv("HOME") + "/.hyperrogue-music.txt")
|
|
|
|
#endif
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2019-08-09 19:00:52 +00:00
|
|
|
EX void initAudio() {
|
2017-03-23 10:53:57 +00:00
|
|
|
audio = loadMusicInfo();
|
|
|
|
|
|
|
|
if(audio) {
|
|
|
|
if(Mix_OpenAudio(MIX_DEFAULT_FREQUENCY, MIX_DEFAULT_FORMAT, 2, 2048) != 0) {
|
|
|
|
fprintf(stderr, "Unable to initialize audio: %s\n", Mix_GetError());
|
|
|
|
audio = false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
audio = true;
|
|
|
|
Mix_AllocateChannels(16);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
map<string, Mix_Chunk*> chunks;
|
|
|
|
|
2017-03-31 20:10:05 +00:00
|
|
|
#ifdef SOUNDDESTDIR
|
|
|
|
string wheresounds = SOUNDDESTDIR;
|
|
|
|
#else
|
2017-07-04 13:38:33 +00:00
|
|
|
string wheresounds = HYPERPATH "sounds/";
|
2017-03-31 20:10:05 +00:00
|
|
|
#endif
|
2017-03-23 10:53:57 +00:00
|
|
|
|
2020-04-11 18:47:14 +00:00
|
|
|
hookset<bool(const string& s, int vol)> hooks_sound;
|
2018-01-25 13:31:35 +00:00
|
|
|
|
2020-04-06 06:37:22 +00:00
|
|
|
EX void playSound(cell *c, const string& fname, int vol) {
|
2020-02-29 16:58:59 +00:00
|
|
|
LATE( hr::playSound(c, fname, vol); )
|
2017-03-23 10:53:57 +00:00
|
|
|
if(effvolume == 0) return;
|
2018-01-25 13:31:35 +00:00
|
|
|
if(callhandlers(false, hooks_sound, fname, vol)) return;
|
2017-03-23 10:53:57 +00:00
|
|
|
// printf("Play sound: %s\n", fname.c_str());
|
|
|
|
if(!chunks.count(fname)) {
|
|
|
|
string s = wheresounds+fname+".ogg";
|
2019-06-06 17:37:17 +00:00
|
|
|
if(memory_issues()) return;
|
|
|
|
memory_for_lib();
|
2017-03-23 10:53:57 +00:00
|
|
|
chunks[fname] = Mix_LoadWAV(s.c_str());
|
|
|
|
// printf("Loading, as %p\n", chunks[fname]);
|
|
|
|
}
|
|
|
|
Mix_Chunk *chunk = chunks[fname];
|
|
|
|
if(chunk) {
|
|
|
|
Mix_VolumeChunk(chunk, effvolume * vol / 100);
|
|
|
|
Mix_PlayChannel(-1, chunk, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-09 19:00:52 +00:00
|
|
|
EX void reuse_music_memory() {
|
2019-06-06 17:37:17 +00:00
|
|
|
for(int i=0; i<landtypes; i++)
|
|
|
|
if(music[i] && music[i] != music[cid]) {
|
|
|
|
Mix_Music *which = music[i];
|
|
|
|
println(hlog, "freeing music for ", dnameof(eLand(i)));
|
|
|
|
Mix_FreeMusic(which);
|
|
|
|
for(int j=0; j<landtypes; j++) if(music[j] == which) {
|
|
|
|
println(hlog, "... which equals ", dnameof(eLand(j)));
|
|
|
|
music[j] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
set<Mix_Chunk*> currently_played;
|
|
|
|
for(int ch=0; ch<16; ch++) currently_played.insert(Mix_GetChunk(ch));
|
|
|
|
set<string> to_free;
|
|
|
|
for(auto& p: chunks)
|
|
|
|
if(p.second) {
|
|
|
|
if(currently_played.count(p.second)) {
|
|
|
|
println(hlog, p.first, ": currently played");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Mix_FreeChunk(p.second);
|
|
|
|
to_free.insert(p.first);
|
|
|
|
println(hlog, p.first, ": freed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for(auto& s: to_free) chunks.erase(s);
|
|
|
|
}
|
|
|
|
|
2017-03-23 10:53:57 +00:00
|
|
|
#endif
|
|
|
|
|
2018-07-19 21:46:58 +00:00
|
|
|
#if CAP_COMMANDLINE
|
|
|
|
int read_sound_args() {
|
|
|
|
using namespace arg;
|
|
|
|
if(argis("-m")) { PHASE(1); shift(); musicfile = argcs(); }
|
|
|
|
#if CAP_SDLAUDIO
|
|
|
|
else if(argis("-se")) { PHASE(1); shift(); wheresounds = args(); }
|
2019-09-13 17:50:24 +00:00
|
|
|
else if(argis("-musicfocus")) { music_out_of_focus = true; }
|
2018-07-19 21:46:58 +00:00
|
|
|
#endif
|
|
|
|
else if(argis("-svol")) { PHASEFROM(2); shift(); effvolume = argi(); }
|
2019-11-08 13:57:02 +00:00
|
|
|
else if(argis("-mvol")) { PHASEFROM(2); shift(); musicvolume = argi(); }
|
2018-07-19 21:46:58 +00:00
|
|
|
else return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 21:19:12 +00:00
|
|
|
#if CAP_SDLAUDIO
|
2019-06-06 17:37:17 +00:00
|
|
|
auto ah_sound = addHook(hooks_args, 0, read_sound_args) + addHook(hooks_clear_cache, 0, reuse_music_memory);
|
2019-07-12 21:19:12 +00:00
|
|
|
#endif
|
2018-07-19 21:46:58 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2020-04-06 06:37:22 +00:00
|
|
|
#if !CAP_AUDIO
|
|
|
|
EX void playSound(cell *c, const string& fname, int vol) { }
|
2019-09-13 01:10:26 +00:00
|
|
|
EX void resetmusic() { }
|
|
|
|
#endif
|
|
|
|
|
2018-06-10 23:58:31 +00:00
|
|
|
}
|