author | unc0rr |
Sun, 25 Oct 2009 18:16:40 +0000 | |
changeset 2589 | 4329597c85c8 |
parent 2586 | 204e6b2885bc |
child 2590 | e7e87e3c67db |
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 |
|
2586
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
22 |
{$INCLUDE options.inc} |
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
23 |
|
2241
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
24 |
{$IFDEF LINUX or FREEBSD} |
4 | 25 |
{$DEFINE UNIX} |
26 |
{$ENDIF} |
|
27 |
||
28 |
{$IFDEF UNIX} |
|
1903 | 29 |
{$IFNDEF DARWIN} |
1556
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
30 |
{$linklib c} |
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
31 |
{$ENDIF} |
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
32 |
{$linklib pthread} |
4 | 33 |
{$ENDIF} |
34 |
||
432 | 35 |
{$PACKRECORDS C} |
4 | 36 |
|
1819 | 37 |
{$IFDEF DARWIN} |
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
38 |
{$PASCALMAINNAME SDL_main} |
2152 | 39 |
{$IFNDEF IPHONEOS} |
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
40 |
{$linkframework Cocoa} |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
41 |
{$linkframework SDL} |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
42 |
{$linkframework SDL_net} |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
43 |
{$linkframework SDL_image} |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
44 |
{$linkframework SDL_ttf} |
2515
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
45 |
{$linkframework SDL_mixer} |
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
46 |
{$linklib SDLmain} |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
47 |
{$linklib gcc} |
1819 | 48 |
{$ENDIF} |
1916 | 49 |
{$ENDIF} |
1819 | 50 |
|
1997 | 51 |
(* SDL *) |
2390 | 52 |
const |
53 |
{$IFDEF WIN32} |
|
54 |
SDLLibName = 'SDL.dll'; |
|
55 |
{$ENDIF} |
|
56 |
{$IFDEF UNIX} |
|
57 |
{$IFDEF DARWIN} |
|
58 |
SDLLibName = 'SDL'; |
|
59 |
{$ELSE} |
|
60 |
SDLLibName = 'libSDL.so'; |
|
61 |
{$ENDIF} |
|
62 |
{$ENDIF} |
|
2575 | 63 |
SDL_SWSURFACE = $00000000; |
64 |
SDL_HWSURFACE = $00000001; |
|
65 |
SDL_SRCALPHA = $00010000; |
|
66 |
SDL_INIT_VIDEO = $00000020; |
|
67 |
SDL_INIT_AUDIO = $00000010; |
|
2428 | 68 |
SDL_INIT_JOYSTICK = $00000200; |
2240
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2200
diff
changeset
|
69 |
|
2575 | 70 |
SDL_APPINPUTFOCUS = 2; |
2390 | 71 |
|
2241
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
72 |
{$IFDEF SDL13} |
2379 | 73 |
SDL_ASYNCBLIT = $08000000; |
74 |
SDL_ANYFORMAT = $10000000; |
|
75 |
SDL_HWPALETTE = $00200000; |
|
76 |
SDL_DOUBLEBUF = $00400000; |
|
77 |
SDL_FULLSCREEN = $00800000; |
|
78 |
SDL_HWACCEL = $08000000; |
|
79 |
SDL_SRCCOLORKEY = $00020000; |
|
80 |
SDL_RLEACCEL = $08000000; |
|
81 |
SDL_NOFRAME = $02000000; |
|
82 |
SDL_OPENGL = $04000000; |
|
83 |
SDL_RESIZABLE = $01000000; |
|
2241
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
84 |
{$ELSE} |
2379 | 85 |
SDL_ASYNCBLIT = $00000004; |
86 |
SDL_ANYFORMAT = $00100000; |
|
87 |
SDL_HWPALETTE = $20000000; |
|
88 |
SDL_DOUBLEBUF = $40000000; |
|
89 |
SDL_FULLSCREEN = $80000000; |
|
90 |
SDL_HWACCEL = $00000100; |
|
91 |
SDL_SRCCOLORKEY = $00001000; |
|
92 |
SDL_RLEACCEL = $00004000; |
|
93 |
SDL_NOFRAME = $00000020; |
|
94 |
SDL_OPENGL = $00000002; |
|
95 |
SDL_RESIZABLE = $00000010; |
|
2241
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
96 |
{$ENDIF} |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
883
diff
changeset
|
97 |
|
2390 | 98 |
{*begin sdl_event binding*} |
2575 | 99 |
SDL_NOEVENT = 0; |
100 |
SDL_KEYDOWN = 2; |
|
101 |
SDL_KEYUP = 3; |
|
2428 | 102 |
SDL_VIDEORESIZE = 16; // TODO: outdated? no longer in SDL 1.3? |
4 | 103 |
|
2242 | 104 |
{$IFDEF SDL13} |
2390 | 105 |
SDL_WINDOWEVENT = 1; |
106 |
SDL_TEXTINPUT = 4; |
|
2379 | 107 |
SDL_MOUSEMOTION = 5; |
2390 | 108 |
SDL_MOUSEBUTTONDOWN = 6; |
109 |
SDL_MOUSEBUTTONUP = 7; |
|
110 |
SDL_MOUSEWHEEL = 8; //different handling, should create SDL_MouseWheelEvent type |
|
2428 | 111 |
SDL_JOYAXIS = 10; |
112 |
SDL_JOYHAT = 12; |
|
113 |
SDL_JOYBUTTONDOWN = 13; |
|
114 |
SDL_JOYBUTTONUP = 14; |
|
2575 | 115 |
SDL_QUITEV = 15; |
2390 | 116 |
{$ELSE} |
117 |
SDL_ACTIVEEVENT = 1; |
|
118 |
SDL_MOUSEBUTTONDOWN = 5; |
|
119 |
SDL_MOUSEBUTTONUP = 6; |
|
120 |
SDL_BUTTON_WHEELDUP = 4; |
|
121 |
SDL_BUTTON_WHEELDOWN = 5; |
|
2428 | 122 |
SDL_JOYAXIS = 7; |
123 |
SDL_JOYHAT = 9; |
|
124 |
SDL_JOYBUTTONDOWN = 10; |
|
125 |
SDL_JOYBUTTONUP = 11; |
|
2575 | 126 |
SDL_QUITEV = 12; |
2242 | 127 |
{$ENDIF} |
2390 | 128 |
{*end sdl_event binding*} |
753 | 129 |
|
2567 | 130 |
|
2586
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
131 |
{$IFDEF ENDIAN_LITTLE} |
2379 | 132 |
RMask = $000000FF; |
133 |
GMask = $0000FF00; |
|
134 |
BMask = $00FF0000; |
|
135 |
AMask = $FF000000; |
|
2586
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
136 |
{$ELSE} |
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
137 |
RMask = $FF000000; |
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
138 |
GMask = $00FF0000; |
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
139 |
BMask = $0000FF00; |
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
140 |
AMask = $000000FF; |
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
141 |
{$ENDIF} |
2575 | 142 |
|
754 | 143 |
|
4 | 144 |
type PSDL_Rect = ^TSDL_Rect; |
2379 | 145 |
TSDL_Rect = record |
2390 | 146 |
{$IFDEF SDL13} |
2379 | 147 |
x, y, w, h: LongInt; |
2390 | 148 |
{$ELSE} |
2379 | 149 |
x, y: SmallInt; |
150 |
w, h: Word; |
|
2390 | 151 |
{$ENDIF} |
2379 | 152 |
end; |
4 | 153 |
|
2379 | 154 |
TPoint = record |
155 |
X: LongInt; |
|
156 |
Y: LongInt; |
|
157 |
end; |
|
4 | 158 |
|
2379 | 159 |
PSDL_PixelFormat = ^TSDL_PixelFormat; |
160 |
TSDL_PixelFormat = record |
|
161 |
palette: Pointer; |
|
162 |
BitsPerPixel : Byte; |
|
163 |
BytesPerPixel: Byte; |
|
164 |
Rloss : Byte; |
|
165 |
Gloss : Byte; |
|
166 |
Bloss : Byte; |
|
167 |
Aloss : Byte; |
|
168 |
Rshift: Byte; |
|
169 |
Gshift: Byte; |
|
170 |
Bshift: Byte; |
|
171 |
Ashift: Byte; |
|
172 |
RMask : Longword; |
|
173 |
GMask : Longword; |
|
174 |
BMask : Longword; |
|
175 |
AMask : Longword; |
|
176 |
colorkey: Longword; |
|
177 |
alpha : Byte; |
|
178 |
end; |
|
4 | 179 |
|
180 |
||
2379 | 181 |
PSDL_Surface = ^TSDL_Surface; |
182 |
TSDL_Surface = record |
|
183 |
flags : Longword; |
|
184 |
format: PSDL_PixelFormat; |
|
185 |
w, h : LongInt; |
|
186 |
pitch : Word; |
|
187 |
pixels: Pointer; |
|
188 |
offset: LongInt; |
|
189 |
end; |
|
4 | 190 |
|
2248
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2242
diff
changeset
|
191 |
|
2379 | 192 |
PSDL_Color = ^TSDL_Color; |
193 |
TSDL_Color = record |
|
194 |
case byte of |
|
195 |
0: (r: Byte; |
|
196 |
g: Byte; |
|
197 |
b: Byte; |
|
198 |
unused: Byte; |
|
199 |
); |
|
200 |
1: (value: Longword); |
|
201 |
end; |
|
4 | 202 |
|
2248
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2242
diff
changeset
|
203 |
|
2379 | 204 |
PSDL_RWops = ^TSDL_RWops; |
205 |
TSeek = function( context: PSDL_RWops; offset: LongInt; whence: LongInt ): LongInt; cdecl; |
|
206 |
TRead = function( context: PSDL_RWops; Ptr: Pointer; size: LongInt; maxnum : LongInt ): LongInt; cdecl; |
|
207 |
TWrite = function( context: PSDL_RWops; Ptr: Pointer; size: LongInt; num: LongInt ): LongInt; cdecl; |
|
208 |
TClose = function( context: PSDL_RWops ): LongInt; cdecl; |
|
4 | 209 |
|
2379 | 210 |
TStdio = record |
211 |
autoclose: LongInt; |
|
212 |
fp: pointer; |
|
213 |
end; |
|
214 |
||
215 |
TMem = record |
|
216 |
base: PByte; |
|
217 |
here: PByte; |
|
218 |
stop: PByte; |
|
219 |
end; |
|
4 | 220 |
|
2379 | 221 |
TUnknown = record |
222 |
data1: Pointer; |
|
223 |
end; |
|
4 | 224 |
|
2379 | 225 |
TSDL_RWops = record |
226 |
seek: TSeek; |
|
227 |
read: TRead; |
|
228 |
write: TWrite; |
|
229 |
close: TClose; |
|
230 |
type_: Longword; |
|
231 |
case Byte of |
|
232 |
0: (stdio: TStdio); |
|
233 |
1: (mem: TMem); |
|
234 |
2: (unknown: TUnknown); |
|
235 |
end; |
|
236 |
||
237 |
TSDL_KeySym = record |
|
238 |
scancode: Byte; |
|
239 |
sym: Longword; |
|
240 |
modifier: Longword; |
|
241 |
unicode: Word; |
|
242 |
end; |
|
4 | 243 |
|
2379 | 244 |
TSDL_ActiveEvent = record |
245 |
type_: byte; |
|
246 |
gain: byte; |
|
247 |
state: byte; |
|
248 |
end; |
|
4 | 249 |
|
2379 | 250 |
TSDL_KeyboardEvent = record |
251 |
type_: Byte; |
|
252 |
which: Byte; |
|
253 |
state: Byte; |
|
254 |
keysym: TSDL_KeySym; |
|
255 |
end; |
|
308 | 256 |
|
2379 | 257 |
TSDL_MouseButtonEvent = record |
258 |
_type, |
|
259 |
which, |
|
260 |
button, |
|
261 |
state: byte; |
|
262 |
x, y: word; |
|
263 |
end; |
|
2376 | 264 |
|
2379 | 265 |
TSDL_GLattr = ( |
266 |
SDL_GL_RED_SIZE, |
|
267 |
SDL_GL_GREEN_SIZE, |
|
268 |
SDL_GL_BLUE_SIZE, |
|
269 |
SDL_GL_ALPHA_SIZE, |
|
270 |
SDL_GL_BUFFER_SIZE, |
|
271 |
SDL_GL_DOUBLEBUFFER, |
|
272 |
SDL_GL_DEPTH_SIZE, |
|
273 |
SDL_GL_STENCIL_SIZE, |
|
274 |
SDL_GL_ACCUM_RED_SIZE, |
|
275 |
SDL_GL_ACCUM_GREEN_SIZE, |
|
276 |
SDL_GL_ACCUM_BLUE_SIZE, |
|
277 |
SDL_GL_ACCUM_ALPHA_SIZE, |
|
278 |
SDL_GL_STEREO, |
|
279 |
SDL_GL_MULTISAMPLEBUFFERS, |
|
280 |
SDL_GL_MULTISAMPLESAMPLES, |
|
281 |
SDL_GL_ACCELERATED_VISUAL, |
|
282 |
SDL_GL_RETAINED_BACKING, |
|
283 |
SDL_GL_CONTEXT_MAJOR_VERSION, |
|
284 |
SDL_GL_CONTEXT_MINOR_VERSION |
|
285 |
); |
|
2586
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
286 |
|
2376 | 287 |
|
2252 | 288 |
{$IFDEF SDL13} |
2586
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
289 |
TSDL_ArrayByteOrder = ( // array component order, low byte -> high byte |
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
290 |
SDL_ARRAYORDER_NONE, |
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
291 |
SDL_ARRAYORDER_RGB, |
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
292 |
SDL_ARRAYORDER_RGBA, |
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
293 |
SDL_ARRAYORDER_ARGB, |
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
294 |
SDL_ARRAYORDER_BGR, |
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
295 |
SDL_ARRAYORDER_BGRA, |
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
296 |
SDL_ARRAYORDER_ABGR |
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
297 |
); |
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
298 |
|
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
299 |
TSDL_MouseMotionEvent = record |
2252 | 300 |
type_: byte; |
301 |
which: byte; |
|
302 |
state: byte; |
|
303 |
x : LongInt; |
|
304 |
y : LongInt; |
|
305 |
xrel : LongInt; |
|
306 |
yrel : LongInt; |
|
307 |
end; |
|
308 |
{$ENDIF} |
|
4 | 309 |
|
310 |
TSDL_QuitEvent = record |
|
311 |
type_: Byte; |
|
312 |
end; |
|
2252 | 313 |
TSDL_ResizeEvent = record |
1120 | 314 |
type_: Byte; |
315 |
w, h: LongInt; |
|
316 |
end; |
|
317 |
||
2428 | 318 |
TSDL_JoyAxisEvent = record |
319 |
type_: Byte; |
|
320 |
which: Byte; |
|
321 |
axis: Byte; |
|
322 |
value: LongInt; |
|
323 |
end; |
|
324 |
||
325 |
TSDL_JoyHatEvent = record |
|
326 |
type_: Byte; |
|
327 |
which: Byte; |
|
328 |
hat: Byte; |
|
329 |
value: Byte; |
|
330 |
end; |
|
331 |
||
332 |
TSDL_JoyButtonEvent = record |
|
333 |
type_: Byte; |
|
334 |
which: Byte; |
|
335 |
button: Byte; |
|
336 |
state: Byte; |
|
337 |
end; |
|
338 |
||
2586
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
339 |
PSDL_Event = ^TSDL_Event; |
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
340 |
TSDL_Event = record |
4 | 341 |
case Byte of |
2390 | 342 |
{$IFDEF SDL13} |
2575 | 343 |
//doublecheck the type of WINDOWEVENT TEXTINPUT |
344 |
SDL_NOEVENT: (type_: byte); |
|
345 |
SDL_WINDOWEVENT: (active: TSDL_ActiveEvent); |
|
346 |
SDL_KEYDOWN, |
|
2390 | 347 |
SDL_KEYUP: (key: TSDL_KeyboardEvent); |
2575 | 348 |
SDL_TEXTINPUT: (txtin: byte); |
349 |
SDL_MOUSEMOTION: (motion: TSDL_MouseMotionEvent); |
|
350 |
SDL_MOUSEBUTTONDOWN, |
|
351 |
SDL_MOUSEBUTTONUP: (button: TSDL_MouseButtonEvent); |
|
2390 | 352 |
{$ELSE} |
2575 | 353 |
SDL_NOEVENT: (type_: byte); |
354 |
SDL_ACTIVEEVENT: (active: TSDL_ActiveEvent); |
|
355 |
SDL_KEYDOWN, |
|
356 |
SDL_KEYUP: (key: TSDL_KeyboardEvent); |
|
357 |
SDL_QUITEV: (quit: TSDL_QuitEvent); |
|
358 |
SDL_VIDEORESIZE: (resize: TSDL_ResizeEvent); |
|
359 |
SDL_MOUSEBUTTONDOWN, |
|
360 |
SDL_MOUSEBUTTONUP: (button: TSDL_MouseButtonEvent); |
|
2252 | 361 |
{$ENDIF} |
2575 | 362 |
SDL_JOYAXIS: (jaxis: TSDL_JoyAxisEvent); |
363 |
SDL_JOYHAT: (jhat: TSDL_JoyHatEvent); |
|
364 |
SDL_JOYBUTTONDOWN, |
|
365 |
SDL_JOYBUTTONUP: (jbutton: TSDL_JoyButtonEvent); |
|
366 |
end; |
|
4 | 367 |
|
368 |
PByteArray = ^TByteArray; |
|
316 | 369 |
TByteArray = array[0..65535] of Byte; |
370 |
PLongWordArray = ^TLongWordArray; |
|
371 |
TLongWordArray = array[0..16383] of LongWord; |
|
4 | 372 |
|
433 | 373 |
PSDL_Thread = Pointer; |
374 |
PSDL_mutex = Pointer; |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
883
diff
changeset
|
375 |
|
432 | 376 |
function SDL_Init(flags: Longword): LongInt; cdecl; external SDLLibName; |
4 | 377 |
procedure SDL_Quit; cdecl; external SDLLibName; |
432 | 378 |
function SDL_VideoDriverName(var namebuf; maxlen: LongInt): PChar; cdecl; external SDLLibName; |
379 |
procedure SDL_EnableUNICODE(enable: LongInt); cdecl; external SDLLibName; |
|
4 | 380 |
|
381 |
procedure SDL_Delay(msec: Longword); cdecl; external SDLLibName; |
|
382 |
function SDL_GetTicks: Longword; cdecl; external SDLLibName; |
|
383 |
||
384 |
function SDL_MustLock(Surface: PSDL_Surface): Boolean; |
|
432 | 385 |
function SDL_LockSurface(Surface: PSDL_Surface): LongInt; cdecl; external SDLLibName; |
4 | 386 |
procedure SDL_UnlockSurface(Surface: PSDL_Surface); cdecl; external SDLLibName; |
387 |
||
388 |
function SDL_GetError: PChar; cdecl; external SDLLibName; |
|
389 |
||
432 | 390 |
function SDL_SetVideoMode(width, height, bpp: LongInt; flags: Longword): PSDL_Surface; cdecl; external SDLLibName; |
391 |
function SDL_CreateRGBSurface(flags: Longword; Width, Height, Depth: LongInt; RMask, GMask, BMask, AMask: Longword): PSDL_Surface; cdecl; external SDLLibName; |
|
392 |
function SDL_CreateRGBSurfaceFrom(pixels: Pointer; width, height, depth, pitch: LongInt; RMask, GMask, BMask, AMask: Longword): PSDL_Surface; cdecl; external SDLLibName; |
|
4 | 393 |
procedure SDL_FreeSurface(Surface: PSDL_Surface); cdecl; external SDLLibName; |
105 | 394 |
function SDL_SetColorKey(surface: PSDL_Surface; flag, key: Longword): LongInt; cdecl; external SDLLibName; |
2017 | 395 |
function SDL_SetAlpha(surface: PSDL_Surface; flag, key: Longword): LongInt; cdecl; external SDLLibName; |
2248
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2242
diff
changeset
|
396 |
function SDL_ConvertSurface(src: PSDL_Surface; fmt: PSDL_PixelFormat; flags: LongInt): PSDL_Surface; cdecl; external SDLLibName; |
4 | 397 |
|
105 | 398 |
function SDL_UpperBlit(src: PSDL_Surface; srcrect: PSDL_Rect; dst: PSDL_Surface; dstrect: PSDL_Rect): LongInt; cdecl; external SDLLibName; |
399 |
function SDL_FillRect(dst: PSDL_Surface; dstrect: PSDL_Rect; color: Longword): LongInt; cdecl; external SDLLibName; |
|
400 |
procedure SDL_UpdateRect(Screen: PSDL_Surface; x, y: LongInt; w, h: Longword); cdecl; external SDLLibName; |
|
432 | 401 |
function SDL_Flip(Screen: PSDL_Surface): LongInt; cdecl; external SDLLibName; |
4 | 402 |
|
403 |
procedure SDL_GetRGB(pixel: Longword; fmt: PSDL_PixelFormat; r, g, b: PByte); cdecl; external SDLLibName; |
|
107 | 404 |
function SDL_MapRGB(format: PSDL_PixelFormat; r, g, b: Byte): Longword; cdecl; external SDLLibName; |
2575 | 405 |
function SDL_MapRGBA(format: PSDL_PixelFormat; r, g, b, a: Byte): Longword; cdecl; external SDLLibName; |
4 | 406 |
|
407 |
function SDL_DisplayFormat(Surface: PSDL_Surface): PSDL_Surface; cdecl; external SDLLibName; |
|
35 | 408 |
function SDL_DisplayFormatAlpha(Surface: PSDL_Surface): PSDL_Surface; cdecl; external SDLLibName; |
4 | 409 |
|
410 |
function SDL_RWFromFile(filename, mode: PChar): PSDL_RWops; cdecl; external SDLLibName; |
|
432 | 411 |
function SDL_SaveBMP_RW(surface: PSDL_Surface; dst: PSDL_RWops; freedst: LongInt): LongInt; cdecl; external SDLLibName; |
4 | 412 |
|
2152 | 413 |
{$IFDEF SDL13} |
414 |
function SDL_GetKeyboardState(numkeys: PLongInt): PByteArray; cdecl; external SDLLibName; |
|
2242 | 415 |
function SDL_GetMouseState(index: LongInt; x, y: PLongInt): Byte; cdecl; external SDLLibName; |
416 |
function SDL_SelectMouse(index: LongInt): LongInt; cdecl; external SDLLibName; |
|
417 |
function SDL_GetRelativeMouseState(index: LongInt; x, y: PLongInt): Byte; cdecl; external SDLLibName; |
|
2579 | 418 |
function SDL_GetNumMice: LongInt; cdecl; external SDLLibName; |
2586
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2579
diff
changeset
|
419 |
function SDL_PixelFormatEnumToMasks(format: TSDL_ArrayByteOrder; bpp: PLongInt; Rmask, Gmask, Bmask, Amask: PLongInt): boolean; cdecl; external SDLLibName; |
2152 | 420 |
{$ELSE} |
105 | 421 |
function SDL_GetKeyState(numkeys: PLongInt): PByteArray; cdecl; external SDLLibName; |
2242 | 422 |
function SDL_GetMouseState(x, y: PLongInt): Byte; cdecl; external SDLLibName; |
2152 | 423 |
{$ENDIF} |
4 | 424 |
function SDL_GetKeyName(key: Longword): PChar; cdecl; external SDLLibName; |
425 |
procedure SDL_WarpMouse(x, y: Word); cdecl; external SDLLibName; |
|
426 |
||
2428 | 427 |
procedure SDL_PumpEvents; cdecl; external SDLLibName; |
432 | 428 |
function SDL_PollEvent(event: PSDL_Event): LongInt; cdecl; external SDLLibName; |
4 | 429 |
|
432 | 430 |
function SDL_ShowCursor(toggle: LongInt): LongInt; cdecl; external SDLLibName; |
4 | 431 |
|
432 |
procedure SDL_WM_SetCaption(title: PChar; icon: PChar); cdecl; external SDLLibName; |
|
433 |
||
433 | 434 |
function SDL_CreateMutex: PSDL_mutex; cdecl; external SDLLibName; |
435 |
procedure SDL_DestroyMutex(mutex: PSDL_mutex); cdecl; external SDLLibName; |
|
436 |
function SDL_LockMutex(mutex: PSDL_mutex): LongInt; cdecl; external SDLLibName name 'SDL_mutexP'; |
|
437 |
function SDL_UnlockMutex(mutex: PSDL_mutex): LongInt; cdecl; external SDLLibName name 'SDL_mutexV'; |
|
438 |
||
2252 | 439 |
function SDL_GL_SetAttribute(attr: TSDL_GLattr; value: LongInt): LongInt; cdecl; external SDLLibName; |
753 | 440 |
procedure SDL_GL_SwapBuffers(); cdecl; external SDLLibName; |
441 |
||
2254 | 442 |
{$IFDEF SDL13} |
443 |
{$IFDEF IPHONEOS} |
|
444 |
function SDL_iPhoneKeyboardShow(windowID: LongInt): LongInt; cdecl; external SDLLibName; |
|
445 |
function SDL_iPhoneKeyboardHide(windowID: LongInt): LongInt; cdecl; external SDLLibName; |
|
446 |
function SDL_iPhoneKeyboardIsShown(windowID: LongInt): boolean; cdecl; external SDLLibName; |
|
447 |
function SDL_iPhoneKeyboardToggle(windowID: LongInt): LongInt; cdecl; external SDLLibName; |
|
448 |
{$ENDIF} |
|
449 |
{$ENDIF} |
|
450 |
||
4 | 451 |
|
452 |
||
2428 | 453 |
// Joystick/Controller support |
454 |
type PSDLJoystick = ^TSDLJoystick; |
|
455 |
TSDLJoystick = record |
|
456 |
end; |
|
457 |
||
458 |
function SDL_NumJoysticks: LongInt; cdecl; external SDLLibName; |
|
459 |
function SDL_JoystickName(idx: LongInt): PChar; cdecl; external SDLLibName; |
|
460 |
function SDL_JoystickOpen(idx: LongInt): PSDLJoystick; cdecl; external SDLLibName; |
|
461 |
function SDL_JoystickOpened(idx: LongInt): LongInt; cdecl; external SDLLibName; |
|
462 |
function SDL_JoystickIndex(joy: PSDLJoystick): LongInt; cdecl; external SDLLibName; |
|
463 |
function SDL_JoystickNumAxes(joy: PSDLJoystick): LongInt; cdecl; external SDLLibName; |
|
464 |
function SDL_JoystickNumBalls(joy: PSDLJoystick): LongInt; cdecl; external SDLLibName; |
|
465 |
function SDL_JoystickNumHats(joy: PSDLJoystick): LongInt; cdecl; external SDLLibName; |
|
466 |
function SDL_JoystickNumButtons(joy: PSDLJoystick): LongInt; cdecl; external SDLLibName; |
|
467 |
procedure SDL_JoystickUpdate; cdecl; external SDLLibName; |
|
468 |
function SDL_JoystickEventState(state: LongInt): LongInt; cdecl; external SDLLibName; |
|
469 |
function SDL_JoystickGetAxis(joy: PSDLJoystick; axis: LongInt): Word; cdecl; external SDLLibName; |
|
470 |
const SDL_HAT_CENTERED = $00; |
|
471 |
SDL_HAT_UP = $01; |
|
472 |
SDL_HAT_RIGHT = $02; |
|
473 |
SDL_HAT_DOWN = $04; |
|
474 |
SDL_HAT_LEFT = $08; |
|
475 |
SDL_HAT_RIGHTUP = SDL_HAT_RIGHT or SDL_HAT_UP; |
|
476 |
SDL_HAT_RIGHTDOWN = SDL_HAT_RIGHT or SDL_HAT_DOWN; |
|
477 |
SDL_HAT_LEFTUP = SDL_HAT_LEFT or SDL_HAT_UP; |
|
478 |
SDL_HAT_LEFTDOWN = SDL_HAT_LEFT or SDL_HAT_DOWN; |
|
479 |
function SDL_JoystickGetBall(joy: PSDLJoystick; ball: LongInt; dx: PInteger; dy: PInteger): Word; cdecl; external SDLLibName; |
|
480 |
function SDL_JoystickGetHat(joy: PSDLJoystick; hat: LongInt): Byte; cdecl; external SDLLibName; |
|
481 |
function SDL_JoystickGetButton(joy: PSDLJoystick; button: LongInt): Byte; cdecl; external SDLLibName; |
|
482 |
procedure SDL_JoystickClose(joy: PSDLJoystick); cdecl; external SDLLibName; |
|
483 |
||
2515
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
484 |
(* TTF *) |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
485 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
486 |
const {$IFDEF WIN32} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
487 |
SDL_TTFLibName = 'SDL_ttf.dll'; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
488 |
{$ENDIF} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
489 |
{$IFDEF UNIX} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
490 |
{$IFDEF DARWIN} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
491 |
SDL_TTFLibName = 'SDL_ttf'; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
492 |
{$ELSE} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
493 |
SDL_TTFLibName = 'libSDL_ttf.so'; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
494 |
{$ENDIF} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
495 |
{$ENDIF} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
496 |
TTF_STYLE_NORMAL = 0; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
497 |
TTF_STYLE_BOLD = 1; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
498 |
TTF_STYLE_ITALIC = 2; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
499 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
500 |
type PTTF_Font = ^TTTF_font; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
501 |
TTTF_Font = record |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
502 |
end; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
503 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
504 |
function TTF_Init: LongInt; cdecl; external SDL_TTFLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
505 |
procedure TTF_Quit; cdecl; external SDL_TTFLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
506 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
507 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
508 |
function TTF_SizeUTF8(font: PTTF_Font; const text: PChar; var w, h: LongInt): LongInt; cdecl; external SDL_TTFLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
509 |
(* TSDL_Color -> Longword conversion is workaround over freepascal bug. |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
510 |
See http://www.freepascal.org/mantis/view.php?id=7613 for details *) |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
511 |
function TTF_RenderUTF8_Solid(font: PTTF_Font; const text: PChar; fg: Longword): PSDL_Surface; cdecl; external SDL_TTFLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
512 |
function TTF_RenderUTF8_Blended(font: PTTF_Font; const text: PChar; fg: Longword): PSDL_Surface; cdecl; external SDL_TTFLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
513 |
function TTF_RenderUTF8_Shaded(font: PTTF_Font; const text: PChar; fg, bg: Longword): PSDL_Surface; cdecl; external SDL_TTFLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
514 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
515 |
function TTF_OpenFont(const filename: PChar; size: LongInt): PTTF_Font; cdecl; external SDL_TTFLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
516 |
procedure TTF_SetFontStyle(font: PTTF_Font; style: LongInt); cdecl; external SDL_TTFLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
517 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
518 |
(* SDL_mixer *) |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
519 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
520 |
const {$IFDEF WIN32} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
521 |
SDL_MixerLibName = 'SDL_mixer.dll'; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
522 |
{$ENDIF} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
523 |
{$IFDEF UNIX} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
524 |
{$IFDEF DARWIN} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
525 |
SDL_MixerLibName = 'SDL_mixer'; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
526 |
{$ELSE} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
527 |
SDL_MixerLibName = 'libSDL_mixer.so'; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
528 |
{$ENDIF} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
529 |
{$ENDIF} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
530 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
531 |
const MIX_MAX_VOLUME = 128; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
532 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
533 |
type PMixChunk = ^TMixChunk; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
534 |
TMixChunk = record |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
535 |
allocated: Longword; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
536 |
abuf : PByte; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
537 |
alen : Longword; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
538 |
volume : PByte; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
539 |
end; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
540 |
TMusic = (MUS_CMD, MUS_WAV, MUS_MOD, MUS_MID, MUS_OGG, MUS_MP3); |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
541 |
TMix_Fading = (MIX_NO_FADING, MIX_FADING_OUT, MIX_FADING_IN); |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
542 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
543 |
TMidiSong = record |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
544 |
samples : LongInt; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
545 |
events : pointer; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
546 |
end; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
547 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
548 |
TMusicUnion = record |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
549 |
case Byte of |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
550 |
0: ( midi : TMidiSong ); |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
551 |
1: ( ogg : pointer); |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
552 |
end; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
553 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
554 |
PMixMusic = ^TMixMusic; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
555 |
TMixMusic = record |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
556 |
end; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
557 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
558 |
function Mix_OpenAudio(frequency: LongInt; format: Word; channels: LongInt; chunksize: LongInt): LongInt; cdecl; external SDL_MixerLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
559 |
procedure Mix_CloseAudio; cdecl; external SDL_MixerLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
560 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
561 |
function Mix_Volume(channel: LongInt; volume: LongInt): LongInt; cdecl; external SDL_MixerLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
562 |
function Mix_SetDistance(channel: LongInt; distance: Byte): LongInt; cdecl; external SDL_MixerLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
563 |
function Mix_VolumeMusic(volume: LongInt): LongInt; cdecl; external SDL_MixerLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
564 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
565 |
function Mix_AllocateChannels(numchans: LongInt): LongInt; cdecl; external SDL_MixerLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
566 |
procedure Mix_FreeChunk(chunk: PMixChunk); cdecl; external SDL_MixerLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
567 |
procedure Mix_FreeMusic(music: PMixMusic); cdecl; external SDL_MixerLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
568 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
569 |
function Mix_LoadWAV_RW(src: PSDL_RWops; freesrc: LongInt): PMixChunk; cdecl; external SDL_MixerLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
570 |
function Mix_LoadMUS(const filename: PChar): PMixMusic; cdecl; external SDL_MixerLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
571 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
572 |
function Mix_Playing(channel: LongInt): LongInt; cdecl; external SDL_MixerLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
573 |
function Mix_PlayingMusic: LongInt; cdecl; external SDL_MixerLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
574 |
function Mix_FadeInMusic(music: PMixMusic; loops: LongInt; ms: LongInt): LongInt; cdecl; external SDL_MixerLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
575 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
576 |
function Mix_PlayChannelTimed(channel: LongInt; chunk: PMixChunk; loops: LongInt; ticks: LongInt): LongInt; cdecl; external SDL_MixerLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
577 |
function Mix_PlayMusic(music: PMixMusic; loops: LongInt): LongInt; cdecl; external SDL_MixerLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
578 |
function Mix_PausedMusic(music: PMixMusic): LongInt; cdecl; external SDL_MixerLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
579 |
function Mix_PauseMusic(music: PMixMusic): LongInt; cdecl; external SDL_MixerLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
580 |
function Mix_ResumeMusic(music: PMixMusic): LongInt; cdecl; external SDL_MixerLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
581 |
function Mix_HaltChannel(channel: LongInt): LongInt; cdecl; external SDL_MixerLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
582 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
583 |
(* SDL_image *) |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
584 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
585 |
const {$IFDEF WIN32} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
586 |
SDL_ImageLibName = 'SDL_image.dll'; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
587 |
{$ENDIF} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
588 |
{$IFDEF UNIX} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
589 |
{$IFDEF DARWIN} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
590 |
SDL_ImageLibName = 'SDL_image'; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
591 |
{$ELSE} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
592 |
SDL_ImageLibName = 'libSDL_image.so'; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
593 |
{$ENDIF} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
594 |
{$ENDIF} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
595 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
596 |
function IMG_Load(const _file: PChar): PSDL_Surface; cdecl; external SDL_ImageLibName; |
2575 | 597 |
function IMG_LoadPNG_RW(rwop: PSDL_RWops): PSDL_Surface; cdecl; external SDL_ImageLibName; |
2515
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
598 |
(* SDL_net *) |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
599 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
600 |
const {$IFDEF WIN32} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
601 |
SDL_NetLibName = 'SDL_net.dll'; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
602 |
{$ENDIF} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
603 |
{$IFDEF UNIX} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
604 |
{$IFDEF DARWIN} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
605 |
SDL_NetLibName = 'SDL_net'; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
606 |
{$ELSE} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
607 |
SDL_NetLibName = 'libSDL_net.so'; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
608 |
{$ENDIF} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
609 |
{$ENDIF} |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
610 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
611 |
type TIPAddress = record |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
612 |
host: Longword; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
613 |
port: Word; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
614 |
end; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
615 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
616 |
PTCPSocket = ^TTCPSocket; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
617 |
TTCPSocket = record |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
618 |
ready: LongInt; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
619 |
channel: LongInt; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
620 |
remoteAddress: TIPaddress; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
621 |
localAddress: TIPaddress; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
622 |
sflag: LongInt; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
623 |
end; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
624 |
PSDLNet_SocketSet = ^TSDLNet_SocketSet; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
625 |
TSDLNet_SocketSet = record |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
626 |
numsockets, |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
627 |
maxsockets: LongInt; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
628 |
sockets: PTCPSocket; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
629 |
end; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
630 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
631 |
function SDLNet_Init: LongInt; cdecl; external SDL_NetLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
632 |
procedure SDLNet_Quit; cdecl; external SDL_NetLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
633 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
634 |
function SDLNet_AllocSocketSet(maxsockets: LongInt): PSDLNet_SocketSet; cdecl; external SDL_NetLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
635 |
function SDLNet_ResolveHost(var address: TIPaddress; host: PCHar; port: Word): LongInt; cdecl; external SDL_NetLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
636 |
function SDLNet_TCP_Accept(server: PTCPsocket): PTCPSocket; cdecl; external SDL_NetLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
637 |
function SDLNet_TCP_Open(var ip: TIPaddress): PTCPSocket; cdecl; external SDL_NetLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
638 |
function SDLNet_TCP_Send(sock: PTCPsocket; data: Pointer; len: LongInt): LongInt; cdecl; external SDL_NetLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
639 |
function SDLNet_TCP_Recv(sock: PTCPsocket; data: Pointer; len: LongInt): LongInt; cdecl; external SDL_NetLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
640 |
procedure SDLNet_TCP_Close(sock: PTCPsocket); cdecl; external SDL_NetLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
641 |
procedure SDLNet_FreeSocketSet(_set: PSDLNet_SocketSet); cdecl; external SDL_NetLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
642 |
function SDLNet_AddSocket(_set: PSDLNet_SocketSet; sock: PTCPSocket): LongInt; cdecl; external SDL_NetLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
643 |
function SDLNet_CheckSockets(_set: PSDLNet_SocketSet; timeout: LongInt): LongInt; cdecl; external SDL_NetLibName; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
644 |
|
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
645 |
procedure SDLNet_Write16(value: Word; buf: pointer); |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
646 |
procedure SDLNet_Write32(value: LongWord; buf: pointer); |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
647 |
function SDLNet_Read16(buf: pointer): Word; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
648 |
function SDLNet_Read32(buf: pointer): LongWord; |
51d3f4b6293a
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents:
2477
diff
changeset
|
649 |
|
4 | 650 |
implementation |
651 |
||
652 |
function SDL_MustLock(Surface: PSDL_Surface): Boolean; |
|
653 |
begin |
|
432 | 654 |
SDL_MustLock:= ( surface^.offset <> 0 ) |
4 | 655 |
or(( surface^.flags and (SDL_HWSURFACE or SDL_ASYNCBLIT or SDL_RLEACCEL)) <> 0) |
656 |
end; |
|
657 |
||
459
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
658 |
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
|
659 |
begin |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
660 |
PByteArray(buf)^[1]:= value; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
661 |
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
|
662 |
end; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
663 |
|
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
664 |
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
|
665 |
begin |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
666 |
PByteArray(buf)^[3]:= value; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
667 |
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
|
668 |
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
|
669 |
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
|
670 |
end; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
671 |
|
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
672 |
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
|
673 |
begin |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
674 |
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
|
675 |
(PByteArray(buf)^[0] shl 8) |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
676 |
end; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
677 |
|
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
678 |
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
|
679 |
begin |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
680 |
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
|
681 |
(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
|
682 |
(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
|
683 |
(PByteArray(buf)^[0] shl 24) |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
684 |
end; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
685 |
|
4 | 686 |
end. |
2241
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
687 |