aboutsummaryrefslogtreecommitdiff
path: root/aosfxplayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'aosfxplayer.cpp')
-rw-r--r--aosfxplayer.cpp29
1 files changed, 18 insertions, 11 deletions
diff --git a/aosfxplayer.cpp b/aosfxplayer.cpp
index 35c7c4e1..c6161218 100644
--- a/aosfxplayer.cpp
+++ b/aosfxplayer.cpp
@@ -1,4 +1,5 @@
#include "aosfxplayer.h"
+#include "file_functions.h"
AOSfxPlayer::AOSfxPlayer(QWidget *parent, AOApplication *p_ao_app)
{
@@ -6,23 +7,32 @@ AOSfxPlayer::AOSfxPlayer(QWidget *parent, AOApplication *p_ao_app)
ao_app = p_ao_app;
}
-void AOSfxPlayer::play(QString p_sfx, QString p_char)
+void AOSfxPlayer::play(QString p_sfx, QString p_char, QString shout)
{
- BASS_ChannelStop(m_stream);
-
p_sfx = p_sfx.toLower();
- QString f_path;
+ QString misc_path = "";
+ QString char_path = "";
+ QString sound_path = ao_app->get_sounds_path() + p_sfx;
+ if (shout != "")
+ misc_path = ao_app->get_base_path() + "misc/" + shout + "/" + p_sfx;
if (p_char != "")
- f_path = ao_app->get_character_path(p_char) + p_sfx;
- else
- f_path = ao_app->get_sounds_path() + p_sfx;
+ char_path = ao_app->get_character_path(p_char) + p_sfx;
+
+ QString f_path;
- m_stream = BASS_StreamCreateFile(FALSE, f_path.utf16(), 0, 0, BASS_STREAM_AUTOFREE | BASS_UNICODE | BASS_ASYNCFILE);
+ if (file_exists(char_path))
+ f_path = char_path;
+ else if (file_exists(misc_path))
+ f_path = misc_path;
+ else
+ f_path = sound_path;
set_volume(m_volume);
+ if (ao_app->get_audio_output_device() != "Default")
+ BASS_ChannelSetDevice(m_stream, BASS_GetDevice());
BASS_ChannelPlay(m_stream, false);
}
@@ -34,9 +44,6 @@ void AOSfxPlayer::stop()
void AOSfxPlayer::set_volume(int p_value)
{
m_volume = p_value;
-
float volume = p_value / 100.0f;
-
BASS_ChannelSetAttribute(m_stream, BASS_ATTRIB_VOL, volume);
-
}