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