2010-07-15 18:51:56 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* $URL$
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "testbed/config.h"
|
|
|
|
#include "engines/engine.h"
|
|
|
|
|
|
|
|
namespace Testbed {
|
|
|
|
|
2010-07-17 22:32:31 +00:00
|
|
|
TestbedOptionsDialog::TestbedOptionsDialog(Common::Array<Testsuite *> &tsList, TestbedConfigManager *tsConfMan) : GUI::Dialog("Browser") {
|
|
|
|
|
|
|
|
_testbedConfMan = tsConfMan;
|
|
|
|
|
|
|
|
new GUI::StaticTextWidget(this, "Browser.Headline", "Select testsuites to Execute, selected entries are shown in dark");
|
|
|
|
_testListDisplay = new TestbedListWidget(this, "Browser.List");
|
|
|
|
_testListDisplay->setNumberingMode(GUI::kListNumberingOff);
|
2010-07-15 18:51:56 +00:00
|
|
|
|
2010-07-17 22:32:31 +00:00
|
|
|
// Construct a String Array
|
|
|
|
Common::Array<Testsuite *>::const_iterator iter;
|
2010-07-15 18:51:56 +00:00
|
|
|
|
2010-07-17 22:32:31 +00:00
|
|
|
for (iter = tsList.begin(); iter != tsList.end(); iter++) {
|
|
|
|
_testSuiteArray.push_back((*iter)->getName());
|
|
|
|
_colors.push_back(GUI::ThemeEngine::kFontColorAlternate);
|
|
|
|
}
|
|
|
|
|
|
|
|
_testListDisplay->setList(_testSuiteArray, &_colors);
|
|
|
|
|
|
|
|
new GUI::ButtonWidget(this, "Browser.Cancel", "Continue", GUI::kCloseCmd, 'C');
|
|
|
|
// XXX: Add more commands for this
|
|
|
|
new GUI::ButtonWidget(this, "Browser.Choose", "Exit", GUI::kCloseCmd, 'X');
|
2010-07-15 18:51:56 +00:00
|
|
|
}
|
|
|
|
|
2010-07-17 22:32:31 +00:00
|
|
|
TestbedOptionsDialog::~TestbedOptionsDialog() {}
|
|
|
|
|
|
|
|
void TestbedOptionsDialog::handleCommand(GUI::CommandSender *sender, uint32 cmd, uint32 data) {
|
|
|
|
Testsuite *ts;
|
|
|
|
switch (cmd) {
|
|
|
|
case kSelectionToggle:
|
|
|
|
ts = _testbedConfMan->getTestsuiteByName(_testListDisplay->getSelectedString());
|
|
|
|
if (ts) {
|
|
|
|
ts->enable(!ts->isEnabled());
|
|
|
|
_testListDisplay->changeColor();
|
2010-07-15 18:51:56 +00:00
|
|
|
}
|
2010-07-17 22:32:31 +00:00
|
|
|
default:
|
|
|
|
GUI::Dialog::handleCommand(sender, cmd, data);
|
2010-07-15 18:51:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-17 22:32:31 +00:00
|
|
|
bool TestbedConfigManager::isEnabled(const Common::String &tsName) {
|
|
|
|
Testsuite *ts = getTestsuiteByName(tsName);
|
|
|
|
return ts ? ts->isEnabled() : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-15 18:51:56 +00:00
|
|
|
void TestbedConfigManager::enableTestsuite(const Common::String &name, bool enable) {
|
2010-07-17 22:32:31 +00:00
|
|
|
Testsuite *ts = getTestsuiteByName(name);
|
|
|
|
if (ts) {
|
|
|
|
ts->enable(enable);
|
|
|
|
} else {
|
|
|
|
warning("No matches found for %s\n", name.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Testsuite *TestbedConfigManager::getTestsuiteByName(const Common::String &name) {
|
2010-07-15 18:51:56 +00:00
|
|
|
Common::Array<Testsuite *>::const_iterator iter;
|
|
|
|
|
|
|
|
for (iter = _testsuiteList.begin(); iter != _testsuiteList.end(); iter++) {
|
|
|
|
if (name.equalsIgnoreCase((*iter)->getName())) {
|
2010-07-17 22:32:31 +00:00
|
|
|
return *iter;
|
2010-07-15 18:51:56 +00:00
|
|
|
}
|
|
|
|
}
|
2010-07-17 22:32:31 +00:00
|
|
|
return 0;
|
2010-07-15 18:51:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TestbedConfigManager::selectTestsuites() {
|
|
|
|
|
|
|
|
|
|
|
|
// Parse the config file
|
|
|
|
// Enable testsuites as per configuration.
|
|
|
|
// If no config file is found pickup a default configuration.
|
|
|
|
// TODO : Implement this method
|
|
|
|
|
|
|
|
parseConfigFile();
|
|
|
|
|
|
|
|
if (!Testsuite::isSessionInteractive) {
|
|
|
|
// Non interactive sessions don't need to go beyond
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX: disabling these as of now for fastly testing other tests
|
|
|
|
// Testsuite::isSessionInteractive = false;
|
|
|
|
Common::String prompt("Welcome to the ScummVM testbed!\n"
|
|
|
|
"It is a framework to test the various ScummVM subsystems namely GFX, Sound, FS, events etc.\n"
|
|
|
|
"If you see this, it means interactive tests would run on this system :)");
|
|
|
|
|
|
|
|
Testsuite::logPrintf("Info! : Interactive tests are also being executed.\n");
|
|
|
|
|
|
|
|
if (Testsuite::handleInteractiveInput(prompt, "Proceed?", "Customize", kOptionRight)) {
|
|
|
|
|
|
|
|
// Select testsuites using checkboxes
|
2010-07-17 22:32:31 +00:00
|
|
|
TestbedOptionsDialog tbd(_testsuiteList, this);
|
2010-07-15 18:51:56 +00:00
|
|
|
tbd.runModal();
|
|
|
|
|
|
|
|
// check if user wanted to exit.
|
|
|
|
if (Engine::shouldQuit()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // End of namespace Testbed
|