2011-08-03 20:05:33 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 2007, 2010 - Bit-Blot
|
|
|
|
|
|
|
|
This file is part of Aquaria.
|
|
|
|
|
|
|
|
Aquaria 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
#ifndef _actionmapper_
|
|
|
|
#define _actionmapper_
|
|
|
|
|
|
|
|
#include "Base.h"
|
2018-01-21 11:47:32 +00:00
|
|
|
#include "ActionInput.h"
|
2017-01-14 21:53:20 +00:00
|
|
|
|
|
|
|
InputDevice getDeviceForActionbutton(int k);
|
|
|
|
|
2011-08-03 20:05:33 +00:00
|
|
|
class Event;
|
|
|
|
class ActionMapper;
|
|
|
|
|
2016-07-17 20:25:24 +00:00
|
|
|
#include "ActionStatus.h"
|
2011-08-03 20:05:33 +00:00
|
|
|
#include "ActionSet.h"
|
2016-06-25 21:59:34 +00:00
|
|
|
#include "Joystick.h"
|
2011-08-03 20:05:33 +00:00
|
|
|
|
|
|
|
typedef std::vector<int> ButtonList;
|
|
|
|
|
|
|
|
struct ActionData
|
|
|
|
{
|
2016-07-17 15:50:27 +00:00
|
|
|
ActionData()
|
|
|
|
: id(-1), state(-1), source(-1)
|
|
|
|
, event(0)
|
|
|
|
{
|
|
|
|
}
|
2011-08-03 20:05:33 +00:00
|
|
|
|
2016-07-16 01:09:44 +00:00
|
|
|
int id, state, source;
|
2011-08-03 20:05:33 +00:00
|
|
|
Event *event;
|
|
|
|
ButtonList buttonList;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ActionMapper
|
|
|
|
{
|
|
|
|
public:
|
2016-05-05 17:40:28 +00:00
|
|
|
|
2011-08-03 20:05:33 +00:00
|
|
|
// funcs
|
|
|
|
ActionMapper();
|
|
|
|
virtual ~ActionMapper();
|
2016-05-05 17:40:28 +00:00
|
|
|
|
2011-08-03 20:05:33 +00:00
|
|
|
void addAction(Event *event, int k, int state=-1);
|
2016-07-15 01:22:27 +00:00
|
|
|
void addAction(int actionID, int k, int source);
|
2016-05-05 17:40:28 +00:00
|
|
|
|
2016-07-16 01:09:44 +00:00
|
|
|
bool isActing(int actionID, int source);
|
2017-01-14 21:53:20 +00:00
|
|
|
virtual void action(int actionID, int state, int source, InputDevice device) = 0;
|
2011-08-03 20:05:33 +00:00
|
|
|
|
2016-05-05 17:40:28 +00:00
|
|
|
|
2011-08-03 20:05:33 +00:00
|
|
|
void clearActions();
|
|
|
|
|
|
|
|
bool isInputEnabled() { return inputEnabled; }
|
2016-05-05 17:40:28 +00:00
|
|
|
|
2011-08-03 20:05:33 +00:00
|
|
|
// vars
|
2016-05-05 17:40:28 +00:00
|
|
|
|
2016-07-16 01:09:44 +00:00
|
|
|
typedef std::vector<ActionData> ActionDataSet;
|
2011-08-03 20:05:33 +00:00
|
|
|
ActionDataSet actionData;
|
|
|
|
|
2016-05-05 17:40:28 +00:00
|
|
|
bool cleared;
|
2011-08-03 20:05:33 +00:00
|
|
|
|
|
|
|
virtual void enableInput();
|
|
|
|
virtual void disableInput();
|
2016-05-05 17:40:28 +00:00
|
|
|
|
2011-08-03 20:05:33 +00:00
|
|
|
Event *addCreatedEvent(Event *event);
|
|
|
|
void clearCreatedEvents();
|
|
|
|
|
2016-07-17 20:25:24 +00:00
|
|
|
//bool pollAction(int actionID, int source);
|
2011-08-03 20:05:33 +00:00
|
|
|
bool getKeyState(int k);
|
2016-07-17 15:50:27 +00:00
|
|
|
bool getKeyState(int k, int sourceID);
|
2011-08-03 20:05:33 +00:00
|
|
|
|
2016-07-16 01:09:44 +00:00
|
|
|
ActionData *getActionDataByIDAndSource(int actionID, int source);
|
2011-08-03 20:05:33 +00:00
|
|
|
protected:
|
|
|
|
|
|
|
|
std::vector<Event*>createdEvents;
|
|
|
|
|
|
|
|
bool inUpdate;
|
|
|
|
bool inputEnabled;
|
|
|
|
void onUpdate (float dt);
|
2016-07-16 01:09:44 +00:00
|
|
|
private:
|
2016-07-17 20:25:24 +00:00
|
|
|
bool isKeyChanged(int k);
|
|
|
|
bool isKeyChanged(int k, int sourceID);
|
|
|
|
//bool _pollActionData(const ActionData& ad);
|
2011-08-03 20:05:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|