aboutsummaryrefslogtreecommitdiff
path: root/src/aoblipplayer.cpp
diff options
context:
space:
mode:
authorCrystalwarrior <varsash@gmail.com>2020-05-22 02:14:54 +0300
committerCrystalwarrior <varsash@gmail.com>2020-05-22 02:14:54 +0300
commit88de4cde0433ef5e606f38a2f1e6041f0d24a87e (patch)
treece57adab0e3a236a93d112f33235638b74502040 /src/aoblipplayer.cpp
parentc8e12558cdd3fd0769b81679ad09edf1f29b780f (diff)
clang 2 electric boogaloo
{ BasedOnStyle: LLVM, BreakBeforeBraces: Stroustrup}
Diffstat (limited to 'src/aoblipplayer.cpp')
-rw-r--r--src/aoblipplayer.cpp110
1 files changed, 52 insertions, 58 deletions
diff --git a/src/aoblipplayer.cpp b/src/aoblipplayer.cpp
index 957fd559..6affc284 100644
--- a/src/aoblipplayer.cpp
+++ b/src/aoblipplayer.cpp
@@ -1,117 +1,111 @@
#include "aoblipplayer.h"
-#if defined(BASSAUDIO) //Using bass.dll for the blips
+#if defined(BASSAUDIO) // Using bass.dll for the blips
AOBlipPlayer::AOBlipPlayer(QWidget *parent, AOApplication *p_ao_app)
{
- m_parent = parent;
- ao_app = p_ao_app;
+ m_parent = parent;
+ ao_app = p_ao_app;
}
void AOBlipPlayer::set_blips(QString p_sfx)
{
- QString f_path = ao_app->get_sfx_suffix(ao_app->get_sounds_path(p_sfx));
+ QString f_path = ao_app->get_sfx_suffix(ao_app->get_sounds_path(p_sfx));
- for (int n_stream = 0; n_stream < 5; ++n_stream) {
- BASS_StreamFree(m_stream_list[n_stream]);
+ for (int n_stream = 0; n_stream < 5; ++n_stream) {
+ BASS_StreamFree(m_stream_list[n_stream]);
- if (f_path.endsWith(".opus"))
- m_stream_list[n_stream] = BASS_OPUS_StreamCreateFile(FALSE, f_path.utf16(), 0, 0, BASS_UNICODE | BASS_ASYNCFILE);
- else
- m_stream_list[n_stream] = BASS_StreamCreateFile(FALSE, f_path.utf16(), 0, 0, BASS_UNICODE | BASS_ASYNCFILE);
- }
+ if (f_path.endsWith(".opus"))
+ m_stream_list[n_stream] = BASS_OPUS_StreamCreateFile(
+ FALSE, f_path.utf16(), 0, 0, BASS_UNICODE | BASS_ASYNCFILE);
+ else
+ m_stream_list[n_stream] = BASS_StreamCreateFile(
+ FALSE, f_path.utf16(), 0, 0, BASS_UNICODE | BASS_ASYNCFILE);
+ }
- set_volume_internal(m_volume);
+ set_volume_internal(m_volume);
}
void AOBlipPlayer::blip_tick()
{
- if (delay.isValid() && delay.elapsed() < max_blip_ms)
- return;
+ if (delay.isValid() && delay.elapsed() < max_blip_ms)
+ return;
- delay.start();
- int f_cycle = m_cycle++;
+ delay.start();
+ int f_cycle = m_cycle++;
- if (m_cycle == 5)
- m_cycle = 0;
+ if (m_cycle == 5)
+ m_cycle = 0;
- HSTREAM f_stream = m_stream_list[f_cycle];
- if (ao_app->get_audio_output_device() != "default")
- BASS_ChannelSetDevice(f_stream, BASS_GetDevice());
- BASS_ChannelPlay(f_stream, false);
+ HSTREAM f_stream = m_stream_list[f_cycle];
+ if (ao_app->get_audio_output_device() != "default")
+ BASS_ChannelSetDevice(f_stream, BASS_GetDevice());
+ BASS_ChannelPlay(f_stream, false);
}
void AOBlipPlayer::set_volume(qreal p_value)
{
- m_volume = p_value / 100;
- set_volume_internal(m_volume);
+ m_volume = p_value / 100;
+ set_volume_internal(m_volume);
}
void AOBlipPlayer::set_volume_internal(qreal p_value)
{
- float volume = static_cast<float>(p_value);
+ float volume = static_cast<float>(p_value);
- for (int n_stream = 0; n_stream < 5; ++n_stream) {
- BASS_ChannelSetAttribute(m_stream_list[n_stream], BASS_ATTRIB_VOL, volume);
- }
+ for (int n_stream = 0; n_stream < 5; ++n_stream) {
+ BASS_ChannelSetAttribute(m_stream_list[n_stream], BASS_ATTRIB_VOL, volume);
+ }
}
-#elif defined(QTAUDIO) //Using Qt's QSoundEffect class
+#elif defined(QTAUDIO) // Using Qt's QSoundEffect class
AOBlipPlayer::AOBlipPlayer(QWidget *parent, AOApplication *p_ao_app)
{
- m_parent = parent;
- ao_app = p_ao_app;
+ m_parent = parent;
+ ao_app = p_ao_app;
}
void AOBlipPlayer::set_blips(QString p_sfx)
{
- QString f_path = ao_app->get_sounds_path(p_sfx);
+ QString f_path = ao_app->get_sounds_path(p_sfx);
- for (int n_stream = 0; n_stream < 5; ++n_stream) {
- m_blips.setSource(QUrl::fromLocalFile(f_path));
- }
+ for (int n_stream = 0; n_stream < 5; ++n_stream) {
+ m_blips.setSource(QUrl::fromLocalFile(f_path));
+ }
- set_volume_internal(m_volume);
+ set_volume_internal(m_volume);
}
void AOBlipPlayer::blip_tick()
{
- int f_cycle = m_cycle++;
+ int f_cycle = m_cycle++;
- if (m_cycle == 5)
- m_cycle = 0;
+ if (m_cycle == 5)
+ m_cycle = 0;
- m_blips.play();
+ m_blips.play();
}
void AOBlipPlayer::set_volume(qreal p_value)
{
- m_volume = p_value / 100;
- set_volume_internal(m_volume);
+ m_volume = p_value / 100;
+ set_volume_internal(m_volume);
}
void AOBlipPlayer::set_volume_internal(qreal p_value)
{
- m_blips.setVolume(m_volume);
+ m_blips.setVolume(m_volume);
}
-#else //No audio
+#else // No audio
AOBlipPlayer::AOBlipPlayer(QWidget *parent, AOApplication *p_ao_app)
{
- m_parent = parent;
- ao_app = p_ao_app;
+ m_parent = parent;
+ ao_app = p_ao_app;
}
-void AOBlipPlayer::set_blips(QString p_sfx)
-{
-}
+void AOBlipPlayer::set_blips(QString p_sfx) {}
-void AOBlipPlayer::blip_tick()
-{
-}
+void AOBlipPlayer::blip_tick() {}
-void AOBlipPlayer::set_volume(qreal p_value)
-{
-}
+void AOBlipPlayer::set_volume(qreal p_value) {}
-void AOBlipPlayer::set_volume_internal(qreal p_value)
-{
-}
+void AOBlipPlayer::set_volume_internal(qreal p_value) {}
#endif