48 lines
942 B
C++
48 lines
942 B
C++
#include "aoblipplayer.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include <QDebug>
|
|
|
|
AOBlipPlayer::AOBlipPlayer(QWidget *parent, AOApplication *p_ao_app)
|
|
{
|
|
m_parent = parent;
|
|
ao_app = p_ao_app;
|
|
}
|
|
|
|
void AOBlipPlayer::set_blips(QString p_sfx, int p_volume)
|
|
{
|
|
QString f_path = ao_app->get_sounds_path() + p_sfx;
|
|
|
|
for (int n_stream = 0 ; n_stream < 5 ; ++n_stream)
|
|
{
|
|
BASS_StreamFree(m_stream_list[n_stream]);
|
|
|
|
m_stream_list[n_stream] = BASS_StreamCreateFile(FALSE, f_path.toStdString().c_str(), 0, 0, 0);
|
|
}
|
|
|
|
set_volume(p_volume);
|
|
}
|
|
|
|
void AOBlipPlayer::blip_tick()
|
|
{
|
|
int f_cycle = m_cycle++;
|
|
|
|
if (m_cycle == 5)
|
|
m_cycle = 0;
|
|
|
|
HSTREAM f_stream = m_stream_list[f_cycle];
|
|
|
|
BASS_ChannelPlay(f_stream, false);
|
|
}
|
|
|
|
void AOBlipPlayer::set_volume(int p_value)
|
|
{
|
|
float volume = p_value / 100.0f;
|
|
|
|
for (int n_stream = 0 ; n_stream < 5 ; ++n_stream)
|
|
{
|
|
BASS_ChannelSetAttribute(m_stream_list[n_stream], BASS_ATTRIB_VOL, volume);
|
|
}
|
|
}
|