hedgewars/options.inc
author koda
Sun, 20 Mar 2016 03:08:51 -0400
changeset 11617 b7d5d75469ee
parent 11342 ed5a6478e710
child 11665 64bb93e9b2b5
permissions -rw-r--r--
Move pixel format conversion from uVideoRec to AVWrapper This has several benefits, being in C-land allows us to better use libav API and avoid mixing memory allocated from Pascal. Also the C code for the conversion loop generated by GCC or Clang is probably more optimized than by Freepascal. Finally it will simplify code in the future if we are going to enable any other pixel format than yuv420p. Change the coefficients to improve color accuracy during conversion.
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: 515
diff changeset
     2
 * Hedgewars, a free turn based strategy game
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 10108
diff changeset
     3
 * Copyright (c) 2004-2015 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: 80
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
57c2ef19f719 Relicense to GPL
unc0rr
parents: 80
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
57c2ef19f719 Relicense to GPL
unc0rr
parents: 80
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: 80
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
57c2ef19f719 Relicense to GPL
unc0rr
parents: 80
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
57c2ef19f719 Relicense to GPL
unc0rr
parents: 80
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57c2ef19f719 Relicense to GPL
unc0rr
parents: 80
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: 80
diff changeset
    14
 * You should have received a copy of the GNU General Public License
57c2ef19f719 Relicense to GPL
unc0rr
parents: 80
diff changeset
    15
 * along with this program; if not, write to the Free Software
10108
c68cf030eded update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents: 10015
diff changeset
    16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  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
7226
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    19
{$IFNDEF FPC}
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    20
    {$ERROR Only FreePascal Compiler is supported!}
2600
7b21daf84933 revamped SDLh.pas
koda
parents: 2599
diff changeset
    21
{$ENDIF}
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    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
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    24
{$MODE OBJFPC}
4850
434cd1284204 code cleanup
koda
parents: 4347
diff changeset
    25
{$DEFINE GLunit:=GL}
7226
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    26
{$WRITEABLECONST OFF}
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    27
{$IMPLICITEXCEPTIONS OFF}
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    28
{$VARSTRINGCHECKS ON}
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    29
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    30
{$DEFINE USE_LUA_SCRIPT}
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    31
5286
22c1f4833a86 First commit..
Xeli
parents: 5275
diff changeset
    32
{$IFDEF ANDROID}
7226
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    33
    {$DEFINE MOBILE}
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    34
    {$DEFINE USE_CONTEXT_RESTORE}
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    35
    {$DEFINE Java_Prefix:= 'Java_org_hedgewars_hedgeroid_EngineProtocol_PascalExports_'}
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    36
{$ENDIF}
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    37
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    38
{$IFDEF IPHONEOS}
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    39
    {$DEFINE MOBILE}
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    40
{$ENDIF}
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    41
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    42
{$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
    43
    {$DEFINE HWLIBRARY}
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6460
diff changeset
    44
    {$DEFINE GLunit:=gles11}
6676
21cf35a570a7 add keywords for landscape ammomenu and touch interface
koda
parents: 6674
diff changeset
    45
    {$DEFINE USE_LANDSCAPE_AMMOMENU}
21cf35a570a7 add keywords for landscape ammomenu and touch interface
koda
parents: 6674
diff changeset
    46
    {$DEFINE USE_TOUCH_INTERFACE}
7226
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    47
{$ELSE}
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    48
    {$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
    49
    {$DEFINE USE_S3D_RENDERING}
5286
22c1f4833a86 First commit..
Xeli
parents: 5275
diff changeset
    50
{$ENDIF}
22c1f4833a86 First commit..
Xeli
parents: 5275
diff changeset
    51
6033
6bcc36225162 fix compiling for android, strip out all delphi code, objfpc ftw
koda
parents: 6025
diff changeset
    52
6674
4d3209a189ca gather context restoration under a single keyword
koda
parents: 6580
diff changeset
    53
{$IFDEF WIN32}
4d3209a189ca gather context restoration under a single keyword
koda
parents: 6580
diff changeset
    54
    {$DEFINE USE_CONTEXT_RESTORE}
4d3209a189ca gather context restoration under a single keyword
koda
parents: 6580
diff changeset
    55
{$ENDIF}
4d3209a189ca gather context restoration under a single keyword
koda
parents: 6580
diff changeset
    56
7226
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    57
{$IFDEF DARWIN}
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    58
    {$IFNDEF IPHONEOS}
6674
4d3209a189ca gather context restoration under a single keyword
koda
parents: 6580
diff changeset
    59
        {$DEFINE USE_CONTEXT_RESTORE}
4d3209a189ca gather context restoration under a single keyword
koda
parents: 6580
diff changeset
    60
    {$ENDIF}
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2609
diff changeset
    61
{$ENDIF}
079ef82eac75 revamped file access and debug display
koda
parents: 2609
diff changeset
    62
7067
f98ec3aecf4e A solution to char vs string problem: mark single-letter strings with _S macro
unc0rr
parents: 7059
diff changeset
    63
{$DEFINE _S:=}
7070
8d4189609e90 oops, wrong type
unc0rr
parents: 7067
diff changeset
    64
{$DEFINE _P:=}
7226
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    65
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    66
//{$DEFINE TRACEAIACTIONS}
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    67
//{$DEFINE COUNTTICKS}
c3b4fc19fcd4 reorganize options.inc a little
koda
parents: 7070
diff changeset
    68