QTfrontend/hwconsts.cpp.in
author koda
Sat, 20 Mar 2010 15:16:59 +0000
changeset 3025 01682ec58eb0
parent 2861 76542612ca91
child 3066 5c0efa437728
permissions -rw-r--r--
update project for ipad target relocate objects (windbar, fps, timer) so that window size doesn't matter move touch input in its custom controller rather than hack sdl one
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     1
/*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 1021
diff changeset
     2
 * Hedgewars, a free turn based strategy game
1967
213d368a002f Predefine some ammo schemes
unc0rr
parents: 1966
diff changeset
     3
 * Copyright (c) 2007-2009 Andrey Korotaev <unC0Rr@gmail.com>
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     4
 *
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     8
 *
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    12
 * GNU General Public License for more details.
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    13
 *
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    17
 */
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    18
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    19
#include "hwconsts.h"
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    20
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    21
QString * cProtoVer = new QString("${HEDGEWARS_PROTO_VER}");
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    22
QString * cDataDir = new QString("${HEDGEWARS_DATADIR}");
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2370
diff changeset
    23
QString * cConfigDir = new QString("");
907
a5b0b93a39c8 Use constant generated by cmake for version string
unc0rr
parents: 654
diff changeset
    24
QString * cVersionString = new QString("${HEDGEWARS_VERSION}");
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    25
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    26
QDir * bindir = new QDir("${HEDGEWARS_BINDIR}");
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    27
QDir * cfgdir = new QDir();
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    28
QDir * datadir = new QDir();
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    29
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    30
QStringList * Themes;
1210
bfed1b89bc85 Add themes list to map selection widget
unc0rr
parents: 1088
diff changeset
    31
QStringList * mapList;
607
26a91a9f5514 Now trainings can have custom ammostore
unc0rr
parents: 579
diff changeset
    32
2369
c3eb11f1ab3a Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents: 2177
diff changeset
    33
QString * cDefaultAmmoStore = new QString(
2457
ecf0c7e7995b Initial molotov cocktail. Still needs graphics, tweaking of fire behaviour. Also changed probabilities for default weapon sets
nemo
parents: 2428
diff changeset
    34
		"9391929422199121032235111001201000000211"
2473
b188194432f5 Tweak probabilities for default set. jetpack, invuln, molotov cocktail
nemo
parents: 2461
diff changeset
    35
		"0404000441400444645644444774776112211144"
2860
13a53315ae18 Awesome patch from TheException - adds editing of weapon delay and crate count. Tiy might want to tweak the crate graphic, could make be smaller or less overlappy.
nemo
parents: 2473
diff changeset
    36
		"0000000000000205500000040007004000000000"
13a53315ae18 Awesome patch from TheException - adds editing of weapon delay and crate count. Tiy might want to tweak the crate graphic, could make be smaller or less overlappy.
nemo
parents: 2473
diff changeset
    37
		"1311111312111111123114111111111111111211"
2369
c3eb11f1ab3a Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents: 2177
diff changeset
    38
		);
2860
13a53315ae18 Awesome patch from TheException - adds editing of weapon delay and crate count. Tiy might want to tweak the crate graphic, could make be smaller or less overlappy.
nemo
parents: 2473
diff changeset
    39
int cAmmoNumber = cDefaultAmmoStore->size() / 4;
2369
c3eb11f1ab3a Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents: 2177
diff changeset
    40
1967
213d368a002f Predefine some ammo schemes
unc0rr
parents: 1966
diff changeset
    41
QList< QPair<QString, QString> > cDefaultAmmos =
213d368a002f Predefine some ammo schemes
unc0rr
parents: 1966
diff changeset
    42
	QList< QPair<QString, QString> >()
213d368a002f Predefine some ammo schemes
unc0rr
parents: 1966
diff changeset
    43
	<< qMakePair(QString("Default"), *cDefaultAmmoStore)
2370
2ff8fce5e06f - Support probabilies from ammo scheme in engine
unc0rr
parents: 2369
diff changeset
    44
	<< qMakePair(QString("Crazy"),     QString(
2457
ecf0c7e7995b Initial molotov cocktail. Still needs graphics, tweaking of fire behaviour. Also changed probabilities for default weapon sets
nemo
parents: 2428
diff changeset
    45
		"9999999999999999992999999999999999299999"
2860
13a53315ae18 Awesome patch from TheException - adds editing of weapon delay and crate count. Tiy might want to tweak the crate graphic, could make be smaller or less overlappy.
nemo
parents: 2473
diff changeset
    46
		"1111111111111111111111111111111111111111"
2861
76542612ca91 remove turn waits for crazy and shoppa
nemo
parents: 2860
diff changeset
    47
		"0000000000000000000000000000000000000000"
2860
13a53315ae18 Awesome patch from TheException - adds editing of weapon delay and crate count. Tiy might want to tweak the crate graphic, could make be smaller or less overlappy.
nemo
parents: 2473
diff changeset
    48
		"1311111312111111123114111111111111111211"))
2370
2ff8fce5e06f - Support probabilies from ammo scheme in engine
unc0rr
parents: 2369
diff changeset
    49
	<< qMakePair(QString("Pro mode"),  QString(
2457
ecf0c7e7995b Initial molotov cocktail. Still needs graphics, tweaking of fire behaviour. Also changed probabilities for default weapon sets
nemo
parents: 2428
diff changeset
    50
		"9090009000000000000009000000000000000000"
2860
13a53315ae18 Awesome patch from TheException - adds editing of weapon delay and crate count. Tiy might want to tweak the crate graphic, could make be smaller or less overlappy.
nemo
parents: 2473
diff changeset
    51
		"0000000000000000000000000000000000000000"
13a53315ae18 Awesome patch from TheException - adds editing of weapon delay and crate count. Tiy might want to tweak the crate graphic, could make be smaller or less overlappy.
nemo
parents: 2473
diff changeset
    52
		"0000000000000205500000040007004000000000"
13a53315ae18 Awesome patch from TheException - adds editing of weapon delay and crate count. Tiy might want to tweak the crate graphic, could make be smaller or less overlappy.
nemo
parents: 2473
diff changeset
    53
		"1111111111111111111111111111111111111111"))
2370
2ff8fce5e06f - Support probabilies from ammo scheme in engine
unc0rr
parents: 2369
diff changeset
    54
	<< qMakePair(QString("Shoppa"),    QString(
2457
ecf0c7e7995b Initial molotov cocktail. Still needs graphics, tweaking of fire behaviour. Also changed probabilities for default weapon sets
nemo
parents: 2428
diff changeset
    55
		"0000009900000000000000000000000000000000"
2860
13a53315ae18 Awesome patch from TheException - adds editing of weapon delay and crate count. Tiy might want to tweak the crate graphic, could make be smaller or less overlappy.
nemo
parents: 2473
diff changeset
    56
		"4444410044244402210112121222422000000002"
2861
76542612ca91 remove turn waits for crazy and shoppa
nemo
parents: 2860
diff changeset
    57
		"0000000000000000000000000000000000000000"
2860
13a53315ae18 Awesome patch from TheException - adds editing of weapon delay and crate count. Tiy might want to tweak the crate graphic, could make be smaller or less overlappy.
nemo
parents: 2473
diff changeset
    58
		"1111111111111111111111111111111111111111"))
2370
2ff8fce5e06f - Support probabilies from ammo scheme in engine
unc0rr
parents: 2369
diff changeset
    59
	<< qMakePair(QString("Basketball"),QString(
2457
ecf0c7e7995b Initial molotov cocktail. Still needs graphics, tweaking of fire behaviour. Also changed probabilities for default weapon sets
nemo
parents: 2428
diff changeset
    60
		"0000009000000900000000000000000000000000"
2860
13a53315ae18 Awesome patch from TheException - adds editing of weapon delay and crate count. Tiy might want to tweak the crate graphic, could make be smaller or less overlappy.
nemo
parents: 2473
diff changeset
    61
		"0000000000000000000000000000000000000000"
13a53315ae18 Awesome patch from TheException - adds editing of weapon delay and crate count. Tiy might want to tweak the crate graphic, could make be smaller or less overlappy.
nemo
parents: 2473
diff changeset
    62
		"0000000000000005500000040007004000000000"
13a53315ae18 Awesome patch from TheException - adds editing of weapon delay and crate count. Tiy might want to tweak the crate graphic, could make be smaller or less overlappy.
nemo
parents: 2473
diff changeset
    63
		"1111111111111111111111111111111111111111"))
2370
2ff8fce5e06f - Support probabilies from ammo scheme in engine
unc0rr
parents: 2369
diff changeset
    64
	<< qMakePair(QString("Minefield"), QString(
2457
ecf0c7e7995b Initial molotov cocktail. Still needs graphics, tweaking of fire behaviour. Also changed probabilities for default weapon sets
nemo
parents: 2428
diff changeset
    65
		"0000009900090000000300000000000000000000"
2860
13a53315ae18 Awesome patch from TheException - adds editing of weapon delay and crate count. Tiy might want to tweak the crate graphic, could make be smaller or less overlappy.
nemo
parents: 2473
diff changeset
    66
		"0000000000000000000000000000000000000000"
13a53315ae18 Awesome patch from TheException - adds editing of weapon delay and crate count. Tiy might want to tweak the crate graphic, could make be smaller or less overlappy.
nemo
parents: 2473
diff changeset
    67
		"0000000000000205500000040007004000000000"
13a53315ae18 Awesome patch from TheException - adds editing of weapon delay and crate count. Tiy might want to tweak the crate graphic, could make be smaller or less overlappy.
nemo
parents: 2473
diff changeset
    68
		"1111111111111111111111111111111111111111"))
1967
213d368a002f Predefine some ammo schemes
unc0rr
parents: 1966
diff changeset
    69
	;
616
00928b3cf505 Use same team colors everywhere
unc0rr
parents: 608
diff changeset
    70
1514
c4170faf7b0a oops, remove leftovers
unc0rr
parents: 1507
diff changeset
    71
QColor * color1 = new QColor(221,   0,   0);
c4170faf7b0a oops, remove leftovers
unc0rr
parents: 1507
diff changeset
    72
QColor * color2 = new QColor( 67, 118, 233);
c4170faf7b0a oops, remove leftovers
unc0rr
parents: 1507
diff changeset
    73
QColor * color3 = new QColor( 62, 147,  33);
c4170faf7b0a oops, remove leftovers
unc0rr
parents: 1507
diff changeset
    74
QColor * color4 = new QColor(162,  61, 187);
c4170faf7b0a oops, remove leftovers
unc0rr
parents: 1507
diff changeset
    75
QColor * color5 = new QColor(255, 147,  41);
c4170faf7b0a oops, remove leftovers
unc0rr
parents: 1507
diff changeset
    76
QColor * color6 = new QColor(115, 115, 115);
654
1019b8fa8638 Finish asking host/port dialog implementation
unc0rr
parents: 616
diff changeset
    77
1019b8fa8638 Finish asking host/port dialog implementation
unc0rr
parents: 616
diff changeset
    78
QString * netHost = new QString();
1019b8fa8638 Finish asking host/port dialog implementation
unc0rr
parents: 616
diff changeset
    79
quint16 netPort = 46631;
1415
6fbfee0e113a Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents: 1263
diff changeset
    80
6fbfee0e113a Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents: 1263
diff changeset
    81
bool haveServer = ${HAVE_NETSERVER};