author | Wuzzy <Wuzzy2@mail.ru> |
Wed, 09 Jan 2019 22:09:27 +0100 | |
changeset 14537 | e1ae6d8e84b0 |
parent 13520 | c5365f05d4de |
child 14872 | 8bba7492558d |
permissions | -rw-r--r-- |
555 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
11046 | 3 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
555 | 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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
555 | 17 |
*/ |
18 |
||
6168 | 19 |
/** |
6170 | 20 |
* @file |
6168 | 21 |
* @brief SDLInteraction class implementation |
22 |
*/ |
|
555 | 23 |
|
24 |
#include "SDL.h" |
|
2515
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2494
diff
changeset
|
25 |
#include "SDL_mixer.h" |
6164
62aa418ed214
change SDL.h/SDL.cpp to use HWDataManager instead of poking around on the harddrive - also I added doc/comments to the class
sheepluva
parents:
5747
diff
changeset
|
26 |
|
5252 | 27 |
#include "HWApplication.h" |
13520
c5365f05d4de
Refactor storage of joystick SDL key names
Wuzzy <Wuzzy2@mail.ru>
parents:
13519
diff
changeset
|
28 |
#include "sdlkeys.h" |
8326
023a71940f26
Don't play sounds in chat if sound is disabled, try to prevent sound crashes by checking for audio init failure.
nemo
parents:
8117
diff
changeset
|
29 |
#include "hwform.h" /* you know, we could just put a config singleton lookup function in gameuiconfig or something... */ |
023a71940f26
Don't play sounds in chat if sound is disabled, try to prevent sound crashes by checking for audio init failure.
nemo
parents:
8117
diff
changeset
|
30 |
#include "gameuiconfig.h" |
2428 | 31 |
|
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6164
diff
changeset
|
32 |
#include "SDLInteraction.h" |
2515
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2494
diff
changeset
|
33 |
|
8117 | 34 |
#include "physfsrwops.h" |
35 |
||
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6164
diff
changeset
|
36 |
SDLInteraction & SDLInteraction::instance() |
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6164
diff
changeset
|
37 |
{ |
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6164
diff
changeset
|
38 |
static SDLInteraction instance; |
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6164
diff
changeset
|
39 |
return instance; |
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6164
diff
changeset
|
40 |
} |
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6164
diff
changeset
|
41 |
|
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6164
diff
changeset
|
42 |
|
2428 | 43 |
SDLInteraction::SDLInteraction() |
555 | 44 |
{ |
5085 | 45 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
46 |
SDL_Init(SDL_INIT_VIDEO | SDL_INIT_JOYSTICK); |
3697 | 47 |
|
6166 | 48 |
m_audioInitialized = false; |
49 |
m_music = NULL; |
|
50 |
m_musicTrack = ""; |
|
51 |
m_isPlayingMusic = false; |
|
10248 | 52 |
lastchannel = 0; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
53 |
if(SDL_NumJoysticks()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
54 |
addGameControllerKeys(); |
14537
e1ae6d8e84b0
Allow to leave a control unused (no key binding)
Wuzzy <Wuzzy2@mail.ru>
parents:
13520
diff
changeset
|
55 |
|
e1ae6d8e84b0
Allow to leave a control unused (no key binding)
Wuzzy <Wuzzy2@mail.ru>
parents:
13520
diff
changeset
|
56 |
int i = 0; |
e1ae6d8e84b0
Allow to leave a control unused (no key binding)
Wuzzy <Wuzzy2@mail.ru>
parents:
13520
diff
changeset
|
57 |
while(i < 1024 && sdlkeys[i][1][0] != '\0') |
e1ae6d8e84b0
Allow to leave a control unused (no key binding)
Wuzzy <Wuzzy2@mail.ru>
parents:
13520
diff
changeset
|
58 |
i++; |
e1ae6d8e84b0
Allow to leave a control unused (no key binding)
Wuzzy <Wuzzy2@mail.ru>
parents:
13520
diff
changeset
|
59 |
sprintf(sdlkeys[i][0], "none"); |
e1ae6d8e84b0
Allow to leave a control unused (no key binding)
Wuzzy <Wuzzy2@mail.ru>
parents:
13520
diff
changeset
|
60 |
sprintf(sdlkeys[i++][1], "%s", HWApplication::translate("binds (keys)", unboundcontrol).toUtf8().constData()); |
e1ae6d8e84b0
Allow to leave a control unused (no key binding)
Wuzzy <Wuzzy2@mail.ru>
parents:
13520
diff
changeset
|
61 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
62 |
SDL_QuitSubSystem(SDL_INIT_JOYSTICK); |
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6164
diff
changeset
|
63 |
|
6167 | 64 |
m_soundMap = new QMap<QString,Mix_Chunk*>(); |
555 | 65 |
} |
66 |
||
6166 | 67 |
|
555 | 68 |
SDLInteraction::~SDLInteraction() |
69 |
{ |
|
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6164
diff
changeset
|
70 |
stopMusic(); |
6166 | 71 |
if (m_audioInitialized) |
72 |
{ |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6585
diff
changeset
|
73 |
if (m_music != NULL) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6585
diff
changeset
|
74 |
{ |
6524 | 75 |
Mix_HaltMusic(); |
6166 | 76 |
Mix_FreeMusic(m_music); |
6524 | 77 |
} |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
78 |
Mix_CloseAudio(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
79 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
80 |
SDL_Quit(); |
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6164
diff
changeset
|
81 |
|
6167 | 82 |
delete m_soundMap; |
555 | 83 |
} |
84 |
||
6166 | 85 |
|
555 | 86 |
QStringList SDLInteraction::getResolutions() const |
87 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
88 |
QStringList result; |
555 | 89 |
|
9701 | 90 |
int modesNumber = SDL_GetNumDisplayModes(0); |
91 |
SDL_DisplayMode mode; |
|
92 |
||
93 |
for(int i = 0; i < modesNumber; ++i) |
|
94 |
{ |
|
95 |
SDL_GetDisplayMode(0, i, &mode); |
|
96 |
||
97 |
if ((mode.w >= 640) && (mode.h >= 480)) |
|
98 |
result << QString("%1x%2").arg(mode.w).arg(mode.h); |
|
99 |
} |
|
555 | 100 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
101 |
return result; |
555 | 102 |
} |
2191 | 103 |
|
6166 | 104 |
|
2428 | 105 |
void SDLInteraction::addGameControllerKeys() const |
106 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
107 |
QStringList result; |
2428 | 108 |
|
9701 | 109 |
#if SDL_VERSION_ATLEAST(2, 0, 0) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
110 |
int i = 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
111 |
while(i < 1024 && sdlkeys[i][1][0] != '\0') |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
112 |
i++; |
2428 | 113 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
114 |
// Iterate through all game controllers |
13519
31d0b0911cba
Make frontend detect controllers again
Wuzzy <Wuzzy2@mail.ru>
parents:
11342
diff
changeset
|
115 |
qDebug("Detecting controllers ..."); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
116 |
for(int jid = 0; jid < SDL_NumJoysticks(); jid++) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
117 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
118 |
SDL_Joystick* joy = SDL_JoystickOpen(jid); |
3697 | 119 |
|
13519
31d0b0911cba
Make frontend detect controllers again
Wuzzy <Wuzzy2@mail.ru>
parents:
11342
diff
changeset
|
120 |
// Retrieve the game controller's name |
31d0b0911cba
Make frontend detect controllers again
Wuzzy <Wuzzy2@mail.ru>
parents:
11342
diff
changeset
|
121 |
QString joyname = QString(SDL_JoystickNameForIndex(jid)); |
31d0b0911cba
Make frontend detect controllers again
Wuzzy <Wuzzy2@mail.ru>
parents:
11342
diff
changeset
|
122 |
|
31d0b0911cba
Make frontend detect controllers again
Wuzzy <Wuzzy2@mail.ru>
parents:
11342
diff
changeset
|
123 |
// Strip "Controller (...)" that's added by some drivers (English only) |
31d0b0911cba
Make frontend detect controllers again
Wuzzy <Wuzzy2@mail.ru>
parents:
11342
diff
changeset
|
124 |
joyname.replace(QRegExp("^Controller \\((.*)\\)$"), "\\1"); |
31d0b0911cba
Make frontend detect controllers again
Wuzzy <Wuzzy2@mail.ru>
parents:
11342
diff
changeset
|
125 |
|
31d0b0911cba
Make frontend detect controllers again
Wuzzy <Wuzzy2@mail.ru>
parents:
11342
diff
changeset
|
126 |
qDebug("- Controller no. %d: %s", jid, qPrintable(joyname)); |
2428 | 127 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
128 |
// Connected Xbox 360 controller? Use specific button names then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
129 |
// Might be interesting to add 'named' buttons for the most often used gamepads |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
130 |
bool isxb = joyname.contains("Xbox 360"); |
2428 | 131 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
132 |
// This part of the string won't change for multiple keys/hats, so keep it |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
133 |
QString prefix = QString("%1 (%2): ").arg(joyname).arg(jid + 1); |
2428 | 134 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
135 |
// Register entries for missing axes not assigned to sticks of this joystick/gamepad |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
136 |
for(int aid = 0; aid < SDL_JoystickNumAxes(joy) && i < 1021; aid++) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
137 |
{ |
13520
c5365f05d4de
Refactor storage of joystick SDL key names
Wuzzy <Wuzzy2@mail.ru>
parents:
13519
diff
changeset
|
138 |
QString axis = prefix + HWApplication::translate("binds (keys)", controlleraxis).arg(aid + 1); |
3697 | 139 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
140 |
// Entry for "Axis Up" |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
141 |
sprintf(sdlkeys[i][0], "j%da%du", jid, aid); |
13520
c5365f05d4de
Refactor storage of joystick SDL key names
Wuzzy <Wuzzy2@mail.ru>
parents:
13519
diff
changeset
|
142 |
sprintf(sdlkeys[i++][1], "%s", ((isxb && aid < 5) ? (prefix + HWApplication::translate("binds (keys)", xbox360axes[aid * 2])) : (axis.arg(HWApplication::translate("binds (keys)", controllerup)))).toUtf8().constData()); |
2428 | 143 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
144 |
// Entry for "Axis Down" |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
145 |
sprintf(sdlkeys[i][0], "j%da%dd", jid, aid); |
13520
c5365f05d4de
Refactor storage of joystick SDL key names
Wuzzy <Wuzzy2@mail.ru>
parents:
13519
diff
changeset
|
146 |
sprintf(sdlkeys[i++][1], "%s", ((isxb && aid < 5) ? (prefix + HWApplication::translate("binds (keys)", xbox360axes[aid * 2 + 1])) : (axis.arg(HWApplication::translate("binds (keys)", controllerdown)))).toUtf8().constData()); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
147 |
} |
2428 | 148 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
149 |
// Register entries for all coolie hats of this joystick/gamepad |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
150 |
for(int hid = 0; hid < SDL_JoystickNumHats(joy) && i < 1019; hid++) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
151 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
152 |
// Again store the part of the string not changing for multiple uses |
13520
c5365f05d4de
Refactor storage of joystick SDL key names
Wuzzy <Wuzzy2@mail.ru>
parents:
13519
diff
changeset
|
153 |
QString hat = prefix + (isxb ? (HWApplication::translate("binds (keys)", xb360dpad) + QString(" ")) : HWApplication::translate("binds (keys)", controllerhat).arg(hid + 1)); |
2428 | 154 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
155 |
// Entry for "Hat Up" |
3697 | 156 |
sprintf(sdlkeys[i][0], "j%dh%du", jid, hid); |
13520
c5365f05d4de
Refactor storage of joystick SDL key names
Wuzzy <Wuzzy2@mail.ru>
parents:
13519
diff
changeset
|
157 |
sprintf(sdlkeys[i++][1], "%s", hat.arg(HWApplication::translate("binds (keys)", controllerup)).toUtf8().constData()); |
2428 | 158 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
159 |
// Entry for "Hat Down" |
3697 | 160 |
sprintf(sdlkeys[i][0], "j%dh%dd", jid, hid); |
13520
c5365f05d4de
Refactor storage of joystick SDL key names
Wuzzy <Wuzzy2@mail.ru>
parents:
13519
diff
changeset
|
161 |
sprintf(sdlkeys[i++][1], "%s", hat.arg(HWApplication::translate("binds (keys)", controllerdown)).toUtf8().constData()); |
2428 | 162 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
163 |
// Entry for "Hat Left" |
3697 | 164 |
sprintf(sdlkeys[i][0], "j%dh%dl", jid, hid); |
13520
c5365f05d4de
Refactor storage of joystick SDL key names
Wuzzy <Wuzzy2@mail.ru>
parents:
13519
diff
changeset
|
165 |
sprintf(sdlkeys[i++][1], "%s", hat.arg(HWApplication::translate("binds (keys)", controllerleft)).toUtf8().constData()); |
2428 | 166 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
167 |
// Entry for "Hat Right" |
3697 | 168 |
sprintf(sdlkeys[i][0], "j%dh%dr", jid, hid); |
13520
c5365f05d4de
Refactor storage of joystick SDL key names
Wuzzy <Wuzzy2@mail.ru>
parents:
13519
diff
changeset
|
169 |
sprintf(sdlkeys[i++][1], "%s", hat.arg(HWApplication::translate("binds (keys)", controllerright)).toUtf8().constData()); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
170 |
} |
3697 | 171 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
172 |
// Register entries for all buttons of this joystick/gamepad |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
173 |
for(int bid = 0; bid < SDL_JoystickNumButtons(joy) && i < 1022; bid++) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
174 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
175 |
// Buttons |
3697 | 176 |
sprintf(sdlkeys[i][0], "j%db%d", jid, bid); |
13520
c5365f05d4de
Refactor storage of joystick SDL key names
Wuzzy <Wuzzy2@mail.ru>
parents:
13519
diff
changeset
|
177 |
sprintf(sdlkeys[i++][1], "%s", (prefix + ((isxb && bid < 10) ? (HWApplication::translate("binds (keys)", xb360buttons[bid]) + QString(" ")) : HWApplication::translate("binds (keys)", controllerbutton).arg(bid + 1))).toUtf8().constData()); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
178 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
179 |
// Close the game controller as we no longer need it |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
180 |
SDL_JoystickClose(joy); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
181 |
} |
3697 | 182 |
|
10248 | 183 |
if(i >= 1024) |
184 |
i = 1023; |
|
185 |
||
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
186 |
// Terminate the list |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
187 |
sdlkeys[i][0][0] = '\0'; |
9701 | 188 |
sdlkeys[i][1][0] = '\0'; |
189 |
#endif |
|
2428 | 190 |
} |
191 |
||
6166 | 192 |
|
193 |
void SDLInteraction::SDLAudioInit() |
|
2515
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2494
diff
changeset
|
194 |
{ |
6166 | 195 |
// don't init again |
196 |
if (m_audioInitialized) |
|
197 |
return; |
|
198 |
||
199 |
SDL_Init(SDL_INIT_AUDIO); |
|
8326
023a71940f26
Don't play sounds in chat if sound is disabled, try to prevent sound crashes by checking for audio init failure.
nemo
parents:
8117
diff
changeset
|
200 |
if(!Mix_OpenAudio(44100, MIX_DEFAULT_FORMAT, 2, 1024)) /* should we keep trying, or just turn off permanently? */ |
023a71940f26
Don't play sounds in chat if sound is disabled, try to prevent sound crashes by checking for audio init failure.
nemo
parents:
8117
diff
changeset
|
201 |
m_audioInitialized = true; |
2515
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2494
diff
changeset
|
202 |
} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2494
diff
changeset
|
203 |
|
6166 | 204 |
|
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6164
diff
changeset
|
205 |
void SDLInteraction::playSoundFile(const QString & soundFile) |
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
206 |
{ |
8326
023a71940f26
Don't play sounds in chat if sound is disabled, try to prevent sound crashes by checking for audio init failure.
nemo
parents:
8117
diff
changeset
|
207 |
if (!HWForm::config || !HWForm::config->isFrontendSoundEnabled()) return; |
6166 | 208 |
SDLAudioInit(); |
8326
023a71940f26
Don't play sounds in chat if sound is disabled, try to prevent sound crashes by checking for audio init failure.
nemo
parents:
8117
diff
changeset
|
209 |
if (!m_audioInitialized) return; |
6167 | 210 |
if (!m_soundMap->contains(soundFile)) |
8117 | 211 |
m_soundMap->insert(soundFile, Mix_LoadWAV_RW(PHYSFSRWOPS_openRead(soundFile.toLocal8Bit().constData()), 1)); |
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6164
diff
changeset
|
212 |
|
6585 | 213 |
//FIXME: this is a hack, but works as long as we have few concurrent playing sounds |
214 |
if (Mix_Playing(lastchannel) == false) |
|
215 |
lastchannel = Mix_PlayChannel(-1, m_soundMap->value(soundFile), 0); |
|
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6164
diff
changeset
|
216 |
} |
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6164
diff
changeset
|
217 |
|
6166 | 218 |
void SDLInteraction::setMusicTrack(const QString & musicFile) |
219 |
{ |
|
220 |
bool wasPlayingMusic = m_isPlayingMusic; |
|
221 |
||
222 |
stopMusic(); |
|
223 |
||
224 |
if (m_music != NULL) |
|
225 |
{ |
|
226 |
Mix_FreeMusic(m_music); |
|
227 |
m_music = NULL; |
|
228 |
} |
|
229 |
||
230 |
m_musicTrack = musicFile; |
|
231 |
||
232 |
if (wasPlayingMusic) |
|
233 |
startMusic(); |
|
234 |
} |
|
235 |
||
236 |
||
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6164
diff
changeset
|
237 |
void SDLInteraction::startMusic() |
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6164
diff
changeset
|
238 |
{ |
6166 | 239 |
if (m_isPlayingMusic) |
240 |
return; |
|
241 |
||
242 |
m_isPlayingMusic = true; |
|
2515
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2494
diff
changeset
|
243 |
|
6166 | 244 |
if (m_musicTrack.isEmpty()) |
245 |
return; |
|
3697 | 246 |
|
6166 | 247 |
SDLAudioInit(); |
8326
023a71940f26
Don't play sounds in chat if sound is disabled, try to prevent sound crashes by checking for audio init failure.
nemo
parents:
8117
diff
changeset
|
248 |
if (!m_audioInitialized) return; |
6166 | 249 |
|
250 |
if (m_music == NULL) |
|
9701 | 251 |
m_music = Mix_LoadMUS_RW(PHYSFSRWOPS_openRead(m_musicTrack.toLocal8Bit().constData()), 0); |
6164
62aa418ed214
change SDL.h/SDL.cpp to use HWDataManager instead of poking around on the harddrive - also I added doc/comments to the class
sheepluva
parents:
5747
diff
changeset
|
252 |
|
10939 | 253 |
Mix_VolumeMusic(MIX_MAX_VOLUME/4); |
6166 | 254 |
Mix_FadeInMusic(m_music, -1, 1750); |
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
255 |
} |
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
256 |
|
6166 | 257 |
|
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6164
diff
changeset
|
258 |
void SDLInteraction::stopMusic() |
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
259 |
{ |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6585
diff
changeset
|
260 |
if (m_isPlayingMusic && (m_music != NULL)) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6585
diff
changeset
|
261 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
262 |
// fade out music to finish 0,5 seconds from now |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6585
diff
changeset
|
263 |
while(!Mix_FadeOutMusic(1000) && Mix_PlayingMusic()) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6585
diff
changeset
|
264 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
265 |
SDL_Delay(100); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
266 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2531
diff
changeset
|
267 |
} |
6166 | 268 |
|
269 |
m_isPlayingMusic = false; |
|
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
270 |
} |
2402
edd12b259e7c
revert to manual startup of frontend's OpenAL session (keeping voices' bug fixed)
koda
parents:
2399
diff
changeset
|
271 |
|
9701 | 272 |
|
273 |
QSize SDLInteraction::getCurrentResolution() |
|
274 |
{ |
|
275 |
SDL_DisplayMode mode; |
|
276 |
||
277 |
SDL_GetDesktopDisplayMode(0, &mode); |
|
278 |
||
279 |
return QSize(mode.w, mode.h); |
|
280 |
} |