author | koda |
Sun, 27 Sep 2009 22:25:27 +0000 | |
changeset 2399 | ddde0ac1472b |
parent 2390 | 57fb33ab04a4 |
child 2428 | 6800f8aa0184 |
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 |
|
2241
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
22 |
{$IFDEF LINUX or FREEBSD} |
4 | 23 |
{$DEFINE UNIX} |
24 |
{$ENDIF} |
|
25 |
||
26 |
{$IFDEF UNIX} |
|
1903 | 27 |
{$IFNDEF DARWIN} |
1556
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
28 |
{$linklib c} |
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
29 |
{$ENDIF} |
3369f016b79d
Patch for engine to successfully build on Mac OS X by Michael Schindler
unc0rr
parents:
1225
diff
changeset
|
30 |
{$linklib pthread} |
4 | 31 |
{$ENDIF} |
32 |
||
432 | 33 |
{$PACKRECORDS C} |
4 | 34 |
|
1819 | 35 |
{$IFDEF DARWIN} |
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
36 |
{$PASCALMAINNAME SDL_main} |
2152 | 37 |
{$IFNDEF IPHONEOS} |
2200
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
38 |
{$linkframework Cocoa} |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
39 |
{$linkframework SDL} |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
40 |
{$linkframework SDL_net} |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
41 |
{$linkframework SDL_image} |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
42 |
{$linkframework SDL_ttf} |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
43 |
{$linklib openalbridge} |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
44 |
{$linklib SDLmain} |
8192be6e3aef
koda/Smaxx changes to openal for crossplatform building
nemo
parents:
2191
diff
changeset
|
45 |
{$linklib gcc} |
1819 | 46 |
{$ENDIF} |
1916 | 47 |
{$ENDIF} |
1819 | 48 |
|
1997 | 49 |
(* SDL *) |
2390 | 50 |
const |
51 |
{$IFDEF WIN32} |
|
52 |
SDLLibName = 'SDL.dll'; |
|
53 |
{$ENDIF} |
|
54 |
{$IFDEF UNIX} |
|
55 |
{$IFDEF DARWIN} |
|
56 |
SDLLibName = 'SDL'; |
|
57 |
{$ELSE} |
|
58 |
SDLLibName = 'libSDL.so'; |
|
59 |
{$ENDIF} |
|
60 |
{$ENDIF} |
|
2379 | 61 |
SDL_SWSURFACE = $00000000; |
62 |
SDL_HWSURFACE = $00000001; |
|
63 |
SDL_SRCALPHA = $00010000; |
|
64 |
SDL_INIT_VIDEO = $00000020; |
|
65 |
SDL_INIT_AUDIO = $00000010; |
|
2240
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2200
diff
changeset
|
66 |
|
2390 | 67 |
SDL_APPINPUTFOCUS=$00000010; |
68 |
||
2241
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
69 |
{$IFDEF SDL13} |
2379 | 70 |
SDL_ASYNCBLIT = $08000000; |
71 |
SDL_ANYFORMAT = $10000000; |
|
72 |
SDL_HWPALETTE = $00200000; |
|
73 |
SDL_DOUBLEBUF = $00400000; |
|
74 |
SDL_FULLSCREEN = $00800000; |
|
75 |
SDL_HWACCEL = $08000000; |
|
76 |
SDL_SRCCOLORKEY = $00020000; |
|
77 |
SDL_RLEACCEL = $08000000; |
|
78 |
SDL_NOFRAME = $02000000; |
|
79 |
SDL_OPENGL = $04000000; |
|
80 |
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
|
81 |
{$ELSE} |
2379 | 82 |
SDL_ASYNCBLIT = $00000004; |
83 |
SDL_ANYFORMAT = $00100000; |
|
84 |
SDL_HWPALETTE = $20000000; |
|
85 |
SDL_DOUBLEBUF = $40000000; |
|
86 |
SDL_FULLSCREEN = $80000000; |
|
87 |
SDL_HWACCEL = $00000100; |
|
88 |
SDL_SRCCOLORKEY = $00001000; |
|
89 |
SDL_RLEACCEL = $00004000; |
|
90 |
SDL_NOFRAME = $00000020; |
|
91 |
SDL_OPENGL = $00000002; |
|
92 |
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
|
93 |
{$ENDIF} |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
883
diff
changeset
|
94 |
|
2390 | 95 |
{*begin sdl_event binding*} |
2379 | 96 |
SDL_NOEVENT = 0; |
97 |
SDL_KEYDOWN = 2; |
|
98 |
SDL_KEYUP = 3; |
|
99 |
SDL_QUITEV = 12; |
|
100 |
SDL_VIDEORESIZE = 16; |
|
4 | 101 |
|
2242 | 102 |
{$IFDEF SDL13} |
2390 | 103 |
SDL_WINDOWEVENT = 1; |
104 |
SDL_TEXTINPUT = 4; |
|
2379 | 105 |
SDL_MOUSEMOTION = 5; |
2390 | 106 |
SDL_MOUSEBUTTONDOWN = 6; |
107 |
SDL_MOUSEBUTTONUP = 7; |
|
108 |
SDL_MOUSEWHEEL = 8; //different handling, should create SDL_MouseWheelEvent type |
|
109 |
{$ELSE} |
|
110 |
SDL_ACTIVEEVENT = 1; |
|
111 |
SDL_MOUSEBUTTONDOWN = 5; |
|
112 |
SDL_MOUSEBUTTONUP = 6; |
|
113 |
SDL_BUTTON_WHEELDUP = 4; |
|
114 |
SDL_BUTTON_WHEELDOWN = 5; |
|
2242 | 115 |
{$ENDIF} |
2390 | 116 |
{*end sdl_event binding*} |
753 | 117 |
|
2379 | 118 |
RMask = $000000FF; |
119 |
GMask = $0000FF00; |
|
120 |
BMask = $00FF0000; |
|
121 |
AMask = $FF000000; |
|
754 | 122 |
|
4 | 123 |
type PSDL_Rect = ^TSDL_Rect; |
2379 | 124 |
TSDL_Rect = record |
2390 | 125 |
{$IFDEF SDL13} |
2379 | 126 |
x, y, w, h: LongInt; |
2390 | 127 |
{$ELSE} |
2379 | 128 |
x, y: SmallInt; |
129 |
w, h: Word; |
|
2390 | 130 |
{$ENDIF} |
2379 | 131 |
end; |
4 | 132 |
|
2379 | 133 |
TPoint = record |
134 |
X: LongInt; |
|
135 |
Y: LongInt; |
|
136 |
end; |
|
4 | 137 |
|
2379 | 138 |
PSDL_PixelFormat = ^TSDL_PixelFormat; |
139 |
TSDL_PixelFormat = record |
|
140 |
palette: Pointer; |
|
141 |
BitsPerPixel : Byte; |
|
142 |
BytesPerPixel: Byte; |
|
143 |
Rloss : Byte; |
|
144 |
Gloss : Byte; |
|
145 |
Bloss : Byte; |
|
146 |
Aloss : Byte; |
|
147 |
Rshift: Byte; |
|
148 |
Gshift: Byte; |
|
149 |
Bshift: Byte; |
|
150 |
Ashift: Byte; |
|
151 |
RMask : Longword; |
|
152 |
GMask : Longword; |
|
153 |
BMask : Longword; |
|
154 |
AMask : Longword; |
|
155 |
colorkey: Longword; |
|
156 |
alpha : Byte; |
|
157 |
end; |
|
4 | 158 |
|
159 |
||
2379 | 160 |
PSDL_Surface = ^TSDL_Surface; |
161 |
TSDL_Surface = record |
|
162 |
flags : Longword; |
|
163 |
format: PSDL_PixelFormat; |
|
164 |
w, h : LongInt; |
|
165 |
pitch : Word; |
|
166 |
pixels: Pointer; |
|
167 |
offset: LongInt; |
|
168 |
end; |
|
4 | 169 |
|
2248
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2242
diff
changeset
|
170 |
|
2379 | 171 |
PSDL_Color = ^TSDL_Color; |
172 |
TSDL_Color = record |
|
173 |
case byte of |
|
174 |
0: (r: Byte; |
|
175 |
g: Byte; |
|
176 |
b: Byte; |
|
177 |
unused: Byte; |
|
178 |
); |
|
179 |
1: (value: Longword); |
|
180 |
end; |
|
4 | 181 |
|
2248
26e11cb27c61
real fix for iphone color (reverting previous commit)
koda
parents:
2242
diff
changeset
|
182 |
|
2379 | 183 |
PSDL_RWops = ^TSDL_RWops; |
184 |
TSeek = function( context: PSDL_RWops; offset: LongInt; whence: LongInt ): LongInt; cdecl; |
|
185 |
TRead = function( context: PSDL_RWops; Ptr: Pointer; size: LongInt; maxnum : LongInt ): LongInt; cdecl; |
|
186 |
TWrite = function( context: PSDL_RWops; Ptr: Pointer; size: LongInt; num: LongInt ): LongInt; cdecl; |
|
187 |
TClose = function( context: PSDL_RWops ): LongInt; cdecl; |
|
4 | 188 |
|
2379 | 189 |
TStdio = record |
190 |
autoclose: LongInt; |
|
191 |
fp: pointer; |
|
192 |
end; |
|
193 |
||
194 |
TMem = record |
|
195 |
base: PByte; |
|
196 |
here: PByte; |
|
197 |
stop: PByte; |
|
198 |
end; |
|
4 | 199 |
|
2379 | 200 |
TUnknown = record |
201 |
data1: Pointer; |
|
202 |
end; |
|
4 | 203 |
|
2379 | 204 |
TSDL_RWops = record |
205 |
seek: TSeek; |
|
206 |
read: TRead; |
|
207 |
write: TWrite; |
|
208 |
close: TClose; |
|
209 |
type_: Longword; |
|
210 |
case Byte of |
|
211 |
0: (stdio: TStdio); |
|
212 |
1: (mem: TMem); |
|
213 |
2: (unknown: TUnknown); |
|
214 |
end; |
|
215 |
||
216 |
TSDL_KeySym = record |
|
217 |
scancode: Byte; |
|
218 |
sym: Longword; |
|
219 |
modifier: Longword; |
|
220 |
unicode: Word; |
|
221 |
end; |
|
4 | 222 |
|
2379 | 223 |
TSDL_ActiveEvent = record |
224 |
type_: byte; |
|
225 |
gain: byte; |
|
226 |
state: byte; |
|
227 |
end; |
|
4 | 228 |
|
2379 | 229 |
TSDL_KeyboardEvent = record |
230 |
type_: Byte; |
|
231 |
which: Byte; |
|
232 |
state: Byte; |
|
233 |
keysym: TSDL_KeySym; |
|
234 |
end; |
|
308 | 235 |
|
2379 | 236 |
TSDL_MouseButtonEvent = record |
237 |
_type, |
|
238 |
which, |
|
239 |
button, |
|
240 |
state: byte; |
|
241 |
x, y: word; |
|
242 |
end; |
|
2376 | 243 |
|
2379 | 244 |
TSDL_GLattr = ( |
245 |
SDL_GL_RED_SIZE, |
|
246 |
SDL_GL_GREEN_SIZE, |
|
247 |
SDL_GL_BLUE_SIZE, |
|
248 |
SDL_GL_ALPHA_SIZE, |
|
249 |
SDL_GL_BUFFER_SIZE, |
|
250 |
SDL_GL_DOUBLEBUFFER, |
|
251 |
SDL_GL_DEPTH_SIZE, |
|
252 |
SDL_GL_STENCIL_SIZE, |
|
253 |
SDL_GL_ACCUM_RED_SIZE, |
|
254 |
SDL_GL_ACCUM_GREEN_SIZE, |
|
255 |
SDL_GL_ACCUM_BLUE_SIZE, |
|
256 |
SDL_GL_ACCUM_ALPHA_SIZE, |
|
257 |
SDL_GL_STEREO, |
|
258 |
SDL_GL_MULTISAMPLEBUFFERS, |
|
259 |
SDL_GL_MULTISAMPLESAMPLES, |
|
260 |
SDL_GL_ACCELERATED_VISUAL, |
|
261 |
SDL_GL_RETAINED_BACKING, |
|
262 |
SDL_GL_CONTEXT_MAJOR_VERSION, |
|
263 |
SDL_GL_CONTEXT_MINOR_VERSION |
|
264 |
); |
|
2376 | 265 |
|
2252 | 266 |
{$IFDEF SDL13} |
267 |
TSDL_MouseMotionEvent = record |
|
268 |
type_: byte; |
|
269 |
which: byte; |
|
270 |
state: byte; |
|
271 |
x : LongInt; |
|
272 |
y : LongInt; |
|
273 |
xrel : LongInt; |
|
274 |
yrel : LongInt; |
|
275 |
end; |
|
276 |
{$ENDIF} |
|
4 | 277 |
|
278 |
TSDL_QuitEvent = record |
|
279 |
type_: Byte; |
|
280 |
end; |
|
2252 | 281 |
TSDL_ResizeEvent = record |
1120 | 282 |
type_: Byte; |
283 |
w, h: LongInt; |
|
284 |
end; |
|
285 |
||
4 | 286 |
PSDL_Event = ^TSDL_Event; |
287 |
TSDL_Event = record |
|
288 |
case Byte of |
|
2390 | 289 |
{$IFDEF SDL13} |
290 |
//doublecheck the type of WINDOWEVENT TEXTINPUT |
|
291 |
SDL_NOEVENT: (type_: byte); |
|
292 |
SDL_WINDOWEVENT: (active: TSDL_ActiveEvent); |
|
293 |
SDL_KEYDOWN, |
|
294 |
SDL_KEYUP: (key: TSDL_KeyboardEvent); |
|
295 |
SDL_TEXTINPUT: (txtin: byte); |
|
296 |
SDL_MOUSEMOTION: (motion: TSDL_MouseMotionEvent); |
|
297 |
SDL_MOUSEBUTTONDOWN, |
|
298 |
SDL_MOUSEBUTTONUP: (button: TSDL_MouseButtonEvent); |
|
299 |
{$ELSE} |
|
4 | 300 |
SDL_NOEVENT: (type_: byte); |
308 | 301 |
SDL_ACTIVEEVENT: (active: TSDL_ActiveEvent); |
2390 | 302 |
SDL_KEYDOWN, |
303 |
SDL_KEYUP: (key: TSDL_KeyboardEvent); |
|
4 | 304 |
SDL_QUITEV: (quit: TSDL_QuitEvent); |
1120 | 305 |
SDL_VIDEORESIZE: (resize: TSDL_ResizeEvent); |
2379 | 306 |
SDL_MOUSEBUTTONDOWN, |
307 |
SDL_MOUSEBUTTONUP: (button: TSDL_MouseButtonEvent); |
|
2252 | 308 |
{$ENDIF} |
309 |
end; |
|
4 | 310 |
|
311 |
PByteArray = ^TByteArray; |
|
316 | 312 |
TByteArray = array[0..65535] of Byte; |
313 |
PLongWordArray = ^TLongWordArray; |
|
314 |
TLongWordArray = array[0..16383] of LongWord; |
|
4 | 315 |
|
433 | 316 |
PSDL_Thread = Pointer; |
317 |
PSDL_mutex = Pointer; |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
883
diff
changeset
|
318 |
|
432 | 319 |
function SDL_Init(flags: Longword): LongInt; cdecl; external SDLLibName; |
4 | 320 |
procedure SDL_Quit; cdecl; external SDLLibName; |
432 | 321 |
function SDL_VideoDriverName(var namebuf; maxlen: LongInt): PChar; cdecl; external SDLLibName; |
322 |
procedure SDL_EnableUNICODE(enable: LongInt); cdecl; external SDLLibName; |
|
4 | 323 |
|
324 |
procedure SDL_Delay(msec: Longword); cdecl; external SDLLibName; |
|
325 |
function SDL_GetTicks: Longword; cdecl; external SDLLibName; |
|
326 |
||
327 |
function SDL_MustLock(Surface: PSDL_Surface): Boolean; |
|
432 | 328 |
function SDL_LockSurface(Surface: PSDL_Surface): LongInt; cdecl; external SDLLibName; |
4 | 329 |
procedure SDL_UnlockSurface(Surface: PSDL_Surface); cdecl; external SDLLibName; |
330 |
||
331 |
function SDL_GetError: PChar; cdecl; external SDLLibName; |
|
332 |
||
432 | 333 |
function SDL_SetVideoMode(width, height, bpp: LongInt; flags: Longword): PSDL_Surface; cdecl; external SDLLibName; |
334 |
function SDL_CreateRGBSurface(flags: Longword; Width, Height, Depth: LongInt; RMask, GMask, BMask, AMask: Longword): PSDL_Surface; cdecl; external SDLLibName; |
|
335 |
function SDL_CreateRGBSurfaceFrom(pixels: Pointer; width, height, depth, pitch: LongInt; RMask, GMask, BMask, AMask: Longword): PSDL_Surface; cdecl; external SDLLibName; |
|
4 | 336 |
procedure SDL_FreeSurface(Surface: PSDL_Surface); cdecl; external SDLLibName; |
105 | 337 |
function SDL_SetColorKey(surface: PSDL_Surface; flag, key: Longword): LongInt; cdecl; external SDLLibName; |
2017 | 338 |
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
|
339 |
function SDL_ConvertSurface(src: PSDL_Surface; fmt: PSDL_PixelFormat; flags: LongInt): PSDL_Surface; cdecl; external SDLLibName; |
4 | 340 |
|
105 | 341 |
function SDL_UpperBlit(src: PSDL_Surface; srcrect: PSDL_Rect; dst: PSDL_Surface; dstrect: PSDL_Rect): LongInt; cdecl; external SDLLibName; |
342 |
function SDL_FillRect(dst: PSDL_Surface; dstrect: PSDL_Rect; color: Longword): LongInt; cdecl; external SDLLibName; |
|
343 |
procedure SDL_UpdateRect(Screen: PSDL_Surface; x, y: LongInt; w, h: Longword); cdecl; external SDLLibName; |
|
432 | 344 |
function SDL_Flip(Screen: PSDL_Surface): LongInt; cdecl; external SDLLibName; |
4 | 345 |
|
346 |
procedure SDL_GetRGB(pixel: Longword; fmt: PSDL_PixelFormat; r, g, b: PByte); cdecl; external SDLLibName; |
|
107 | 347 |
function SDL_MapRGB(format: PSDL_PixelFormat; r, g, b: Byte): Longword; cdecl; external SDLLibName; |
4 | 348 |
|
349 |
function SDL_DisplayFormat(Surface: PSDL_Surface): PSDL_Surface; cdecl; external SDLLibName; |
|
35 | 350 |
function SDL_DisplayFormatAlpha(Surface: PSDL_Surface): PSDL_Surface; cdecl; external SDLLibName; |
4 | 351 |
|
352 |
function SDL_RWFromFile(filename, mode: PChar): PSDL_RWops; cdecl; external SDLLibName; |
|
432 | 353 |
function SDL_SaveBMP_RW(surface: PSDL_Surface; dst: PSDL_RWops; freedst: LongInt): LongInt; cdecl; external SDLLibName; |
4 | 354 |
|
2152 | 355 |
{$IFDEF SDL13} |
356 |
function SDL_GetKeyboardState(numkeys: PLongInt): PByteArray; cdecl; external SDLLibName; |
|
2242 | 357 |
function SDL_GetMouseState(index: LongInt; x, y: PLongInt): Byte; cdecl; external SDLLibName; |
358 |
function SDL_SelectMouse(index: LongInt): LongInt; cdecl; external SDLLibName; |
|
359 |
function SDL_GetRelativeMouseState(index: LongInt; x, y: PLongInt): Byte; cdecl; external SDLLibName; |
|
360 |
function SDL_GetNumMice : LongInt; cdecl; external SDLLibName; |
|
2152 | 361 |
{$ELSE} |
105 | 362 |
function SDL_GetKeyState(numkeys: PLongInt): PByteArray; cdecl; external SDLLibName; |
2242 | 363 |
function SDL_GetMouseState(x, y: PLongInt): Byte; cdecl; external SDLLibName; |
2152 | 364 |
{$ENDIF} |
4 | 365 |
function SDL_GetKeyName(key: Longword): PChar; cdecl; external SDLLibName; |
366 |
procedure SDL_WarpMouse(x, y: Word); cdecl; external SDLLibName; |
|
367 |
||
432 | 368 |
function SDL_PollEvent(event: PSDL_Event): LongInt; cdecl; external SDLLibName; |
4 | 369 |
|
432 | 370 |
function SDL_ShowCursor(toggle: LongInt): LongInt; cdecl; external SDLLibName; |
4 | 371 |
|
372 |
procedure SDL_WM_SetCaption(title: PChar; icon: PChar); cdecl; external SDLLibName; |
|
373 |
||
433 | 374 |
function SDL_CreateMutex: PSDL_mutex; cdecl; external SDLLibName; |
375 |
procedure SDL_DestroyMutex(mutex: PSDL_mutex); cdecl; external SDLLibName; |
|
376 |
function SDL_LockMutex(mutex: PSDL_mutex): LongInt; cdecl; external SDLLibName name 'SDL_mutexP'; |
|
377 |
function SDL_UnlockMutex(mutex: PSDL_mutex): LongInt; cdecl; external SDLLibName name 'SDL_mutexV'; |
|
378 |
||
2252 | 379 |
function SDL_GL_SetAttribute(attr: TSDL_GLattr; value: LongInt): LongInt; cdecl; external SDLLibName; |
753 | 380 |
procedure SDL_GL_SwapBuffers(); cdecl; external SDLLibName; |
381 |
||
2254 | 382 |
{$IFDEF SDL13} |
383 |
{$IFDEF IPHONEOS} |
|
384 |
function SDL_iPhoneKeyboardShow(windowID: LongInt): LongInt; cdecl; external SDLLibName; |
|
385 |
function SDL_iPhoneKeyboardHide(windowID: LongInt): LongInt; cdecl; external SDLLibName; |
|
386 |
function SDL_iPhoneKeyboardIsShown(windowID: LongInt): boolean; cdecl; external SDLLibName; |
|
387 |
function SDL_iPhoneKeyboardToggle(windowID: LongInt): LongInt; cdecl; external SDLLibName; |
|
388 |
{$ENDIF} |
|
389 |
{$ENDIF} |
|
390 |
||
4 | 391 |
(* TTF *) |
392 |
||
393 |
const {$IFDEF WIN32} |
|
394 |
SDL_TTFLibName = 'SDL_ttf.dll'; |
|
395 |
{$ENDIF} |
|
396 |
{$IFDEF UNIX} |
|
2241
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
397 |
{$IFDEF DARWIN} |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
398 |
SDL_TTFLibName = 'SDL_ttf'; |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
399 |
{$ELSE} |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
400 |
SDL_TTFLibName = 'libSDL_ttf.so'; |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
401 |
{$ENDIF} |
4 | 402 |
{$ENDIF} |
202 | 403 |
TTF_STYLE_NORMAL = 0; |
404 |
TTF_STYLE_BOLD = 1; |
|
405 |
TTF_STYLE_ITALIC = 2; |
|
4 | 406 |
|
407 |
type PTTF_Font = ^TTTF_font; |
|
408 |
TTTF_Font = record |
|
409 |
end; |
|
410 |
||
2254 | 411 |
function TTF_Init: LongInt; cdecl; external SDL_TTFLibName; |
4 | 412 |
procedure TTF_Quit; cdecl; external SDL_TTFLibName; |
413 |
||
414 |
||
2254 | 415 |
function TTF_SizeUTF8(font: PTTF_Font; const text: PChar; var w, h: LongInt): LongInt; cdecl; external SDL_TTFLibName; |
206
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
416 |
(* TSDL_Color -> Longword conversion is workaround over freepascal bug. |
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
417 |
See http://www.freepascal.org/mantis/view.php?id=7613 for details *) |
2254 | 418 |
function TTF_RenderUTF8_Solid(font: PTTF_Font; const text: PChar; fg: Longword): PSDL_Surface; cdecl; external SDL_TTFLibName; |
419 |
function TTF_RenderUTF8_Blended(font: PTTF_Font; const text: PChar; fg: Longword): PSDL_Surface; cdecl; external SDL_TTFLibName; |
|
420 |
function TTF_RenderUTF8_Shaded(font: PTTF_Font; const text: PChar; fg, bg: Longword): PSDL_Surface; cdecl; external SDL_TTFLibName; |
|
206
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
421 |
|
2254 | 422 |
function TTF_OpenFont(const filename: PChar; size: LongInt): PTTF_Font; cdecl; external SDL_TTFLibName; |
432 | 423 |
procedure TTF_SetFontStyle(font: PTTF_Font; style: LongInt); cdecl; external SDL_TTFLibName; |
4 | 424 |
|
425 |
||
1997 | 426 |
(* SDL_image *) |
4 | 427 |
|
428 |
const {$IFDEF WIN32} |
|
429 |
SDL_ImageLibName = 'SDL_image.dll'; |
|
430 |
{$ENDIF} |
|
431 |
{$IFDEF UNIX} |
|
2241
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
432 |
{$IFDEF DARWIN} |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
433 |
SDL_ImageLibName = 'SDL_image'; |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
434 |
{$ELSE} |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
435 |
SDL_ImageLibName = 'libSDL_image.so'; |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
436 |
{$ENDIF} |
4 | 437 |
{$ENDIF} |
438 |
||
439 |
function IMG_Load(const _file: PChar): PSDL_Surface; cdecl; external SDL_ImageLibName; |
|
440 |
||
1997 | 441 |
(* SDL_net *) |
4 | 442 |
|
443 |
const {$IFDEF WIN32} |
|
444 |
SDL_NetLibName = 'SDL_net.dll'; |
|
445 |
{$ENDIF} |
|
446 |
{$IFDEF UNIX} |
|
2241
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
447 |
{$IFDEF DARWIN} |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
448 |
SDL_NetLibName = 'SDL_net'; |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
449 |
{$ELSE} |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
450 |
SDL_NetLibName = 'libSDL_net.so'; |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
451 |
{$ENDIF} |
4 | 452 |
{$ENDIF} |
453 |
||
454 |
type TIPAddress = record |
|
455 |
host: Longword; |
|
456 |
port: Word; |
|
457 |
end; |
|
458 |
||
459 |
PTCPSocket = ^TTCPSocket; |
|
460 |
TTCPSocket = record |
|
106 | 461 |
ready: LongInt; |
105 | 462 |
channel: LongInt; |
106 | 463 |
remoteAddress: TIPaddress; |
4 | 464 |
localAddress: TIPaddress; |
105 | 465 |
sflag: LongInt; |
4 | 466 |
end; |
467 |
PSDLNet_SocketSet = ^TSDLNet_SocketSet; |
|
468 |
TSDLNet_SocketSet = record |
|
469 |
numsockets, |
|
105 | 470 |
maxsockets: LongInt; |
4 | 471 |
sockets: PTCPSocket; |
472 |
end; |
|
473 |
||
2254 | 474 |
function SDLNet_Init: LongInt; cdecl; external SDL_NetLibName; |
4 | 475 |
procedure SDLNet_Quit; cdecl; external SDL_NetLibName; |
476 |
||
2254 | 477 |
function SDLNet_AllocSocketSet(maxsockets: LongInt): PSDLNet_SocketSet; cdecl; external SDL_NetLibName; |
478 |
function SDLNet_ResolveHost(var address: TIPaddress; host: PCHar; port: Word): LongInt; cdecl; external SDL_NetLibName; |
|
479 |
function SDLNet_TCP_Accept(server: PTCPsocket): PTCPSocket; cdecl; external SDL_NetLibName; |
|
480 |
function SDLNet_TCP_Open(var ip: TIPaddress): PTCPSocket; cdecl; external SDL_NetLibName; |
|
481 |
function SDLNet_TCP_Send(sock: PTCPsocket; data: Pointer; len: LongInt): LongInt; cdecl; external SDL_NetLibName; |
|
482 |
function SDLNet_TCP_Recv(sock: PTCPsocket; data: Pointer; len: LongInt): LongInt; cdecl; external SDL_NetLibName; |
|
4 | 483 |
procedure SDLNet_TCP_Close(sock: PTCPsocket); cdecl; external SDL_NetLibName; |
484 |
procedure SDLNet_FreeSocketSet(_set: PSDLNet_SocketSet); cdecl; external SDL_NetLibName; |
|
2254 | 485 |
function SDLNet_AddSocket(_set: PSDLNet_SocketSet; sock: PTCPSocket): LongInt; cdecl; external SDL_NetLibName; |
486 |
function SDLNet_CheckSockets(_set: PSDLNet_SocketSet; timeout: LongInt): LongInt; cdecl; external SDL_NetLibName; |
|
4 | 487 |
|
459
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
488 |
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
|
489 |
procedure SDLNet_Write32(value: LongWord; buf: pointer); |
2254 | 490 |
function SDLNet_Read16(buf: pointer): Word; |
491 |
function SDLNet_Read32(buf: pointer): LongWord; |
|
4 | 492 |
|
493 |
implementation |
|
494 |
||
495 |
function SDL_MustLock(Surface: PSDL_Surface): Boolean; |
|
496 |
begin |
|
432 | 497 |
SDL_MustLock:= ( surface^.offset <> 0 ) |
4 | 498 |
or(( surface^.flags and (SDL_HWSURFACE or SDL_ASYNCBLIT or SDL_RLEACCEL)) <> 0) |
499 |
end; |
|
500 |
||
459
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
501 |
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
|
502 |
begin |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
503 |
PByteArray(buf)^[1]:= value; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
504 |
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
|
505 |
end; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
506 |
|
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
507 |
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
|
508 |
begin |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
509 |
PByteArray(buf)^[3]:= value; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
510 |
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
|
511 |
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
|
512 |
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
|
513 |
end; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
514 |
|
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
515 |
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
|
516 |
begin |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
517 |
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
|
518 |
(PByteArray(buf)^[0] shl 8) |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
519 |
end; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
520 |
|
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
521 |
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
|
522 |
begin |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
523 |
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
|
524 |
(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
|
525 |
(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
|
526 |
(PByteArray(buf)^[0] shl 24) |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
527 |
end; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
528 |
|
4 | 529 |
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
|
530 |