125 lines
2.6 KiB
C++
125 lines
2.6 KiB
C++
#ifndef RAYLIB_CPP_INCLUDE_GAMEPAD_HPP_
|
|
#define RAYLIB_CPP_INCLUDE_GAMEPAD_HPP_
|
|
|
|
#include <string>
|
|
|
|
#include "./raylib.hpp"
|
|
#include "./raylib-cpp-utils.hpp"
|
|
|
|
namespace raylib {
|
|
/**
|
|
* Input-related functions: gamepads
|
|
*/
|
|
class Gamepad {
|
|
public:
|
|
Gamepad(int gamepadNumber = 0) {
|
|
set(gamepadNumber);
|
|
}
|
|
int number;
|
|
|
|
GETTERSETTER(int, Number, number)
|
|
|
|
Gamepad& operator=(const Gamepad& gamepad) {
|
|
set(gamepad);
|
|
return *this;
|
|
}
|
|
|
|
Gamepad& operator=(int gamepadNumber) {
|
|
set(gamepadNumber);
|
|
return *this;
|
|
}
|
|
|
|
operator int() const { return number; }
|
|
|
|
/**
|
|
* Detect if a gamepad is available
|
|
*/
|
|
bool IsAvailable() const {
|
|
return ::IsGamepadAvailable(number);
|
|
}
|
|
|
|
/**
|
|
* Detect if a gamepad is available
|
|
*/
|
|
static bool IsAvailable(int number) {
|
|
return ::IsGamepadAvailable(number);
|
|
}
|
|
|
|
/**
|
|
* Return gamepad internal name id
|
|
*/
|
|
std::string GetName() const {
|
|
return ::GetGamepadName(number);
|
|
}
|
|
|
|
/**
|
|
* Return gamepad internal name id
|
|
*/
|
|
operator std::string() const {
|
|
return GetName();
|
|
}
|
|
|
|
/**
|
|
* Detect if a gamepad button has been pressed once
|
|
*/
|
|
bool IsButtonPressed(int button) const {
|
|
return ::IsGamepadButtonPressed(number, button);
|
|
}
|
|
|
|
/**
|
|
* Detect if a gamepad button is being pressed
|
|
*/
|
|
bool IsButtonDown(int button) const {
|
|
return ::IsGamepadButtonDown(number, button);
|
|
}
|
|
|
|
/**
|
|
* Detect if a gamepad button has been released once
|
|
*/
|
|
bool IsButtonReleased(int button) const {
|
|
return ::IsGamepadButtonReleased(number, button);
|
|
}
|
|
|
|
/**
|
|
* Detect if a gamepad button is NOT being pressed
|
|
*/
|
|
bool IsButtonUp(int button) const {
|
|
return ::IsGamepadButtonUp(number, button);
|
|
}
|
|
|
|
/**
|
|
* Get the last gamepad button pressed
|
|
*/
|
|
int GetButtonPressed() const {
|
|
return ::GetGamepadButtonPressed();
|
|
}
|
|
|
|
/**
|
|
* Return gamepad axis count for a gamepad
|
|
*/
|
|
int GetAxisCount() const {
|
|
return ::GetGamepadAxisCount(number);
|
|
}
|
|
|
|
/**
|
|
* Return axis movement value for a gamepad axis
|
|
*/
|
|
float GetAxisMovement(int axis) const {
|
|
return ::GetGamepadAxisMovement(number, axis);
|
|
}
|
|
|
|
int SetMappings(const std::string& mappings) {
|
|
return SetGamepadMappings(mappings.c_str());
|
|
}
|
|
|
|
protected:
|
|
void set(int gamepadNumber) {
|
|
number = gamepadNumber;
|
|
}
|
|
};
|
|
} // namespace raylib
|
|
|
|
using RGamepad = raylib::Gamepad;
|
|
|
|
#endif // RAYLIB_CPP_INCLUDE_GAMEPAD_HPP_
|