2004-01-26 08:20:26 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
2006-01-18 17:39:49 +00:00
|
|
|
* Copyright (C) 2001-2006 The ScummVM project
|
2004-01-26 08:20:26 +00:00
|
|
|
*
|
|
|
|
* 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
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2004-01-26 08:20:26 +00:00
|
|
|
*
|
2006-02-11 12:47:47 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2004-01-26 08:20:26 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2005-06-24 15:23:51 +00:00
|
|
|
#include "common/stdafx.h"
|
2004-01-26 08:20:26 +00:00
|
|
|
#include "CEKeysDialog.h"
|
2005-10-16 22:47:53 +00:00
|
|
|
#include "CEDevice.h"
|
|
|
|
#include "gui/Actions.h"
|
2004-01-26 08:20:26 +00:00
|
|
|
|
|
|
|
using GUI::ListWidget;
|
|
|
|
using GUI::kListNumberingZero;
|
|
|
|
using GUI::WIDGET_CLEARBG;
|
|
|
|
using GUI::kListSelectionChangedCmd;
|
|
|
|
using GUI::kCloseCmd;
|
|
|
|
using GUI::StaticTextWidget;
|
|
|
|
using GUI::kTextAlignCenter;
|
|
|
|
using GUI::CommandSender;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
kMapCmd = 'map ',
|
|
|
|
kOKCmd = 'ok '
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
CEKeysDialog::CEKeysDialog(const Common::String &title)
|
|
|
|
: GUI::Dialog(30, 20, 260, 160) {
|
2005-10-16 22:47:53 +00:00
|
|
|
addButton(this, 160, 20, "Map", kMapCmd, 'M', GUI::kDefaultWidgetSize); // Map
|
|
|
|
addButton(this, 160, 40, "OK", kOKCmd, 'O', GUI::kDefaultWidgetSize); // OK
|
|
|
|
addButton(this, 160, 60, "Cancel", kCloseCmd, 'C', GUI::kDefaultWidgetSize); // Cancel
|
2004-01-26 08:20:26 +00:00
|
|
|
|
|
|
|
_actionsList = new ListWidget(this, 10, 20, 140, 90);
|
|
|
|
_actionsList->setNumberingMode(kListNumberingZero);
|
|
|
|
|
|
|
|
_actionTitle = new StaticTextWidget(this, 10, 120, 240, 16, title, kTextAlignCenter);
|
|
|
|
_keyMapping = new StaticTextWidget(this, 10, 140, 240, 16, "", kTextAlignCenter);
|
|
|
|
|
|
|
|
_actionTitle->setFlags(WIDGET_CLEARBG);
|
|
|
|
_keyMapping->setFlags(WIDGET_CLEARBG);
|
|
|
|
|
|
|
|
// Get actions names
|
|
|
|
Common::StringList l;
|
|
|
|
|
2005-10-16 22:47:53 +00:00
|
|
|
for (int i = 0; i < GUI_Actions::Instance()->size(); i++)
|
|
|
|
l.push_back(GUI_Actions::Instance()->actionName((GUI::ActionType)i));
|
2004-01-26 08:20:26 +00:00
|
|
|
|
|
|
|
_actionsList->setList(l);
|
|
|
|
|
|
|
|
_actionSelected = -1;
|
2005-10-16 22:47:53 +00:00
|
|
|
GUI_Actions::Instance()->beginMapping(false);
|
2004-01-26 08:20:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CEKeysDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 data) {
|
|
|
|
switch(cmd) {
|
|
|
|
|
|
|
|
case kListSelectionChangedCmd:
|
|
|
|
if (_actionsList->getSelected() >= 0) {
|
|
|
|
char selection[100];
|
|
|
|
|
2005-10-16 22:47:53 +00:00
|
|
|
sprintf(selection, "Associated key : %s", CEDevice::getKeyName(GUI_Actions::Instance()->getMapping((GUI::ActionType)(_actionsList->getSelected()))).c_str());
|
2004-01-26 08:20:26 +00:00
|
|
|
_keyMapping->setLabel(selection);
|
|
|
|
_keyMapping->draw();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case kMapCmd:
|
|
|
|
if (_actionsList->getSelected() < 0) {
|
|
|
|
_actionTitle->setLabel("Please select an action");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
char selection[100];
|
|
|
|
|
2005-01-28 23:45:53 +00:00
|
|
|
_actionSelected = _actionsList->getSelected();
|
2005-10-16 22:47:53 +00:00
|
|
|
sprintf(selection, "Associated key : %s", CEDevice::getKeyName(GUI_Actions::Instance()->getMapping((GUI::ActionType)_actionSelected)).c_str());
|
2004-01-26 08:20:26 +00:00
|
|
|
_actionTitle->setLabel("Press the key to associate");
|
|
|
|
_keyMapping->setLabel(selection);
|
|
|
|
_keyMapping->draw();
|
2005-10-16 22:47:53 +00:00
|
|
|
GUI_Actions::Instance()->beginMapping(true);
|
2004-01-26 08:20:26 +00:00
|
|
|
_actionsList->setEnabled(false);
|
|
|
|
}
|
|
|
|
_actionTitle->draw();
|
|
|
|
break;
|
|
|
|
case kOKCmd:
|
2005-10-16 22:47:53 +00:00
|
|
|
GUI_Actions::Instance()->saveMapping();
|
2004-01-26 08:20:26 +00:00
|
|
|
close();
|
|
|
|
break;
|
|
|
|
case kCloseCmd:
|
2005-10-16 22:47:53 +00:00
|
|
|
GUI_Actions::Instance()->loadMapping();
|
2004-01-26 08:20:26 +00:00
|
|
|
close();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CEKeysDialog::handleKeyDown(uint16 ascii, int keycode, int modifiers) {
|
2005-10-16 22:47:53 +00:00
|
|
|
if (modifiers == 0xff && GUI_Actions::Instance()->mappingActive()) {
|
2004-01-26 08:20:26 +00:00
|
|
|
// GAPI key was selected
|
|
|
|
char selection[100];
|
|
|
|
|
2005-10-16 22:47:53 +00:00
|
|
|
GUI_Actions::Instance()->setMapping((GUI::ActionType)_actionSelected, ascii);
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2005-10-16 22:47:53 +00:00
|
|
|
sprintf(selection, "Associated key : %s", CEDevice::getKeyName(GUI_Actions::Instance()->getMapping((GUI::ActionType)_actionSelected)).c_str());
|
2004-01-26 08:20:26 +00:00
|
|
|
_actionTitle->setLabel("Choose an action to map");
|
|
|
|
_keyMapping->setLabel(selection);
|
|
|
|
_keyMapping->draw();
|
|
|
|
_actionSelected = -1;
|
|
|
|
_actionsList->setEnabled(true);
|
2005-10-16 22:47:53 +00:00
|
|
|
GUI_Actions::Instance()->beginMapping(false);
|
2004-01-26 08:20:26 +00:00
|
|
|
}
|
|
|
|
}
|