
Due to a countless number of changes made to the core that were not fully understood, tested, or documented, it was decided to roll everything back to the last known stable version (2.6.2). Changes dropped include: - Witness needed - Shake - Frame SFX - Multiple custom objections - Multithreaded thumbnail generation - Looping - Various translation additions - "Mirror IC" - Color in IC log - An invocation of clang-format Next time, work together and split your big fork into independently testable feature branches.
66 lines
1.1 KiB
C++
66 lines
1.1 KiB
C++
#ifndef AOMUSICPLAYER_H
|
|
#define AOMUSICPLAYER_H
|
|
|
|
#if defined(BASSAUDIO)
|
|
#include "bass.h"
|
|
#elif defined(QTAUDIO)
|
|
#include <QMediaPlayer>
|
|
#endif
|
|
#include "aoapplication.h"
|
|
|
|
#include <QWidget>
|
|
#include <string.h>
|
|
#include <QDebug>
|
|
|
|
#if defined(BASSAUDIO)
|
|
class AOMusicPlayer
|
|
{
|
|
public:
|
|
AOMusicPlayer(QWidget *parent, AOApplication *p_ao_app);
|
|
~AOMusicPlayer();
|
|
|
|
void play(QString p_song);
|
|
void set_volume(int p_value);
|
|
|
|
private:
|
|
QWidget *m_parent;
|
|
AOApplication *ao_app;
|
|
|
|
int m_volume = 0;
|
|
HSTREAM m_stream;
|
|
};
|
|
#elif defined(QTAUDIO)
|
|
class AOMusicPlayer
|
|
{
|
|
public:
|
|
AOMusicPlayer(QWidget *parent, AOApplication *p_ao_app);
|
|
~AOMusicPlayer();
|
|
|
|
void play(QString p_song);
|
|
void set_volume(int p_value);
|
|
|
|
private:
|
|
QMediaPlayer m_player;
|
|
QWidget *m_parent;
|
|
AOApplication *ao_app;
|
|
|
|
int m_volume = 0;
|
|
};
|
|
#else
|
|
class AOMusicPlayer
|
|
{
|
|
public:
|
|
AOMusicPlayer(QWidget *parent, AOApplication *p_ao_app);
|
|
~AOMusicPlayer();
|
|
|
|
void play(QString p_song);
|
|
void set_volume(int p_value);
|
|
|
|
private:
|
|
QWidget *m_parent;
|
|
AOApplication *ao_app;
|
|
};
|
|
#endif
|
|
|
|
#endif // AOMUSICPLAYER_H
|