QTfrontend/team.cpp
author nemo
Fri, 26 Feb 2010 19:52:22 +0000
changeset 2874 3c7c2bf1ba38
parent 2833 9c2accd92cc7
child 2879 935ead93893c
permissions -rw-r--r--
A simple hat reservation mechanism. Can be worked around with a little effort, but to make it useful, you'd have to get everyone you played with to work around it too. Quite a bit of effort for a small reward feature.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     1
/*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 607
diff changeset
     2
 * Hedgewars, a free turn based strategy game
1656
209cf0e2fc36 Finish voicepacks support in engine (not tested though)
unc0rr
parents: 1655
diff changeset
     3
 * Copyright (c) 2005-2007, 2009 Andrey Korotaev <unC0Rr@gmail.com>
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     4
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     8
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    12
 * GNU General Public License for more details.
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    13
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    14
 * You should have received a copy of the GNU General Public License
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    15
 * along with this program; if not, write to the Free Software
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    17
 */
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    18
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    19
#include <QFile>
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    20
#include <QTextStream>
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    21
#include <QApplication>
471
e1eb64ba5e9c Small cleanup, faster compilation as a result
unc0rr
parents: 468
diff changeset
    22
#include <QStringList>
e1eb64ba5e9c Small cleanup, faster compilation as a result
unc0rr
parents: 468
diff changeset
    23
#include <QLineEdit>
2874
3c7c2bf1ba38 A simple hat reservation mechanism. Can be worked around with a little effort, but to make it useful, you'd have to get everyone you played with to work around it too. Quite a bit of effort for a small reward feature.
nemo
parents: 2833
diff changeset
    24
#include <QCryptographicHash>
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    25
#include "team.h"
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    26
#include "hwform.h"
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    27
#include "pages.h"
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    28
#include "hwconsts.h"
1240
16b85f292030 Store selected hats in team config
unc0rr
parents: 1066
diff changeset
    29
#include "hats.h"
314
83773ccf4f09 client/server net pre-alpha
displacer
parents: 312
diff changeset
    30
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1293
diff changeset
    31
HWTeam::HWTeam(const QString & teamname) :
c8994d47f41d Adding teams now works
unc0rr
parents: 1293
diff changeset
    32
	difficulty(0),
c8994d47f41d Adding teams now works
unc0rr
parents: 1293
diff changeset
    33
	numHedgehogs(4),
c8994d47f41d Adding teams now works
unc0rr
parents: 1293
diff changeset
    34
	m_isNetTeam(false)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    35
{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    36
	TeamName = teamname;
245
4f6b53b7a567 Make teams config file name be team name
unc0rr
parents: 239
diff changeset
    37
	OldTeamName = TeamName;
1240
16b85f292030 Store selected hats in team config
unc0rr
parents: 1066
diff changeset
    38
	for (int i = 0; i < 8; i++)
16b85f292030 Store selected hats in team config
unc0rr
parents: 1066
diff changeset
    39
	{
16b85f292030 Store selected hats in team config
unc0rr
parents: 1066
diff changeset
    40
		HHName[i].sprintf("hedgehog %d", i);
16b85f292030 Store selected hats in team config
unc0rr
parents: 1066
diff changeset
    41
		HHHat[i] = "NoHat";
16b85f292030 Store selected hats in team config
unc0rr
parents: 1066
diff changeset
    42
	}
1538
8bc56dd2e997 Set default fort to 'Plane' and default grave to 'Statue'
unc0rr
parents: 1325
diff changeset
    43
	Grave = "Statue";
8bc56dd2e997 Set default fort to 'Plane' and default grave to 'Statue'
unc0rr
parents: 1325
diff changeset
    44
	Fort = "Plane";
1659
fd593a5e71fb Team class now supports voicepacks
unc0rr
parents: 1656
diff changeset
    45
	Voicepack = "Default";
2747
7889a3a9724f Server:
smxx
parents: 2428
diff changeset
    46
	Flag = "hedgewars";
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    47
	for(int i = 0; i < BINDS_NUMBER; i++)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    48
	{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    49
		binds[i].action = cbinds[i].action;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    50
		binds[i].strbind = cbinds[i].strbind;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    51
	}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    52
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    53
353
5ec611d702a0 initial hedgehogs num fixed
displacer
parents: 352
diff changeset
    54
HWTeam::HWTeam(const QStringList& strLst) :
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1293
diff changeset
    55
  numHedgehogs(4),
c8994d47f41d Adding teams now works
unc0rr
parents: 1293
diff changeset
    56
  m_isNetTeam(true)
314
83773ccf4f09 client/server net pre-alpha
displacer
parents: 312
diff changeset
    57
{
1245
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1244
diff changeset
    58
	// net teams are configured from QStringList
2747
7889a3a9724f Server:
smxx
parents: 2428
diff changeset
    59
	if(strLst.size() != 23) throw HWTeamConstructException();
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1293
diff changeset
    60
	TeamName = strLst[0];
c8994d47f41d Adding teams now works
unc0rr
parents: 1293
diff changeset
    61
	Grave = strLst[1];
c8994d47f41d Adding teams now works
unc0rr
parents: 1293
diff changeset
    62
	Fort = strLst[2];
1662
cefb9d0f816f Support voicepack info in net server
unc0rr
parents: 1659
diff changeset
    63
	Voicepack = strLst[3];
2747
7889a3a9724f Server:
smxx
parents: 2428
diff changeset
    64
	Flag = strLst[4];
7889a3a9724f Server:
smxx
parents: 2428
diff changeset
    65
	Owner = strLst[5];
7889a3a9724f Server:
smxx
parents: 2428
diff changeset
    66
	difficulty = strLst[6].toUInt();
1245
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1244
diff changeset
    67
	for(int i = 0; i < 8; i++)
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1244
diff changeset
    68
	{
2747
7889a3a9724f Server:
smxx
parents: 2428
diff changeset
    69
		HHName[i]=strLst[i * 2 + 7];
7889a3a9724f Server:
smxx
parents: 2428
diff changeset
    70
		HHHat[i]=strLst[i * 2 + 8];
2833
9c2accd92cc7 Check for empty hat, somehow claymore managed this, this should be a workaround pending figuring out how he did it.
nemo
parents: 2747
diff changeset
    71
// Somehow claymore managed an empty hat.  Until we figure out how, this should avoid a repeat
9c2accd92cc7 Check for empty hat, somehow claymore managed this, this should be a workaround pending figuring out how he did it.
nemo
parents: 2747
diff changeset
    72
// Checking net teams is probably pointless, but can't hurt.
9c2accd92cc7 Check for empty hat, somehow claymore managed this, this should be a workaround pending figuring out how he did it.
nemo
parents: 2747
diff changeset
    73
        if (HHHat[i].length() == 0) HHHat[i] = "NoHat"; 
1245
d2eca4a053f5 Send hats info via net. Hats implementation complete now.
unc0rr
parents: 1244
diff changeset
    74
	}
314
83773ccf4f09 client/server net pre-alpha
displacer
parents: 312
diff changeset
    75
}
83773ccf4f09 client/server net pre-alpha
displacer
parents: 312
diff changeset
    76
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents: 1840
diff changeset
    77
HWTeam::HWTeam() :
339
7535ab6c3820 Run game message added, team and config info provided for net game
displacer
parents: 336
diff changeset
    78
  difficulty(0),
353
5ec611d702a0 initial hedgehogs num fixed
displacer
parents: 352
diff changeset
    79
  numHedgehogs(4),
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1293
diff changeset
    80
  m_isNetTeam(false)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    81
{
1840
4747f0232b88 ttsmj2's random teams patch
unc0rr
parents: 1683
diff changeset
    82
	TeamName = QString("Team");
4747f0232b88 ttsmj2's random teams patch
unc0rr
parents: 1683
diff changeset
    83
	for (int i = 0; i < 8; i++)
4747f0232b88 ttsmj2's random teams patch
unc0rr
parents: 1683
diff changeset
    84
	{
4747f0232b88 ttsmj2's random teams patch
unc0rr
parents: 1683
diff changeset
    85
		HHName[i].sprintf("hedgehog %d", i);
4747f0232b88 ttsmj2's random teams patch
unc0rr
parents: 1683
diff changeset
    86
		HHHat[i] = "NoHat";
4747f0232b88 ttsmj2's random teams patch
unc0rr
parents: 1683
diff changeset
    87
	}
4747f0232b88 ttsmj2's random teams patch
unc0rr
parents: 1683
diff changeset
    88
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents: 1840
diff changeset
    89
	Grave = QString("Simple"); // default
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents: 1840
diff changeset
    90
	Fort = QString("Island"); // default
2192
4763a778c033 - Fix quickplay sound bug triggered by two faults: ttsmj's (passing voicepack with empty name in team config) and koda's (he changed fallback to default scheme condition)
unc0rr
parents: 1907
diff changeset
    91
	Voicepack = "Default";
2747
7889a3a9724f Server:
smxx
parents: 2428
diff changeset
    92
	Flag = "hedgewars";
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents: 1840
diff changeset
    93
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    94
	for(int i = 0; i < BINDS_NUMBER; i++)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    95
	{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    96
		binds[i].action = cbinds[i].action;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    97
		binds[i].strbind = cbinds[i].strbind;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    98
	}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    99
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   100
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   101
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   102
bool HWTeam::LoadFromFile()
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   103
{
353
5ec611d702a0 initial hedgehogs num fixed
displacer
parents: 352
diff changeset
   104
	numHedgehogs=4;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   105
	QFile cfgfile(cfgdir->absolutePath() + "/" + TeamName + ".cfg");
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   106
	if (!cfgfile.open(QIODevice::ReadOnly)) return false;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   107
	QTextStream stream(&cfgfile);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   108
	stream.setCodec("UTF-8");
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   109
	QString str;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   110
	QString action;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   111
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   112
	while (!stream.atEnd())
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   113
	{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   114
		str = stream.readLine();
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   115
		if (str.startsWith(";")) continue;
245
4f6b53b7a567 Make teams config file name be team name
unc0rr
parents: 239
diff changeset
   116
		/*if (str.startsWith("name team "))
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   117
		{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   118
			str.remove(0, 10);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   119
			TeamName = str;
245
4f6b53b7a567 Make teams config file name be team name
unc0rr
parents: 239
diff changeset
   120
		} else*/
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   121
		if (str.startsWith("name hh"))
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   122
		{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   123
			str.remove(0, 7);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   124
			long i = str.left(1).toLong();
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   125
			if ((i < 0) || (i > 7)) continue;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   126
			str.remove(0, 2);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   127
			HHName[i] = str;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   128
		} else
1240
16b85f292030 Store selected hats in team config
unc0rr
parents: 1066
diff changeset
   129
		if (str.startsWith("hat"))
16b85f292030 Store selected hats in team config
unc0rr
parents: 1066
diff changeset
   130
		{
16b85f292030 Store selected hats in team config
unc0rr
parents: 1066
diff changeset
   131
			str.remove(0, 3);
16b85f292030 Store selected hats in team config
unc0rr
parents: 1066
diff changeset
   132
			long i = str.left(1).toLong();
16b85f292030 Store selected hats in team config
unc0rr
parents: 1066
diff changeset
   133
			if ((i < 0) || (i > 7)) continue;
16b85f292030 Store selected hats in team config
unc0rr
parents: 1066
diff changeset
   134
			str.remove(0, 2);
16b85f292030 Store selected hats in team config
unc0rr
parents: 1066
diff changeset
   135
			HHHat[i] = str;
2833
9c2accd92cc7 Check for empty hat, somehow claymore managed this, this should be a workaround pending figuring out how he did it.
nemo
parents: 2747
diff changeset
   136
// Somehow claymore managed an empty hat.  Until we figure out how, this should avoid a repeat
9c2accd92cc7 Check for empty hat, somehow claymore managed this, this should be a workaround pending figuring out how he did it.
nemo
parents: 2747
diff changeset
   137
            if (HHHat[i].length() == 0) HHHat[i] = "NoHat"; 
1240
16b85f292030 Store selected hats in team config
unc0rr
parents: 1066
diff changeset
   138
		} else
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   139
		if (str.startsWith("grave "))
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   140
		{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   141
			str.remove(0, 6);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   142
			Grave = str;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   143
		} else
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   144
		if (str.startsWith("fort "))
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   145
		{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   146
			str.remove(0, 5);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   147
			Fort = str;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   148
		} else
2747
7889a3a9724f Server:
smxx
parents: 2428
diff changeset
   149
		if (str.startsWith("flag "))
7889a3a9724f Server:
smxx
parents: 2428
diff changeset
   150
		{
7889a3a9724f Server:
smxx
parents: 2428
diff changeset
   151
			str.remove(0, 5);
7889a3a9724f Server:
smxx
parents: 2428
diff changeset
   152
			Flag = str;
7889a3a9724f Server:
smxx
parents: 2428
diff changeset
   153
		} else
1659
fd593a5e71fb Team class now supports voicepacks
unc0rr
parents: 1656
diff changeset
   154
		if (str.startsWith("voicepack "))
fd593a5e71fb Team class now supports voicepacks
unc0rr
parents: 1656
diff changeset
   155
		{
fd593a5e71fb Team class now supports voicepacks
unc0rr
parents: 1656
diff changeset
   156
			str.remove(0, 10);
fd593a5e71fb Team class now supports voicepacks
unc0rr
parents: 1656
diff changeset
   157
			Voicepack = str;
fd593a5e71fb Team class now supports voicepacks
unc0rr
parents: 1656
diff changeset
   158
		} else
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   159
		if (str.startsWith("bind "))
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   160
		{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   161
			str.remove(0, 5);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   162
			action = str.section(' ', 1);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   163
			str = str.section(' ', 0, 0);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   164
			str.truncate(15);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   165
			for (int i = 0; i < BINDS_NUMBER; i++)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   166
				if (action == binds[i].action)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   167
				{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   168
					binds[i].strbind = str;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   169
					break;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   170
				}
239
f9adf3c73bed 'Proto' class to make things easier
unc0rr
parents: 231
diff changeset
   171
		} else
231
c77b16e48273 bots power icons added
displacer
parents: 184
diff changeset
   172
		if (str.startsWith("difficulty "))
c77b16e48273 bots power icons added
displacer
parents: 184
diff changeset
   173
		{
c77b16e48273 bots power icons added
displacer
parents: 184
diff changeset
   174
		  str.remove(0, 11);
c77b16e48273 bots power icons added
displacer
parents: 184
diff changeset
   175
		  difficulty=str.toUInt();
c77b16e48273 bots power icons added
displacer
parents: 184
diff changeset
   176
		  if (difficulty>5) difficulty=0; // this shouldn't normally happen
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   177
		}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   178
	}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   179
	cfgfile.close();
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   180
	return true;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   181
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   182
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   183
bool HWTeam::SaveToFile()
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   184
{
245
4f6b53b7a567 Make teams config file name be team name
unc0rr
parents: 239
diff changeset
   185
	if (OldTeamName != TeamName)
4f6b53b7a567 Make teams config file name be team name
unc0rr
parents: 239
diff changeset
   186
	{
4f6b53b7a567 Make teams config file name be team name
unc0rr
parents: 239
diff changeset
   187
		QFile cfgfile(cfgdir->absolutePath() + "/" + OldTeamName + ".cfg");
4f6b53b7a567 Make teams config file name be team name
unc0rr
parents: 239
diff changeset
   188
		cfgfile.remove();
4f6b53b7a567 Make teams config file name be team name
unc0rr
parents: 239
diff changeset
   189
		OldTeamName = TeamName;
4f6b53b7a567 Make teams config file name be team name
unc0rr
parents: 239
diff changeset
   190
	}
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   191
	QFile cfgfile(cfgdir->absolutePath() + "/" + TeamName + ".cfg");
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   192
	if (!cfgfile.open(QIODevice::WriteOnly)) return false;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   193
	QTextStream stream(&cfgfile);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   194
	stream.setCodec("UTF-8");
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   195
	stream << "; Generated by Hedgewars, do not modify" << endl;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   196
	stream << "name team " << TeamName << endl;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   197
	for (int i = 0; i < 8; i++)
1240
16b85f292030 Store selected hats in team config
unc0rr
parents: 1066
diff changeset
   198
	{
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   199
		stream << "name hh" << i << " " << HHName[i] << endl;
1240
16b85f292030 Store selected hats in team config
unc0rr
parents: 1066
diff changeset
   200
		stream << "hat" << i << " " << HHHat[i] << endl;
16b85f292030 Store selected hats in team config
unc0rr
parents: 1066
diff changeset
   201
	}
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   202
	stream << "grave " << Grave << endl;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   203
	stream << "fort " << Fort << endl;
1659
fd593a5e71fb Team class now supports voicepacks
unc0rr
parents: 1656
diff changeset
   204
	stream << "voicepack " << Voicepack << endl;
2747
7889a3a9724f Server:
smxx
parents: 2428
diff changeset
   205
	stream << "flag " << Flag << endl;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   206
	for(int i = 0; i < BINDS_NUMBER; i++)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   207
	{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   208
		stream << "bind " << binds[i].strbind << " " << binds[i].action << endl;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   209
	}
231
c77b16e48273 bots power icons added
displacer
parents: 184
diff changeset
   210
	stream << "difficulty " << difficulty << endl;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   211
	cfgfile.close();
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   212
	return true;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   213
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   214
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   215
void HWTeam::SetToPage(HWForm * hwform)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   216
{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   217
	hwform->ui.pageEditTeam->TeamNameEdit->setText(TeamName);
336
82d654db133d Team level at new place on team config page
unc0rr
parents: 319
diff changeset
   218
	hwform->ui.pageEditTeam->CBTeamLvl->setCurrentIndex(difficulty);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   219
	for(int i = 0; i < 8; i++)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   220
	{
2874
3c7c2bf1ba38 A simple hat reservation mechanism. Can be worked around with a little effort, but to make it useful, you'd have to get everyone you played with to work around it too. Quite a bit of effort for a small reward feature.
nemo
parents: 2833
diff changeset
   221
         hwform->ui.pageEditTeam->HHNameEdit[i]->setText(HHName[i]);
3c7c2bf1ba38 A simple hat reservation mechanism. Can be worked around with a little effort, but to make it useful, you'd have to get everyone you played with to work around it too. Quite a bit of effort for a small reward feature.
nemo
parents: 2833
diff changeset
   222
         if (HHHat[i].startsWith("Reserved"))
3c7c2bf1ba38 A simple hat reservation mechanism. Can be worked around with a little effort, but to make it useful, you'd have to get everyone you played with to work around it too. Quite a bit of effort for a small reward feature.
nemo
parents: 2833
diff changeset
   223
            hwform->ui.pageEditTeam->HHHats[i]->setCurrentIndex(hwform->ui.pageEditTeam->HHHats[i]->findData("Reserved "+HHHat[i].remove(0,40), Qt::DisplayRole));
3c7c2bf1ba38 A simple hat reservation mechanism. Can be worked around with a little effort, but to make it useful, you'd have to get everyone you played with to work around it too. Quite a bit of effort for a small reward feature.
nemo
parents: 2833
diff changeset
   224
         else
3c7c2bf1ba38 A simple hat reservation mechanism. Can be worked around with a little effort, but to make it useful, you'd have to get everyone you played with to work around it too. Quite a bit of effort for a small reward feature.
nemo
parents: 2833
diff changeset
   225
	        hwform->ui.pageEditTeam->HHHats[i]->setCurrentIndex(hwform->ui.pageEditTeam->HHHats[i]->findData(HHHat[i], Qt::DisplayRole));
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   226
	}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   227
	hwform->ui.pageEditTeam->CBGrave->setCurrentIndex(hwform->ui.pageEditTeam->CBGrave->findText(Grave));
2747
7889a3a9724f Server:
smxx
parents: 2428
diff changeset
   228
	hwform->ui.pageEditTeam->CBFlag->setCurrentIndex(hwform->ui.pageEditTeam->CBFlag->findText(Flag));
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   229
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   230
	hwform->ui.pageEditTeam->CBFort->setCurrentIndex(hwform->ui.pageEditTeam->CBFort->findText(Fort));
1659
fd593a5e71fb Team class now supports voicepacks
unc0rr
parents: 1656
diff changeset
   231
	hwform->ui.pageEditTeam->CBVoicepack->setCurrentIndex(hwform->ui.pageEditTeam->CBVoicepack->findText(Voicepack));
1287
4a0cbcbe3521 Move preview icons into comboboxes
unc0rr
parents: 1245
diff changeset
   232
	//hwform->ui.pageEditTeam->CBFort_activated(Fort);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   233
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   234
	for(int i = 0; i < BINDS_NUMBER; i++)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   235
	{
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2192
diff changeset
   236
		hwform->ui.pageEditTeam->CBBind[i]->setCurrentIndex(hwform->ui.pageEditTeam->CBBind[i]->findData(binds[i].strbind));
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   237
	}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   238
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   239
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   240
void HWTeam::GetFromPage(HWForm * hwform)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   241
{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   242
	TeamName  = hwform->ui.pageEditTeam->TeamNameEdit->text();
336
82d654db133d Team level at new place on team config page
unc0rr
parents: 319
diff changeset
   243
	difficulty = hwform->ui.pageEditTeam->CBTeamLvl->currentIndex();
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   244
	for(int i = 0; i < 8; i++)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   245
	{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   246
		HHName[i] = hwform->ui.pageEditTeam->HHNameEdit[i]->text();
2874
3c7c2bf1ba38 A simple hat reservation mechanism. Can be worked around with a little effort, but to make it useful, you'd have to get everyone you played with to work around it too. Quite a bit of effort for a small reward feature.
nemo
parents: 2833
diff changeset
   247
        if (hwform->ui.pageEditTeam->HHHats[i]->currentText().startsWith("Reserved"))
3c7c2bf1ba38 A simple hat reservation mechanism. Can be worked around with a little effort, but to make it useful, you'd have to get everyone you played with to work around it too. Quite a bit of effort for a small reward feature.
nemo
parents: 2833
diff changeset
   248
		    HHHat[i] = "Reserved"+playerHash+hwform->ui.pageEditTeam->HHHats[i]->currentText().remove(0,9);
3c7c2bf1ba38 A simple hat reservation mechanism. Can be worked around with a little effort, but to make it useful, you'd have to get everyone you played with to work around it too. Quite a bit of effort for a small reward feature.
nemo
parents: 2833
diff changeset
   249
        else
3c7c2bf1ba38 A simple hat reservation mechanism. Can be worked around with a little effort, but to make it useful, you'd have to get everyone you played with to work around it too. Quite a bit of effort for a small reward feature.
nemo
parents: 2833
diff changeset
   250
	        HHHat[i] = hwform->ui.pageEditTeam->HHHats[i]->currentText();
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   251
	}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   252
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   253
	Grave = hwform->ui.pageEditTeam->CBGrave->currentText();
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   254
	Fort = hwform->ui.pageEditTeam->CBFort->currentText();
1659
fd593a5e71fb Team class now supports voicepacks
unc0rr
parents: 1656
diff changeset
   255
	Voicepack = hwform->ui.pageEditTeam->CBVoicepack->currentText();
2747
7889a3a9724f Server:
smxx
parents: 2428
diff changeset
   256
	Flag = hwform->ui.pageEditTeam->CBFlag->currentText();
247
07605d2a2024 - Fix infinite loop when selecting weapon with ammo menu
unc0rr
parents: 245
diff changeset
   257
	for(int i = 0; i < BINDS_NUMBER; i++)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   258
	{
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2192
diff changeset
   259
		binds[i].strbind = hwform->ui.pageEditTeam->CBBind[i]->itemData(hwform->ui.pageEditTeam->CBBind[i]->currentIndex()).toString();
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   260
	}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   261
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   262
341
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 339
diff changeset
   263
QStringList HWTeam::TeamGameConfig(quint32 InitHealth) const
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   264
{
239
f9adf3c73bed 'Proto' class to make things easier
unc0rr
parents: 231
diff changeset
   265
	QStringList sl;
2874
3c7c2bf1ba38 A simple hat reservation mechanism. Can be worked around with a little effort, but to make it useful, you'd have to get everyone you played with to work around it too. Quite a bit of effort for a small reward feature.
nemo
parents: 2833
diff changeset
   266
    if (m_isNetTeam)
3c7c2bf1ba38 A simple hat reservation mechanism. Can be worked around with a little effort, but to make it useful, you'd have to get everyone you played with to work around it too. Quite a bit of effort for a small reward feature.
nemo
parents: 2833
diff changeset
   267
    {
3c7c2bf1ba38 A simple hat reservation mechanism. Can be worked around with a little effort, but to make it useful, you'd have to get everyone you played with to work around it too. Quite a bit of effort for a small reward feature.
nemo
parents: 2833
diff changeset
   268
	    sl.push_back(QString("eaddteam %3 %1 %2").arg(teamColor.rgb() & 0xffffff).arg(TeamName).arg(QString(QCryptographicHash::hash(Owner.toLatin1(), QCryptographicHash::Md5).toHex())));
3c7c2bf1ba38 A simple hat reservation mechanism. Can be worked around with a little effort, but to make it useful, you'd have to get everyone you played with to work around it too. Quite a bit of effort for a small reward feature.
nemo
parents: 2833
diff changeset
   269
		sl.push_back("erdriven");
3c7c2bf1ba38 A simple hat reservation mechanism. Can be worked around with a little effort, but to make it useful, you'd have to get everyone you played with to work around it too. Quite a bit of effort for a small reward feature.
nemo
parents: 2833
diff changeset
   270
    }
3c7c2bf1ba38 A simple hat reservation mechanism. Can be worked around with a little effort, but to make it useful, you'd have to get everyone you played with to work around it too. Quite a bit of effort for a small reward feature.
nemo
parents: 2833
diff changeset
   271
    else sl.push_back(QString("eaddteam %3 %1 %2").arg(teamColor.rgb() & 0xffffff).arg(TeamName).arg(playerHash));
606
9d800fdfd3bd Add ammostores in frontend, should help further ammostores implemetation
unc0rr
parents: 605
diff changeset
   272
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1293
diff changeset
   273
	if (m_isNetTeam)
341
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 339
diff changeset
   274
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 339
diff changeset
   275
	sl.push_back(QString("egrave " + Grave));
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 339
diff changeset
   276
	sl.push_back(QString("efort " + Fort));
1659
fd593a5e71fb Team class now supports voicepacks
unc0rr
parents: 1656
diff changeset
   277
	sl.push_back(QString("evoicepack " + Voicepack));
2747
7889a3a9724f Server:
smxx
parents: 2428
diff changeset
   278
	sl.push_back(QString("eflag " + Flag));
341
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 339
diff changeset
   279
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1293
diff changeset
   280
	if (!m_isNetTeam)
341
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 339
diff changeset
   281
		for(int i = 0; i < BINDS_NUMBER; i++)
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2192
diff changeset
   282
			if(!binds[i].strbind.isEmpty())
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2192
diff changeset
   283
				sl.push_back(QString("ebind " + binds[i].strbind + " " + binds[i].action));
341
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 339
diff changeset
   284
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 339
diff changeset
   285
	for (int t = 0; t < numHedgehogs; t++)
1242
4aca5f7b2504 Hats now fully implemented for local game
unc0rr
parents: 1240
diff changeset
   286
	{
605
2651c3fe4567 - Make hwengine protocol more obvious
unc0rr
parents: 546
diff changeset
   287
	  sl.push_back(QString("eaddhh %1 %2 %3")
319
7f3bd9e31f18 some changes
displacer
parents: 314
diff changeset
   288
		       .arg(QString::number(difficulty),
605
2651c3fe4567 - Make hwengine protocol more obvious
unc0rr
parents: 546
diff changeset
   289
			    QString::number(InitHealth),
2651c3fe4567 - Make hwengine protocol more obvious
unc0rr
parents: 546
diff changeset
   290
			    HHName[t]));
1242
4aca5f7b2504 Hats now fully implemented for local game
unc0rr
parents: 1240
diff changeset
   291
	  sl.push_back(QString("ehat %1")
4aca5f7b2504 Hats now fully implemented for local game
unc0rr
parents: 1240
diff changeset
   292
		       .arg(HHHat[t]));
4aca5f7b2504 Hats now fully implemented for local game
unc0rr
parents: 1240
diff changeset
   293
	}
239
f9adf3c73bed 'Proto' class to make things easier
unc0rr
parents: 231
diff changeset
   294
	return sl;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   295
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   296
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 348
diff changeset
   297
bool HWTeam::isNetTeam() const
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 348
diff changeset
   298
{
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1293
diff changeset
   299
  return m_isNetTeam;
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 348
diff changeset
   300
}
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 348
diff changeset
   301
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 348
diff changeset
   302
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   303
bool HWTeam::operator==(const HWTeam& t1) const {
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1293
diff changeset
   304
  return TeamName==t1.TeamName;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   305
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   306
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   307
bool HWTeam::operator<(const HWTeam& t1) const {
1325
c8994d47f41d Adding teams now works
unc0rr
parents: 1293
diff changeset
   308
  return TeamName<t1.TeamName; // if names are equal - test if it is net team
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   309
}
1840
4747f0232b88 ttsmj2's random teams patch
unc0rr
parents: 1683
diff changeset
   310
4747f0232b88 ttsmj2's random teams patch
unc0rr
parents: 1683
diff changeset
   311