QTfrontend/hwconsts.cpp.in
author nemo
Sun, 19 Dec 2010 21:06:34 -0500
changeset 4578 f3cf226fad16
parent 4513 1dd97c710f5a
child 4881 35e6269227b6
permissions -rw-r--r--
Snowball weapon
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
3236
4ab3917d7d44 Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents: 3074
diff changeset
     3
 * Copyright (c) 2007-2010 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;
4513
1dd97c710f5a added general scripts to multiplayer and added option for scripts to allow user set schemes or weapon sets.
Henek
parents: 4337
diff changeset
    32
QStringList * scriptList;
607
26a91a9f5514 Now trainings can have custom ammostore
unc0rr
parents: 579
diff changeset
    33
3932
2fc211f60015 Engine:
smaxx
parents: 3876
diff changeset
    34
bool custom_config = false;
2fc211f60015 Engine:
smaxx
parents: 3876
diff changeset
    35
bool custom_data = false;
2fc211f60015 Engine:
smaxx
parents: 3876
diff changeset
    36
3865
0b1c426b035f Frontend:
smaxx
parents: 3836
diff changeset
    37
int cMaxTeams = 6;
0b1c426b035f Frontend:
smaxx
parents: 3836
diff changeset
    38
2369
c3eb11f1ab3a Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents: 2177
diff changeset
    39
QString * cDefaultAmmoStore = new QString(
4578
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    40
        "939192942219912103223511100120100000021111010101112"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    41
        "040504054160065554655446477657666666615551010111541"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    42
        "000000000000020550000004000700400000000020000000060"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    43
        "131111031211111112311411111111111111121111110111112"
3971
5c82ee165ed5 minor stuff
koda
parents: 3963
diff changeset
    44
        );
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
    45
int cAmmoNumber = cDefaultAmmoStore->size() / 4;
2369
c3eb11f1ab3a Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents: 2177
diff changeset
    46
1967
213d368a002f Predefine some ammo schemes
unc0rr
parents: 1966
diff changeset
    47
QList< QPair<QString, QString> > cDefaultAmmos =
3971
5c82ee165ed5 minor stuff
koda
parents: 3963
diff changeset
    48
        QList< QPair<QString, QString> >()
5c82ee165ed5 minor stuff
koda
parents: 3963
diff changeset
    49
        << qMakePair(QString("Default"), *cDefaultAmmoStore)
5c82ee165ed5 minor stuff
koda
parents: 3963
diff changeset
    50
        << qMakePair(QString("Crazy"),     QString(
5c82ee165ed5 minor stuff
koda
parents: 3963
diff changeset
    51
        // TODO: Remove Piano's unlimited uses!
4578
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    52
        "999999999999999999299999999999999929999999990999999"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    53
        "111111011111111111111111111111111111111111110111111"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    54
        "000000000000000000000000000000000000000000000000000"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    55
        "131111031211111112311411111111111111121111010111111"
3971
5c82ee165ed5 minor stuff
koda
parents: 3963
diff changeset
    56
        ))
4237
ef9b201c97fe by default selecting a game mode will select a weapon with the same name, and viceversa; toggable for every game
koda
parents: 4231
diff changeset
    57
        << qMakePair(QString("Pro Mode"),  QString(
4578
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    58
        "909000900000000000000900000000000000000000000000000"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    59
        "000000000000000000000000000000000000000000000000000"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    60
        "000000000000020550000004000700400000000020000000000"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    61
        "111111111111111111111111111111111111111110010111111"
3971
5c82ee165ed5 minor stuff
koda
parents: 3963
diff changeset
    62
        ))
5c82ee165ed5 minor stuff
koda
parents: 3963
diff changeset
    63
        << qMakePair(QString("Shoppa"),    QString(
4578
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    64
        "000000990000000000000000000000000000000000000000000"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    65
        "444441004424440221011212122242200000000200040001001"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    66
        "000000000000000000000000000000000000000000000000000"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    67
        "111111111111111111111111111111111111111110110111111"
3971
5c82ee165ed5 minor stuff
koda
parents: 3963
diff changeset
    68
        ))
4130
f437909ac9d4 Replace the deprecated Basketball mode with Clean Slate mode which uses a few of the new scheme options
nemo
parents: 3971
diff changeset
    69
        << qMakePair(QString("Clean Slate"),QString(
4578
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    70
        "101000900001000001100000000000000000000000000000100"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    71
        "040504054160065554655446477657666666615551010111541"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    72
        "000000000000000000000000000000000000000000000000000"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    73
        "131111031211111112311411111111111111121111110111111"
3971
5c82ee165ed5 minor stuff
koda
parents: 3963
diff changeset
    74
        ))
5c82ee165ed5 minor stuff
koda
parents: 3963
diff changeset
    75
        << qMakePair(QString("Minefield"), QString(
4578
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    76
        "000000990009000000030000000000000000000000000000000"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    77
        "000000000000000000000000000000000000000000000000000"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    78
        "000000000000020550000004000700400000000020000000060"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    79
        "111111111111111111111111111111111111111111110111111"
4231
f2eb9ac629e4 added two games modes and one weaponset
koda
parents: 4212
diff changeset
    80
        ))
f2eb9ac629e4 added two games modes and one weaponset
koda
parents: 4212
diff changeset
    81
        << qMakePair(QString("Thinking with Portals"), QString(
4578
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    82
        "900000900200000000210000000000000011000009000000000"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    83
        "040504054160065554655446477657666666615551010111541"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    84
        "000000000000020550000004000700400000000020000000060"
f3cf226fad16 Snowball weapon
nemo
parents: 4513
diff changeset
    85
        "131111031211111112311411111111111111121111110111111"
3971
5c82ee165ed5 minor stuff
koda
parents: 3963
diff changeset
    86
        ));
616
00928b3cf505 Use same team colors everywhere
unc0rr
parents: 608
diff changeset
    87
3876
3dd031a8b395 Frontend:
smaxx
parents: 3865
diff changeset
    88
QColor *colors[] = {
3dd031a8b395 Frontend:
smaxx
parents: 3865
diff changeset
    89
                    new QColor(221,   0,   0), // classic red
4212
9cf7f962cc97 Darken blue, brighten cyan to make more distinguishable, replace gold with peach. Should hopefully resolve objections about colour distinguishability
nemo
parents: 4206
diff changeset
    90
                    new QColor( 51, 102, 217), // dark blue
3876
3dd031a8b395 Frontend:
smaxx
parents: 3865
diff changeset
    91
                    new QColor( 62, 147,  33), // classic green
3dd031a8b395 Frontend:
smaxx
parents: 3865
diff changeset
    92
                    new QColor(162,  61, 187), // classic purple
4317
ba5d5a2f4c4b merge 0.9.14 back into trunk
nemo
parents: 4246 4294
diff changeset
    93
                    new QColor(255, 255,  0), // yellow
3876
3dd031a8b395 Frontend:
smaxx
parents: 3865
diff changeset
    94
                    new QColor(115, 115, 115), // classic gray
4212
9cf7f962cc97 Darken blue, brighten cyan to make more distinguishable, replace gold with peach. Should hopefully resolve objections about colour distinguishability
nemo
parents: 4206
diff changeset
    95
                    new QColor(0, 255, 255),   // cyan
9cf7f962cc97 Darken blue, brighten cyan to make more distinguishable, replace gold with peach. Should hopefully resolve objections about colour distinguishability
nemo
parents: 4206
diff changeset
    96
                    new QColor(255, 136, 136), // peach
3876
3dd031a8b395 Frontend:
smaxx
parents: 3865
diff changeset
    97
                    // add new colors here
3dd031a8b395 Frontend:
smaxx
parents: 3865
diff changeset
    98
                    0};
654
1019b8fa8638 Finish asking host/port dialog implementation
unc0rr
parents: 616
diff changeset
    99
1019b8fa8638 Finish asking host/port dialog implementation
unc0rr
parents: 616
diff changeset
   100
QString * netHost = new QString();
1019b8fa8638 Finish asking host/port dialog implementation
unc0rr
parents: 616
diff changeset
   101
quint16 netPort = 46631;
1415
6fbfee0e113a Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents: 1263
diff changeset
   102
6fbfee0e113a Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents: 1263
diff changeset
   103
bool haveServer = ${HAVE_NETSERVER};
3074
271cfcb2bcda Frontend:
smxx
parents: 3070
diff changeset
   104
bool isDevBuild = ${HW_DEV};