This commit is contained in:
Matt Lowe 2015-05-20 00:31:56 +02:00
parent 5758ac685c
commit 3ac2a69b8b
5 changed files with 12 additions and 2 deletions

View file

@ -17,12 +17,13 @@ SoundEngine::SoundEngine(QObject *parent)
lastTapPlayed = QDateTime::currentDateTime();
lastEndStepPlayed = QDateTime::currentDateTime();
lastStartCombatPlayed = QDateTime::currentDateTime();
}
void SoundEngine::cacheData()
{
static const QStringList fileNames = QStringList()
<< "end_step" << "tap" << "player_joined";
<< "end_step" << "tap" << "player_joined" << "start_combat";
for (int i = 0; i < fileNames.size(); ++i) {
QFile file(settingsCache->getSoundPath() + "/" + fileNames[i] + ".raw");
if(!file.exists())
@ -92,3 +93,10 @@ void SoundEngine::playerJoined()
{
playSound("player_joined");
}
void SoundEngine::startCombat() {
if (lastStartCombatPlayed.secsTo(QDateTime::currentDateTime()) >= 1)
playSound("start_combat");
lastStartCombatPlayed = QDateTime::currentDateTime();
}