author | unc0rr |
Wed, 24 Jun 2009 15:59:32 +0000 | |
changeset 2191 | 20c62f787a4d |
parent 1701 | ad7a7fd14d36 |
child 2194 | 1597710c6118 |
permissions | -rw-r--r-- |
555 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
555 | 3 |
* Copyright (c) 2007 Andrey Korotaev <unC0Rr@gmail.com> |
4 |
* |
|
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*/ |
|
18 |
||
19 |
#ifndef SDLS_H |
|
20 |
#define SDLS_H |
|
21 |
||
22 |
#include <QStringList> |
|
23 |
||
2191 | 24 |
//#include "SDL_mixer.h" |
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1066
diff
changeset
|
25 |
|
2191 | 26 |
extern "C" int openal_init (int); |
27 |
extern "C" int openal_close (void); |
|
28 |
extern "C" int openal_loadfile (const char*); |
|
29 |
extern "C" int openal_toggleloop (int); |
|
30 |
extern "C" int openal_setvolume (int, unsigned char); |
|
31 |
extern "C" int openal_setglobalvolume (unsigned char); |
|
32 |
extern "C" int openal_togglemute (void); |
|
33 |
extern "C" int openal_fadeout (int, unsigned int); |
|
34 |
extern "C" int openal_fadein (int, unsigned int); |
|
35 |
extern "C" int openal_playsound (int); |
|
36 |
extern "C" int openal_stopsound (int); |
|
37 |
extern "C" int openal_pausesound (int); |
|
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1066
diff
changeset
|
38 |
|
555 | 39 |
class SDLInteraction : public QObject |
40 |
{ |
|
41 |
Q_OBJECT |
|
42 |
||
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1066
diff
changeset
|
43 |
private: |
2191 | 44 |
int music; |
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1066
diff
changeset
|
45 |
|
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1066
diff
changeset
|
46 |
public: |
555 | 47 |
SDLInteraction(); |
48 |
~SDLInteraction(); |
|
49 |
QStringList getResolutions() const; |
|
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1066
diff
changeset
|
50 |
void StartMusic(); |
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1066
diff
changeset
|
51 |
void StopMusic(); |
555 | 52 |
}; |
53 |
||
54 |
#endif |