2021-10-01 06:38:48 +00:00
|
|
|
/*
|
|
|
|
in_axis.c
|
|
|
|
|
|
|
|
Logical axis support
|
|
|
|
|
|
|
|
Copyright (C) 2021 Bill Currie <bill@taniwha.org>
|
|
|
|
|
|
|
|
Author: Bill Currie <bill@taniwha.org>
|
|
|
|
Date: 2021/10/1
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "QF/cmd.h"
|
|
|
|
#include "QF/hash.h"
|
|
|
|
#include "QF/input.h"
|
|
|
|
#include "QF/sys.h"
|
|
|
|
|
|
|
|
static hashtab_t *axis_tab;
|
|
|
|
|
|
|
|
static const char *
|
2021-11-10 06:48:22 +00:00
|
|
|
axis_get_key (const void *a, void *data)
|
2021-10-01 06:38:48 +00:00
|
|
|
{
|
2021-11-10 06:48:22 +00:00
|
|
|
__auto_type axis = (const in_axis_t *) a;
|
|
|
|
return axis->name;
|
2021-10-01 06:38:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-11-10 06:48:22 +00:00
|
|
|
axis_free (void *a, void *data)
|
2021-10-01 06:38:48 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
VISIBLE int
|
2021-11-10 06:48:22 +00:00
|
|
|
IN_RegisterAxis (in_axis_t *axis)
|
2021-10-01 06:38:48 +00:00
|
|
|
{
|
2021-11-10 06:48:22 +00:00
|
|
|
const char *name = axis->name;
|
2021-10-01 06:38:48 +00:00
|
|
|
if (Hash_Find (axis_tab, name)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-11-10 06:48:22 +00:00
|
|
|
Hash_Add (axis_tab, axis);
|
2021-10-01 06:38:48 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-11-11 06:51:47 +00:00
|
|
|
VISIBLE in_axis_t *
|
|
|
|
IN_FindAxis (const char *name)
|
|
|
|
{
|
|
|
|
return Hash_Find (axis_tab, name);
|
|
|
|
}
|
|
|
|
|
2021-11-25 08:55:22 +00:00
|
|
|
void
|
|
|
|
IN_AxisAddListener (in_axis_t *axis, axis_listener_t listener, void *data)
|
|
|
|
{
|
|
|
|
if (!axis->listeners) {
|
|
|
|
axis->listeners = malloc (sizeof (*axis->listeners));
|
|
|
|
LISTENER_SET_INIT (axis->listeners, 8);
|
|
|
|
}
|
|
|
|
LISTENER_ADD (axis->listeners, listener, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
IN_AxisRemoveListener (in_axis_t *axis, axis_listener_t listener, void *data)
|
|
|
|
{
|
|
|
|
if (axis->listeners) {
|
|
|
|
LISTENER_REMOVE (axis->listeners, listener, data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-12 10:01:45 +00:00
|
|
|
static void
|
|
|
|
in_axis_shutdown (void *data)
|
|
|
|
{
|
|
|
|
Hash_DelTable (axis_tab);
|
|
|
|
}
|
2021-11-25 08:55:22 +00:00
|
|
|
|
2021-10-01 06:38:48 +00:00
|
|
|
static void __attribute__((constructor))
|
|
|
|
in_axis_init (void)
|
|
|
|
{
|
|
|
|
axis_tab = Hash_NewTable (127, axis_get_key, axis_free, 0, 0);
|
2022-05-12 10:01:45 +00:00
|
|
|
Sys_RegisterShutdown (in_axis_shutdown, 0);
|
2021-10-01 06:38:48 +00:00
|
|
|
}
|