author | koda |
Wed, 14 Oct 2009 22:12:02 +0000 | |
changeset 2443 | fececcbc2189 |
parent 2428 | 6800f8aa0184 |
child 2494 | 1e10a47cabea |
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 |
|
2428 | 24 |
#include <QApplication> |
25 |
||
26 |
extern char sdlkeys[1024][2][128]; |
|
27 |
extern char xb360buttons[][128]; |
|
28 |
extern char xb360dpad[128]; |
|
29 |
extern char xbox360axes[][128]; |
|
30 |
||
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
31 |
#ifdef _WIN32 |
2402
edd12b259e7c
revert to manual startup of frontend's OpenAL session (keeping voices' bug fixed)
koda
parents:
2399
diff
changeset
|
32 |
bool hardware; |
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
33 |
#endif |
2418 | 34 |
extern char *programname; |
2402
edd12b259e7c
revert to manual startup of frontend's OpenAL session (keeping voices' bug fixed)
koda
parents:
2399
diff
changeset
|
35 |
|
2428 | 36 |
SDLInteraction::SDLInteraction() |
555 | 37 |
{ |
2191 | 38 |
music = -1; |
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
39 |
#ifdef _WIN32 |
2428 | 40 |
hardware = false; |
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
41 |
#endif |
2428 | 42 |
SDL_Init(SDL_INIT_VIDEO | SDL_INIT_JOYSTICK); |
43 |
||
44 |
||
45 |
if(SDL_NumJoysticks()) |
|
46 |
addGameControllerKeys(); |
|
47 |
SDL_QuitSubSystem(SDL_INIT_JOYSTICK); |
|
555 | 48 |
} |
49 |
||
50 |
SDLInteraction::~SDLInteraction() |
|
51 |
{ |
|
1224 | 52 |
SDL_Quit(); |
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
53 |
oalb_close(); |
555 | 54 |
} |
55 |
||
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
56 |
#ifdef _WIN32 |
2428 | 57 |
void SDLInteraction::setHardwareSound(bool hardware_snd) |
58 |
{ |
|
59 |
hardware = hardware_snd; |
|
60 |
} |
|
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
61 |
#endif |
2428 | 62 |
|
555 | 63 |
QStringList SDLInteraction::getResolutions() const |
64 |
{ |
|
65 |
QStringList result; |
|
66 |
||
67 |
SDL_Rect **modes; |
|
68 |
||
1191
5539aa59f703
With this change, SDL will probably report more screen resolutions on dual-monitor configurations
unc0rr
parents:
1066
diff
changeset
|
69 |
modes = SDL_ListModes(NULL, SDL_FULLSCREEN); |
555 | 70 |
|
71 |
if((modes == (SDL_Rect **)0) || (modes == (SDL_Rect **)-1)) |
|
72 |
{ |
|
73 |
result << "640x480"; |
|
74 |
} else |
|
75 |
{ |
|
76 |
for(int i = 0; modes[i]; ++i) |
|
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
77 |
if ((modes[i]->w >= 640) && (modes[i]->h >= 480) && (modes[i]->h <= 1200)) |
555 | 78 |
result << QString("%1x%2").arg(modes[i]->w).arg(modes[i]->h); |
79 |
} |
|
80 |
||
81 |
return result; |
|
82 |
} |
|
2191 | 83 |
|
2428 | 84 |
void SDLInteraction::addGameControllerKeys() const |
85 |
{ |
|
86 |
QStringList result; |
|
87 |
||
88 |
int i = 0; |
|
89 |
while(i < 1024 && sdlkeys[i][1][0] != '\0') |
|
90 |
i++; |
|
91 |
||
92 |
// Iterate through all game controllers |
|
93 |
for(int jid = 0; jid < SDL_NumJoysticks(); jid++) |
|
94 |
{ |
|
95 |
SDL_Joystick* joy = SDL_JoystickOpen(jid); |
|
96 |
||
97 |
// Retrieve the game controller's name and strip "Controller (...)" that's added by some drivers (English only) |
|
98 |
QString joyname = QString(SDL_JoystickName(jid)).replace(QRegExp("^Controller \\((.*)\\)$"), "\\1"); |
|
99 |
||
100 |
// Connected Xbox 360 controller? Use specific button names then |
|
101 |
// Might be interesting to add 'named' buttons for the most often used gamepads |
|
102 |
bool isxb = joyname.contains("Xbox 360"); |
|
103 |
||
104 |
// This part of the string won't change for multiple keys/hats, so keep it |
|
105 |
QString prefix = QString("%1 (%2): ").arg(joyname).arg(jid + 1); |
|
106 |
||
107 |
// Register entries for missing axes not assigned to sticks of this joystick/gamepad |
|
108 |
for(int aid = 0; aid < SDL_JoystickNumAxes(joy) && i < 1021; aid++) |
|
109 |
{ |
|
110 |
// Axis 2 on xbox 360 is left/right trigger but those are used as buttons anyway so skip it |
|
111 |
if(aid == 2 && isxb) |
|
112 |
continue; |
|
113 |
||
114 |
// Again store the part of the string not changing for multiple uses |
|
115 |
QString axis = prefix + QApplication::translate("binds (keys)", "Axis") + QString(" %1 ").arg(aid + 1); |
|
116 |
||
117 |
// Entry for "Axis Up" |
|
118 |
sprintf(sdlkeys[i][0], "j%da%du", jid, aid); |
|
119 |
sprintf(sdlkeys[i++][1], "%s", ((isxb && aid < 5) ? (prefix + QApplication::translate("binds (keys)", xbox360axes[aid * 2])) : axis + QApplication::translate("binds (keys)", "(Up)")).toStdString().c_str()); |
|
120 |
||
121 |
// Entry for "Axis Down" |
|
122 |
sprintf(sdlkeys[i][0], "j%da%dd", jid, aid); |
|
123 |
sprintf(sdlkeys[i++][1], "%s", ((isxb && aid < 5) ? (prefix + QApplication::translate("binds (keys)", xbox360axes[aid * 2 + 1])) : axis + QApplication::translate("binds (keys)", "(Down)")).toStdString().c_str()); |
|
124 |
} |
|
125 |
||
126 |
// Register entries for all coolie hats of this joystick/gamepad |
|
127 |
for(int hid = 0; hid < SDL_JoystickNumHats(joy) && i < 1019; hid++) |
|
128 |
{ |
|
129 |
// Again store the part of the string not changing for multiple uses |
|
130 |
QString hat = prefix + (isxb ? (QApplication::translate("binds (keys)", xb360dpad) + QString(" ")) : QApplication::translate("binds (keys)", "Hat") + QString(" %1 ").arg(hid + 1)); |
|
131 |
||
132 |
// Entry for "Hat Up" |
|
133 |
sprintf(sdlkeys[i][0], "j%dh%du", jid, hid); |
|
134 |
sprintf(sdlkeys[i++][1], "%s", (hat + QApplication::translate("binds (keys)", "(Up)")).toStdString().c_str()); |
|
135 |
||
136 |
// Entry for "Hat Down" |
|
137 |
sprintf(sdlkeys[i][0], "j%dh%dd", jid, hid); |
|
138 |
sprintf(sdlkeys[i++][1], "%s", (hat + QApplication::translate("binds (keys)", "(Down)")).toStdString().c_str()); |
|
139 |
||
140 |
// Entry for "Hat Left" |
|
141 |
sprintf(sdlkeys[i][0], "j%dh%dl", jid, hid); |
|
142 |
sprintf(sdlkeys[i++][1], "%s", (hat + QApplication::translate("binds (keys)", "(Left)")).toStdString().c_str()); |
|
143 |
||
144 |
// Entry for "Hat Right" |
|
145 |
sprintf(sdlkeys[i][0], "j%dh%dr", jid, hid); |
|
146 |
sprintf(sdlkeys[i++][1], "%s", (hat + QApplication::translate("binds (keys)", "(Right)")).toStdString().c_str()); |
|
147 |
} |
|
148 |
||
149 |
// Register entries for all buttons of this joystick/gamepad |
|
150 |
for(int bid = 0; bid < SDL_JoystickNumButtons(joy) && i < 1022; bid++) |
|
151 |
{ |
|
152 |
// Buttons |
|
153 |
sprintf(sdlkeys[i][0], "j%db%d", jid, bid); |
|
154 |
sprintf(sdlkeys[i++][1], "%s", (prefix + ((isxb && bid < 10) ? (QApplication::translate("binds (keys)", xb360buttons[bid]) + QString(" ")) : QApplication::translate("binds (keys)", "Button") + QString(" %1").arg(bid + 1))).toStdString().c_str()); |
|
155 |
} |
|
156 |
// Close the game controller as we no longer need it |
|
157 |
SDL_JoystickClose(joy); |
|
158 |
} |
|
159 |
||
160 |
// Terminate the list |
|
161 |
sdlkeys[i][0][0] = '\0'; |
|
162 |
sdlkeys[i][1][0] = '\0'; |
|
163 |
} |
|
164 |
||
2399
ddde0ac1472b
fix a bug that prevented from hearing team voicepacks if frontend started with music disabled
koda
parents:
2392
diff
changeset
|
165 |
void SDLInteraction::StartMusic() |
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
166 |
{ |
2402
edd12b259e7c
revert to manual startup of frontend's OpenAL session (keeping voices' bug fixed)
koda
parents:
2399
diff
changeset
|
167 |
OpenAL_Init(); |
2191 | 168 |
if (music < 0) { |
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
169 |
music = oalb_loadfile(QString(datadir->absolutePath() + "/Music/main theme.ogg").toLocal8Bit().constData()); |
2392
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2294
diff
changeset
|
170 |
|
2210 | 171 |
} |
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
172 |
oalb_playsound(music, 1); |
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
173 |
oalb_setvolume(music, 60); |
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
174 |
} |
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
175 |
|
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
176 |
void SDLInteraction::StopMusic() |
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
177 |
{ |
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
178 |
// if (music >= 0) openal_fadeout(music, 40); |
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
179 |
oalb_stopsound(music); |
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1191
diff
changeset
|
180 |
} |
2402
edd12b259e7c
revert to manual startup of frontend's OpenAL session (keeping voices' bug fixed)
koda
parents:
2399
diff
changeset
|
181 |
|
edd12b259e7c
revert to manual startup of frontend's OpenAL session (keeping voices' bug fixed)
koda
parents:
2399
diff
changeset
|
182 |
//we need thjs wrapper because of some issues with windows drivers |
edd12b259e7c
revert to manual startup of frontend's OpenAL session (keeping voices' bug fixed)
koda
parents:
2399
diff
changeset
|
183 |
//beware that this cause a slight delay when playing the first sound |
edd12b259e7c
revert to manual startup of frontend's OpenAL session (keeping voices' bug fixed)
koda
parents:
2399
diff
changeset
|
184 |
void OpenAL_Init() |
edd12b259e7c
revert to manual startup of frontend's OpenAL session (keeping voices' bug fixed)
koda
parents:
2399
diff
changeset
|
185 |
{ |
2443
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
186 |
if (!oalb_ready()) |
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
187 |
#ifdef _WIN32 |
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
188 |
oalb_init(programname, hardware ? 1 : 0); |
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
189 |
#else |
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
190 |
oalb_init(programname, 0); |
fececcbc2189
Smaxx patch for fixing all sound related issues on any system
koda
parents:
2428
diff
changeset
|
191 |
#endif |
2402
edd12b259e7c
revert to manual startup of frontend's OpenAL session (keeping voices' bug fixed)
koda
parents:
2399
diff
changeset
|
192 |
} |
edd12b259e7c
revert to manual startup of frontend's OpenAL session (keeping voices' bug fixed)
koda
parents:
2399
diff
changeset
|
193 |