QTfrontend/util/namegen.cpp
author Wuzzy <almikes@aol.com>
Sat, 15 Apr 2017 04:28:00 +0200
changeset 12258 8e9603088f99
parent 12253 07f67ee424dc
child 12300 ac57d564efce
permissions -rw-r--r--
Make all hogs say Yessir taunt on their turn start (replaces revenge taunts) Rationale: The taunts Illgetyou, JustYouWait were fairly odd and almost always inapproriate to the situation as most voicepacks clearly assume these to be used for revenge only (e.g. “You'll gonna pay for that.” was played at turn start because of this.).
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
     1
/*
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
     2
 * Hedgewars, a free turn based strategy game
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
     3
 * Copyright (c) 2009 Martin Minarik <ttsmj@pokec.sk>
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 10108
diff changeset
     4
 * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
     5
 *
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
     6
 * This program is free software; you can redistribute it and/or modify
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
     7
 * it under the terms of the GNU General Public License as published by
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
     8
 * the Free Software Foundation; version 2 of the License
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
     9
 *
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    13
 * GNU General Public License for more details.
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    14
 *
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    16
 * 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: 9998
diff changeset
    17
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    18
 */
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    19
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    20
#include <QFile>
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    21
#include <QTextStream>
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    22
#include <QStringList>
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    23
#include <QLineEdit>
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
    24
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    25
#include "hwform.h"
6930
d187ea93fc4f renaming HWDataManager -> DataManager
sheepluva
parents: 6824
diff changeset
    26
#include "DataManager.h"
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    27
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
    28
#include "namegen.h"
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    29
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    30
HWNamegen::HWNamegen() {}
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    31
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    32
QList<QStringList> HWNamegen::TypesTeamnames;
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    33
QList<QStringList> HWNamegen::TypesHatnames;
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    34
bool HWNamegen::typesAvailable = false;
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    35
12250
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
    36
void HWNamegen::teamRandomTeamName(HWTeam & team)
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
    37
{
12252
a6e0977be914 Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents: 12250
diff changeset
    38
    QString newName = getRandomTeamName(-1);
12250
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
    39
    if(!newName.isNull())
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
    40
        team.setName(newName);
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
    41
}
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
    42
12249
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
    43
void HWNamegen::teamRandomFlag(HWTeam & team)
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
    44
{
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
    45
    team.setFlag(getRandomFlag());
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
    46
}
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    47
12249
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
    48
void HWNamegen::teamRandomVoice(HWTeam & team)
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
    49
{
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
    50
    team.setVoicepack(getRandomVoice());
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
    51
}
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
    52
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
    53
void HWNamegen::teamRandomGrave(HWTeam & team)
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
    54
{
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
    55
    team.setGrave(getRandomGrave());
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
    56
}
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
    57
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
    58
void HWNamegen::teamRandomFort(HWTeam & team)
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
    59
{
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
    60
    team.setFort(getRandomFort());
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
    61
}
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
    62
12253
07f67ee424dc Add buttons to randomize hats and hog names only
Wuzzy <almikes@aol.com>
parents: 12252
diff changeset
    63
void HWNamegen::teamRandomEverything(HWTeam & team, const RandomTeamMode mode)
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    64
{
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    65
    // load types if not already loaded
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    66
    if (!typesAvailable)
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    67
        if (!loadTypes())
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    68
            return; // abort if loading failed
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    69
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    70
    // abort if there are no hat types
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    71
    if (TypesHatnames.size() <= 0)
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    72
        return;
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
    73
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    74
    // the hat will influence which names the hogs get
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    75
    int kind = (rand()%(TypesHatnames.size()));
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    76
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    77
    // pick team name based on hat
12253
07f67ee424dc Add buttons to randomize hats and hog names only
Wuzzy <almikes@aol.com>
parents: 12252
diff changeset
    78
    if (mode == HWNamegen::rtmEverything)
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    79
    {
12252
a6e0977be914 Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents: 12250
diff changeset
    80
        team.setName(getRandomTeamName(kind));
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    81
        team.setGrave(getRandomGrave());
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    82
        team.setFort(getRandomFort());
11893
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
    83
        team.setFlag(getRandomFlag());
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
    84
        team.setVoicepack(getRandomVoice());
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    85
    }
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    86
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    87
    QStringList dicts;
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    88
    QStringList dict;
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    89
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    90
    if ((TypesHatnames[kind].size()) <= 0)
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    91
    {
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    92
        dicts = dictsForHat(team.hedgehog(0).Hat);
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    93
        dict  = dictContents(dicts[rand()%(dicts.size())]);
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    94
    }
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    95
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    96
    for(int i = 0; i < HEDGEHOGS_PER_TEAM; i++)
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    97
    {
12253
07f67ee424dc Add buttons to randomize hats and hog names only
Wuzzy <almikes@aol.com>
parents: 12252
diff changeset
    98
        if (((TypesHatnames[kind].size()) > 0) && (mode == HWNamegen::rtmEverything || mode == HWNamegen::rtmHats))
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
    99
        {
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   100
            HWHog hh = team.hedgehog(i);
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   101
            hh.Hat = TypesHatnames[kind][rand()%(TypesHatnames[kind].size())];
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   102
            team.setHedgehog(i,hh);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2192
diff changeset
   103
        }
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   104
        // there is a chance that this hog has the same hat as the previous one
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   105
        // let's reuse the hat-specific dict in this case
6824
617a861b7750 i didn't even know it was possible (spotted by adam4813)
koda
parents: 6700
diff changeset
   106
        if ((i == 0) || (team.hedgehog(i).Hat != team.hedgehog(i-1).Hat))
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2192
diff changeset
   107
        {
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   108
            dicts = dictsForHat(team.hedgehog(i).Hat);
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   109
            dict  = dictContents(dicts[rand()%(dicts.size())]);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2192
diff changeset
   110
        }
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   111
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   112
        // give each hedgehog a random name
12253
07f67ee424dc Add buttons to randomize hats and hog names only
Wuzzy <almikes@aol.com>
parents: 12252
diff changeset
   113
        if (mode == HWNamegen::rtmHogNames || mode == HWNamegen::rtmEverything)
07f67ee424dc Add buttons to randomize hats and hog names only
Wuzzy <almikes@aol.com>
parents: 12252
diff changeset
   114
            HWNamegen::teamRandomHogName(team,i,dict);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2192
diff changeset
   115
    }
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   116
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   117
}
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   118
12249
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
   119
void HWNamegen::teamRandomHogName(HWTeam & team, const int HedgehogNumber)
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   120
{
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   121
    QStringList dicts = dictsForHat(team.hedgehog(HedgehogNumber).Hat);
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   122
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   123
    QStringList dict = dictContents(dicts[rand()%(dicts.size())]);
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   124
12249
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
   125
    teamRandomHogName(team, HedgehogNumber, dict);
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   126
}
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   127
12249
45c83c88ac4b Refactor team name generator
Wuzzy <almikes@aol.com>
parents: 11893
diff changeset
   128
void HWNamegen::teamRandomHogName(HWTeam & team, const int HedgehogNumber, const QStringList & dict)
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   129
{
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   130
    QStringList namesDict = dict;
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   131
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   132
    for(int i = 0; i < HEDGEHOGS_PER_TEAM; i++)
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   133
    {
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   134
        namesDict.removeOne(team.hedgehog(i).Name);
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   135
    }
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   136
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   137
    // if our dict doesn't have any new names we'll have to use duplicates
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   138
    if (namesDict.size() < 1)
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   139
        namesDict = dict;
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   140
6015
daffc14a518a cleaning up a little bit more, especially team class. we were leaking teams into heap memory on quick game starts btw
sheepluva
parents: 5252
diff changeset
   141
    HWHog hh = team.hedgehog(HedgehogNumber);
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   142
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   143
    hh.Name = namesDict[rand()%(namesDict.size())];
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   144
6015
daffc14a518a cleaning up a little bit more, especially team class. we were leaking teams into heap memory on quick game starts btw
sheepluva
parents: 5252
diff changeset
   145
    team.setHedgehog(HedgehogNumber, hh);
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   146
}
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   147
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   148
QStringList HWNamegen::dictContents(const QString filename)
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   149
{
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   150
    QStringList list;
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   151
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   152
    // find .txt to load the names from
8110
9f5fe3fc9d16 Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents: 8049
diff changeset
   153
    QFile file(QString("physfs://Names/%1.txt").arg(filename));
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   154
8110
9f5fe3fc9d16 Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents: 8049
diff changeset
   155
    if (file.open(QIODevice::ReadOnly | QIODevice::Text))
5238
46ddaf14509d Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents: 5115
diff changeset
   156
    {
8110
9f5fe3fc9d16 Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents: 8049
diff changeset
   157
        QTextStream in(&file);
9f5fe3fc9d16 Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents: 8049
diff changeset
   158
        QString line;
9f5fe3fc9d16 Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents: 8049
diff changeset
   159
        do
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   160
        {
8110
9f5fe3fc9d16 Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents: 8049
diff changeset
   161
            line = in.readLine();
9f5fe3fc9d16 Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents: 8049
diff changeset
   162
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   163
            if(!line.isEmpty())
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   164
                list.append(line);
8110
9f5fe3fc9d16 Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents: 8049
diff changeset
   165
        } while (!line.isNull());
5238
46ddaf14509d Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents: 5115
diff changeset
   166
    }
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   167
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   168
    if (list.size() == 0)
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6212
diff changeset
   169
        list.append(filename);
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   170
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   171
    return list;
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   172
}
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   173
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   174
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   175
QStringList HWNamegen::dictsForHat(const QString hatname)
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   176
{
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   177
    QStringList list;
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   178
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   179
    // find .cfg to load the dicts from
8110
9f5fe3fc9d16 Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents: 8049
diff changeset
   180
    QFile file(QString("physfs://Names/%1.cfg").arg(hatname));
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   181
8110
9f5fe3fc9d16 Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents: 8049
diff changeset
   182
    if (file.open(QIODevice::ReadOnly | QIODevice::Text))
5238
46ddaf14509d Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents: 5115
diff changeset
   183
    {
8110
9f5fe3fc9d16 Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents: 8049
diff changeset
   184
        QTextStream in(&file);
9f5fe3fc9d16 Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents: 8049
diff changeset
   185
        QString line;
9f5fe3fc9d16 Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents: 8049
diff changeset
   186
        do
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   187
        {
8110
9f5fe3fc9d16 Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents: 8049
diff changeset
   188
            line = in.readLine();
9f5fe3fc9d16 Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents: 8049
diff changeset
   189
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   190
            if(!line.isEmpty())
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   191
                list.append(line);
8110
9f5fe3fc9d16 Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents: 8049
diff changeset
   192
        } while (!line.isNull());
5238
46ddaf14509d Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents: 5115
diff changeset
   193
    }
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   194
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   195
    if (list.size() == 0)
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6212
diff changeset
   196
        list.append(QString("generic"));
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   197
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   198
    return list;
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   199
}
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   200
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   201
// loades types from ini files. returns true on success.
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   202
bool HWNamegen::loadTypes()
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   203
{
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   204
    typesAvailable = false;
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   205
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   206
    // find .ini to load the names from
8049
133e22b5c410 Get rid of DataManager::findFileForRead
unc0rr
parents: 6952
diff changeset
   207
    QFile * file = new QFile(QString("physfs://Names/types.ini"));
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   208
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   209
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   210
    if (file->exists() && file->open(QIODevice::ReadOnly | QIODevice::Text))
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   211
    {
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   212
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   213
        int counter = 0; //counter starts with 0 (teamnames mode)
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   214
        TypesTeamnames.append(QStringList());
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   215
        TypesHatnames.append(QStringList());
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   216
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   217
        QTextStream in(file);
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   218
        while (!in.atEnd())
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   219
        {
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   220
            QString line = in.readLine();
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   221
            if (line == QString("#####"))
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   222
            {
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   223
                counter++; //toggle mode (teamnames || hats)
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   224
                if ((counter%2) == 0)
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   225
                {
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   226
                    TypesTeamnames.append(QStringList());
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   227
                    TypesHatnames.append(QStringList());
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   228
                }
5238
46ddaf14509d Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents: 5115
diff changeset
   229
            }
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   230
            else if ((line == QString("*****")) || (line == QString("*END*")))
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   231
            {
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   232
                typesAvailable = true;
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   233
                return true; // bye bye
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   234
            }
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   235
            else
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   236
            {
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   237
                if ((counter%2) == 0)
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   238
                {
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   239
                    // even => teamnames mode
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   240
                    TypesTeamnames[(counter/2)].append(line);
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   241
                }
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   242
                else
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   243
                {
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   244
                    // odd => hats mode
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   245
                    TypesHatnames[((counter-1)/2)].append(line);
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   246
                }
5238
46ddaf14509d Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents: 5115
diff changeset
   247
            }
46ddaf14509d Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents: 5115
diff changeset
   248
        }
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   249
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   250
        typesAvailable = true;
5238
46ddaf14509d Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents: 5115
diff changeset
   251
    }
6024
d38da7c19e43 some more cleanups and refactoring.
sheepluva
parents: 6015
diff changeset
   252
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   253
    // this QFile isn't needed any further
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   254
    delete file;
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   255
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   256
    return typesAvailable;
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   257
}
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   258
12252
a6e0977be914 Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents: 12250
diff changeset
   259
/* Generates a random team name.
a6e0977be914 Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents: 12250
diff changeset
   260
kind: Use to select a team name out of a group (types.ini).
a6e0977be914 Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents: 12250
diff changeset
   261
Use a negative value if you don't care.
a6e0977be914 Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents: 12250
diff changeset
   262
This function may return a null QString on error(this should never happen). */
a6e0977be914 Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents: 12250
diff changeset
   263
QString HWNamegen::getRandomTeamName(int kind)
12250
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
   264
{
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
   265
    // load types if not already loaded
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
   266
    if (!typesAvailable)
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
   267
        if (!loadTypes())
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
   268
            return QString(); // abort if loading failed
1907
a104432e8301 Random team generator rework by ttsmj
unc0rr
parents:
diff changeset
   269
12250
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
   270
    // abort if there are no hat types
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
   271
    if (TypesHatnames.size() <= 0)
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
   272
        return QString();
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
   273
12252
a6e0977be914 Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents: 12250
diff changeset
   274
    if(kind < 0)
a6e0977be914 Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents: 12250
diff changeset
   275
        kind = (rand()%(TypesHatnames.size()));
a6e0977be914 Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents: 12250
diff changeset
   276
12250
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
   277
    if (TypesTeamnames[kind].size() > 0)
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
   278
        return TypesTeamnames[kind][rand()%(TypesTeamnames[kind].size())];
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
   279
    else
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
   280
        return QString();
5206f9a803d1 Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents: 12249
diff changeset
   281
}
5114
a05081bc2769 Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents: 4976
diff changeset
   282
6015
daffc14a518a cleaning up a little bit more, especially team class. we were leaking teams into heap memory on quick game starts btw
sheepluva
parents: 5252
diff changeset
   283
QString HWNamegen::getRandomGrave()
5114
a05081bc2769 Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents: 4976
diff changeset
   284
{
5115
276410cc1178 fix indentation and missing newline at end of file
sheepluva
parents: 5114
diff changeset
   285
    QStringList Graves;
276410cc1178 fix indentation and missing newline at end of file
sheepluva
parents: 5114
diff changeset
   286
276410cc1178 fix indentation and missing newline at end of file
sheepluva
parents: 5114
diff changeset
   287
    //list all available Graves
6930
d187ea93fc4f renaming HWDataManager -> DataManager
sheepluva
parents: 6824
diff changeset
   288
    Graves.append(DataManager::instance().entryList(
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6212
diff changeset
   289
                      "Graphics/Graves",
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6212
diff changeset
   290
                      QDir::Files,
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6212
diff changeset
   291
                      QStringList("*.png")
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6212
diff changeset
   292
                  ).replaceInStrings(QRegExp("\\.png$"), "")
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   293
                 );
5114
a05081bc2769 Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents: 4976
diff changeset
   294
5115
276410cc1178 fix indentation and missing newline at end of file
sheepluva
parents: 5114
diff changeset
   295
    if(Graves.size()==0)
276410cc1178 fix indentation and missing newline at end of file
sheepluva
parents: 5114
diff changeset
   296
    {
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   297
        // TODO do some serious error handling
5115
276410cc1178 fix indentation and missing newline at end of file
sheepluva
parents: 5114
diff changeset
   298
        return "Error";
276410cc1178 fix indentation and missing newline at end of file
sheepluva
parents: 5114
diff changeset
   299
    }
5114
a05081bc2769 Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents: 4976
diff changeset
   300
5115
276410cc1178 fix indentation and missing newline at end of file
sheepluva
parents: 5114
diff changeset
   301
    //pick a random grave
276410cc1178 fix indentation and missing newline at end of file
sheepluva
parents: 5114
diff changeset
   302
    return Graves[rand()%(Graves.size())];
5114
a05081bc2769 Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents: 4976
diff changeset
   303
}
a05081bc2769 Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents: 4976
diff changeset
   304
11893
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   305
QString HWNamegen::getRandomFlag()
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   306
{
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   307
    QStringList Flags;
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   308
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   309
    //list all available flags
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   310
    Flags.append(DataManager::instance().entryList(
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   311
                      "Graphics/Flags",
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   312
                      QDir::Files,
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   313
                      QStringList("*.png")
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   314
                  ).replaceInStrings(QRegExp("\\.png$"), "")
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   315
                 );
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   316
    //remove internal flags
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   317
    Flags.removeAll("cpu");
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   318
    Flags.removeAll("cpu_plain");
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   319
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   320
    if(Flags.size()==0)
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   321
    {
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   322
        // TODO do some serious error handling
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   323
        return "Error";
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   324
    }
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   325
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   326
    //pick a random flag
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   327
    return Flags[rand()%(Flags.size())];
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   328
}
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   329
6015
daffc14a518a cleaning up a little bit more, especially team class. we were leaking teams into heap memory on quick game starts btw
sheepluva
parents: 5252
diff changeset
   330
QString HWNamegen::getRandomFort()
5114
a05081bc2769 Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents: 4976
diff changeset
   331
{
5115
276410cc1178 fix indentation and missing newline at end of file
sheepluva
parents: 5114
diff changeset
   332
    QStringList Forts;
5114
a05081bc2769 Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents: 4976
diff changeset
   333
5115
276410cc1178 fix indentation and missing newline at end of file
sheepluva
parents: 5114
diff changeset
   334
    //list all available Forts
6930
d187ea93fc4f renaming HWDataManager -> DataManager
sheepluva
parents: 6824
diff changeset
   335
    Forts.append(DataManager::instance().entryList(
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6212
diff changeset
   336
                     "Forts",
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6212
diff changeset
   337
                     QDir::Files,
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6212
diff changeset
   338
                     QStringList("*L.png")
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6212
diff changeset
   339
                 ).replaceInStrings(QRegExp("L\\.png$"), "")
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   340
                );
5114
a05081bc2769 Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents: 4976
diff changeset
   341
5115
276410cc1178 fix indentation and missing newline at end of file
sheepluva
parents: 5114
diff changeset
   342
    if(Forts.size()==0)
276410cc1178 fix indentation and missing newline at end of file
sheepluva
parents: 5114
diff changeset
   343
    {
6160
863d3edf5690 cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents: 6060
diff changeset
   344
        // TODO do some serious error handling
5115
276410cc1178 fix indentation and missing newline at end of file
sheepluva
parents: 5114
diff changeset
   345
        return "Error";
276410cc1178 fix indentation and missing newline at end of file
sheepluva
parents: 5114
diff changeset
   346
    }
276410cc1178 fix indentation and missing newline at end of file
sheepluva
parents: 5114
diff changeset
   347
276410cc1178 fix indentation and missing newline at end of file
sheepluva
parents: 5114
diff changeset
   348
    //pick a random fort
276410cc1178 fix indentation and missing newline at end of file
sheepluva
parents: 5114
diff changeset
   349
    return Forts[rand()%(Forts.size())];
276410cc1178 fix indentation and missing newline at end of file
sheepluva
parents: 5114
diff changeset
   350
}
11893
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   351
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   352
QString HWNamegen::getRandomVoice()
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   353
{
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   354
    QStringList Voices;
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   355
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   356
    //list all available voices 
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   357
    Voices.append(DataManager::instance().entryList(
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   358
                     "Sounds/voices",
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   359
                     QDir::Dirs | QDir::NoDotAndDotDot,
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   360
                     QStringList("*")));
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   361
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   362
    if(Voices.size()==0)
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   363
    {
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   364
        // TODO do some serious error handling
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   365
        return "Error";
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   366
    }
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   367
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   368
    //pick a random voice
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   369
    return Voices[rand()%(Voices.size())];
618d99523933 Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
   370
}