QTfrontend/gameuiconfig.cpp
author displacer
Sat, 09 Sep 2006 16:59:10 +0000
changeset 140 50ccde437ea1
parent 127 ca70467bd0a8
child 183 57c2ef19f719
permissions -rw-r--r--
teams and hedgedogs num selection added to HWgame
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
     1
/*
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
     2
 * Hedgewars, a worms-like game
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
     3
 * Copyright (c) 2006 Andrey Korotaev <unC0Rr@gmail.com>
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
     4
 *
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
     5
 * Distributed under the terms of the BSD-modified licence:
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
     6
 *
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
     7
 * Permission is hereby granted, free of charge, to any person obtaining a copy
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
     8
 * of this software and associated documentation files (the "Software"), to deal
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
     9
 * with the Software without restriction, including without limitation the
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    10
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    11
 * sell copies of the Software, and to permit persons to whom the Software is
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    12
 * furnished to do so, subject to the following conditions:
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    13
 *
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    14
 * 1. Redistributions of source code must retain the above copyright notice,
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    15
 *    this list of conditions and the following disclaimer.
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    16
 * 2. Redistributions in binary form must reproduce the above copyright notice,
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    17
 *    this list of conditions and the following disclaimer in the documentation
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    18
 *    and/or other materials provided with the distribution.
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    19
 * 3. The name of the author may not be used to endorse or promote products
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    20
 *    derived from this software without specific prior written permission.
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    21
 *
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    22
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    23
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    24
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    25
 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    26
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    27
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    28
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    29
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    30
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    31
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    32
 */
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    33
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    34
#include <QMessageBox>
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    35
#include <QTextStream>
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
    36
#include "gameuiconfig.h"
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    37
#include "hwform.h"
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    38
#include "pages.h"
97
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 87
diff changeset
    39
#include "hwconsts.h"
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    40
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
    41
GameUIConfig::GameUIConfig(HWForm * FormWidgets)
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    42
	: QObject()
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    43
{
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    44
	Form = FormWidgets;
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    45
97
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 87
diff changeset
    46
	QFile settings(cfgdir->absolutePath() + "/options");
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    47
	if (settings.open(QIODevice::ReadOnly))
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    48
	{
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    49
		QTextStream stream(&settings);
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    50
		stream.setCodec("UTF-8");
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    51
		QString str;
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    52
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    53
		while (!stream.atEnd())
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    54
		{
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    55
			str = stream.readLine();
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    56
			if (str.startsWith(";")) continue;
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    57
			if (str.startsWith("resolution "))
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    58
			{
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    59
				Form->ui.pageOptions->CBResolution->setCurrentIndex(str.mid(11).toLong());
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    60
			} else
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    61
			if (str.startsWith("fullscreen "))
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    62
			{
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    63
				Form->ui.pageOptions->CBFullscreen->setChecked(str.mid(11).toLong());
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    64
			} else
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    65
			if (str.startsWith("sound "))
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    66
			{
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
    67
				Form->ui.pageOptions->CBEnableSound->setChecked(str.mid(6).toLong());
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    68
			} else
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    69
			if (str.startsWith("nick "))
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    70
			{
111
30ca06092a64 - 'net nickname' and 'server address' options are on PageNet
unc0rr
parents: 97
diff changeset
    71
				Form->ui.pageNet->editNetNick->setText(str.mid(5));
30ca06092a64 - 'net nickname' and 'server address' options are on PageNet
unc0rr
parents: 97
diff changeset
    72
			} else
30ca06092a64 - 'net nickname' and 'server address' options are on PageNet
unc0rr
parents: 97
diff changeset
    73
			if (str.startsWith("ip "))
30ca06092a64 - 'net nickname' and 'server address' options are on PageNet
unc0rr
parents: 97
diff changeset
    74
			{
30ca06092a64 - 'net nickname' and 'server address' options are on PageNet
unc0rr
parents: 97
diff changeset
    75
				Form->ui.pageNet->editIP->setText(str.mid(3));
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    76
			}
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    77
		}
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    78
		settings.close();
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    79
	}
127
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 111
diff changeset
    80
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 111
diff changeset
    81
	QFile themesfile(datadir->absolutePath() + "/Themes/themes.cfg");
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 111
diff changeset
    82
	if (themesfile.open(QIODevice::ReadOnly)) {
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 111
diff changeset
    83
		QTextStream stream(&themesfile);
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 111
diff changeset
    84
		QString str;
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 111
diff changeset
    85
		while (!stream.atEnd())
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 111
diff changeset
    86
		{
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 111
diff changeset
    87
			Themes << stream.readLine();
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 111
diff changeset
    88
		}
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 111
diff changeset
    89
		themesfile.close();
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 111
diff changeset
    90
	} else {
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 111
diff changeset
    91
		QMessageBox::critical(0, "Error", "Cannot access themes.cfg", "OK");
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 111
diff changeset
    92
	}
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    93
}
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    94
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
    95
QStringList GameUIConfig::GetTeamsList()
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
    96
{
140
50ccde437ea1 teams and hedgedogs num selection added to HWgame
displacer
parents: 127
diff changeset
    97
	QStringList teamslist = cfgdir->entryList(QStringList("*.cfg"));
50ccde437ea1 teams and hedgedogs num selection added to HWgame
displacer
parents: 127
diff changeset
    98
	QStringList cleanedList;
50ccde437ea1 teams and hedgedogs num selection added to HWgame
displacer
parents: 127
diff changeset
    99
	for (QStringList::Iterator it = teamslist.begin(); it != teamslist.end(); ++it ) {
50ccde437ea1 teams and hedgedogs num selection added to HWgame
displacer
parents: 127
diff changeset
   100
	  QString tmpTeamStr=(*it).replace(QRegExp("^(.*).cfg$"), "\\1");
50ccde437ea1 teams and hedgedogs num selection added to HWgame
displacer
parents: 127
diff changeset
   101
	  cleanedList.push_back(tmpTeamStr);
50ccde437ea1 teams and hedgedogs num selection added to HWgame
displacer
parents: 127
diff changeset
   102
	}
50ccde437ea1 teams and hedgedogs num selection added to HWgame
displacer
parents: 127
diff changeset
   103
	return cleanedList;
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   104
}
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   105
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
   106
void GameUIConfig::SaveOptions()
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   107
{
97
e7c1df9cce2c - make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents: 87
diff changeset
   108
	QFile settings(cfgdir->absolutePath() + "/options");
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   109
	if (!settings.open(QIODevice::WriteOnly))
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   110
	{
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   111
		QMessageBox::critical(0,
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   112
				tr("Error"),
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   113
				tr("Cannot save options to file %1").arg(settings.fileName()),
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   114
				tr("Quit"));
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   115
		return ;
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   116
	}
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   117
	QTextStream stream(&settings);
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   118
	stream.setCodec("UTF-8");
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   119
	stream << "; Generated by Hedgewars, do not modify" << endl;
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
   120
	stream << "resolution " << Form->ui.pageOptions->CBResolution->currentIndex() << endl;
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
   121
	stream << "fullscreen " << Form->ui.pageOptions->CBFullscreen->isChecked() << endl;
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
   122
	stream << "sound " << Form->ui.pageOptions->CBEnableSound->isChecked() << endl;
111
30ca06092a64 - 'net nickname' and 'server address' options are on PageNet
unc0rr
parents: 97
diff changeset
   123
	stream << "nick " << Form->ui.pageNet->editNetNick->text() << endl;
30ca06092a64 - 'net nickname' and 'server address' options are on PageNet
unc0rr
parents: 97
diff changeset
   124
	stream << "ip " << Form->ui.pageNet->editIP->text() << endl;
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   125
	settings.close();
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   126
}
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   127
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
   128
int GameUIConfig::vid_Resolution()
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   129
{
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
   130
	return Form->ui.pageOptions->CBResolution->currentIndex();
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   131
}
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   132
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
   133
bool GameUIConfig::vid_Fullscreen()
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   134
{
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
   135
	return Form->ui.pageOptions->CBFullscreen->isChecked();
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   136
}
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   137
85
44d9045b26ff New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents: 84
diff changeset
   138
bool GameUIConfig::isSoundEnabled()
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   139
{
87
ff213e443336 Convert all pages to classes
unc0rr
parents: 85
diff changeset
   140
	return Form->ui.pageOptions->CBEnableSound->isChecked();
84
0f6669da2fcb Start rewrite ui
unc0rr
parents:
diff changeset
   141
}
127
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 111
diff changeset
   142
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 111
diff changeset
   143
QString GameUIConfig::GetRandomTheme()
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 111
diff changeset
   144
{
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 111
diff changeset
   145
	return (Themes.size() > 0) ? Themes[rand() % Themes.size()] : QString("steel");
ca70467bd0a8 Use QUuid to generate seed, rand() to choose theme
unc0rr
parents: 111
diff changeset
   146
}