hedgewars/SDLh.pas
author koda
Sat, 17 Oct 2009 01:28:49 +0000
changeset 2515 51d3f4b6293a
parent 2477 d1ab2e2549d0
child 2525 e6cdc0251cd1
permissions -rw-r--r--
revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources the button for voicepack preview is broken for unknown reasons
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     1
(*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 945
diff changeset
     2
 * Hedgewars, a free turn based strategy game
883
07a568ba44e0 Update copyright info in source files headers
unc0rr
parents: 780
diff changeset
     3
 * Copyright (c) 2004-2008 Andrey Korotaev <unC0Rr@gmail.com>
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     4
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     8
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
    12
 * GNU General Public License for more details.
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    13
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
    14
 * You should have received a copy of the GNU General Public License
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
    15
 * along with this program; if not, write to the Free Software
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    17
 *)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    18
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    19
unit SDLh;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    20
interface
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 500
diff changeset
    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
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    23
{$DEFINE UNIX}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    24
{$ENDIF}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    25
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    26
{$IFDEF UNIX}
1903
64e56f19d6d6 Patch by koda
unc0rr
parents: 1880
diff changeset
    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
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    31
{$ENDIF}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    32
432
b0f693024b50 Delphi mode off
unc0rr
parents: 377
diff changeset
    33
{$PACKRECORDS C}
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    34
1819
17dac76954d1 Patch by koda to better support Mac OS X
unc0rr
parents: 1712
diff changeset
    35
{$IFDEF DARWIN}
2200
8192be6e3aef koda/Smaxx changes to openal for crossplatform building
nemo
parents: 2191
diff changeset
    36
	{$PASCALMAINNAME SDL_main}
2152
a2811690da1b Patch by koda:
unc0rr
parents: 2017
diff changeset
    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}
2515
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
    43
	{$linkframework SDL_mixer}
2200
8192be6e3aef koda/Smaxx changes to openal for crossplatform building
nemo
parents: 2191
diff changeset
    44
	{$linklib openalbridge}
8192be6e3aef koda/Smaxx changes to openal for crossplatform building
nemo
parents: 2191
diff changeset
    45
	{$linklib SDLmain}
8192be6e3aef koda/Smaxx changes to openal for crossplatform building
nemo
parents: 2191
diff changeset
    46
	{$linklib gcc}
1819
17dac76954d1 Patch by koda to better support Mac OS X
unc0rr
parents: 1712
diff changeset
    47
{$ENDIF}
1916
9c3d0e3df6bb patch by koda:
unc0rr
parents: 1906
diff changeset
    48
{$ENDIF}
1819
17dac76954d1 Patch by koda to better support Mac OS X
unc0rr
parents: 1712
diff changeset
    49
1997
cd66434351cf koda's patch
unc0rr
parents: 1947
diff changeset
    50
(*  SDL  *)
2390
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
    51
const
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
    52
{$IFDEF WIN32}
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
    53
        SDLLibName = 'SDL.dll';
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
    54
{$ENDIF}
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
    55
{$IFDEF UNIX}
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
    56
	{$IFDEF DARWIN}
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
    57
                SDLLibName = 'SDL';
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
    58
        {$ELSE}
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
    59
		SDLLibName = 'libSDL.so';
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
    60
        {$ENDIF}
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
    61
{$ENDIF}
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    62
	SDL_SWSURFACE   = $00000000;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    63
	SDL_HWSURFACE   = $00000001;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    64
	SDL_SRCALPHA    = $00010000;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    65
	SDL_INIT_VIDEO  = $00000020;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    66
	SDL_INIT_AUDIO  = $00000010;
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
    67
	SDL_INIT_JOYSTICK = $00000200;
2240
7ce9e6b7be3b -Removal of older WAV files, now useless thanks to OpenAL
koda
parents: 2200
diff changeset
    68
2477
d1ab2e2549d0 Fix mouse problem when focus is lost
unc0rr
parents: 2428
diff changeset
    69
	SDL_APPINPUTFOCUS=$00000002;
2390
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
    70
2241
7992f7ba388d completes removal of wav files, updates SDLh and adds DEBUGFILE to hwengine when compiled in Debug mode
koda
parents: 2240
diff changeset
    71
{$IFDEF SDL13}
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    72
	SDL_ASYNCBLIT   = $08000000;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    73
	SDL_ANYFORMAT   = $10000000;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    74
	SDL_HWPALETTE   = $00200000;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    75
	SDL_DOUBLEBUF   = $00400000;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    76
	SDL_FULLSCREEN  = $00800000;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    77
	SDL_HWACCEL     = $08000000;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    78
	SDL_SRCCOLORKEY = $00020000;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    79
	SDL_RLEACCEL    = $08000000;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    80
	SDL_NOFRAME     = $02000000;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    81
	SDL_OPENGL      = $04000000;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    82
	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
    83
{$ELSE}
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    84
	SDL_ASYNCBLIT   = $00000004;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    85
	SDL_ANYFORMAT   = $00100000;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    86
	SDL_HWPALETTE   = $20000000;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    87
	SDL_DOUBLEBUF   = $40000000;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    88
	SDL_FULLSCREEN  = $80000000;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    89
	SDL_HWACCEL     = $00000100;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    90
	SDL_SRCCOLORKEY = $00001000;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    91
	SDL_RLEACCEL    = $00004000;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    92
	SDL_NOFRAME     = $00000020;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    93
	SDL_OPENGL      = $00000002;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    94
	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
    95
{$ENDIF}
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 883
diff changeset
    96
2390
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
    97
{*begin sdl_event binding*}
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    98
	SDL_NOEVENT     = 0;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
    99
	SDL_KEYDOWN     = 2;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   100
	SDL_KEYUP       = 3;
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   101
	//SDL_QUITEV      = 12;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   102
	SDL_VIDEORESIZE = 16; // TODO: outdated? no longer in SDL 1.3?
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   103
2242
2e8251933b71 initial support for touch input
koda
parents: 2241
diff changeset
   104
{$IFDEF SDL13}
2390
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   105
        SDL_WINDOWEVENT = 1;
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   106
        SDL_TEXTINPUT = 4;
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   107
	SDL_MOUSEMOTION  = 5;
2390
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   108
        SDL_MOUSEBUTTONDOWN = 6;
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   109
	SDL_MOUSEBUTTONUP   = 7;
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   110
        SDL_MOUSEWHEEL = 8;  //different handling, should create SDL_MouseWheelEvent type
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   111
	SDL_JOYAXIS = 10;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   112
	SDL_JOYHAT = 12;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   113
	SDL_JOYBUTTONDOWN = 13;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   114
	SDL_JOYBUTTONUP = 14;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   115
	SDL_QUITEV      = 15;
2390
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   116
{$ELSE}
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   117
        SDL_ACTIVEEVENT = 1;
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   118
       	SDL_MOUSEBUTTONDOWN = 5;
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   119
	SDL_MOUSEBUTTONUP   = 6;
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   120
        SDL_BUTTON_WHEELDUP = 4;
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   121
	SDL_BUTTON_WHEELDOWN = 5;
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   122
	SDL_JOYAXIS = 7;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   123
	SDL_JOYHAT = 9;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   124
	SDL_JOYBUTTONDOWN = 10;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   125
	SDL_JOYBUTTONUP = 11;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   126
	SDL_QUITEV      = 12;
2242
2e8251933b71 initial support for touch input
koda
parents: 2241
diff changeset
   127
{$ENDIF}
2390
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   128
{*end sdl_event binding*}
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 500
diff changeset
   129
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   130
	RMask = $000000FF;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   131
	GMask = $0000FF00;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   132
	BMask = $00FF0000;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   133
	AMask = $FF000000;
754
94ac14829085 Some further work on switching to OpenGL rendering
unc0rr
parents: 753
diff changeset
   134
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   135
type PSDL_Rect = ^TSDL_Rect;
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   136
	TSDL_Rect = record
2390
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   137
{$IFDEF SDL13}
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   138
		x, y, w, h: LongInt;
2390
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   139
{$ELSE}
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   140
		x, y: SmallInt;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   141
		w, h: Word;
2390
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   142
{$ENDIF}
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   143
		end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   144
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   145
	TPoint = record
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   146
		X: LongInt;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   147
		Y: LongInt;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   148
		end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   149
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   150
	PSDL_PixelFormat = ^TSDL_PixelFormat;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   151
	TSDL_PixelFormat = record
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   152
		palette: Pointer;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   153
		BitsPerPixel : Byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   154
		BytesPerPixel: Byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   155
		Rloss : Byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   156
		Gloss : Byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   157
		Bloss : Byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   158
		Aloss : Byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   159
		Rshift: Byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   160
		Gshift: Byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   161
		Bshift: Byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   162
		Ashift: Byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   163
		RMask : Longword;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   164
		GMask : Longword;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   165
		BMask : Longword;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   166
		AMask : Longword;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   167
		colorkey: Longword;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   168
		alpha : Byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   169
		end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   170
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   171
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   172
	PSDL_Surface = ^TSDL_Surface;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   173
	TSDL_Surface = record
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   174
		flags : Longword;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   175
		format: PSDL_PixelFormat;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   176
		w, h  : LongInt;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   177
		pitch : Word;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   178
		pixels: Pointer;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   179
		offset: LongInt;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   180
		end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   181
2248
26e11cb27c61 real fix for iphone color (reverting previous commit)
koda
parents: 2242
diff changeset
   182
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   183
	PSDL_Color = ^TSDL_Color;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   184
	TSDL_Color = record
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   185
		case byte of
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   186
			0: (r: Byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   187
				g: Byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   188
				b: Byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   189
				unused: Byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   190
				);
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   191
			1: (value: Longword);
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   192
		end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   193
2248
26e11cb27c61 real fix for iphone color (reverting previous commit)
koda
parents: 2242
diff changeset
   194
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   195
	PSDL_RWops = ^TSDL_RWops;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   196
	TSeek = function( context: PSDL_RWops; offset: LongInt; whence: LongInt ): LongInt; cdecl;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   197
	TRead = function( context: PSDL_RWops; Ptr: Pointer; size: LongInt; maxnum : LongInt ): LongInt;  cdecl;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   198
	TWrite = function( context: PSDL_RWops; Ptr: Pointer; size: LongInt; num: LongInt ): LongInt; cdecl;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   199
	TClose = function( context: PSDL_RWops ): LongInt; cdecl;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   200
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   201
	TStdio = record
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   202
		autoclose: LongInt;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   203
		fp: pointer;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   204
		end;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   205
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   206
	TMem = record
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   207
		base: PByte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   208
		here: PByte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   209
		stop: PByte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   210
		end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   211
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   212
	TUnknown = record
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   213
		data1: Pointer;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   214
		end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   215
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   216
	TSDL_RWops = record
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   217
		seek: TSeek;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   218
		read: TRead;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   219
		write: TWrite;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   220
		close: TClose;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   221
		type_: Longword;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   222
		case Byte of
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   223
			0: (stdio: TStdio);
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   224
			1: (mem: TMem);
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   225
			2: (unknown: TUnknown);
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   226
			end;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   227
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   228
	TSDL_KeySym = record
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   229
		scancode: Byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   230
		sym: Longword;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   231
		modifier: Longword;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   232
		unicode: Word;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   233
		end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   234
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   235
	TSDL_ActiveEvent = record
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   236
		type_: byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   237
		gain: byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   238
		state: byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   239
		end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   240
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   241
	TSDL_KeyboardEvent = record
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   242
		type_: Byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   243
		which: Byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   244
		state: Byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   245
		keysym: TSDL_KeySym;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   246
		end;
308
806c3b55500d Release mouse when keyboard focus lost
unc0rr
parents: 206
diff changeset
   247
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   248
	TSDL_MouseButtonEvent = record
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   249
		_type,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   250
		which,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   251
		button,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   252
		state: byte;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   253
		x, y: word;
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   254
		end;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2254
diff changeset
   255
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   256
	TSDL_GLattr = (
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   257
		SDL_GL_RED_SIZE,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   258
		SDL_GL_GREEN_SIZE,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   259
		SDL_GL_BLUE_SIZE,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   260
		SDL_GL_ALPHA_SIZE,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   261
		SDL_GL_BUFFER_SIZE,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   262
		SDL_GL_DOUBLEBUFFER,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   263
		SDL_GL_DEPTH_SIZE,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   264
		SDL_GL_STENCIL_SIZE,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   265
		SDL_GL_ACCUM_RED_SIZE,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   266
		SDL_GL_ACCUM_GREEN_SIZE,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   267
		SDL_GL_ACCUM_BLUE_SIZE,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   268
		SDL_GL_ACCUM_ALPHA_SIZE,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   269
		SDL_GL_STEREO,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   270
		SDL_GL_MULTISAMPLEBUFFERS,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   271
		SDL_GL_MULTISAMPLESAMPLES,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   272
		SDL_GL_ACCELERATED_VISUAL,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   273
		SDL_GL_RETAINED_BACKING,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   274
		SDL_GL_CONTEXT_MAJOR_VERSION,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   275
		SDL_GL_CONTEXT_MINOR_VERSION
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   276
		);
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2254
diff changeset
   277
2252
03fd99dff989 accessory stuff for iphone
koda
parents: 2251
diff changeset
   278
{$IFDEF SDL13}
03fd99dff989 accessory stuff for iphone
koda
parents: 2251
diff changeset
   279
     TSDL_MouseMotionEvent = record
03fd99dff989 accessory stuff for iphone
koda
parents: 2251
diff changeset
   280
                             type_: byte;
03fd99dff989 accessory stuff for iphone
koda
parents: 2251
diff changeset
   281
                             which: byte;
03fd99dff989 accessory stuff for iphone
koda
parents: 2251
diff changeset
   282
                             state: byte;
03fd99dff989 accessory stuff for iphone
koda
parents: 2251
diff changeset
   283
                             x    : LongInt;
03fd99dff989 accessory stuff for iphone
koda
parents: 2251
diff changeset
   284
                             y    : LongInt;
03fd99dff989 accessory stuff for iphone
koda
parents: 2251
diff changeset
   285
                             xrel : LongInt;
03fd99dff989 accessory stuff for iphone
koda
parents: 2251
diff changeset
   286
                             yrel : LongInt;
03fd99dff989 accessory stuff for iphone
koda
parents: 2251
diff changeset
   287
                             end;
03fd99dff989 accessory stuff for iphone
koda
parents: 2251
diff changeset
   288
{$ENDIF}
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   289
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   290
     TSDL_QuitEvent = record
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   291
                      type_: Byte;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   292
                      end;
2252
03fd99dff989 accessory stuff for iphone
koda
parents: 2251
diff changeset
   293
     TSDL_ResizeEvent = record
1120
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1066
diff changeset
   294
			type_: Byte;
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1066
diff changeset
   295
			w, h: LongInt;
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1066
diff changeset
   296
			end;
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1066
diff changeset
   297
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   298
     TSDL_JoyAxisEvent = record
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   299
			type_: Byte;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   300
			which: Byte;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   301
			axis: Byte;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   302
			value: LongInt;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   303
			end;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   304
			
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   305
     TSDL_JoyHatEvent = record
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   306
			type_: Byte;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   307
			which: Byte;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   308
			hat: Byte;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   309
			value: Byte;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   310
			end;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   311
	
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   312
     TSDL_JoyButtonEvent = record
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   313
			type_: Byte;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   314
			which: Byte;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   315
			button: Byte;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   316
			state: Byte;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   317
			end;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   318
	 
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   319
	 PSDL_Event = ^TSDL_Event;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   320
     TSDL_Event = record
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   321
                  case Byte of
2390
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   322
{$IFDEF SDL13}
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   323
                        //doublecheck the type of WINDOWEVENT TEXTINPUT
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   324
                        SDL_NOEVENT: (type_: byte);
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   325
                        SDL_WINDOWEVENT: (active: TSDL_ActiveEvent);
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   326
                        SDL_KEYDOWN,
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   327
                        SDL_KEYUP: (key: TSDL_KeyboardEvent);
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   328
                        SDL_TEXTINPUT: (txtin: byte);
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   329
                        SDL_MOUSEMOTION: (motion: TSDL_MouseMotionEvent);
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   330
                        SDL_MOUSEBUTTONDOWN,
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   331
                        SDL_MOUSEBUTTONUP: (button: TSDL_MouseButtonEvent);
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   332
{$ELSE}
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   333
                       SDL_NOEVENT: (type_: byte);
308
806c3b55500d Release mouse when keyboard focus lost
unc0rr
parents: 206
diff changeset
   334
                       SDL_ACTIVEEVENT: (active: TSDL_ActiveEvent);
2390
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   335
                       SDL_KEYDOWN,
57fb33ab04a4 converts some gl calls to gles
koda
parents: 2379
diff changeset
   336
                       SDL_KEYUP: (key: TSDL_KeyboardEvent);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   337
                       SDL_QUITEV: (quit: TSDL_QuitEvent);
1120
eb5a9f86f9c6 Add ability to resize engine's window
unc0rr
parents: 1066
diff changeset
   338
                       SDL_VIDEORESIZE: (resize: TSDL_ResizeEvent);
2379
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   339
                       SDL_MOUSEBUTTONDOWN,
d62b1f224982 - Implement zoom reset
unc0rr
parents: 2376
diff changeset
   340
                       SDL_MOUSEBUTTONUP: (button: TSDL_MouseButtonEvent);
2252
03fd99dff989 accessory stuff for iphone
koda
parents: 2251
diff changeset
   341
{$ENDIF}
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   342
						SDL_JOYAXIS: (jaxis: TSDL_JoyAxisEvent);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   343
						SDL_JOYHAT: (jhat: TSDL_JoyHatEvent);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   344
						SDL_JOYBUTTONDOWN,
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   345
						SDL_JOYBUTTONUP: (jbutton: TSDL_JoyButtonEvent);
2252
03fd99dff989 accessory stuff for iphone
koda
parents: 2251
diff changeset
   346
     end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   347
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   348
     PByteArray = ^TByteArray;
316
57d50189ad86 Calculate land digest
unc0rr
parents: 308
diff changeset
   349
     TByteArray = array[0..65535] of Byte;
57d50189ad86 Calculate land digest
unc0rr
parents: 308
diff changeset
   350
     PLongWordArray = ^TLongWordArray;
57d50189ad86 Calculate land digest
unc0rr
parents: 308
diff changeset
   351
     TLongWordArray = array[0..16383] of LongWord;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   352
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 432
diff changeset
   353
     PSDL_Thread = Pointer;
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 432
diff changeset
   354
     PSDL_mutex = Pointer;
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 883
diff changeset
   355
432
b0f693024b50 Delphi mode off
unc0rr
parents: 377
diff changeset
   356
function  SDL_Init(flags: Longword): LongInt; cdecl; external SDLLibName;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   357
procedure SDL_Quit; cdecl; external SDLLibName;
432
b0f693024b50 Delphi mode off
unc0rr
parents: 377
diff changeset
   358
function  SDL_VideoDriverName(var namebuf; maxlen: LongInt): PChar; cdecl; external SDLLibName;
b0f693024b50 Delphi mode off
unc0rr
parents: 377
diff changeset
   359
procedure SDL_EnableUNICODE(enable: LongInt); cdecl; external SDLLibName;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   360
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   361
procedure SDL_Delay(msec: Longword); cdecl; external SDLLibName;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   362
function  SDL_GetTicks: Longword; cdecl; external SDLLibName;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   363
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   364
function  SDL_MustLock(Surface: PSDL_Surface): Boolean;
432
b0f693024b50 Delphi mode off
unc0rr
parents: 377
diff changeset
   365
function  SDL_LockSurface(Surface: PSDL_Surface): LongInt; cdecl; external SDLLibName;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   366
procedure SDL_UnlockSurface(Surface: PSDL_Surface); cdecl; external SDLLibName;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   367
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   368
function  SDL_GetError: PChar; cdecl; external SDLLibName;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   369
432
b0f693024b50 Delphi mode off
unc0rr
parents: 377
diff changeset
   370
function  SDL_SetVideoMode(width, height, bpp: LongInt; flags: Longword): PSDL_Surface; cdecl; external SDLLibName;
b0f693024b50 Delphi mode off
unc0rr
parents: 377
diff changeset
   371
function  SDL_CreateRGBSurface(flags: Longword; Width, Height, Depth: LongInt; RMask, GMask, BMask, AMask: Longword): PSDL_Surface; cdecl; external SDLLibName;
b0f693024b50 Delphi mode off
unc0rr
parents: 377
diff changeset
   372
function  SDL_CreateRGBSurfaceFrom(pixels: Pointer; width, height, depth, pitch: LongInt; RMask, GMask, BMask, AMask: Longword): PSDL_Surface; cdecl; external SDLLibName;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   373
procedure SDL_FreeSurface(Surface: PSDL_Surface); cdecl; external SDLLibName;
105
e7cb9bb4a9de - Fixed integer->longint
unc0rr
parents: 95
diff changeset
   374
function  SDL_SetColorKey(surface: PSDL_Surface; flag, key: Longword): LongInt; cdecl; external SDLLibName;
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 1997
diff changeset
   375
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
   376
function  SDL_ConvertSurface(src: PSDL_Surface; fmt: PSDL_PixelFormat; flags: LongInt): PSDL_Surface; cdecl; external SDLLibName;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   377
105
e7cb9bb4a9de - Fixed integer->longint
unc0rr
parents: 95
diff changeset
   378
function  SDL_UpperBlit(src: PSDL_Surface; srcrect: PSDL_Rect; dst: PSDL_Surface; dstrect: PSDL_Rect): LongInt; cdecl; external SDLLibName;
e7cb9bb4a9de - Fixed integer->longint
unc0rr
parents: 95
diff changeset
   379
function  SDL_FillRect(dst: PSDL_Surface; dstrect: PSDL_Rect; color: Longword): LongInt; cdecl; external SDLLibName;
e7cb9bb4a9de - Fixed integer->longint
unc0rr
parents: 95
diff changeset
   380
procedure SDL_UpdateRect(Screen: PSDL_Surface; x, y: LongInt; w, h: Longword); cdecl; external SDLLibName;
432
b0f693024b50 Delphi mode off
unc0rr
parents: 377
diff changeset
   381
function  SDL_Flip(Screen: PSDL_Surface): LongInt; cdecl; external SDLLibName;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   382
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   383
procedure SDL_GetRGB(pixel: Longword; fmt: PSDL_PixelFormat; r, g, b: PByte); cdecl; external SDLLibName;
107
b08ce0293a51 - Many type fixes
unc0rr
parents: 106
diff changeset
   384
function  SDL_MapRGB(format: PSDL_PixelFormat; r, g, b: Byte): Longword; cdecl; external SDLLibName;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   385
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   386
function  SDL_DisplayFormat(Surface: PSDL_Surface): PSDL_Surface; cdecl; external SDLLibName;
35
9367f246fb5f - New rope
unc0rr
parents: 11
diff changeset
   387
function  SDL_DisplayFormatAlpha(Surface: PSDL_Surface): PSDL_Surface; cdecl; external SDLLibName;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   388
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   389
function  SDL_RWFromFile(filename, mode: PChar): PSDL_RWops; cdecl; external SDLLibName;
432
b0f693024b50 Delphi mode off
unc0rr
parents: 377
diff changeset
   390
function  SDL_SaveBMP_RW(surface: PSDL_Surface; dst: PSDL_RWops; freedst: LongInt): LongInt; cdecl; external SDLLibName;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   391
2152
a2811690da1b Patch by koda:
unc0rr
parents: 2017
diff changeset
   392
{$IFDEF SDL13}
a2811690da1b Patch by koda:
unc0rr
parents: 2017
diff changeset
   393
function  SDL_GetKeyboardState(numkeys: PLongInt): PByteArray; cdecl; external SDLLibName;
2242
2e8251933b71 initial support for touch input
koda
parents: 2241
diff changeset
   394
function  SDL_GetMouseState(index: LongInt; x, y: PLongInt): Byte; cdecl; external SDLLibName;
2e8251933b71 initial support for touch input
koda
parents: 2241
diff changeset
   395
function  SDL_SelectMouse(index: LongInt): LongInt; cdecl; external SDLLibName;
2e8251933b71 initial support for touch input
koda
parents: 2241
diff changeset
   396
function  SDL_GetRelativeMouseState(index: LongInt; x, y: PLongInt): Byte; cdecl; external SDLLibName;
2e8251933b71 initial support for touch input
koda
parents: 2241
diff changeset
   397
function  SDL_GetNumMice : LongInt; cdecl; external SDLLibName;
2152
a2811690da1b Patch by koda:
unc0rr
parents: 2017
diff changeset
   398
{$ELSE}
105
e7cb9bb4a9de - Fixed integer->longint
unc0rr
parents: 95
diff changeset
   399
function  SDL_GetKeyState(numkeys: PLongInt): PByteArray; cdecl; external SDLLibName;
2242
2e8251933b71 initial support for touch input
koda
parents: 2241
diff changeset
   400
function  SDL_GetMouseState(x, y: PLongInt): Byte; cdecl; external SDLLibName;
2152
a2811690da1b Patch by koda:
unc0rr
parents: 2017
diff changeset
   401
{$ENDIF}
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   402
function  SDL_GetKeyName(key: Longword): PChar; cdecl; external SDLLibName;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   403
procedure SDL_WarpMouse(x, y: Word); cdecl; external SDLLibName;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   404
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   405
procedure SDL_PumpEvents; cdecl; external SDLLibName;
432
b0f693024b50 Delphi mode off
unc0rr
parents: 377
diff changeset
   406
function  SDL_PollEvent(event: PSDL_Event): LongInt; cdecl; external SDLLibName;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   407
432
b0f693024b50 Delphi mode off
unc0rr
parents: 377
diff changeset
   408
function  SDL_ShowCursor(toggle: LongInt): LongInt; cdecl; external SDLLibName;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   409
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   410
procedure SDL_WM_SetCaption(title: PChar; icon: PChar); cdecl; external SDLLibName;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   411
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 432
diff changeset
   412
function  SDL_CreateMutex: PSDL_mutex; cdecl; external SDLLibName;
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 432
diff changeset
   413
procedure SDL_DestroyMutex(mutex: PSDL_mutex); cdecl; external SDLLibName;
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 432
diff changeset
   414
function  SDL_LockMutex(mutex: PSDL_mutex): LongInt; cdecl; external SDLLibName name 'SDL_mutexP';
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 432
diff changeset
   415
function  SDL_UnlockMutex(mutex: PSDL_mutex): LongInt; cdecl; external SDLLibName name 'SDL_mutexV';
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 432
diff changeset
   416
2252
03fd99dff989 accessory stuff for iphone
koda
parents: 2251
diff changeset
   417
function  SDL_GL_SetAttribute(attr: TSDL_GLattr; value: LongInt): LongInt; cdecl; external SDLLibName;
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 500
diff changeset
   418
procedure SDL_GL_SwapBuffers(); cdecl; external SDLLibName;
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 500
diff changeset
   419
2254
bb68e5a5be56 -fix bamboo theme (unsupported color profile)
koda
parents: 2253
diff changeset
   420
{$IFDEF SDL13}
bb68e5a5be56 -fix bamboo theme (unsupported color profile)
koda
parents: 2253
diff changeset
   421
{$IFDEF IPHONEOS}
bb68e5a5be56 -fix bamboo theme (unsupported color profile)
koda
parents: 2253
diff changeset
   422
function  SDL_iPhoneKeyboardShow(windowID: LongInt): LongInt; cdecl; external SDLLibName;
bb68e5a5be56 -fix bamboo theme (unsupported color profile)
koda
parents: 2253
diff changeset
   423
function  SDL_iPhoneKeyboardHide(windowID: LongInt): LongInt; cdecl; external SDLLibName;
bb68e5a5be56 -fix bamboo theme (unsupported color profile)
koda
parents: 2253
diff changeset
   424
function  SDL_iPhoneKeyboardIsShown(windowID: LongInt): boolean; cdecl; external SDLLibName;
bb68e5a5be56 -fix bamboo theme (unsupported color profile)
koda
parents: 2253
diff changeset
   425
function  SDL_iPhoneKeyboardToggle(windowID: LongInt): LongInt; cdecl; external SDLLibName;
bb68e5a5be56 -fix bamboo theme (unsupported color profile)
koda
parents: 2253
diff changeset
   426
{$ENDIF}
bb68e5a5be56 -fix bamboo theme (unsupported color profile)
koda
parents: 2253
diff changeset
   427
{$ENDIF}
bb68e5a5be56 -fix bamboo theme (unsupported color profile)
koda
parents: 2253
diff changeset
   428
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   429
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   430
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   431
// Joystick/Controller support
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   432
type PSDLJoystick = ^TSDLJoystick;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   433
     TSDLJoystick = record
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   434
	                end;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   435
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   436
function SDL_NumJoysticks: LongInt; cdecl; external SDLLibName;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   437
function SDL_JoystickName(idx: LongInt): PChar; cdecl; external SDLLibName;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   438
function SDL_JoystickOpen(idx: LongInt): PSDLJoystick; cdecl; external SDLLibName;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   439
function SDL_JoystickOpened(idx: LongInt): LongInt; cdecl; external SDLLibName;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   440
function SDL_JoystickIndex(joy: PSDLJoystick): LongInt; cdecl; external SDLLibName;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   441
function SDL_JoystickNumAxes(joy: PSDLJoystick): LongInt; cdecl; external SDLLibName;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   442
function SDL_JoystickNumBalls(joy: PSDLJoystick): LongInt; cdecl; external SDLLibName;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   443
function SDL_JoystickNumHats(joy: PSDLJoystick): LongInt; cdecl; external SDLLibName;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   444
function SDL_JoystickNumButtons(joy: PSDLJoystick): LongInt; cdecl; external SDLLibName;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   445
procedure SDL_JoystickUpdate; cdecl; external SDLLibName;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   446
function SDL_JoystickEventState(state: LongInt): LongInt; cdecl; external SDLLibName;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   447
function SDL_JoystickGetAxis(joy: PSDLJoystick; axis: LongInt): Word; cdecl; external SDLLibName;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   448
const SDL_HAT_CENTERED  = $00;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   449
      SDL_HAT_UP        = $01;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   450
	  SDL_HAT_RIGHT     = $02;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   451
	  SDL_HAT_DOWN      = $04;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   452
	  SDL_HAT_LEFT      = $08;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   453
	  SDL_HAT_RIGHTUP   = SDL_HAT_RIGHT or SDL_HAT_UP;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   454
	  SDL_HAT_RIGHTDOWN = SDL_HAT_RIGHT or SDL_HAT_DOWN;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   455
	  SDL_HAT_LEFTUP    = SDL_HAT_LEFT or SDL_HAT_UP;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   456
	  SDL_HAT_LEFTDOWN  = SDL_HAT_LEFT or SDL_HAT_DOWN;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   457
function SDL_JoystickGetBall(joy: PSDLJoystick; ball: LongInt; dx: PInteger; dy: PInteger): Word; cdecl; external SDLLibName;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   458
function SDL_JoystickGetHat(joy: PSDLJoystick; hat: LongInt): Byte; cdecl; external SDLLibName;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   459
function SDL_JoystickGetButton(joy: PSDLJoystick; button: LongInt): Byte; cdecl; external SDLLibName;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   460
procedure SDL_JoystickClose(joy: PSDLJoystick); cdecl; external SDLLibName;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2390
diff changeset
   461
2515
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   462
(*  TTF  *)
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   463
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   464
const {$IFDEF WIN32}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   465
      SDL_TTFLibName = 'SDL_ttf.dll';
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   466
      {$ENDIF}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   467
      {$IFDEF UNIX}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   468
	{$IFDEF DARWIN}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   469
	  SDL_TTFLibName = 'SDL_ttf';
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   470
	{$ELSE}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   471
          SDL_TTFLibName = 'libSDL_ttf.so';
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   472
        {$ENDIF}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   473
      {$ENDIF}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   474
      TTF_STYLE_NORMAL = 0;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   475
      TTF_STYLE_BOLD   = 1;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   476
      TTF_STYLE_ITALIC = 2;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   477
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   478
type PTTF_Font = ^TTTF_font;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   479
     TTTF_Font = record
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   480
                 end;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   481
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   482
function TTF_Init: LongInt; cdecl; external SDL_TTFLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   483
procedure TTF_Quit; cdecl; external SDL_TTFLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   484
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   485
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   486
function TTF_SizeUTF8(font: PTTF_Font; const text: PChar; var w, h: LongInt): LongInt; cdecl; external SDL_TTFLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   487
(* TSDL_Color -> Longword conversion is workaround over freepascal bug.
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   488
   See http://www.freepascal.org/mantis/view.php?id=7613 for details *)
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   489
function TTF_RenderUTF8_Solid(font: PTTF_Font; const text: PChar; fg: Longword): PSDL_Surface; cdecl; external SDL_TTFLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   490
function TTF_RenderUTF8_Blended(font: PTTF_Font; const text: PChar; fg: Longword): PSDL_Surface; cdecl; external SDL_TTFLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   491
function TTF_RenderUTF8_Shaded(font: PTTF_Font; const text: PChar; fg, bg: Longword): PSDL_Surface; cdecl; external SDL_TTFLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   492
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   493
function TTF_OpenFont(const filename: PChar; size: LongInt): PTTF_Font; cdecl; external SDL_TTFLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   494
procedure TTF_SetFontStyle(font: PTTF_Font; style: LongInt); cdecl; external SDL_TTFLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   495
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   496
(*  SDL_mixer  *)
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   497
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   498
const {$IFDEF WIN32}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   499
      SDL_MixerLibName = 'SDL_mixer.dll';
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   500
      {$ENDIF}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   501
      {$IFDEF UNIX}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   502
	{$IFDEF DARWIN}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   503
	  SDL_MixerLibName = 'SDL_mixer';
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   504
	{$ELSE}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   505
          SDL_MixerLibName = 'libSDL_mixer.so';
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   506
	{$ENDIF}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   507
      {$ENDIF}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   508
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   509
const MIX_MAX_VOLUME = 128;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   510
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   511
type PMixChunk = ^TMixChunk;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   512
     TMixChunk = record
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   513
                 allocated: Longword;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   514
                 abuf     : PByte;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   515
                 alen     : Longword;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   516
                 volume   : PByte;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   517
                 end;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   518
     TMusic = (MUS_CMD, MUS_WAV, MUS_MOD, MUS_MID, MUS_OGG, MUS_MP3);
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   519
     TMix_Fading = (MIX_NO_FADING, MIX_FADING_OUT, MIX_FADING_IN);
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   520
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   521
     TMidiSong = record
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   522
               samples : LongInt;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   523
               events  : pointer;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   524
               end;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   525
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   526
     TMusicUnion = record
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   527
        case Byte of
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   528
             0: ( midi : TMidiSong );
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   529
             1: ( ogg  : pointer);
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   530
             end;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   531
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   532
     PMixMusic = ^TMixMusic;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   533
     TMixMusic = record
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   534
                 end;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   535
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   536
function  Mix_OpenAudio(frequency: LongInt; format: Word; channels: LongInt; chunksize: LongInt): LongInt; cdecl; external SDL_MixerLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   537
procedure Mix_CloseAudio; cdecl; external SDL_MixerLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   538
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   539
function  Mix_Volume(channel: LongInt; volume: LongInt): LongInt; cdecl; external SDL_MixerLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   540
function  Mix_SetDistance(channel: LongInt; distance: Byte): LongInt;  cdecl; external SDL_MixerLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   541
function  Mix_VolumeMusic(volume: LongInt): LongInt; cdecl; external SDL_MixerLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   542
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   543
function  Mix_AllocateChannels(numchans: LongInt): LongInt; cdecl; external SDL_MixerLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   544
procedure Mix_FreeChunk(chunk: PMixChunk); cdecl; external SDL_MixerLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   545
procedure Mix_FreeMusic(music: PMixMusic); cdecl; external SDL_MixerLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   546
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   547
function  Mix_LoadWAV_RW(src: PSDL_RWops; freesrc: LongInt): PMixChunk; cdecl; external SDL_MixerLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   548
function  Mix_LoadMUS(const filename: PChar): PMixMusic; cdecl; external SDL_MixerLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   549
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   550
function  Mix_Playing(channel: LongInt): LongInt; cdecl; external SDL_MixerLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   551
function  Mix_PlayingMusic: LongInt; cdecl; external SDL_MixerLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   552
function  Mix_FadeInMusic(music: PMixMusic; loops: LongInt; ms: LongInt): LongInt; cdecl; external SDL_MixerLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   553
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   554
function  Mix_PlayChannelTimed(channel: LongInt; chunk: PMixChunk; loops: LongInt; ticks: LongInt): LongInt; cdecl; external SDL_MixerLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   555
function  Mix_PlayMusic(music: PMixMusic; loops: LongInt): LongInt; cdecl; external SDL_MixerLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   556
function  Mix_PausedMusic(music: PMixMusic): LongInt; cdecl; external SDL_MixerLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   557
function  Mix_PauseMusic(music: PMixMusic): LongInt; cdecl; external SDL_MixerLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   558
function  Mix_ResumeMusic(music: PMixMusic): LongInt; cdecl; external SDL_MixerLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   559
function  Mix_HaltChannel(channel: LongInt): LongInt; cdecl; external SDL_MixerLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   560
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   561
(*  SDL_image  *)
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   562
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   563
const {$IFDEF WIN32}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   564
      SDL_ImageLibName = 'SDL_image.dll';
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   565
      {$ENDIF}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   566
      {$IFDEF UNIX}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   567
	{$IFDEF DARWIN}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   568
	  SDL_ImageLibName = 'SDL_image';
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   569
	{$ELSE}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   570
           SDL_ImageLibName = 'libSDL_image.so';
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   571
	{$ENDIF}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   572
      {$ENDIF}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   573
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   574
function IMG_Load(const _file: PChar): PSDL_Surface; cdecl; external SDL_ImageLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   575
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   576
(*  SDL_net  *)
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   577
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   578
const {$IFDEF WIN32}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   579
      SDL_NetLibName = 'SDL_net.dll';
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   580
      {$ENDIF}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   581
      {$IFDEF UNIX}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   582
	{$IFDEF DARWIN}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   583
	  SDL_NetLibName = 'SDL_net';
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   584
	{$ELSE}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   585
          SDL_NetLibName = 'libSDL_net.so';
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   586
	{$ENDIF}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   587
      {$ENDIF}
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   588
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   589
type TIPAddress = record
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   590
                  host: Longword;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   591
                  port: Word;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   592
                  end;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   593
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   594
     PTCPSocket = ^TTCPSocket;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   595
     TTCPSocket = record
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   596
                  ready: LongInt;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   597
                  channel: LongInt;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   598
                  remoteAddress: TIPaddress;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   599
                  localAddress: TIPaddress;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   600
                  sflag: LongInt;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   601
                  end;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   602
     PSDLNet_SocketSet = ^TSDLNet_SocketSet;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   603
     TSDLNet_SocketSet = record
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   604
                         numsockets,
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   605
                         maxsockets: LongInt;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   606
                         sockets: PTCPSocket;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   607
                         end;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   608
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   609
function SDLNet_Init: LongInt; cdecl; external SDL_NetLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   610
procedure SDLNet_Quit; cdecl; external SDL_NetLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   611
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   612
function SDLNet_AllocSocketSet(maxsockets: LongInt): PSDLNet_SocketSet; cdecl; external SDL_NetLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   613
function SDLNet_ResolveHost(var address: TIPaddress; host: PCHar; port: Word): LongInt; cdecl; external SDL_NetLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   614
function SDLNet_TCP_Accept(server: PTCPsocket): PTCPSocket; cdecl; external SDL_NetLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   615
function SDLNet_TCP_Open(var ip: TIPaddress): PTCPSocket; cdecl; external SDL_NetLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   616
function SDLNet_TCP_Send(sock: PTCPsocket; data: Pointer; len: LongInt): LongInt; cdecl; external SDL_NetLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   617
function SDLNet_TCP_Recv(sock: PTCPsocket; data: Pointer; len: LongInt): LongInt; cdecl; external SDL_NetLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   618
procedure SDLNet_TCP_Close(sock: PTCPsocket); cdecl; external SDL_NetLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   619
procedure SDLNet_FreeSocketSet(_set: PSDLNet_SocketSet); cdecl; external SDL_NetLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   620
function SDLNet_AddSocket(_set: PSDLNet_SocketSet; sock: PTCPSocket): LongInt; cdecl; external SDL_NetLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   621
function SDLNet_CheckSockets(_set: PSDLNet_SocketSet; timeout: LongInt): LongInt; cdecl; external SDL_NetLibName;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   622
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   623
procedure SDLNet_Write16(value: Word; buf: pointer);
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   624
procedure SDLNet_Write32(value: LongWord; buf: pointer);
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   625
function SDLNet_Read16(buf: pointer): Word;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   626
function SDLNet_Read32(buf: pointer): LongWord;
51d3f4b6293a revert audio to use SDL_mixer -- also frontend uses it, so it needs sdlmixer sources
koda
parents: 2477
diff changeset
   627
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   628
implementation
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   629
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   630
function SDL_MustLock(Surface: PSDL_Surface): Boolean;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   631
begin
432
b0f693024b50 Delphi mode off
unc0rr
parents: 377
diff changeset
   632
SDL_MustLock:= ( surface^.offset <> 0 )
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   633
       or(( surface^.flags and (SDL_HWSURFACE or SDL_ASYNCBLIT or SDL_RLEACCEL)) <> 0)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   634
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   635
459
95163c6efa69 Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents: 433
diff changeset
   636
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
   637
begin
95163c6efa69 Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents: 433
diff changeset
   638
  PByteArray(buf)^[1]:= value;
95163c6efa69 Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents: 433
diff changeset
   639
  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
   640
end;
95163c6efa69 Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents: 433
diff changeset
   641
95163c6efa69 Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents: 433
diff changeset
   642
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
   643
begin
95163c6efa69 Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents: 433
diff changeset
   644
  PByteArray(buf)^[3]:= value;
95163c6efa69 Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents: 433
diff changeset
   645
  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
   646
  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
   647
  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
   648
end;
95163c6efa69 Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents: 433
diff changeset
   649
95163c6efa69 Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents: 433
diff changeset
   650
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
   651
begin
95163c6efa69 Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents: 433
diff changeset
   652
  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
   653
                 (PByteArray(buf)^[0] shl 8)
95163c6efa69 Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents: 433
diff changeset
   654
end;
95163c6efa69 Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents: 433
diff changeset
   655
95163c6efa69 Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents: 433
diff changeset
   656
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
   657
begin
95163c6efa69 Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents: 433
diff changeset
   658
  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
   659
                  (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
   660
                  (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
   661
                  (PByteArray(buf)^[0] shl 24)
95163c6efa69 Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents: 433
diff changeset
   662
end;
95163c6efa69 Do not use SDL_Net's to/from network byte order conversion functions
unc0rr
parents: 433
diff changeset
   663
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   664
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
   665