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