2007-11-25 19:42:40 +00:00
|
|
|
/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
|
2007-10-07 23:43:14 +00:00
|
|
|
#include <string.h>
|
2007-08-22 07:52:33 +00:00
|
|
|
#include <engine/external/glfw/include/GL/glfw.h>
|
|
|
|
|
2007-12-15 10:24:49 +00:00
|
|
|
#include <engine/e_system.h>
|
|
|
|
#include <engine/e_interface.h>
|
|
|
|
#include <engine/e_config.h>
|
2007-08-22 07:52:33 +00:00
|
|
|
|
2007-10-06 17:01:06 +00:00
|
|
|
static int keyboard_state[2][1024]; /* TODO: fix this!! */
|
2007-08-22 07:52:33 +00:00
|
|
|
static int keyboard_current = 0;
|
|
|
|
static int keyboard_first = 1;
|
|
|
|
|
2007-10-07 23:43:14 +00:00
|
|
|
|
|
|
|
static struct
|
|
|
|
{
|
|
|
|
unsigned char presses;
|
|
|
|
unsigned char releases;
|
|
|
|
} input_count[2][1024] = {{{0}}, {{0}}};
|
|
|
|
|
|
|
|
static unsigned char input_state[2][1024] = {{0}, {0}};
|
|
|
|
|
|
|
|
static int input_current = 0;
|
2007-12-09 15:43:18 +00:00
|
|
|
static unsigned int last_release = 0;
|
|
|
|
static unsigned int release_delta = -1;
|
2007-10-07 23:43:14 +00:00
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
void inp_mouse_relative(int *x, int *y)
|
|
|
|
{
|
|
|
|
static int last_x = 0, last_y = 0;
|
2007-12-09 14:15:57 +00:00
|
|
|
static int last_sens = 100.0f;
|
2007-08-22 07:52:33 +00:00
|
|
|
int nx, ny;
|
2007-12-09 14:15:57 +00:00
|
|
|
float sens = config.inp_mousesens/100.0f;
|
|
|
|
|
|
|
|
if(last_sens != config.inp_mousesens)
|
|
|
|
{
|
|
|
|
last_x = (last_x/(float)last_sens)*(float)config.inp_mousesens;
|
|
|
|
last_y = (last_y/(float)last_sens)*(float)config.inp_mousesens;
|
|
|
|
last_sens = config.inp_mousesens;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
glfwGetMousePos(&nx, &ny);
|
2007-12-09 14:15:57 +00:00
|
|
|
nx *= sens;
|
|
|
|
ny *= sens;
|
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
*x = nx-last_x;
|
|
|
|
*y = ny-last_y;
|
|
|
|
last_x = nx;
|
|
|
|
last_y = ny;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char last_c = 0;
|
|
|
|
static int last_k = 0;
|
|
|
|
|
|
|
|
static void char_callback(int character, int action)
|
|
|
|
{
|
|
|
|
if(action == GLFW_PRESS && character < 256)
|
2007-12-09 14:15:57 +00:00
|
|
|
last_c = (char)character;
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void key_callback(int key, int action)
|
|
|
|
{
|
2007-10-07 23:43:14 +00:00
|
|
|
if(action == GLFW_PRESS)
|
|
|
|
last_k = key;
|
|
|
|
|
|
|
|
if(action == GLFW_PRESS)
|
|
|
|
input_count[input_current^1][key].presses++;
|
|
|
|
if(action == GLFW_RELEASE)
|
|
|
|
input_count[input_current^1][key].releases++;
|
|
|
|
input_state[input_current^1][key] = action;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mousebutton_callback(int button, int action)
|
|
|
|
{
|
2007-12-09 15:52:22 +00:00
|
|
|
if(action == GLFW_PRESS)
|
|
|
|
last_k = KEY_MOUSE_FIRST+button;
|
|
|
|
|
2007-10-07 23:43:14 +00:00
|
|
|
if(action == GLFW_PRESS)
|
|
|
|
input_count[input_current^1][KEY_MOUSE_FIRST+button].presses++;
|
|
|
|
if(action == GLFW_RELEASE)
|
2007-12-09 15:43:18 +00:00
|
|
|
{
|
|
|
|
if(button == 0)
|
|
|
|
{
|
|
|
|
release_delta = time_get() - last_release;
|
|
|
|
last_release = time_get();
|
|
|
|
}
|
2007-10-07 23:43:14 +00:00
|
|
|
input_count[input_current^1][KEY_MOUSE_FIRST+button].releases++;
|
2007-12-09 15:43:18 +00:00
|
|
|
}
|
2007-10-07 23:43:14 +00:00
|
|
|
input_state[input_current^1][KEY_MOUSE_FIRST+button] = action;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void mousewheel_callback(int pos)
|
|
|
|
{
|
|
|
|
if(pos > 0)
|
|
|
|
{
|
|
|
|
while(pos-- != 0)
|
|
|
|
{
|
|
|
|
input_count[input_current^1][KEY_MOUSE_WHEEL_UP].presses++;
|
|
|
|
input_count[input_current^1][KEY_MOUSE_WHEEL_UP].releases++;
|
|
|
|
}
|
2007-12-17 00:16:04 +00:00
|
|
|
|
|
|
|
last_k = KEY_MOUSE_WHEEL_UP;
|
2007-10-07 23:43:14 +00:00
|
|
|
}
|
|
|
|
else if(pos < 0)
|
|
|
|
{
|
|
|
|
while(pos++ != 0)
|
|
|
|
{
|
|
|
|
input_count[input_current^1][KEY_MOUSE_WHEEL_DOWN].presses++;
|
|
|
|
input_count[input_current^1][KEY_MOUSE_WHEEL_DOWN].releases++;
|
|
|
|
}
|
2007-12-17 00:16:04 +00:00
|
|
|
|
|
|
|
last_k = KEY_MOUSE_WHEEL_DOWN;
|
2007-10-07 23:43:14 +00:00
|
|
|
}
|
|
|
|
glfwSetMouseWheel(0);
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2007-10-07 23:43:14 +00:00
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
void inp_init()
|
|
|
|
{
|
|
|
|
glfwEnable(GLFW_KEY_REPEAT);
|
|
|
|
glfwSetCharCallback(char_callback);
|
|
|
|
glfwSetKeyCallback(key_callback);
|
2007-10-07 23:43:14 +00:00
|
|
|
glfwSetMouseButtonCallback(mousebutton_callback);
|
|
|
|
glfwSetMouseWheelCallback(mousewheel_callback);
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
char inp_last_char()
|
|
|
|
{
|
|
|
|
return last_c;
|
|
|
|
}
|
|
|
|
|
|
|
|
int inp_last_key()
|
|
|
|
{
|
|
|
|
return last_k;
|
|
|
|
}
|
|
|
|
|
|
|
|
void inp_clear()
|
|
|
|
{
|
|
|
|
last_k = 0;
|
|
|
|
last_c = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void inp_mouse_mode_absolute()
|
|
|
|
{
|
|
|
|
glfwEnable(GLFW_MOUSE_CURSOR);
|
|
|
|
}
|
|
|
|
|
|
|
|
void inp_mouse_mode_relative()
|
|
|
|
{
|
2008-01-11 16:48:34 +00:00
|
|
|
//if (!config.gfx_debug_resizable)
|
|
|
|
//glfwDisable(GLFW_MOUSE_CURSOR);
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2007-12-09 15:43:18 +00:00
|
|
|
int inp_mouse_doubleclick()
|
|
|
|
{
|
|
|
|
return release_delta < (time_freq() >> 2);
|
|
|
|
}
|
|
|
|
|
2007-10-07 23:43:14 +00:00
|
|
|
int inp_key_presses(int key)
|
|
|
|
{
|
|
|
|
return input_count[input_current][key].presses;
|
|
|
|
}
|
|
|
|
|
|
|
|
int inp_key_releases(int key)
|
|
|
|
{
|
|
|
|
return input_count[input_current][key].releases;
|
|
|
|
}
|
|
|
|
|
|
|
|
int inp_key_state(int key)
|
|
|
|
{
|
|
|
|
return input_state[input_current][key];
|
|
|
|
}
|
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
int inp_key_pressed(int key) { return keyboard_state[keyboard_current][key]; }
|
|
|
|
int inp_key_was_pressed(int key) { return keyboard_state[keyboard_current^1][key]; }
|
|
|
|
int inp_key_down(int key) { return inp_key_pressed(key)&&!inp_key_was_pressed(key); }
|
|
|
|
int inp_button_pressed(int button) { return keyboard_state[keyboard_current][button]; }
|
|
|
|
|
|
|
|
void inp_update()
|
|
|
|
{
|
2007-10-06 17:01:06 +00:00
|
|
|
int i, v;
|
2007-10-07 23:43:14 +00:00
|
|
|
|
|
|
|
/* clear and begin count on the other one */
|
|
|
|
mem_zero(&input_count[input_current], sizeof(input_count[input_current]));
|
|
|
|
memcpy(input_state[input_current], input_state[input_current^1], sizeof(input_state[input_current]));
|
|
|
|
input_current^=1;
|
2007-10-06 17:01:06 +00:00
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
if(keyboard_first)
|
|
|
|
{
|
2007-10-06 17:01:06 +00:00
|
|
|
/* make sure to reset */
|
2007-08-22 07:52:33 +00:00
|
|
|
keyboard_first = 0;
|
|
|
|
inp_update();
|
|
|
|
}
|
2007-10-04 22:37:35 +00:00
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
keyboard_current = keyboard_current^1;
|
|
|
|
for(i = 0; i < KEY_LAST; i++)
|
|
|
|
{
|
|
|
|
if (i >= KEY_MOUSE_FIRST)
|
|
|
|
v = glfwGetMouseButton(i-KEY_MOUSE_FIRST) == GLFW_PRESS ? 1 : 0;
|
|
|
|
else
|
|
|
|
v = glfwGetKey(i) == GLFW_PRESS ? 1 : 0;
|
|
|
|
keyboard_state[keyboard_current][i] = v;
|
|
|
|
}
|
|
|
|
|
2007-10-06 17:01:06 +00:00
|
|
|
/* handle mouse wheel */
|
2007-10-07 23:43:14 +00:00
|
|
|
/*
|
|
|
|
i = glfwGetMouseWheel();
|
2007-10-04 22:37:35 +00:00
|
|
|
keyboard_state[keyboard_current][KEY_MOUSE_WHEEL_UP] = 0;
|
|
|
|
keyboard_state[keyboard_current][KEY_MOUSE_WHEEL_DOWN] = 0;
|
2007-10-07 23:43:14 +00:00
|
|
|
if(w > 0)
|
2007-10-04 22:37:35 +00:00
|
|
|
keyboard_state[keyboard_current][KEY_MOUSE_WHEEL_UP] = 1;
|
2007-10-07 23:43:14 +00:00
|
|
|
if(w < 0)
|
2007-10-04 22:37:35 +00:00
|
|
|
keyboard_state[keyboard_current][KEY_MOUSE_WHEEL_DOWN] = 1;
|
2007-10-07 23:43:14 +00:00
|
|
|
glfwSetMouseWheel(0);*/
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|