mirror of
https://github.com/vcmi/vcmi.git
synced 2025-04-02 22:05:43 +02:00
Minor improvements & fixes to music player
- music will be selected correctly after rapid leaving and reentering town screen - music sets are now store as single std::map instead of unnecessary "map of maps" - fixed computation of resume time for restarted/looped music tracks - updated & clarified some comments - converted C functions for SDL_Mixer callbacks into lambdas - formatting fixes
This commit is contained in:
parent
61eca7e3be
commit
e6afd8621c
@ -34,17 +34,6 @@ static std::string sounds[] = {
|
|||||||
#undef VCMI_SOUND_NAME
|
#undef VCMI_SOUND_NAME
|
||||||
#undef VCMI_SOUND_FILE
|
#undef VCMI_SOUND_FILE
|
||||||
|
|
||||||
// Not pretty, but there's only one music handler object in the game.
|
|
||||||
static void soundFinishedCallbackC(int channel)
|
|
||||||
{
|
|
||||||
CCS->soundh->soundFinishedCallback(channel);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void musicFinishedCallbackC()
|
|
||||||
{
|
|
||||||
CCS->musich->musicFinishedCallback();
|
|
||||||
}
|
|
||||||
|
|
||||||
void CAudioBase::init()
|
void CAudioBase::init()
|
||||||
{
|
{
|
||||||
if (initialized)
|
if (initialized)
|
||||||
@ -140,8 +129,10 @@ void CSoundHandler::init()
|
|||||||
|
|
||||||
if (initialized)
|
if (initialized)
|
||||||
{
|
{
|
||||||
// Load sounds
|
Mix_ChannelFinished([](int channel)
|
||||||
Mix_ChannelFinished(soundFinishedCallbackC);
|
{
|
||||||
|
CCS->soundh->soundFinishedCallback(channel);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -368,24 +359,24 @@ CMusicHandler::CMusicHandler():
|
|||||||
for(const ResourceID & file : mp3files)
|
for(const ResourceID & file : mp3files)
|
||||||
{
|
{
|
||||||
if(boost::algorithm::istarts_with(file.getName(), "MUSIC/Combat"))
|
if(boost::algorithm::istarts_with(file.getName(), "MUSIC/Combat"))
|
||||||
addEntryToSet("battle", file.getName(), file.getName());
|
addEntryToSet("battle", file.getName());
|
||||||
else if(boost::algorithm::istarts_with(file.getName(), "MUSIC/AITheme"))
|
else if(boost::algorithm::istarts_with(file.getName(), "MUSIC/AITheme"))
|
||||||
addEntryToSet("enemy-turn", file.getName(), file.getName());
|
addEntryToSet("enemy-turn", file.getName());
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void CMusicHandler::loadTerrainSounds()
|
void CMusicHandler::loadTerrainMusicThemes()
|
||||||
{
|
{
|
||||||
for (const auto & terrain : CGI->terrainTypeHandler->terrains())
|
for (const auto & terrain : CGI->terrainTypeHandler->terrains())
|
||||||
{
|
{
|
||||||
addEntryToSet("terrain", terrain.name, "Music/" + terrain.musicFilename);
|
addEntryToSet("terrain_" + terrain.name, "Music/" + terrain.musicFilename);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void CMusicHandler::addEntryToSet(const std::string & set, const std::string & musicID, const std::string & musicURI)
|
void CMusicHandler::addEntryToSet(const std::string & set, const std::string & musicURI)
|
||||||
{
|
{
|
||||||
musicsSet[set][musicID] = musicURI;
|
musicsSet[set].push_back(musicURI);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CMusicHandler::init()
|
void CMusicHandler::init()
|
||||||
@ -393,7 +384,12 @@ void CMusicHandler::init()
|
|||||||
CAudioBase::init();
|
CAudioBase::init();
|
||||||
|
|
||||||
if (initialized)
|
if (initialized)
|
||||||
Mix_HookMusicFinished(musicFinishedCallbackC);
|
{
|
||||||
|
Mix_HookMusicFinished([]()
|
||||||
|
{
|
||||||
|
CCS->musich->musicFinishedCallback();
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void CMusicHandler::release()
|
void CMusicHandler::release()
|
||||||
@ -413,12 +409,17 @@ void CMusicHandler::release()
|
|||||||
|
|
||||||
void CMusicHandler::playMusic(const std::string & musicURI, bool loop, bool fromStart)
|
void CMusicHandler::playMusic(const std::string & musicURI, bool loop, bool fromStart)
|
||||||
{
|
{
|
||||||
if (current && current->isTrack(musicURI))
|
if (current && current->isPlaying() && current->isTrack(musicURI))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
queueNext(this, "", musicURI, loop, fromStart);
|
queueNext(this, "", musicURI, loop, fromStart);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CMusicHandler::playMusicFromSet(const std::string & musicSet, const std::string & entryID, bool loop, bool fromStart)
|
||||||
|
{
|
||||||
|
playMusicFromSet(musicSet + "_" + entryID, loop, fromStart);
|
||||||
|
}
|
||||||
|
|
||||||
void CMusicHandler::playMusicFromSet(const std::string & whichSet, bool loop, bool fromStart)
|
void CMusicHandler::playMusicFromSet(const std::string & whichSet, bool loop, bool fromStart)
|
||||||
{
|
{
|
||||||
auto selectedSet = musicsSet.find(whichSet);
|
auto selectedSet = musicsSet.find(whichSet);
|
||||||
@ -428,36 +429,13 @@ void CMusicHandler::playMusicFromSet(const std::string & whichSet, bool loop, bo
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (current && current->isSet(whichSet))
|
if (current && current->isPlaying() && current->isSet(whichSet))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// in this mode - play random track from set
|
// in this mode - play random track from set
|
||||||
queueNext(this, whichSet, "", loop, fromStart);
|
queueNext(this, whichSet, "", loop, fromStart);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CMusicHandler::playMusicFromSet(const std::string & whichSet, const std::string & entryID, bool loop, bool fromStart)
|
|
||||||
{
|
|
||||||
auto selectedSet = musicsSet.find(whichSet);
|
|
||||||
if (selectedSet == musicsSet.end())
|
|
||||||
{
|
|
||||||
logGlobal->error("Error: playing music from non-existing set: %s", whichSet);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
auto selectedEntry = selectedSet->second.find(entryID);
|
|
||||||
if (selectedEntry == selectedSet->second.end())
|
|
||||||
{
|
|
||||||
logGlobal->error("Error: playing non-existing entry %s from set: %s", entryID, whichSet);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (current && current->isTrack(selectedEntry->second))
|
|
||||||
return;
|
|
||||||
|
|
||||||
// in this mode - play specific track from set
|
|
||||||
queueNext(this, "", selectedEntry->second, loop, fromStart);
|
|
||||||
}
|
|
||||||
|
|
||||||
void CMusicHandler::queueNext(std::unique_ptr<MusicEntry> queued)
|
void CMusicHandler::queueNext(std::unique_ptr<MusicEntry> queued)
|
||||||
{
|
{
|
||||||
if (!initialized)
|
if (!initialized)
|
||||||
@ -513,7 +491,7 @@ void CMusicHandler::musicFinishedCallback()
|
|||||||
|
|
||||||
if (current.get() != nullptr)
|
if (current.get() != nullptr)
|
||||||
{
|
{
|
||||||
//return if current music still not finished
|
// if music is looped, play it again
|
||||||
if (current->play())
|
if (current->play())
|
||||||
return;
|
return;
|
||||||
else
|
else
|
||||||
@ -530,6 +508,7 @@ void CMusicHandler::musicFinishedCallback()
|
|||||||
MusicEntry::MusicEntry(CMusicHandler *owner, std::string setName, std::string musicURI, bool looped, bool fromStart):
|
MusicEntry::MusicEntry(CMusicHandler *owner, std::string setName, std::string musicURI, bool looped, bool fromStart):
|
||||||
owner(owner),
|
owner(owner),
|
||||||
music(nullptr),
|
music(nullptr),
|
||||||
|
playing(false),
|
||||||
startTime(uint32_t(-1)),
|
startTime(uint32_t(-1)),
|
||||||
startPosition(0),
|
startPosition(0),
|
||||||
loop(looped ? -1 : 1),
|
loop(looped ? -1 : 1),
|
||||||
@ -578,7 +557,8 @@ bool MusicEntry::play()
|
|||||||
if (!setName.empty())
|
if (!setName.empty())
|
||||||
{
|
{
|
||||||
const auto & set = owner->musicsSet[setName];
|
const auto & set = owner->musicsSet[setName];
|
||||||
load(RandomGeneratorUtil::nextItem(set, CRandomGenerator::getDefault())->second);
|
const auto & iter = RandomGeneratorUtil::nextItem(set, CRandomGenerator::getDefault());
|
||||||
|
load(*iter);
|
||||||
}
|
}
|
||||||
|
|
||||||
logGlobal->trace("Playing music file %s", currentName);
|
logGlobal->trace("Playing music file %s", currentName);
|
||||||
@ -599,13 +579,19 @@ bool MusicEntry::play()
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if(Mix_PlayMusic(music, 1) == -1)
|
else
|
||||||
|
{
|
||||||
|
startPosition = 0;
|
||||||
|
|
||||||
|
if(Mix_PlayMusic(music, 1) == -1)
|
||||||
{
|
{
|
||||||
logGlobal->error("Unable to play music (%s)", Mix_GetError());
|
logGlobal->error("Unable to play music (%s)", Mix_GetError());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
startTime = SDL_GetTicks();
|
startTime = SDL_GetTicks();
|
||||||
|
playing = true;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -613,6 +599,7 @@ bool MusicEntry::stop(int fade_ms)
|
|||||||
{
|
{
|
||||||
if (Mix_PlayingMusic())
|
if (Mix_PlayingMusic())
|
||||||
{
|
{
|
||||||
|
playing = false;
|
||||||
loop = 0;
|
loop = 0;
|
||||||
uint32_t endTime = SDL_GetTicks();
|
uint32_t endTime = SDL_GetTicks();
|
||||||
assert(startTime != uint32_t(-1));
|
assert(startTime != uint32_t(-1));
|
||||||
@ -626,6 +613,11 @@ bool MusicEntry::stop(int fade_ms)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool MusicEntry::isPlaying()
|
||||||
|
{
|
||||||
|
return playing;
|
||||||
|
}
|
||||||
|
|
||||||
bool MusicEntry::isSet(std::string set)
|
bool MusicEntry::isSet(std::string set)
|
||||||
{
|
{
|
||||||
return !setName.empty() && set == setName;
|
return !setName.empty() && set == setName;
|
||||||
|
@ -100,22 +100,23 @@ class MusicEntry
|
|||||||
|
|
||||||
int loop; // -1 = indefinite
|
int loop; // -1 = indefinite
|
||||||
bool fromStart;
|
bool fromStart;
|
||||||
|
bool playing;
|
||||||
uint32_t startTime;
|
uint32_t startTime;
|
||||||
uint32_t startPosition;
|
uint32_t startPosition;
|
||||||
//if not null - set from which music will be randomly selected
|
//if not null - set from which music will be randomly selected
|
||||||
std::string setName;
|
std::string setName;
|
||||||
std::string currentName;
|
std::string currentName;
|
||||||
|
|
||||||
|
|
||||||
void load(std::string musicURI);
|
void load(std::string musicURI);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
bool isSet(std::string setName);
|
|
||||||
bool isTrack(std::string trackName);
|
|
||||||
|
|
||||||
MusicEntry(CMusicHandler *owner, std::string setName, std::string musicURI, bool looped, bool fromStart);
|
MusicEntry(CMusicHandler *owner, std::string setName, std::string musicURI, bool looped, bool fromStart);
|
||||||
~MusicEntry();
|
~MusicEntry();
|
||||||
|
|
||||||
|
bool isSet(std::string setName);
|
||||||
|
bool isTrack(std::string trackName);
|
||||||
|
bool isPlaying();
|
||||||
|
|
||||||
bool play();
|
bool play();
|
||||||
bool stop(int fade_ms=0);
|
bool stop(int fade_ms=0);
|
||||||
};
|
};
|
||||||
@ -123,7 +124,6 @@ public:
|
|||||||
class CMusicHandler: public CAudioBase
|
class CMusicHandler: public CAudioBase
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
|
|
||||||
//update volume on configuration change
|
//update volume on configuration change
|
||||||
SettingsListener listener;
|
SettingsListener listener;
|
||||||
void onVolumeChange(const JsonNode &volumeNode);
|
void onVolumeChange(const JsonNode &volumeNode);
|
||||||
@ -133,18 +133,21 @@ private:
|
|||||||
|
|
||||||
void queueNext(CMusicHandler *owner, const std::string & setName, const std::string & musicURI, bool looped, bool fromStart);
|
void queueNext(CMusicHandler *owner, const std::string & setName, const std::string & musicURI, bool looped, bool fromStart);
|
||||||
void queueNext(std::unique_ptr<MusicEntry> queued);
|
void queueNext(std::unique_ptr<MusicEntry> queued);
|
||||||
|
void musicFinishedCallback();
|
||||||
|
|
||||||
std::map<std::string, std::map<std::string, std::string>> musicsSet;
|
/// map <set name> -> <list of URI's to tracks belonging to the said set>
|
||||||
|
std::map<std::string, std::vector<std::string>> musicsSet;
|
||||||
|
/// stored position, in seconds at which music player should resume playing this track
|
||||||
std::map<std::string, float> trackPositions;
|
std::map<std::string, float> trackPositions;
|
||||||
public:
|
|
||||||
|
|
||||||
|
public:
|
||||||
CMusicHandler();
|
CMusicHandler();
|
||||||
|
|
||||||
/// add entry with URI musicURI in set. Track will have ID musicID
|
/// add entry with URI musicURI in set. Track will have ID musicID
|
||||||
void addEntryToSet(const std::string & set, const std::string & entryID, const std::string & musicURI);
|
void addEntryToSet(const std::string & set, const std::string & musicURI);
|
||||||
|
|
||||||
void init() override;
|
void init() override;
|
||||||
void loadTerrainSounds();
|
void loadTerrainMusicThemes();
|
||||||
void release() override;
|
void release() override;
|
||||||
void setVolume(ui32 percent) override;
|
void setVolume(ui32 percent) override;
|
||||||
|
|
||||||
@ -152,10 +155,10 @@ public:
|
|||||||
void playMusic(const std::string & musicURI, bool loop, bool fromStart);
|
void playMusic(const std::string & musicURI, bool loop, bool fromStart);
|
||||||
/// play random track from this set
|
/// play random track from this set
|
||||||
void playMusicFromSet(const std::string & musicSet, bool loop, bool fromStart);
|
void playMusicFromSet(const std::string & musicSet, bool loop, bool fromStart);
|
||||||
/// play specific track from set
|
/// play random track from set (musicSet, entryID)
|
||||||
void playMusicFromSet(const std::string & musicSet, const std::string & entryID, bool loop, bool fromStart);
|
void playMusicFromSet(const std::string & musicSet, const std::string & entryID, bool loop, bool fromStart);
|
||||||
|
/// stops currently playing music by fading out it over fade_ms and starts next scheduled track, if any
|
||||||
void stopMusic(int fade_ms=1000);
|
void stopMusic(int fade_ms=1000);
|
||||||
void musicFinishedCallback();
|
|
||||||
|
|
||||||
friend class MusicEntry;
|
friend class MusicEntry;
|
||||||
};
|
};
|
||||||
|
@ -152,7 +152,7 @@ void CPlayerInterface::init(std::shared_ptr<Environment> ENV, std::shared_ptr<CC
|
|||||||
env = ENV;
|
env = ENV;
|
||||||
|
|
||||||
CCS->soundh->loadHorseSounds();
|
CCS->soundh->loadHorseSounds();
|
||||||
CCS->musich->loadTerrainSounds();
|
CCS->musich->loadTerrainMusicThemes();
|
||||||
|
|
||||||
initializeHeroTownList();
|
initializeHeroTownList();
|
||||||
|
|
||||||
|
@ -170,6 +170,8 @@ class VCMIDirsWIN32 final : public IVCMIDirs
|
|||||||
|
|
||||||
void VCMIDirsWIN32::init()
|
void VCMIDirsWIN32::init()
|
||||||
{
|
{
|
||||||
|
std::locale::global(boost::locale::generator().generate("en_US.UTF-8"));
|
||||||
|
|
||||||
// Call base (init dirs)
|
// Call base (init dirs)
|
||||||
IVCMIDirs::init();
|
IVCMIDirs::init();
|
||||||
|
|
||||||
@ -698,11 +700,6 @@ namespace VCMIDirs
|
|||||||
static bool initialized = false;
|
static bool initialized = false;
|
||||||
if (!initialized)
|
if (!initialized)
|
||||||
{
|
{
|
||||||
#ifdef VCMI_WINDOWS
|
|
||||||
std::locale::global(boost::locale::generator().generate("en_US.UTF-8"));
|
|
||||||
#endif
|
|
||||||
boost::filesystem::path::imbue(std::locale());
|
|
||||||
|
|
||||||
singleton.init();
|
singleton.init();
|
||||||
initialized = true;
|
initialized = true;
|
||||||
}
|
}
|
||||||
@ -710,5 +707,4 @@ namespace VCMIDirs
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
VCMI_LIB_NAMESPACE_END
|
VCMI_LIB_NAMESPACE_END
|
||||||
|
Loading…
x
Reference in New Issue
Block a user