blob: 320b45afd7dac424cfa6368d5899f5b5b9ca11a9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
// MIT License, Copyright (c) 2020 Marvin Borner
#include <assert.h>
#include <def.h>
#include <list.h>
#include <sys.h>
struct list *event_table[] = { [EVENT_KEYBOARD] = NULL, [EVENT_MOUSE] = NULL };
u32 event_map(enum event id, u32 *func)
{
// TODO: Check if function is already mapped
if (id >= sizeof(event_table) / sizeof(*event_table))
return -1;
if (event_table[id] == NULL)
event_table[id] = (struct list *)list_new();
list_add((struct list *)event_table[id], (void *)func);
return 0;
}
u32 event_trigger(enum event id, u32 *data)
{
assert(id < sizeof(event_table) / sizeof(*event_table));
struct node *iterator = ((struct list *)event_table[id])->head;
if (!iterator->data) {
printf("Event %d not mapped!\n", id);
return 1;
}
while (1) {
u32 *func = iterator->data;
iterator = iterator->next;
if (iterator == NULL)
break;
}
// TODO: Execute event function in ring3 with process stack, ...
/* location(data); */
return 0;
}
|