author | koda |
Tue, 30 Jun 2009 12:31:32 +0000 | |
changeset 2213 | bd51bbf06033 |
parent 2211 | 288360b78f30 |
child 2294 | 2e6ffb3ef304 |
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 |
#include "SDLs.h" |
|
20 |
||
21 |
#include "SDL.h" |
|
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
22 |
#include "hwconsts.h" |
555 | 23 |
|
24 |
SDLInteraction::SDLInteraction() |
|
25 |
{ |
|
2191 | 26 |
music = -1; |
1235 | 27 |
|
555 | 28 |
SDL_Init(SDL_INIT_VIDEO); |
2211
288360b78f30
- fade in/out functions merged, but kept binary compatibility
koda
parents:
2210
diff
changeset
|
29 |
openal_init(5); |
2191 | 30 |
|
555 | 31 |
} |
32 |
||
33 |
SDLInteraction::~SDLInteraction() |
|
34 |
{ |
|
1224 | 35 |
SDL_Quit(); |
2191 | 36 |
openal_close(); |
555 | 37 |
} |
38 |
||
39 |
QStringList SDLInteraction::getResolutions() const |
|
40 |
{ |
|
41 |
QStringList result; |
|
42 |
||
43 |
SDL_Rect **modes; |
|
44 |
||
1191
5539aa59f703
With this change, SDL will probably report more screen resolutions on dual-monitor configurations
unc0rr
parents:
1066
diff
changeset
|
45 |
modes = SDL_ListModes(NULL, SDL_FULLSCREEN); |
555 | 46 |
|
47 |
if((modes == (SDL_Rect **)0) || (modes == (SDL_Rect **)-1)) |
|
48 |
{ |
|
49 |
result << "640x480"; |
|
50 |
} else |
|
51 |
{ |
|
52 |
for(int i = 0; modes[i]; ++i) |
|
53 |
if ((modes[i]->w >= 640) && (modes[i]->h >= 480)) |
|
54 |
result << QString("%1x%2").arg(modes[i]->w).arg(modes[i]->h); |
|
55 |
} |
|
56 |
||
57 |
return result; |
|
58 |
} |
|
2191 | 59 |
|
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
60 |
void SDLInteraction::StartMusic() |
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
61 |
{ |
2191 | 62 |
if (music < 0) { |
63 |
music = openal_loadfile(QString(datadir->absolutePath() + "/Music/main theme.ogg").toLocal8Bit().constData()); |
|
64 |
openal_toggleloop(music); |
|
2210 | 65 |
} |
66 |
openal_setvolume(music, 60); |
|
2213 | 67 |
openal_fadein(music, 25); |
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
68 |
} |
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
69 |
|
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
70 |
void SDLInteraction::StopMusic() |
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
71 |
{ |
2213 | 72 |
if (music >= 0) openal_fadeout(music, 40); |
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
73 |
} |