QTfrontend/hwconsts.cpp.in
author unc0rr
Mon, 29 Sep 2008 22:14:23 +0000
changeset 1301 c6fe8a4bfd34
parent 1263 24677a82531d
child 1415 6fbfee0e113a
permissions -rw-r--r--
Fix a bug screwing team selection up in network game (REMOVETEAM message doesn't have teamID, and after removing the team QMap still contains old info, when add and remove team with the same name, total hedgehogs number will be decreased by first team hh number)
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
1005
9d2e8f3a4fa6 Update copyright information
unc0rr
parents: 983
diff changeset
     3
 * Copyright (c) 2007, 2008 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}");
907
a5b0b93a39c8 Use constant generated by cmake for version string
unc0rr
parents: 654
diff changeset
    23
QString * cVersionString = new QString("${HEDGEWARS_VERSION}");
579
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    24
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    25
QDir * bindir = new QDir("${HEDGEWARS_BINDIR}");
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    26
QDir * cfgdir = new QDir();
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    27
QDir * datadir = new QDir();
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    28
94db15de0392 - Some changes to make build process clear
unc0rr
parents:
diff changeset
    29
QStringList * Themes;
1210
bfed1b89bc85 Add themes list to map selection widget
unc0rr
parents: 1088
diff changeset
    30
QStringList * mapList;
607
26a91a9f5514 Now trainings can have custom ammostore
unc0rr
parents: 579
diff changeset
    31
1263
24677a82531d Add Hellish bomb weapon
unc0rr
parents: 1261
diff changeset
    32
QString * cDefaultAmmoStore = new QString("eammstore 939192942219912103223511111");
616
00928b3cf505 Use same team colors everywhere
unc0rr
parents: 608
diff changeset
    33
00928b3cf505 Use same team colors everywhere
unc0rr
parents: 608
diff changeset
    34
QColor * color1 = new QColor(  0, 255, 255);
00928b3cf505 Use same team colors everywhere
unc0rr
parents: 608
diff changeset
    35
QColor * color2 = new QColor(255, 127, 127);
00928b3cf505 Use same team colors everywhere
unc0rr
parents: 608
diff changeset
    36
QColor * color3 = new QColor(103, 167, 231);
00928b3cf505 Use same team colors everywhere
unc0rr
parents: 608
diff changeset
    37
QColor * color4 = new QColor( 37, 181,  61);
00928b3cf505 Use same team colors everywhere
unc0rr
parents: 608
diff changeset
    38
QColor * color5 = new QColor(247, 237, 112);
00928b3cf505 Use same team colors everywhere
unc0rr
parents: 608
diff changeset
    39
QColor * color6 = new QColor(192,  85, 160);
654
1019b8fa8638 Finish asking host/port dialog implementation
unc0rr
parents: 616
diff changeset
    40
1019b8fa8638 Finish asking host/port dialog implementation
unc0rr
parents: 616
diff changeset
    41
QString * netHost = new QString();
1019b8fa8638 Finish asking host/port dialog implementation
unc0rr
parents: 616
diff changeset
    42
quint16 netPort = 46631;