author | unc0rr |
Sun, 05 Jan 2014 23:58:13 +0400 | |
branch | webgl |
changeset 9958 | 5a222923c8f8 |
parent 9521 | 8054d9d775fd |
child 9966 | 01e198990211 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
9080 | 3 |
* Copyright (c) 2004-2013 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 |
||
7226 | 19 |
{$IFNDEF FPC} |
20 |
{$ERROR Only FreePascal Compiler is supported!} |
|
2600 | 21 |
{$ENDIF} |
4 | 22 |
|
3165
3ec07a7d8456
just some very sane stuff for the iphone port (plus some macro on pascal files)
koda
parents:
2803
diff
changeset
|
23 |
{$MACRO ON} |
7226 | 24 |
{$MODE OBJFPC} |
4850 | 25 |
{$DEFINE GLunit:=GL} |
7226 | 26 |
{$WRITEABLECONST OFF} |
27 |
{$IMPLICITEXCEPTIONS OFF} |
|
28 |
{$VARSTRINGCHECKS ON} |
|
29 |
||
30 |
{$DEFINE USE_LUA_SCRIPT} |
|
31 |
||
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7837
diff
changeset
|
32 |
{$IF DEFINED(WEBGL) AND NOT DEFINED(PAS2C)} |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7837
diff
changeset
|
33 |
{$UNDEF WEBGL} |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7837
diff
changeset
|
34 |
{$ENDIF} |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7837
diff
changeset
|
35 |
|
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7837
diff
changeset
|
36 |
{$IFDEF WEBGL} |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7837
diff
changeset
|
37 |
{$DEFINE GL2} |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7837
diff
changeset
|
38 |
{$ENDIF} |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2716
diff
changeset
|
39 |
|
5286 | 40 |
{$IFDEF ANDROID} |
7226 | 41 |
{$DEFINE MOBILE} |
42 |
{$DEFINE USE_CONTEXT_RESTORE} |
|
43 |
{$DEFINE Java_Prefix:= 'Java_org_hedgewars_hedgeroid_EngineProtocol_PascalExports_'} |
|
44 |
{$ENDIF} |
|
45 |
||
46 |
{$IFDEF IPHONEOS} |
|
47 |
{$DEFINE MOBILE} |
|
48 |
{$ENDIF} |
|
49 |
||
50 |
{$IFDEF MOBILE} |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6460
diff
changeset
|
51 |
{$DEFINE HWLIBRARY} |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6460
diff
changeset
|
52 |
{$DEFINE GLunit:=gles11} |
6676
21cf35a570a7
add keywords for landscape ammomenu and touch interface
koda
parents:
6674
diff
changeset
|
53 |
{$DEFINE USE_LANDSCAPE_AMMOMENU} |
21cf35a570a7
add keywords for landscape ammomenu and touch interface
koda
parents:
6674
diff
changeset
|
54 |
{$DEFINE USE_TOUCH_INTERFACE} |
7226 | 55 |
{$ELSE} |
56 |
{$DEFINE USE_AM_NUMCOLUMN} |
|
8138
cfb228baa598
Invert S3D_DISABLED to more consistent USE_S3D_RENDERING
Chris Wong <lambda.fairy@gmail.com>
parents:
7837
diff
changeset
|
57 |
{$DEFINE USE_S3D_RENDERING} |
5286 | 58 |
{$ENDIF} |
59 |
||
6033
6bcc36225162
fix compiling for android, strip out all delphi code, objfpc ftw
koda
parents:
6025
diff
changeset
|
60 |
|
6674 | 61 |
{$IFDEF WIN32} |
62 |
{$DEFINE USE_CONTEXT_RESTORE} |
|
63 |
{$ENDIF} |
|
64 |
||
7226 | 65 |
{$IFDEF DARWIN} |
66 |
{$IFNDEF IPHONEOS} |
|
6674 | 67 |
{$DEFINE USE_CONTEXT_RESTORE} |
68 |
{$ENDIF} |
|
2630 | 69 |
{$ENDIF} |
70 |
||
7837 | 71 |
{$IFDEF USE_TOUCH_INTERFACE} |
9317
a04c30940d2d
use SDL2 as ifdef symbol because we're not really sdl1.3 compatible, change the compatibility layer, drop unused code, add some documentation
koda
parents:
9080
diff
changeset
|
72 |
{$DEFINE SDL2} |
7837 | 73 |
{$ENDIF} |
7059 | 74 |
|
75 |
{$IFDEF PAS2C} |
|
9958 | 76 |
{ $DEFINE NOCONSOLE} |
7059 | 77 |
{$DEFINE USE_SDLTHREADS} |
7067
f98ec3aecf4e
A solution to char vs string problem: mark single-letter strings with _S macro
unc0rr
parents:
7059
diff
changeset
|
78 |
{$ENDIF} |
f98ec3aecf4e
A solution to char vs string problem: mark single-letter strings with _S macro
unc0rr
parents:
7059
diff
changeset
|
79 |
|
f98ec3aecf4e
A solution to char vs string problem: mark single-letter strings with _S macro
unc0rr
parents:
7059
diff
changeset
|
80 |
{$DEFINE _S:=} |
7070 | 81 |
{$DEFINE _P:=} |
7226 | 82 |
|
83 |
//{$DEFINE TRACEAIACTIONS} |
|
84 |
//{$DEFINE COUNTTICKS} |
|
85 |