blobwarsAttrition/src/system/input.c

177 lines
3.4 KiB
C
Raw Permalink Normal View History

2018-01-21 10:31:38 +01:00
/*
2019-06-02 17:13:34 +02:00
Copyright (C) 2018-2019 Parallel Realities
2018-01-21 10:31:38 +01:00
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.
*/
#include "input.h"
void initInput(void)
{
}
static void doKeyDown(SDL_KeyboardEvent *event)
{
2018-03-29 09:21:36 +02:00
if (event->keysym.scancode < MAX_KEYBOARD_KEYS && event->repeat == 0)
2018-01-21 10:31:38 +01:00
{
app.keyboard[event->keysym.scancode] = 1;
2018-02-14 20:12:29 +01:00
app.lastKeyPressed = event->keysym.scancode;
2018-01-21 10:31:38 +01:00
}
}
static void doKeyUp(SDL_KeyboardEvent *event)
{
2018-03-29 09:21:36 +02:00
if (event->keysym.scancode < MAX_KEYBOARD_KEYS)
2018-01-21 10:31:38 +01:00
{
app.keyboard[event->keysym.scancode] = 0;
}
}
static void doMouseDown(SDL_MouseButtonEvent *event)
{
if (event->button >= 0 && event->button < MAX_MOUSE_BUTTONS)
{
app.mouse.button[event->button] = 1;
}
}
static void doMouseUp(SDL_MouseButtonEvent *event)
{
if (event->button >= 0 && event->button < MAX_MOUSE_BUTTONS)
{
app.mouse.button[event->button] = 0;
}
}
/*
* Note: the following assumes that SDL_BUTTON_X1 and SDL_BUTTON_X2 are 4 and 5, respectively. They usually are.
*/
static void doMouseWheel(SDL_MouseWheelEvent *event)
{
if (event->y == -1)
{
app.mouse.button[SDL_BUTTON_X1] = 1;
}
if (event->y == 1)
{
app.mouse.button[SDL_BUTTON_X2] = 1;
}
}
static void doMouseMotion(SDL_MouseMotionEvent *event)
{
2018-02-17 17:52:51 +01:00
app.mouse.dx = event->xrel;
app.mouse.dy = event->yrel;
2018-01-21 10:31:38 +01:00
}
2018-02-08 22:54:30 +01:00
static void doButtonDown(SDL_JoyButtonEvent *event)
{
if (event->state == SDL_PRESSED)
{
app.joypadButton[event->button] = 1;
2018-02-14 20:12:29 +01:00
app.lastButtonPressed = event->button;
2018-02-08 22:54:30 +01:00
}
}
static void doButtonUp(SDL_JoyButtonEvent *event)
{
if (event->state == SDL_RELEASED)
{
app.joypadButton[event->button] = 0;
}
}
2018-02-20 23:12:07 +01:00
static void doJoyAxis(SDL_JoyAxisEvent *event)
{
if (event->axis < JOYPAD_AXIS_MAX)
{
app.joypadAxis[event->axis] = event->value;
}
2018-02-20 23:12:07 +01:00
}
2018-01-21 10:31:38 +01:00
void clearInput(void)
{
SDL_Event event;
2019-06-02 17:13:34 +02:00
2018-01-21 10:31:38 +01:00
memset(app.keyboard, 0, sizeof(int) * MAX_KEYBOARD_KEYS);
memset(&app.mouse, 0, sizeof(Mouse));
2018-02-06 23:26:05 +01:00
memset(&app.joypadButton, 0, sizeof(int) * SDL_CONTROLLER_BUTTON_MAX);
2018-01-21 10:31:38 +01:00
while (SDL_PollEvent(&event))
{
}
}
void handleInput(void)
{
SDL_Event event;
2019-06-02 17:13:34 +02:00
2018-01-21 10:31:38 +01:00
app.mouse.dx = 0;
app.mouse.dy = 0;
2019-06-02 17:13:34 +02:00
2018-01-21 10:31:38 +01:00
while (SDL_PollEvent(&event))
{
switch (event.type)
{
case SDL_MOUSEMOTION:
doMouseMotion(&event.motion);
break;
2019-06-02 17:13:34 +02:00
2018-01-21 10:31:38 +01:00
case SDL_MOUSEWHEEL:
doMouseWheel(&event.wheel);
break;
2019-06-02 17:13:34 +02:00
2018-01-21 10:31:38 +01:00
case SDL_MOUSEBUTTONDOWN:
doMouseDown(&event.button);
break;
case SDL_MOUSEBUTTONUP:
doMouseUp(&event.button);
break;
2019-06-02 17:13:34 +02:00
2018-01-21 10:31:38 +01:00
case SDL_KEYDOWN:
doKeyDown(&event.key);
break;
2019-06-02 17:13:34 +02:00
2018-01-21 10:31:38 +01:00
case SDL_KEYUP:
doKeyUp(&event.key);
break;
2018-02-08 22:54:30 +01:00
case SDL_JOYBUTTONDOWN:
doButtonDown(&event.jbutton);
break;
case SDL_JOYBUTTONUP:
doButtonUp(&event.jbutton);
break;
2019-06-02 17:13:34 +02:00
2018-02-20 23:12:07 +01:00
case SDL_JOYAXISMOTION:
doJoyAxis(&event.jaxis);
break;
2019-06-02 17:13:34 +02:00
2018-01-21 10:31:38 +01:00
case SDL_QUIT:
exit(0);
break;
}
}
2019-06-02 17:13:34 +02:00
2018-01-21 10:31:38 +01:00
SDL_GetMouseState(&app.mouse.x, &app.mouse.y);
}