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