💿🐜 Antkeeper source code https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

202 lines
5.3 KiB

/*
* Copyright (C) 2021 Christopher J. Howard
*
* This file is part of Antkeeper source code.
*
* Antkeeper source code 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 3 of the License, or
* (at your option) any later version.
*
* Antkeeper source code 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 Antkeeper source code. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef ANTKEEPER_INPUT_MAPPING_HPP
#define ANTKEEPER_INPUT_MAPPING_HPP
namespace input {
enum class mouse_motion_axis;
enum class mouse_wheel_axis;
enum class scancode;
enum class game_controller_axis;
enum class game_controller_button;
class control;
class keyboard;
class mouse;
class game_controller;
/**
* Enumerates the supported types of control mappings.
*/
enum class mapping_type
{
key,
mouse_motion,
mouse_wheel,
mouse_button,
game_controller_axis,
game_controller_button
};
/**
* Abstract base class for input mappings.
*/
class mapping
{
public:
mapping() = default;
mapping(input::control* control);
virtual ~mapping() = default;
/// Returns this control mapping's type.
virtual mapping_type get_type() const = 0;
control* control;
};
/**
* A mapping between a control and a keyboard key.
*/
class key_mapping: public mapping
{
public:
key_mapping() = default;
key_mapping(const key_mapping& mapping);
key_mapping(input::control* control, input::keyboard* keyboard, scancode scancode);
virtual ~key_mapping() = default;
key_mapping& operator=(const key_mapping& mapping);
virtual mapping_type get_type() const;
input::keyboard* keyboard;
scancode scancode;
};
inline mapping_type key_mapping::get_type() const
{
return mapping_type::key;
}
/**
* A mapping between a control and a mouse motion axis.
*/
class mouse_motion_mapping: public mapping
{
public:
mouse_motion_mapping() = default;
mouse_motion_mapping(const mouse_motion_mapping& mapping);
mouse_motion_mapping(input::control* control, input::mouse* mouse, mouse_motion_axis axis);
virtual ~mouse_motion_mapping() = default;
mouse_motion_mapping& operator=(const mouse_motion_mapping& mapping);
virtual mapping_type get_type() const;
input::mouse* mouse;
mouse_motion_axis axis;
};
inline mapping_type mouse_motion_mapping::get_type() const
{
return mapping_type::mouse_motion;
}
/**
* A mapping between a control and a mouse wheel axis.
*/
class mouse_wheel_mapping: public mapping
{
public:
mouse_wheel_mapping() = default;
mouse_wheel_mapping(const mouse_wheel_mapping& mapping);
mouse_wheel_mapping(input::control* control, input::mouse* mouse, mouse_wheel_axis axis);
virtual ~mouse_wheel_mapping() = default;
mouse_wheel_mapping& operator=(const mouse_wheel_mapping& mapping);
virtual mapping_type get_type() const;
input::mouse* mouse;
mouse_wheel_axis axis;
};
inline mapping_type mouse_wheel_mapping::get_type() const
{
return mapping_type::mouse_wheel;
}
/**
* A mapping between a control and a mouse button.
*/
class mouse_button_mapping: public mapping
{
public:
mouse_button_mapping() = default;
mouse_button_mapping(const mouse_button_mapping& mapping);
mouse_button_mapping(input::control* control, input::mouse* mouse, int button);
virtual ~mouse_button_mapping() = default;
mouse_button_mapping& operator=(const mouse_button_mapping& mapping);
virtual mapping_type get_type() const;
input::mouse* mouse;
int button;
};
inline mapping_type mouse_button_mapping::get_type() const
{
return mapping_type::mouse_button;
}
/**
* A mapping between a control and a game controller axis.
*/
class game_controller_axis_mapping: public mapping
{
public:
game_controller_axis_mapping() = default;
game_controller_axis_mapping(const game_controller_axis_mapping& mapping);
game_controller_axis_mapping(input::control* control, game_controller* controller, game_controller_axis axis, bool negative);
virtual ~game_controller_axis_mapping() = default;
game_controller_axis_mapping& operator=(const game_controller_axis_mapping& mapping);
virtual mapping_type get_type() const;
game_controller* controller;
game_controller_axis axis;
bool negative;
};
inline mapping_type game_controller_axis_mapping::get_type() const
{
return mapping_type::game_controller_axis;
}
/**
* A mapping between a control and a game controller button.
*
* @ingroup input.
*/
class game_controller_button_mapping: public mapping
{
public:
game_controller_button_mapping() = default;
game_controller_button_mapping(const game_controller_button_mapping& mapping);
game_controller_button_mapping(input::control* control, game_controller* controller, game_controller_button button);
virtual ~game_controller_button_mapping() = default;
game_controller_button_mapping& operator=(const game_controller_button_mapping& mapping);
virtual mapping_type get_type() const;
game_controller* controller;
game_controller_button button;
};
inline mapping_type game_controller_button_mapping::get_type() const
{
return mapping_type::game_controller_button;
}
} // namespace input
#endif // ANTKEEPER_INPUT_MAPPING_HPP