2012-03-23 19:23:03 +01:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2013-02-24 19:38:45 +01:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2012-03-23 19:23:03 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 16:56:56 +02:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
2012-03-23 19:23:03 +01:00
|
|
|
(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
|
2012-06-05 16:56:56 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2012-03-23 19:23:03 +01:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2012-03-23 19:23:03 +01:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2012-03-23 19:23:03 +01:00
|
|
|
|
2018-03-31 14:33:54 +02:00
|
|
|
#include "irrlichttypes.h"
|
2018-03-30 18:32:52 +02:00
|
|
|
|
2012-03-23 19:23:03 +01:00
|
|
|
class MtEvent
|
|
|
|
{
|
|
|
|
public:
|
2018-03-30 18:32:52 +02:00
|
|
|
enum Type : u8
|
2012-03-23 19:23:03 +01:00
|
|
|
{
|
2018-03-30 18:32:52 +02:00
|
|
|
VIEW_BOBBING_STEP = 0,
|
|
|
|
CAMERA_PUNCH_LEFT,
|
|
|
|
CAMERA_PUNCH_RIGHT,
|
|
|
|
PLAYER_FALLING_DAMAGE,
|
|
|
|
PLAYER_DAMAGE,
|
|
|
|
NODE_DUG,
|
|
|
|
PLAYER_JUMP,
|
|
|
|
PLAYER_REGAIN_GROUND,
|
|
|
|
TYPE_MAX,
|
|
|
|
};
|
|
|
|
|
|
|
|
virtual ~MtEvent() = default;
|
|
|
|
virtual Type getType() const = 0;
|
2012-03-23 19:23:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// An event with no parameters and customizable name
|
2018-03-30 18:32:52 +02:00
|
|
|
class SimpleTriggerEvent : public MtEvent
|
2012-03-23 19:23:03 +01:00
|
|
|
{
|
2018-03-30 18:32:52 +02:00
|
|
|
Type type;
|
|
|
|
|
2012-03-23 19:23:03 +01:00
|
|
|
public:
|
2018-03-30 18:32:52 +02:00
|
|
|
SimpleTriggerEvent(Type type) : type(type) {}
|
|
|
|
Type getType() const override { return type; }
|
2012-03-23 19:23:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class MtEventReceiver
|
|
|
|
{
|
|
|
|
public:
|
2017-08-20 13:30:50 +02:00
|
|
|
virtual ~MtEventReceiver() = default;
|
2012-03-23 19:23:03 +01:00
|
|
|
virtual void onEvent(MtEvent *e) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef void (*event_receive_func)(MtEvent *e, void *data);
|
|
|
|
|
|
|
|
class MtEventManager
|
|
|
|
{
|
|
|
|
public:
|
2017-08-20 13:30:50 +02:00
|
|
|
virtual ~MtEventManager() = default;
|
2012-03-23 19:23:03 +01:00
|
|
|
virtual void put(MtEvent *e) = 0;
|
2018-03-30 18:32:52 +02:00
|
|
|
virtual void reg(MtEvent::Type type, event_receive_func f, void *data) = 0;
|
2012-03-23 19:23:03 +01:00
|
|
|
// If data==NULL, every occurence of f is deregistered.
|
2018-03-30 18:32:52 +02:00
|
|
|
virtual void dereg(MtEvent::Type type, event_receive_func f, void *data) = 0;
|
2012-03-23 19:23:03 +01:00
|
|
|
};
|