From 70988527c64947fd7fe3c361907e9f0806b0cb5c Mon Sep 17 00:00:00 2001 From: cpasjuste Date: Wed, 1 Mar 2017 14:00:17 -0600 Subject: PSP2: Add Playstation Vita (PSP2) support --- backends/events/psp2sdl/psp2sdl-events.h | 39 ++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 backends/events/psp2sdl/psp2sdl-events.h (limited to 'backends/events/psp2sdl/psp2sdl-events.h') diff --git a/backends/events/psp2sdl/psp2sdl-events.h b/backends/events/psp2sdl/psp2sdl-events.h new file mode 100644 index 0000000000..001312e1d5 --- /dev/null +++ b/backends/events/psp2sdl/psp2sdl-events.h @@ -0,0 +1,39 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +#if !defined(DISABLE_DEFAULT_EVENTMANAGER) +#define BACKEND_EVENTS_PSP2_H + +#include "backends/events/sdl/sdl-events.h" + +/** + * SDL Events manager for the PSP2. + */ +class PSP2EventSource : public SdlEventSource { +protected: + bool handleJoyButtonDown(SDL_Event &ev, Common::Event &event); + bool handleJoyButtonUp(SDL_Event &ev, Common::Event &event); + bool handleJoyAxisMotion(SDL_Event &ev, Common::Event &event); + void preprocessEvents(SDL_Event *event); +}; + +#endif /* BACKEND_EVENTS_PSP2_H */ -- cgit v1.2.3