diff -r a05081bc2769 -r 276410cc1178 QTfrontend/namegen.cpp --- a/QTfrontend/namegen.cpp Wed Apr 06 22:56:05 2011 +0200 +++ b/QTfrontend/namegen.cpp Thu Apr 07 01:45:38 2011 +0200 @@ -60,8 +60,8 @@ team->Voicepack = "Default"; } - //give each hedgehog a random name: - //TODO: load the dictionary only once! (right now it's loaded once for each hedgehog) + //give each hedgehog a random name: + //TODO: load the dictionary only once! (right now it's loaded once for each hedgehog) for(int i = 0; i < 8; i++) { if ((TypesHatnames[kind].size()) > 0){ @@ -169,42 +169,42 @@ QString HWNamegen::GetRandomGrave() { - QStringList Graves; - - //list all available Graves - QDir tmpdir; + QStringList Graves; + + //list all available Graves + QDir tmpdir; tmpdir.cd(datadir->absolutePath()); tmpdir.cd("Graphics/Graves"); tmpdir.setFilter(QDir::Files); Graves.append(tmpdir.entryList(QStringList("*.png")).replaceInStrings(QRegExp("^(.*)\\.png"), "\\1")); - if(Graves.size()==0) - { - //do some serious error handling - return "Error"; - } + if(Graves.size()==0) + { + //do some serious error handling + return "Error"; + } - //pick a random grave - return Graves[rand()%(Graves.size())]; + //pick a random grave + return Graves[rand()%(Graves.size())]; } QString HWNamegen::GetRandomFort() { - QStringList Forts; + QStringList Forts; - //list all available Forts - QDir tmpdir; + //list all available Forts + QDir tmpdir; tmpdir.cd(datadir->absolutePath()); tmpdir.cd("Forts"); tmpdir.setFilter(QDir::Files); Forts.append(tmpdir.entryList(QStringList("*L.png")).replaceInStrings(QRegExp("^(.*)L\\.png"), "\\1")); - if(Forts.size()==0) - { - //do some serious error handling - return "Error"; - } - - //pick a random fort - return Forts[rand()%(Forts.size())]; -} \ No newline at end of file + if(Forts.size()==0) + { + //do some serious error handling + return "Error"; + } + + //pick a random fort + return Forts[rand()%(Forts.size())]; +}