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