Add needsHideToolbarMapping

svn-id: r12643
This commit is contained in:
Nicolas Bacca 2004-01-28 01:06:29 +00:00
parent 7b05525823
commit 4793b48326
2 changed files with 17 additions and 2 deletions

View File

@ -57,7 +57,9 @@ int CEActions::size() {
}
CEActions::CEActions(OSystem_WINCE3 *mainSystem, GameDetector &detector) :
_mainSystem(mainSystem), _mapping_active(false), _right_click_needed(false) {
_mainSystem(mainSystem), _mapping_active(false), _right_click_needed(false),
_hide_toolbar_needed(false)
{
int i;
bool is_simon = (strcmp(detector._targetName.c_str(), "simon") == 0);
bool is_sword1 = (detector._targetName == "sword1");
@ -73,6 +75,10 @@ CEActions::CEActions(OSystem_WINCE3 *mainSystem, GameDetector &detector) :
detector._targetName == "samnmax")
_right_click_needed = true;
// See if a "hide toolbar" mapping could be needed
if (is_sword1 || is_sword2 || is_queen)
_hide_toolbar_needed = true;
// Initialize keys for different actions
// Pause
_key_action[ACTION_PAUSE].setAscii(VK_SPACE);
@ -247,4 +253,11 @@ bool CEActions::needsRightClickMapping() {
return (_action_mapping[ACTION_RIGHTCLICK] == 0);
}
CEActions *CEActions::_instance = NULL;
bool CEActions::needsHideToolbarMapping() {
if (!_hide_toolbar_needed)
return false;
else
return (_action_mapping[ACTION_HIDE] == 0);
}
CEActions *CEActions::_instance = NULL;

View File

@ -74,6 +74,7 @@ class CEActions {
// Utility
bool needsRightClickMapping();
bool needsHideToolbarMapping();
~CEActions();
private:
@ -86,6 +87,7 @@ class CEActions {
unsigned int _action_mapping[ACTION_LAST];
bool _mapping_active;
bool _right_click_needed;
bool _hide_toolbar_needed;
};
#endif