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