author | koda |
Thu, 09 Jul 2009 00:56:26 +0000 | |
changeset 2244 | 853a1db1cff6 |
parent 2242 | 2e8251933b71 |
child 2248 | 26e11cb27c61 |
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 *) |
4 | 50 |
const {$IFDEF WIN32} |
51 |
SDLLibName = 'SDL.dll'; |
|
52 |
{$ENDIF} |
|
53 |
{$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
|
54 |
{$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
|
55 |
SDLLibName = 'SDL'; |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
56 |
{$ELSE} |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
57 |
SDLLibName = 'libSDL.so'; |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
58 |
{$ENDIF} |
4 | 59 |
{$ENDIF} |
60 |
SDL_SWSURFACE = $00000000; |
|
61 |
SDL_HWSURFACE = $00000001; |
|
2240
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2200
diff
changeset
|
62 |
SDL_SRCALPHA = $00010000; |
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2200
diff
changeset
|
63 |
SDL_INIT_VIDEO = $00000020; |
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2200
diff
changeset
|
64 |
SDL_INIT_AUDIO = $00000010; |
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2200
diff
changeset
|
65 |
|
2241
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
66 |
{$IFDEF SDL13} |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
67 |
SDL_ASYNCBLIT = $08000000; |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
68 |
SDL_ANYFORMAT = $10000000; |
2240
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2200
diff
changeset
|
69 |
SDL_HWPALETTE = $00200000; |
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2200
diff
changeset
|
70 |
SDL_DOUBLEBUF = $00400000; |
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2200
diff
changeset
|
71 |
SDL_FULLSCREEN = $00800000; |
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2200
diff
changeset
|
72 |
SDL_HWACCEL = $08000000; |
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2200
diff
changeset
|
73 |
SDL_SRCCOLORKEY = $00020000; |
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2200
diff
changeset
|
74 |
SDL_RLEACCEL = $08000000; |
2241
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
75 |
SDL_NOFRAME = $02000000; |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
76 |
SDL_OPENGL = $04000000; |
2240
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2200
diff
changeset
|
77 |
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
|
78 |
{$ELSE} |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
79 |
SDL_ASYNCBLIT = $00000004; |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
80 |
SDL_ANYFORMAT = $00100000; |
4 | 81 |
SDL_HWPALETTE = $20000000; |
358 | 82 |
SDL_DOUBLEBUF = $40000000; |
4 | 83 |
SDL_FULLSCREEN = $80000000; |
84 |
SDL_HWACCEL = $00000100; |
|
85 |
SDL_SRCCOLORKEY = $00001000; |
|
86 |
SDL_RLEACCEL = $00004000; |
|
2240
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2200
diff
changeset
|
87 |
SDL_NOFRAME = $00000020; |
2241
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
88 |
SDL_OPENGL = $00000002; |
2240
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2200
diff
changeset
|
89 |
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
|
90 |
{$ENDIF} |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
883
diff
changeset
|
91 |
|
4 | 92 |
SDL_NOEVENT = 0; |
308 | 93 |
SDL_ACTIVEEVENT = 1; |
4 | 94 |
SDL_KEYDOWN = 2; |
95 |
SDL_KEYUP = 3; |
|
96 |
SDL_QUITEV = 12; |
|
1120 | 97 |
SDL_VIDEORESIZE = 16; |
4 | 98 |
|
2242 | 99 |
{$IFDEF SDL13} |
100 |
SDL_MOUSEMOTION = 5; |
|
101 |
{$ENDIF} |
|
102 |
||
308 | 103 |
SDL_APPINPUTFOCUS = 2; |
2240
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2200
diff
changeset
|
104 |
SDL_GL_DOUBLEBUFFER = 5; |
753 | 105 |
|
2240
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2200
diff
changeset
|
106 |
RMask = $000000FF; |
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2200
diff
changeset
|
107 |
GMask = $0000FF00; |
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2200
diff
changeset
|
108 |
BMask = $00FF0000; |
754 | 109 |
AMask = $FF000000; |
110 |
||
4 | 111 |
type PSDL_Rect = ^TSDL_Rect; |
112 |
TSDL_Rect = record |
|
113 |
x, y: SmallInt; |
|
114 |
w, h: Word; |
|
115 |
end; |
|
116 |
||
117 |
TPoint = record |
|
105 | 118 |
X: LongInt; |
119 |
Y: LongInt; |
|
4 | 120 |
end; |
121 |
||
122 |
PSDL_PixelFormat = ^TSDL_PixelFormat; |
|
123 |
TSDL_PixelFormat = record |
|
124 |
palette: Pointer; |
|
125 |
BitsPerPixel : Byte; |
|
126 |
BytesPerPixel: Byte; |
|
127 |
Rloss : Byte; |
|
128 |
Gloss : Byte; |
|
129 |
Bloss : Byte; |
|
130 |
Aloss : Byte; |
|
131 |
Rshift: Byte; |
|
132 |
Gshift: Byte; |
|
133 |
Bshift: Byte; |
|
134 |
Ashift: Byte; |
|
135 |
RMask : Longword; |
|
136 |
GMask : Longword; |
|
137 |
BMask : Longword; |
|
138 |
AMask : Longword; |
|
139 |
colorkey: Longword; |
|
140 |
alpha : Byte; |
|
141 |
end; |
|
142 |
||
143 |
||
144 |
PSDL_Surface = ^TSDL_Surface; |
|
145 |
TSDL_Surface = record |
|
146 |
flags : Longword; |
|
147 |
format: PSDL_PixelFormat; |
|
432 | 148 |
w, h : LongInt; |
4 | 149 |
pitch : Word; |
150 |
pixels: Pointer; |
|
432 | 151 |
offset: LongInt; |
4 | 152 |
end; |
153 |
||
154 |
PSDL_Color = ^TSDL_Color; |
|
155 |
TSDL_Color = record |
|
206
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
156 |
case byte of |
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
157 |
0: (r: Byte; |
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
158 |
g: Byte; |
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
159 |
b: Byte; |
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
160 |
unused: Byte; |
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
161 |
); |
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
162 |
1: (value: Longword); |
4 | 163 |
end; |
164 |
||
165 |
PSDL_RWops = ^TSDL_RWops; |
|
105 | 166 |
TSeek = function( context: PSDL_RWops; offset: LongInt; whence: LongInt ): LongInt; cdecl; |
167 |
TRead = function( context: PSDL_RWops; Ptr: Pointer; size: LongInt; maxnum : LongInt ): LongInt; cdecl; |
|
168 |
TWrite = function( context: PSDL_RWops; Ptr: Pointer; size: LongInt; num: LongInt ): LongInt; cdecl; |
|
169 |
TClose = function( context: PSDL_RWops ): LongInt; cdecl; |
|
4 | 170 |
|
171 |
TStdio = record |
|
105 | 172 |
autoclose: LongInt; |
4 | 173 |
fp: pointer; |
174 |
end; |
|
175 |
||
176 |
TMem = record |
|
177 |
base: PByte; |
|
178 |
here: PByte; |
|
179 |
stop: PByte; |
|
180 |
end; |
|
181 |
||
182 |
TUnknown = record |
|
183 |
data1: Pointer; |
|
184 |
end; |
|
185 |
||
186 |
TSDL_RWops = record |
|
187 |
seek: TSeek; |
|
188 |
read: TRead; |
|
189 |
write: TWrite; |
|
190 |
close: TClose; |
|
191 |
type_: Longword; |
|
192 |
case Byte of |
|
193 |
0: (stdio: TStdio); |
|
194 |
1: (mem: TMem); |
|
195 |
2: (unknown: TUnknown); |
|
196 |
end; |
|
197 |
||
198 |
TSDL_KeySym = record |
|
199 |
scancode: Byte; |
|
106 | 200 |
sym: Longword; |
4 | 201 |
modifier: Longword; |
202 |
unicode: Word; |
|
203 |
end; |
|
204 |
||
308 | 205 |
TSDL_ActiveEvent = record |
206 |
type_: byte; |
|
1120 | 207 |
gain: byte; |
208 |
state: byte; |
|
209 |
end; |
|
308 | 210 |
|
4 | 211 |
TSDL_KeyboardEvent = record |
212 |
type_: Byte; |
|
213 |
which: Byte; |
|
214 |
state: Byte; |
|
215 |
keysym: TSDL_KeySym; |
|
216 |
end; |
|
2242 | 217 |
|
218 |
{$IFDEF SDL13} |
|
219 |
TSDL_MouseMotionEvent = record |
|
220 |
type_: byte; |
|
221 |
which: byte; |
|
222 |
state: byte; |
|
223 |
x : LongInt; |
|
224 |
y : LongInt; |
|
225 |
xrel : LongInt; |
|
226 |
yrel : LongInt; |
|
227 |
end; |
|
228 |
{$ENDIF} |
|
4 | 229 |
|
230 |
TSDL_QuitEvent = record |
|
231 |
type_: Byte; |
|
232 |
end; |
|
2242 | 233 |
TSDL_ResizeEvent = record |
1120 | 234 |
type_: Byte; |
235 |
w, h: LongInt; |
|
236 |
end; |
|
237 |
||
4 | 238 |
PSDL_Event = ^TSDL_Event; |
239 |
TSDL_Event = record |
|
240 |
case Byte of |
|
241 |
SDL_NOEVENT: (type_: byte); |
|
308 | 242 |
SDL_ACTIVEEVENT: (active: TSDL_ActiveEvent); |
4 | 243 |
SDL_KEYDOWN, SDL_KEYUP: (key: TSDL_KeyboardEvent); |
244 |
SDL_QUITEV: (quit: TSDL_QuitEvent); |
|
1120 | 245 |
SDL_VIDEORESIZE: (resize: TSDL_ResizeEvent); |
2242 | 246 |
{$IFDEF SDL13} |
247 |
SDL_MOUSEMOTION: (motion: TSDL_MouseMotionEvent); |
|
248 |
{$ENDIF} |
|
249 |
end; |
|
4 | 250 |
|
251 |
PByteArray = ^TByteArray; |
|
316 | 252 |
TByteArray = array[0..65535] of Byte; |
253 |
PLongWordArray = ^TLongWordArray; |
|
254 |
TLongWordArray = array[0..16383] of LongWord; |
|
4 | 255 |
|
433 | 256 |
PSDL_Thread = Pointer; |
257 |
PSDL_mutex = Pointer; |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
883
diff
changeset
|
258 |
|
432 | 259 |
function SDL_Init(flags: Longword): LongInt; cdecl; external SDLLibName; |
4 | 260 |
procedure SDL_Quit; cdecl; external SDLLibName; |
432 | 261 |
function SDL_VideoDriverName(var namebuf; maxlen: LongInt): PChar; cdecl; external SDLLibName; |
262 |
procedure SDL_EnableUNICODE(enable: LongInt); cdecl; external SDLLibName; |
|
4 | 263 |
|
264 |
procedure SDL_Delay(msec: Longword); cdecl; external SDLLibName; |
|
265 |
function SDL_GetTicks: Longword; cdecl; external SDLLibName; |
|
266 |
||
267 |
function SDL_MustLock(Surface: PSDL_Surface): Boolean; |
|
432 | 268 |
function SDL_LockSurface(Surface: PSDL_Surface): LongInt; cdecl; external SDLLibName; |
4 | 269 |
procedure SDL_UnlockSurface(Surface: PSDL_Surface); cdecl; external SDLLibName; |
270 |
||
271 |
function SDL_GetError: PChar; cdecl; external SDLLibName; |
|
272 |
||
432 | 273 |
function SDL_SetVideoMode(width, height, bpp: LongInt; flags: Longword): PSDL_Surface; cdecl; external SDLLibName; |
274 |
function SDL_CreateRGBSurface(flags: Longword; Width, Height, Depth: LongInt; RMask, GMask, BMask, AMask: Longword): PSDL_Surface; cdecl; external SDLLibName; |
|
275 |
function SDL_CreateRGBSurfaceFrom(pixels: Pointer; width, height, depth, pitch: LongInt; RMask, GMask, BMask, AMask: Longword): PSDL_Surface; cdecl; external SDLLibName; |
|
4 | 276 |
procedure SDL_FreeSurface(Surface: PSDL_Surface); cdecl; external SDLLibName; |
105 | 277 |
function SDL_SetColorKey(surface: PSDL_Surface; flag, key: Longword): LongInt; cdecl; external SDLLibName; |
2017 | 278 |
function SDL_SetAlpha(surface: PSDL_Surface; flag, key: Longword): LongInt; cdecl; external SDLLibName; |
4 | 279 |
|
105 | 280 |
function SDL_UpperBlit(src: PSDL_Surface; srcrect: PSDL_Rect; dst: PSDL_Surface; dstrect: PSDL_Rect): LongInt; cdecl; external SDLLibName; |
281 |
function SDL_FillRect(dst: PSDL_Surface; dstrect: PSDL_Rect; color: Longword): LongInt; cdecl; external SDLLibName; |
|
282 |
procedure SDL_UpdateRect(Screen: PSDL_Surface; x, y: LongInt; w, h: Longword); cdecl; external SDLLibName; |
|
432 | 283 |
function SDL_Flip(Screen: PSDL_Surface): LongInt; cdecl; external SDLLibName; |
4 | 284 |
|
285 |
procedure SDL_GetRGB(pixel: Longword; fmt: PSDL_PixelFormat; r, g, b: PByte); cdecl; external SDLLibName; |
|
107 | 286 |
function SDL_MapRGB(format: PSDL_PixelFormat; r, g, b: Byte): Longword; cdecl; external SDLLibName; |
4 | 287 |
|
288 |
function SDL_DisplayFormat(Surface: PSDL_Surface): PSDL_Surface; cdecl; external SDLLibName; |
|
35 | 289 |
function SDL_DisplayFormatAlpha(Surface: PSDL_Surface): PSDL_Surface; cdecl; external SDLLibName; |
4 | 290 |
|
291 |
function SDL_RWFromFile(filename, mode: PChar): PSDL_RWops; cdecl; external SDLLibName; |
|
432 | 292 |
function SDL_SaveBMP_RW(surface: PSDL_Surface; dst: PSDL_RWops; freedst: LongInt): LongInt; cdecl; external SDLLibName; |
4 | 293 |
|
2152 | 294 |
{$IFDEF SDL13} |
295 |
function SDL_GetKeyboardState(numkeys: PLongInt): PByteArray; cdecl; external SDLLibName; |
|
2242 | 296 |
function SDL_GetMouseState(index: LongInt; x, y: PLongInt): Byte; cdecl; external SDLLibName; |
297 |
function SDL_SelectMouse(index: LongInt): LongInt; cdecl; external SDLLibName; |
|
298 |
function SDL_GetRelativeMouseState(index: LongInt; x, y: PLongInt): Byte; cdecl; external SDLLibName; |
|
299 |
function SDL_GetNumMice : LongInt; cdecl; external SDLLibName; |
|
2152 | 300 |
{$ELSE} |
105 | 301 |
function SDL_GetKeyState(numkeys: PLongInt): PByteArray; cdecl; external SDLLibName; |
2242 | 302 |
function SDL_GetMouseState(x, y: PLongInt): Byte; cdecl; external SDLLibName; |
2152 | 303 |
{$ENDIF} |
4 | 304 |
function SDL_GetKeyName(key: Longword): PChar; cdecl; external SDLLibName; |
305 |
procedure SDL_WarpMouse(x, y: Word); cdecl; external SDLLibName; |
|
306 |
||
432 | 307 |
function SDL_PollEvent(event: PSDL_Event): LongInt; cdecl; external SDLLibName; |
4 | 308 |
|
432 | 309 |
function SDL_ShowCursor(toggle: LongInt): LongInt; cdecl; external SDLLibName; |
4 | 310 |
|
311 |
procedure SDL_WM_SetCaption(title: PChar; icon: PChar); cdecl; external SDLLibName; |
|
312 |
||
433 | 313 |
function SDL_CreateMutex: PSDL_mutex; cdecl; external SDLLibName; |
314 |
procedure SDL_DestroyMutex(mutex: PSDL_mutex); cdecl; external SDLLibName; |
|
315 |
function SDL_LockMutex(mutex: PSDL_mutex): LongInt; cdecl; external SDLLibName name 'SDL_mutexP'; |
|
316 |
function SDL_UnlockMutex(mutex: PSDL_mutex): LongInt; cdecl; external SDLLibName name 'SDL_mutexV'; |
|
317 |
||
753 | 318 |
function SDL_GL_SetAttribute(attr: byte; value: LongInt): LongInt; cdecl; external SDLLibName; |
319 |
procedure SDL_GL_SwapBuffers(); cdecl; external SDLLibName; |
|
320 |
||
4 | 321 |
(* TTF *) |
322 |
||
323 |
const {$IFDEF WIN32} |
|
324 |
SDL_TTFLibName = 'SDL_ttf.dll'; |
|
325 |
{$ENDIF} |
|
326 |
{$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
|
327 |
{$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
|
328 |
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
|
329 |
{$ELSE} |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
330 |
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
|
331 |
{$ENDIF} |
4 | 332 |
{$ENDIF} |
202 | 333 |
TTF_STYLE_NORMAL = 0; |
334 |
TTF_STYLE_BOLD = 1; |
|
335 |
TTF_STYLE_ITALIC = 2; |
|
4 | 336 |
|
337 |
type PTTF_Font = ^TTTF_font; |
|
338 |
TTTF_Font = record |
|
339 |
end; |
|
340 |
||
432 | 341 |
function TTF_Init: LongInt; cdecl; external SDL_TTFLibName; |
4 | 342 |
procedure TTF_Quit; cdecl; external SDL_TTFLibName; |
343 |
||
344 |
||
432 | 345 |
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
|
346 |
(* 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
|
347 |
See http://www.freepascal.org/mantis/view.php?id=7613 for details *) |
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
348 |
function TTF_RenderUTF8_Solid(font: PTTF_Font; const text: PChar; fg: Longword): PSDL_Surface; cdecl; external SDL_TTFLibName; |
32fa6282efe2
Add workaround over freepascal bug (http://www.freepascal.org/mantis/view.php?id=7613)
unc0rr
parents:
202
diff
changeset
|
349 |
function TTF_RenderUTF8_Blended(font: PTTF_Font; const text: PChar; fg: Longword): PSDL_Surface; cdecl; external SDL_TTFLibName; |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
883
diff
changeset
|
350 |
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
|
351 |
|
432 | 352 |
function TTF_OpenFont(const filename: PChar; size: LongInt): PTTF_Font; cdecl; external SDL_TTFLibName; |
353 |
procedure TTF_SetFontStyle(font: PTTF_Font; style: LongInt); cdecl; external SDL_TTFLibName; |
|
4 | 354 |
|
355 |
||
1997 | 356 |
(* SDL_image *) |
4 | 357 |
|
358 |
const {$IFDEF WIN32} |
|
359 |
SDL_ImageLibName = 'SDL_image.dll'; |
|
360 |
{$ENDIF} |
|
361 |
{$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
|
362 |
{$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
|
363 |
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
|
364 |
{$ELSE} |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
365 |
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
|
366 |
{$ENDIF} |
4 | 367 |
{$ENDIF} |
368 |
||
369 |
function IMG_Load(const _file: PChar): PSDL_Surface; cdecl; external SDL_ImageLibName; |
|
370 |
||
1997 | 371 |
(* SDL_net *) |
4 | 372 |
|
373 |
const {$IFDEF WIN32} |
|
374 |
SDL_NetLibName = 'SDL_net.dll'; |
|
375 |
{$ENDIF} |
|
376 |
{$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
|
377 |
{$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
|
378 |
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
|
379 |
{$ELSE} |
7992f7ba388d
completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents:
2240
diff
changeset
|
380 |
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
|
381 |
{$ENDIF} |
4 | 382 |
{$ENDIF} |
383 |
||
384 |
type TIPAddress = record |
|
385 |
host: Longword; |
|
386 |
port: Word; |
|
387 |
end; |
|
388 |
||
389 |
PTCPSocket = ^TTCPSocket; |
|
390 |
TTCPSocket = record |
|
106 | 391 |
ready: LongInt; |
105 | 392 |
channel: LongInt; |
106 | 393 |
remoteAddress: TIPaddress; |
4 | 394 |
localAddress: TIPaddress; |
105 | 395 |
sflag: LongInt; |
4 | 396 |
end; |
397 |
PSDLNet_SocketSet = ^TSDLNet_SocketSet; |
|
398 |
TSDLNet_SocketSet = record |
|
399 |
numsockets, |
|
105 | 400 |
maxsockets: LongInt; |
4 | 401 |
sockets: PTCPSocket; |
402 |
end; |
|
403 |
||
105 | 404 |
function SDLNet_Init: LongInt; cdecl; external SDL_NetLibName; |
4 | 405 |
procedure SDLNet_Quit; cdecl; external SDL_NetLibName; |
406 |
||
105 | 407 |
function SDLNet_AllocSocketSet(maxsockets: LongInt): PSDLNet_SocketSet; cdecl; external SDL_NetLibName; |
408 |
function SDLNet_ResolveHost(var address: TIPaddress; host: PCHar; port: Word): LongInt; cdecl; external SDL_NetLibName; |
|
4 | 409 |
function SDLNet_TCP_Accept(server: PTCPsocket): PTCPSocket; cdecl; external SDL_NetLibName; |
410 |
function SDLNet_TCP_Open(var ip: TIPaddress): PTCPSocket; cdecl; external SDL_NetLibName; |
|
105 | 411 |
function SDLNet_TCP_Send(sock: PTCPsocket; data: Pointer; len: LongInt): LongInt; cdecl; external SDL_NetLibName; |
412 |
function SDLNet_TCP_Recv(sock: PTCPsocket; data: Pointer; len: LongInt): LongInt; cdecl; external SDL_NetLibName; |
|
4 | 413 |
procedure SDLNet_TCP_Close(sock: PTCPsocket); cdecl; external SDL_NetLibName; |
414 |
procedure SDLNet_FreeSocketSet(_set: PSDLNet_SocketSet); cdecl; external SDL_NetLibName; |
|
105 | 415 |
function SDLNet_AddSocket(_set: PSDLNet_SocketSet; sock: PTCPSocket): LongInt; cdecl; external SDL_NetLibName; |
416 |
function SDLNet_CheckSockets(_set: PSDLNet_SocketSet; timeout: LongInt): LongInt; cdecl; external SDL_NetLibName; |
|
4 | 417 |
|
459
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
418 |
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
|
419 |
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
|
420 |
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
|
421 |
function SDLNet_Read32(buf: pointer): LongWord; |
4 | 422 |
|
423 |
implementation |
|
424 |
||
425 |
function SDL_MustLock(Surface: PSDL_Surface): Boolean; |
|
426 |
begin |
|
432 | 427 |
SDL_MustLock:= ( surface^.offset <> 0 ) |
4 | 428 |
or(( surface^.flags and (SDL_HWSURFACE or SDL_ASYNCBLIT or SDL_RLEACCEL)) <> 0) |
429 |
end; |
|
430 |
||
459
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
431 |
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
|
432 |
begin |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
433 |
PByteArray(buf)^[1]:= value; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
434 |
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
|
435 |
end; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
436 |
|
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
437 |
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
|
438 |
begin |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
439 |
PByteArray(buf)^[3]:= value; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
440 |
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
|
441 |
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
|
442 |
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
|
443 |
end; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
444 |
|
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
445 |
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
|
446 |
begin |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
447 |
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
|
448 |
(PByteArray(buf)^[0] shl 8) |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
449 |
end; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
450 |
|
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
451 |
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
|
452 |
begin |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
453 |
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
|
454 |
(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
|
455 |
(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
|
456 |
(PByteArray(buf)^[0] shl 24) |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
457 |
end; |
95163c6efa69
Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents:
433
diff
changeset
|
458 |
|
4 | 459 |
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
|
460 |