mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-19 22:43:32 +00:00
the whole game
This commit is contained in:
60
src/client/MouseHandler.cpp
Executable file
60
src/client/MouseHandler.cpp
Executable file
@@ -0,0 +1,60 @@
|
||||
#include "MouseHandler.h"
|
||||
#include "player/input/ITurnInput.h"
|
||||
|
||||
#ifdef RPI
|
||||
#include <SDL/SDL.h>
|
||||
#endif
|
||||
|
||||
#ifdef PLATFORM_GLFW
|
||||
#include <GLFW/glfw3.h>
|
||||
#endif
|
||||
|
||||
MouseHandler::MouseHandler( ITurnInput* turnInput )
|
||||
: _turnInput(turnInput)
|
||||
{}
|
||||
|
||||
MouseHandler::MouseHandler()
|
||||
: _turnInput(0)
|
||||
{}
|
||||
|
||||
MouseHandler::~MouseHandler() {
|
||||
}
|
||||
|
||||
void MouseHandler::setTurnInput( ITurnInput* turnInput ) {
|
||||
_turnInput = turnInput;
|
||||
}
|
||||
|
||||
void MouseHandler::grab() {
|
||||
xd = 0;
|
||||
yd = 0;
|
||||
|
||||
#if defined(RPI)
|
||||
//LOGI("Grabbing input!\n");
|
||||
SDL_WM_GrabInput(SDL_GRAB_ON);
|
||||
SDL_ShowCursor(0);
|
||||
#endif
|
||||
|
||||
#ifdef PLATFORM_GLFW
|
||||
glfwSetInputMode(glfwGetCurrentContext(), GLFW_CURSOR, GLFW_CURSOR_DISABLED);
|
||||
#endif
|
||||
}
|
||||
|
||||
void MouseHandler::release() {
|
||||
#if defined(RPI)
|
||||
//LOGI("Releasing input!\n");
|
||||
SDL_WM_GrabInput(SDL_GRAB_OFF);
|
||||
SDL_ShowCursor(1);
|
||||
#endif
|
||||
|
||||
#ifdef PLATFORM_GLFW
|
||||
glfwSetInputMode(glfwGetCurrentContext(), GLFW_CURSOR, GLFW_CURSOR_NORMAL);
|
||||
#endif
|
||||
}
|
||||
|
||||
void MouseHandler::poll() {
|
||||
if (_turnInput != 0) {
|
||||
TurnDelta td = _turnInput->getTurnDelta();
|
||||
xd = td.x;
|
||||
yd = td.y;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user