author | nemo |
Wed, 13 May 2009 01:30:08 +0000 | |
changeset 2050 | 8149802b4f14 |
parent 2017 | 7845c77c8d31 |
child 2152 | a2811690da1b |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2004-2008 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
183 | 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 |
|
4 | 8 |
* |
183 | 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. |
|
4 | 13 |
* |
183 | 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 |
|
4 | 17 |
*) |
18 |
||
19 |
unit SDLh; |
|
20 |
interface |
|
753 | 21 |
|
4 | 22 |
{$IFDEF LINUX} |
23 |
{$DEFINE UNIX} |
|
24 |
{$ENDIF} |
|
25 |
{$IFDEF FREEBSD} |
|
26 |
{$DEFINE UNIX} |
|
27 |
{$ENDIF} |
|
28 |
||
29 |
{$IFDEF UNIX} |
|
1903 | 30 |
{$IFNDEF DARWIN} |
1556
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
31 |
{$linklib c} |
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
32 |
{$ENDIF} |
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
33 |
{$linklib pthread} |
4 | 34 |
{$ENDIF} |
35 |
||
432 | 36 |
{$PACKRECORDS C} |
4 | 37 |
|
1819 | 38 |
{$IFDEF DARWIN} |
1947 | 39 |
{$PASCALMAINNAME SDL_main} |
1916 | 40 |
{$IFNDEF IPHONE} |
1947 | 41 |
{$linkframework Cocoa} |
42 |
{$linkframework SDL} |
|
43 |
{$linkframework SDL_mixer} |
|
44 |
{$linkframework SDL_net} |
|
45 |
{$linkframework SDL_image} |
|
46 |
{$linkframework SDL_ttf} |
|
47 |
{$linkframework Vorbis} |
|
48 |
{$linkframework Ogg} |
|
49 |
{$linklib SDLmain} |
|
50 |
{$linklib gcc} |
|
1819 | 51 |
{$ENDIF} |
1916 | 52 |
{$ENDIF} |
1819 | 53 |
|
1997 | 54 |
(* SDL *) |
4 | 55 |
const {$IFDEF WIN32} |
56 |
SDLLibName = 'SDL.dll'; |
|
57 |
{$ENDIF} |
|
58 |
{$IFDEF UNIX} |
|
1556
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
59 |
{$IFDEF DARWIN} |
1819 | 60 |
SDLLibName = 'libSDL.a'; |
1556
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
61 |
{$ELSE} |
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
62 |
SDLLibName = 'libSDL.so'; |
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
63 |
{$ENDIF} |
4 | 64 |
{$ENDIF} |
65 |
SDL_SWSURFACE = $00000000; |
|
66 |
SDL_HWSURFACE = $00000001; |
|
67 |
SDL_ASYNCBLIT = $00000004; |
|
68 |
SDL_ANYFORMAT = $10000000; |
|
69 |
SDL_HWPALETTE = $20000000; |
|
358 | 70 |
SDL_DOUBLEBUF = $40000000; |
4 | 71 |
SDL_FULLSCREEN = $80000000; |
72 |
SDL_NOFRAME = $00000020; |
|
73 |
SDL_HWACCEL = $00000100; |
|
74 |
SDL_SRCCOLORKEY = $00001000; |
|
75 |
SDL_RLEACCEL = $00004000; |
|
2017 | 76 |
SDL_SRCALPHA = $00010000; |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
883
diff
changeset
|
77 |
|
4 | 78 |
SDL_NOEVENT = 0; |
308 | 79 |
SDL_ACTIVEEVENT = 1; |
4 | 80 |
SDL_KEYDOWN = 2; |
81 |
SDL_KEYUP = 3; |
|
82 |
SDL_QUITEV = 12; |
|
1120 | 83 |
SDL_VIDEORESIZE = 16; |
4 | 84 |
|
308 | 85 |
SDL_APPINPUTFOCUS = 2; |
86 |
||
4 | 87 |
SDL_INIT_VIDEO = $00000020; |
11 | 88 |
SDL_INIT_AUDIO = $00000010; |
753 | 89 |
|
90 |
SDL_GL_DOUBLEBUFFER = 5; |
|
91 |
SDL_OPENGL = 2; |
|
1120 | 92 |
SDL_RESIZABLE = $00000010; |
754 | 93 |
|
94 |
RMask = $FF; |
|
95 |
GMask = $FF00; |
|
96 |
BMask = $FF0000; |
|
97 |
AMask = $FF000000; |
|
98 |
||
4 | 99 |
type PSDL_Rect = ^TSDL_Rect; |
100 |
TSDL_Rect = record |
|
101 |
x, y: SmallInt; |
|
102 |
w, h: Word; |
|
103 |
end; |
|
104 |
||
105 |
TPoint = record |
|
105 | 106 |
X: LongInt; |
107 |
Y: LongInt; |
|
4 | 108 |
end; |
109 |
||
110 |
PSDL_PixelFormat = ^TSDL_PixelFormat; |
|
111 |
TSDL_PixelFormat = record |
|
112 |
palette: Pointer; |
|
113 |
BitsPerPixel : Byte; |
|
114 |
BytesPerPixel: Byte; |
|
115 |
Rloss : Byte; |
|
116 |
Gloss : Byte; |
|
117 |
Bloss : Byte; |
|
118 |
Aloss : Byte; |
|
119 |
Rshift: Byte; |
|
120 |
Gshift: Byte; |
|
121 |
Bshift: Byte; |
|
122 |
Ashift: Byte; |
|
123 |
RMask : Longword; |
|
124 |
GMask : Longword; |
|
125 |
BMask : Longword; |
|
126 |
AMask : Longword; |
|
127 |
colorkey: Longword; |
|
128 |
alpha : Byte; |
|
129 |
end; |
|
130 |
||
131 |
||
132 |
PSDL_Surface = ^TSDL_Surface; |
|
133 |
TSDL_Surface = record |
|
134 |
flags : Longword; |
|
135 |
format: PSDL_PixelFormat; |
|
432 | 136 |
w, h : LongInt; |
4 | 137 |
pitch : Word; |
138 |
pixels: Pointer; |
|
432 | 139 |
offset: LongInt; |
4 | 140 |
end; |
141 |
||
142 |
PSDL_Color = ^TSDL_Color; |
|
143 |
TSDL_Color = record |
|
206
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
144 |
case byte of |
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
145 |
0: (r: Byte; |
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
146 |
g: Byte; |
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
147 |
b: Byte; |
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
148 |
unused: Byte; |
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
149 |
); |
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
150 |
1: (value: Longword); |
4 | 151 |
end; |
152 |
||
153 |
PSDL_RWops = ^TSDL_RWops; |
|
105 | 154 |
TSeek = function( context: PSDL_RWops; offset: LongInt; whence: LongInt ): LongInt; cdecl; |
155 |
TRead = function( context: PSDL_RWops; Ptr: Pointer; size: LongInt; maxnum : LongInt ): LongInt; cdecl; |
|
156 |
TWrite = function( context: PSDL_RWops; Ptr: Pointer; size: LongInt; num: LongInt ): LongInt; cdecl; |
|
157 |
TClose = function( context: PSDL_RWops ): LongInt; cdecl; |
|
4 | 158 |
|
159 |
TStdio = record |
|
105 | 160 |
autoclose: LongInt; |
4 | 161 |
fp: pointer; |
162 |
end; |
|
163 |
||
164 |
TMem = record |
|
165 |
base: PByte; |
|
166 |
here: PByte; |
|
167 |
stop: PByte; |
|
168 |
end; |
|
169 |
||
170 |
TUnknown = record |
|
171 |
data1: Pointer; |
|
172 |
end; |
|
173 |
||
174 |
TSDL_RWops = record |
|
175 |
seek: TSeek; |
|
176 |
read: TRead; |
|
177 |
write: TWrite; |
|
178 |
close: TClose; |
|
179 |
type_: Longword; |
|
180 |
case Byte of |
|
181 |
0: (stdio: TStdio); |
|
182 |
1: (mem: TMem); |
|
183 |
2: (unknown: TUnknown); |
|
184 |
end; |
|
185 |
||
186 |
TSDL_KeySym = record |
|
187 |
scancode: Byte; |
|
106 | 188 |
sym: Longword; |
4 | 189 |
modifier: Longword; |
190 |
unicode: Word; |
|
191 |
end; |
|
192 |
||
308 | 193 |
TSDL_ActiveEvent = record |
194 |
type_: byte; |
|
1120 | 195 |
gain: byte; |
196 |
state: byte; |
|
197 |
end; |
|
308 | 198 |
|
4 | 199 |
TSDL_KeyboardEvent = record |
200 |
type_: Byte; |
|
201 |
which: Byte; |
|
202 |
state: Byte; |
|
203 |
keysym: TSDL_KeySym; |
|
204 |
end; |
|
205 |
||
206 |
TSDL_QuitEvent = record |
|
207 |
type_: Byte; |
|
208 |
end; |
|
1120 | 209 |
TSDL_ResizeEvent = record |
210 |
type_: Byte; |
|
211 |
w, h: LongInt; |
|
212 |
end; |
|
213 |
||
4 | 214 |
PSDL_Event = ^TSDL_Event; |
215 |
TSDL_Event = record |
|
216 |
case Byte of |
|
217 |
SDL_NOEVENT: (type_: byte); |
|
308 | 218 |
SDL_ACTIVEEVENT: (active: TSDL_ActiveEvent); |
4 | 219 |
SDL_KEYDOWN, SDL_KEYUP: (key: TSDL_KeyboardEvent); |
220 |
SDL_QUITEV: (quit: TSDL_QuitEvent); |
|
1120 | 221 |
SDL_VIDEORESIZE: (resize: TSDL_ResizeEvent); |
4 | 222 |
end; |
223 |
||
224 |
PByteArray = ^TByteArray; |
|
316 | 225 |
TByteArray = array[0..65535] of Byte; |
226 |
PLongWordArray = ^TLongWordArray; |
|
227 |
TLongWordArray = array[0..16383] of LongWord; |
|
4 | 228 |
|
433 | 229 |
PSDL_Thread = Pointer; |
230 |
PSDL_mutex = Pointer; |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
883
diff
changeset
|
231 |
|
432 | 232 |
function SDL_Init(flags: Longword): LongInt; cdecl; external SDLLibName; |
4 | 233 |
procedure SDL_Quit; cdecl; external SDLLibName; |
432 | 234 |
function SDL_VideoDriverName(var namebuf; maxlen: LongInt): PChar; cdecl; external SDLLibName; |
235 |
procedure SDL_EnableUNICODE(enable: LongInt); cdecl; external SDLLibName; |
|
4 | 236 |
|
237 |
procedure SDL_Delay(msec: Longword); cdecl; external SDLLibName; |
|
238 |
function SDL_GetTicks: Longword; cdecl; external SDLLibName; |
|
239 |
||
240 |
function SDL_MustLock(Surface: PSDL_Surface): Boolean; |
|
432 | 241 |
function SDL_LockSurface(Surface: PSDL_Surface): LongInt; cdecl; external SDLLibName; |
4 | 242 |
procedure SDL_UnlockSurface(Surface: PSDL_Surface); cdecl; external SDLLibName; |
243 |
||
244 |
function SDL_GetError: PChar; cdecl; external SDLLibName; |
|
245 |
||
432 | 246 |
function SDL_SetVideoMode(width, height, bpp: LongInt; flags: Longword): PSDL_Surface; cdecl; external SDLLibName; |
247 |
function SDL_CreateRGBSurface(flags: Longword; Width, Height, Depth: LongInt; RMask, GMask, BMask, AMask: Longword): PSDL_Surface; cdecl; external SDLLibName; |
|
248 |
function SDL_CreateRGBSurfaceFrom(pixels: Pointer; width, height, depth, pitch: LongInt; RMask, GMask, BMask, AMask: Longword): PSDL_Surface; cdecl; external SDLLibName; |
|
4 | 249 |
procedure SDL_FreeSurface(Surface: PSDL_Surface); cdecl; external SDLLibName; |
105 | 250 |
function SDL_SetColorKey(surface: PSDL_Surface; flag, key: Longword): LongInt; cdecl; external SDLLibName; |
2017 | 251 |
function SDL_SetAlpha(surface: PSDL_Surface; flag, key: Longword): LongInt; cdecl; external SDLLibName; |
4 | 252 |
|
105 | 253 |
function SDL_UpperBlit(src: PSDL_Surface; srcrect: PSDL_Rect; dst: PSDL_Surface; dstrect: PSDL_Rect): LongInt; cdecl; external SDLLibName; |
254 |
function SDL_FillRect(dst: PSDL_Surface; dstrect: PSDL_Rect; color: Longword): LongInt; cdecl; external SDLLibName; |
|
255 |
procedure SDL_UpdateRect(Screen: PSDL_Surface; x, y: LongInt; w, h: Longword); cdecl; external SDLLibName; |
|
432 | 256 |
function SDL_Flip(Screen: PSDL_Surface): LongInt; cdecl; external SDLLibName; |
4 | 257 |
|
258 |
procedure SDL_GetRGB(pixel: Longword; fmt: PSDL_PixelFormat; r, g, b: PByte); cdecl; external SDLLibName; |
|
107 | 259 |
function SDL_MapRGB(format: PSDL_PixelFormat; r, g, b: Byte): Longword; cdecl; external SDLLibName; |
4 | 260 |
|
261 |
function SDL_DisplayFormat(Surface: PSDL_Surface): PSDL_Surface; cdecl; external SDLLibName; |
|
35 | 262 |
function SDL_DisplayFormatAlpha(Surface: PSDL_Surface): PSDL_Surface; cdecl; external SDLLibName; |
4 | 263 |
|
264 |
function SDL_RWFromFile(filename, mode: PChar): PSDL_RWops; cdecl; external SDLLibName; |
|
432 | 265 |
function SDL_SaveBMP_RW(surface: PSDL_Surface; dst: PSDL_RWops; freedst: LongInt): LongInt; cdecl; external SDLLibName; |
4 | 266 |
|
105 | 267 |
function SDL_GetKeyState(numkeys: PLongInt): PByteArray; cdecl; external SDLLibName; |
107 | 268 |
function SDL_GetMouseState(x, y: PInteger): Byte; cdecl; external SDLLibName; |
4 | 269 |
function SDL_GetKeyName(key: Longword): PChar; cdecl; external SDLLibName; |
270 |
procedure SDL_WarpMouse(x, y: Word); cdecl; external SDLLibName; |
|
271 |
||
432 | 272 |
function SDL_PollEvent(event: PSDL_Event): LongInt; cdecl; external SDLLibName; |
4 | 273 |
|
432 | 274 |
function SDL_ShowCursor(toggle: LongInt): LongInt; cdecl; external SDLLibName; |
4 | 275 |
|
276 |
procedure SDL_WM_SetCaption(title: PChar; icon: PChar); cdecl; external SDLLibName; |
|
277 |
||
433 | 278 |
function SDL_CreateMutex: PSDL_mutex; cdecl; external SDLLibName; |
279 |
procedure SDL_DestroyMutex(mutex: PSDL_mutex); cdecl; external SDLLibName; |
|
280 |
function SDL_LockMutex(mutex: PSDL_mutex): LongInt; cdecl; external SDLLibName name 'SDL_mutexP'; |
|
281 |
function SDL_UnlockMutex(mutex: PSDL_mutex): LongInt; cdecl; external SDLLibName name 'SDL_mutexV'; |
|
282 |
||
753 | 283 |
function SDL_GL_SetAttribute(attr: byte; value: LongInt): LongInt; cdecl; external SDLLibName; |
284 |
procedure SDL_GL_SwapBuffers(); cdecl; external SDLLibName; |
|
285 |
||
4 | 286 |
(* TTF *) |
287 |
||
288 |
const {$IFDEF WIN32} |
|
289 |
SDL_TTFLibName = 'SDL_ttf.dll'; |
|
290 |
{$ENDIF} |
|
291 |
{$IFDEF UNIX} |
|
1556
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
292 |
{$IFDEF DARWIN} |
1819 | 293 |
SDL_TTFLibName = 'libSDL_ttf.a'; |
1556
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
294 |
{$ELSE} |
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
295 |
SDL_TTFLibName = 'libSDL_ttf.so'; |
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
296 |
{$ENDIF} |
4 | 297 |
{$ENDIF} |
202 | 298 |
TTF_STYLE_NORMAL = 0; |
299 |
TTF_STYLE_BOLD = 1; |
|
300 |
TTF_STYLE_ITALIC = 2; |
|
4 | 301 |
|
302 |
type PTTF_Font = ^TTTF_font; |
|
303 |
TTTF_Font = record |
|
304 |
end; |
|
305 |
||
432 | 306 |
function TTF_Init: LongInt; cdecl; external SDL_TTFLibName; |
4 | 307 |
procedure TTF_Quit; cdecl; external SDL_TTFLibName; |
308 |
||
309 |
||
432 | 310 |
function TTF_SizeUTF8(font: PTTF_Font; const text: PChar; var w, h: LongInt): LongInt; cdecl; external SDL_TTFLibName; |
206
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
311 |
(* TSDL_Color -> Longword conversion is workaround over freepascal bug. |
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
312 |
See http://www.freepascal.org/mantis/view.php?id=7613 for details *) |
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
313 |
function TTF_RenderUTF8_Solid(font: PTTF_Font; const text: PChar; fg: Longword): PSDL_Surface; cdecl; external SDL_TTFLibName; |
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
314 |
function TTF_RenderUTF8_Blended(font: PTTF_Font; const text: PChar; fg: Longword): PSDL_Surface; cdecl; external SDL_TTFLibName; |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
883
diff
changeset
|
315 |
function TTF_RenderUTF8_Shaded(font: PTTF_Font; const text: PChar; fg, bg: Longword): PSDL_Surface; cdecl; external SDL_TTFLibName; |
206
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
316 |
|
432 | 317 |
function TTF_OpenFont(const filename: PChar; size: LongInt): PTTF_Font; cdecl; external SDL_TTFLibName; |
318 |
procedure TTF_SetFontStyle(font: PTTF_Font; style: LongInt); cdecl; external SDL_TTFLibName; |
|
4 | 319 |
|
1997 | 320 |
(* SDL_mixer *) |
4 | 321 |
|
322 |
const {$IFDEF WIN32} |
|
323 |
SDL_MixerLibName = 'SDL_mixer.dll'; |
|
324 |
{$ENDIF} |
|
325 |
{$IFDEF UNIX} |
|
1556
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
326 |
{$IFDEF DARWIN} |
1819 | 327 |
SDL_MixerLibName = 'libSDL_mixer.a'; |
1556
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
328 |
{$ELSE} |
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
329 |
SDL_MixerLibName = 'libSDL_mixer.so'; |
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
330 |
{$ENDIF} |
4 | 331 |
{$ENDIF} |
332 |
||
174 | 333 |
const MIX_MAX_VOLUME = 128; |
334 |
||
4 | 335 |
type PMixChunk = ^TMixChunk; |
336 |
TMixChunk = record |
|
337 |
allocated: Longword; |
|
338 |
abuf : PByte; |
|
339 |
alen : Longword; |
|
340 |
volume : PByte; |
|
106 | 341 |
end; |
4 | 342 |
TMusic = (MUS_CMD, MUS_WAV, MUS_MOD, MUS_MID, MUS_OGG, MUS_MP3); |
343 |
TMix_Fading = (MIX_NO_FADING, MIX_FADING_OUT, MIX_FADING_IN); |
|
344 |
||
345 |
TMidiSong = record |
|
105 | 346 |
samples : LongInt; |
4 | 347 |
events : pointer; |
348 |
end; |
|
349 |
||
350 |
TMusicUnion = record |
|
351 |
case Byte of |
|
352 |
0: ( midi : TMidiSong ); |
|
353 |
1: ( ogg : pointer); |
|
354 |
end; |
|
355 |
||
356 |
PMixMusic = ^TMixMusic; |
|
357 |
TMixMusic = record |
|
358 |
end; |
|
359 |
||
105 | 360 |
function Mix_OpenAudio(frequency: LongInt; format: Word; channels: LongInt; chunksize: LongInt): LongInt; cdecl; external SDL_MixerLibName; |
4 | 361 |
procedure Mix_CloseAudio; cdecl; external SDL_MixerLibName; |
362 |
||
174 | 363 |
function Mix_Volume(channel: LongInt; volume: LongInt): LongInt; cdecl; external SDL_MixerLibName; |
364 |
function Mix_SetDistance(channel: LongInt; distance: Byte): LongInt; cdecl; external SDL_MixerLibName; |
|
105 | 365 |
function Mix_VolumeMusic(volume: LongInt): LongInt; cdecl; external SDL_MixerLibName; |
4 | 366 |
|
174 | 367 |
function Mix_AllocateChannels(numchans: LongInt): LongInt; cdecl; external SDL_MixerLibName; |
4 | 368 |
procedure Mix_FreeChunk(chunk: PMixChunk); cdecl; external SDL_MixerLibName; |
369 |
procedure Mix_FreeMusic(music: PMixMusic); cdecl; external SDL_MixerLibName; |
|
370 |
||
105 | 371 |
function Mix_LoadWAV_RW(src: PSDL_RWops; freesrc: LongInt): PMixChunk; cdecl; external SDL_MixerLibName; |
4 | 372 |
function Mix_LoadMUS(const filename: PChar): PMixMusic; cdecl; external SDL_MixerLibName; |
373 |
||
105 | 374 |
function Mix_Playing(channel: LongInt): LongInt; cdecl; external SDL_MixerLibName; |
375 |
function Mix_PlayingMusic: LongInt; cdecl; external SDL_MixerLibName; |
|
1225
f882a92ef872
Play music in menu also, with fading effects when run game
unc0rr
parents:
1120
diff
changeset
|
376 |
function Mix_FadeInMusic(music: PMixMusic; loops: LongInt; ms: LongInt): LongInt; cdecl; external SDL_MixerLibName; |
4 | 377 |
|
105 | 378 |
function Mix_PlayChannelTimed(channel: LongInt; chunk: PMixChunk; loops: LongInt; ticks: LongInt): LongInt; cdecl; external SDL_MixerLibName; |
379 |
function Mix_PlayMusic(music: PMixMusic; loops: LongInt): LongInt; cdecl; external SDL_MixerLibName; |
|
1712 | 380 |
function Mix_PausedMusic(music: PMixMusic): LongInt; cdecl; external SDL_MixerLibName; |
381 |
function Mix_PauseMusic(music: PMixMusic): LongInt; cdecl; external SDL_MixerLibName; |
|
382 |
function Mix_ResumeMusic(music: PMixMusic): LongInt; cdecl; external SDL_MixerLibName; |
|
105 | 383 |
function Mix_HaltChannel(channel: LongInt): LongInt; cdecl; external SDL_MixerLibName; |
4 | 384 |
|
1997 | 385 |
(* SDL_image *) |
4 | 386 |
|
387 |
const {$IFDEF WIN32} |
|
388 |
SDL_ImageLibName = 'SDL_image.dll'; |
|
389 |
{$ENDIF} |
|
390 |
{$IFDEF UNIX} |
|
1556
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
391 |
{$IFDEF DARWIN} |
1819 | 392 |
SDL_ImageLibName = 'libSDL_image.a'; |
1556
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
393 |
{$ELSE} |
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
394 |
SDL_ImageLibName = 'libSDL_image.so'; |
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
395 |
{$ENDIF} |
4 | 396 |
{$ENDIF} |
397 |
||
398 |
function IMG_Load(const _file: PChar): PSDL_Surface; cdecl; external SDL_ImageLibName; |
|
399 |
||
1997 | 400 |
(* SDL_net *) |
4 | 401 |
|
402 |
const {$IFDEF WIN32} |
|
403 |
SDL_NetLibName = 'SDL_net.dll'; |
|
404 |
{$ENDIF} |
|
405 |
{$IFDEF UNIX} |
|
1556
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
406 |
{$IFDEF DARWIN} |
1819 | 407 |
SDL_NetLibName = 'libSDL_net.a'; |
1556
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
408 |
{$ELSE} |
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
409 |
SDL_NetLibName = 'libSDL_net.so'; |
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
410 |
{$ENDIF} |
4 | 411 |
{$ENDIF} |
412 |
||
413 |
type TIPAddress = record |
|
414 |
host: Longword; |
|
415 |
port: Word; |
|
416 |
end; |
|
417 |
||
418 |
PTCPSocket = ^TTCPSocket; |
|
419 |
TTCPSocket = record |
|
106 | 420 |
ready: LongInt; |
105 | 421 |
channel: LongInt; |
106 | 422 |
remoteAddress: TIPaddress; |
4 | 423 |
localAddress: TIPaddress; |
105 | 424 |
sflag: LongInt; |
4 | 425 |
end; |
426 |
PSDLNet_SocketSet = ^TSDLNet_SocketSet; |
|
427 |
TSDLNet_SocketSet = record |
|
428 |
numsockets, |
|
105 | 429 |
maxsockets: LongInt; |
4 | 430 |
sockets: PTCPSocket; |
431 |
end; |
|
432 |
||
105 | 433 |
function SDLNet_Init: LongInt; cdecl; external SDL_NetLibName; |
4 | 434 |
procedure SDLNet_Quit; cdecl; external SDL_NetLibName; |
435 |
||
105 | 436 |
function SDLNet_AllocSocketSet(maxsockets: LongInt): PSDLNet_SocketSet; cdecl; external SDL_NetLibName; |
437 |
function SDLNet_ResolveHost(var address: TIPaddress; host: PCHar; port: Word): LongInt; cdecl; external SDL_NetLibName; |
|
4 | 438 |
function SDLNet_TCP_Accept(server: PTCPsocket): PTCPSocket; cdecl; external SDL_NetLibName; |
439 |
function SDLNet_TCP_Open(var ip: TIPaddress): PTCPSocket; cdecl; external SDL_NetLibName; |
|
105 | 440 |
function SDLNet_TCP_Send(sock: PTCPsocket; data: Pointer; len: LongInt): LongInt; cdecl; external SDL_NetLibName; |
441 |
function SDLNet_TCP_Recv(sock: PTCPsocket; data: Pointer; len: LongInt): LongInt; cdecl; external SDL_NetLibName; |
|
4 | 442 |
procedure SDLNet_TCP_Close(sock: PTCPsocket); cdecl; external SDL_NetLibName; |
443 |
procedure SDLNet_FreeSocketSet(_set: PSDLNet_SocketSet); cdecl; external SDL_NetLibName; |
|
105 | 444 |
function SDLNet_AddSocket(_set: PSDLNet_SocketSet; sock: PTCPSocket): LongInt; cdecl; external SDL_NetLibName; |
445 |
function SDLNet_CheckSockets(_set: PSDLNet_SocketSet; timeout: LongInt): LongInt; cdecl; external SDL_NetLibName; |
|
4 | 446 |
|
459
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
447 |
procedure SDLNet_Write16(value: Word; buf: pointer); |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
448 |
procedure SDLNet_Write32(value: LongWord; buf: pointer); |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
449 |
function SDLNet_Read16(buf: pointer): Word; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
450 |
function SDLNet_Read32(buf: pointer): LongWord; |
4 | 451 |
|
452 |
implementation |
|
453 |
||
454 |
function SDL_MustLock(Surface: PSDL_Surface): Boolean; |
|
455 |
begin |
|
432 | 456 |
SDL_MustLock:= ( surface^.offset <> 0 ) |
4 | 457 |
or(( surface^.flags and (SDL_HWSURFACE or SDL_ASYNCBLIT or SDL_RLEACCEL)) <> 0) |
458 |
end; |
|
459 |
||
459
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
460 |
procedure SDLNet_Write16(value: Word; buf: pointer); |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
461 |
begin |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
462 |
PByteArray(buf)^[1]:= value; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
463 |
PByteArray(buf)^[0]:= value shr 8 |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
464 |
end; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
465 |
|
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
466 |
procedure SDLNet_Write32(value: LongWord; buf: pointer); |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
467 |
begin |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
468 |
PByteArray(buf)^[3]:= value; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
469 |
PByteArray(buf)^[2]:= value shr 8; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
470 |
PByteArray(buf)^[1]:= value shr 16; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
471 |
PByteArray(buf)^[0]:= value shr 24 |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
472 |
end; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
473 |
|
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
474 |
function SDLNet_Read16(buf: pointer): Word; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
475 |
begin |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
476 |
SDLNet_Read16:= PByteArray(buf)^[1] or |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
477 |
(PByteArray(buf)^[0] shl 8) |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
478 |
end; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
479 |
|
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
480 |
function SDLNet_Read32(buf: pointer): LongWord; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
481 |
begin |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
482 |
SDLNet_Read32:= PByteArray(buf)^[3] or |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
483 |
(PByteArray(buf)^[2] shl 8) or |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
484 |
(PByteArray(buf)^[1] shl 16) or |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
485 |
(PByteArray(buf)^[0] shl 24) |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
486 |
end; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
487 |
|
4 | 488 |
end. |