/* $Id: sdl_driver.hpp 3120 2007-09-11 14:57:58Z grumbel $ ** ** Pingus - A free Lemmings clone ** Copyright (C) 2007 Ingo Ruhnke ** ** 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., 59 Temple Place - Suite 330, Boston, MA ** 02111-1307, USA. */ #ifndef HEADER_INPUT_SDL_DRIVER_HPP #define HEADER_INPUT_SDL_DRIVER_HPP #include #include #include "SDL.h" #include "driver.hpp" #include "control.hpp" class FileReader; namespace Input { /** */ class SDLDriver : public Driver { private: struct JoystickButtonBinding { Button* binding; int device; int button; }; struct JoystickAxisBinding { Axis* binding; int device; int axis; }; struct MouseButtonBinding { Button* binding; int button; }; struct KeyboardButtonBinding { Button* binding; SDLKey key; }; struct ScrollerBinding { Scroller* binding; }; struct PointerBinding { Pointer* binding; }; std::vector scroller_bindings; std::vector pointer_bindings; std::vector keyboard_button_bindings; std::vector mouse_button_bindings; std::vector joystick_button_bindings; std::vector joystick_axis_bindings; Keyboard* keyboard_binding; typedef std::map String2Key; String2Key string2key; typedef std::map JoystickHandles; JoystickHandles joystick_handles; bool open_joystick(int device); public: SDLDriver(); ~SDLDriver(); Button* create_button (const FileReader& reader, Control* parent); Axis* create_axis (const FileReader& reader, Control* parent); Scroller* create_scroller(const FileReader& reader, Control* parent); Pointer* create_pointer (const FileReader& reader, Control* parent); Keyboard* create_keyboard(const FileReader& reader, Control* parent); void update(float delta); std::string get_name() const { return "sdl"; } }; } // namespace Input #endif /* EOF */