2013-08-08 00:45:56 -04:00
|
|
|
/*
|
|
|
|
* Copyright 2010-2013 Branimir Karadzic. All rights reserved.
|
|
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __INPUT_H__
|
|
|
|
#define __INPUT_H__
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "entry.h"
|
|
|
|
|
|
|
|
typedef void (*InputBindingFn)(const void* _userData);
|
|
|
|
|
|
|
|
struct InputBinding
|
|
|
|
{
|
|
|
|
entry::Key::Enum m_key;
|
|
|
|
uint8_t m_modifiers;
|
|
|
|
uint8_t m_flags;
|
|
|
|
InputBindingFn m_fn;
|
|
|
|
const void* m_userData;
|
|
|
|
};
|
|
|
|
|
2013-08-08 01:50:01 -04:00
|
|
|
#define INPUT_BINDING_END { entry::Key::None, entry::Modifier::None, 0, NULL, NULL }
|
2013-08-08 00:45:56 -04:00
|
|
|
|
|
|
|
///
|
|
|
|
void inputAddBindings(const char* _name, const InputBinding* _bindings);
|
|
|
|
|
|
|
|
///
|
|
|
|
void inputRemoveBindings(const char* _name);
|
|
|
|
|
|
|
|
///
|
|
|
|
void inputProcess();
|
|
|
|
|
|
|
|
///
|
|
|
|
void inputSetKeyState(entry::Key::Enum _key, uint8_t _modifiers, bool _down);
|
|
|
|
|
|
|
|
///
|
|
|
|
void inputSetMouseResolution(uint16_t _width, uint16_t _height);
|
|
|
|
|
|
|
|
///
|
|
|
|
void inputSetMousePos(int32_t _mx, int32_t _my);
|
|
|
|
|
|
|
|
///
|
|
|
|
void inputSetMouseButtonState(entry::MouseButton::Enum _button, uint8_t _state);
|
|
|
|
|
|
|
|
///
|
|
|
|
void inputSetMouseLock(bool _lock);
|
|
|
|
|
|
|
|
///
|
|
|
|
void inputGetMouse(float _mouse[2]);
|
|
|
|
|
|
|
|
///
|
|
|
|
bool inputIsMouseLocked();
|
|
|
|
|
|
|
|
#endif // __INPUT_H__
|