author | unc0rr |
Mon, 20 Oct 2008 18:35:36 +0000 | |
changeset 1384 | 329d3308e2e3 |
parent 1235 | 070629f3902d |
child 1387 | c809c536a58f |
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 |
{ |
|
1235 | 26 |
music = NULL; |
27 |
||
555 | 28 |
SDL_Init(SDL_INIT_VIDEO); |
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
29 |
SDL_Init(SDL_INIT_AUDIO); |
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
30 |
Mix_OpenAudio(22050, 0x8010, 2, 512); |
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
31 |
|
1235 | 32 |
Mix_VolumeMusic(50); |
555 | 33 |
} |
34 |
||
35 |
SDLInteraction::~SDLInteraction() |
|
36 |
{ |
|
1224 | 37 |
SDL_Quit(); |
555 | 38 |
} |
39 |
||
40 |
QStringList SDLInteraction::getResolutions() const |
|
41 |
{ |
|
42 |
QStringList result; |
|
43 |
||
44 |
SDL_Rect **modes; |
|
45 |
||
1191
5539aa59f703
With this change, SDL will probably report more screen resolutions on dual-monitor configurations
unc0rr
parents:
1066
diff
changeset
|
46 |
modes = SDL_ListModes(NULL, SDL_FULLSCREEN); |
555 | 47 |
|
48 |
if((modes == (SDL_Rect **)0) || (modes == (SDL_Rect **)-1)) |
|
49 |
{ |
|
50 |
result << "640x480"; |
|
51 |
} else |
|
52 |
{ |
|
53 |
for(int i = 0; modes[i]; ++i) |
|
54 |
if ((modes[i]->w >= 640) && (modes[i]->h >= 480)) |
|
55 |
result << QString("%1x%2").arg(modes[i]->w).arg(modes[i]->h); |
|
56 |
} |
|
57 |
||
58 |
return result; |
|
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 |
{ |
1235 | 62 |
if (!music) |
63 |
music = Mix_LoadMUS(QString(datadir->absolutePath() + "/Music/main theme.ogg").toAscii().constData()); |
|
64 |
||
1225
f882a92ef872
Play music in menu also, with fading effects when run game
unc0rr
parents:
1224
diff
changeset
|
65 |
Mix_FadeInMusic(music, -1, 3000); |
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
66 |
} |
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
67 |
|
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
68 |
void SDLInteraction::StopMusic() |
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
69 |
{ |
1225
f882a92ef872
Play music in menu also, with fading effects when run game
unc0rr
parents:
1224
diff
changeset
|
70 |
Mix_FadeOutMusic(2000); |
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
71 |
} |