aboutsummaryrefslogtreecommitdiff
path: root/aosfxplayer.cpp
blob: 394fabd16bc5d15fb89f95c86fe0ec6c27f4a1d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include "aosfxplayer.h"

#include <string.h>

#include <QDebug>

AOSfxPlayer::AOSfxPlayer(QWidget *parent, AOApplication *p_ao_app)
{
  m_parent = parent;
  ao_app = p_ao_app;
}

void AOSfxPlayer::play(QString p_sfx, QString p_char)
{
  BASS_ChannelStop(m_stream);

  p_sfx = p_sfx.toLower();

  QString f_path;

  if (p_char != "")
    f_path = ao_app->get_character_path(p_char) + p_sfx;
  else
    f_path = ao_app->get_sounds_path() + p_sfx;

  m_stream = BASS_StreamCreateFile(FALSE, f_path.toStdString().c_str(), 0, 0, BASS_STREAM_AUTOFREE);

  set_volume(m_volume);

  BASS_ChannelPlay(m_stream, false);
}

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);

}