2016-02-20 21:36:16 +00:00
|
|
|
/*
|
|
|
|
* Mr. 4th Dimention - Allen Webster
|
|
|
|
*
|
|
|
|
* 19.08.2015
|
|
|
|
*
|
|
|
|
* Command management functions for 4coder
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
// TOP
|
|
|
|
|
2017-02-12 06:01:01 +00:00
|
|
|
#define Command_Function_Sig(name) \
|
|
|
|
void (name)(System_Functions *system, struct Command_Data *command, struct Command_Binding binding)
|
2016-02-20 21:36:16 +00:00
|
|
|
|
|
|
|
typedef Command_Function_Sig(*Command_Function);
|
|
|
|
|
|
|
|
struct Command_Binding{
|
|
|
|
Command_Function function;
|
2016-02-27 20:23:52 +00:00
|
|
|
union{
|
|
|
|
Custom_Command_Function *custom;
|
|
|
|
u64 custom_id;
|
|
|
|
};
|
2017-02-17 22:03:19 +00:00
|
|
|
u64 hash;
|
2016-02-20 21:36:16 +00:00
|
|
|
};
|
2017-02-12 06:01:01 +00:00
|
|
|
static Command_Binding null_command_binding = {0};
|
2016-02-20 21:36:16 +00:00
|
|
|
|
|
|
|
struct Command_Map{
|
|
|
|
Command_Map *parent;
|
2017-02-18 01:04:41 +00:00
|
|
|
Command_Binding vanilla_keyboard_default[8];
|
2016-02-20 21:36:16 +00:00
|
|
|
Command_Binding *commands;
|
2017-02-17 22:03:19 +00:00
|
|
|
u32 count, max;
|
2016-02-20 21:36:16 +00:00
|
|
|
};
|
|
|
|
|
2017-02-17 22:03:19 +00:00
|
|
|
#define COMMAND_HASH_EMPTY 0
|
|
|
|
#define COMMAND_HASH_ERASED max_u64
|
|
|
|
|
2016-02-20 21:36:16 +00:00
|
|
|
internal void command_null(Command_Data *command);
|
|
|
|
|
2017-02-17 22:03:19 +00:00
|
|
|
internal u64
|
|
|
|
map_hash(Key_Code event_code, u8 modifiers){
|
|
|
|
u64 result = (event_code << 8) | modifiers;
|
|
|
|
return(result);
|
2016-02-20 21:36:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
internal b32
|
2017-02-17 22:03:19 +00:00
|
|
|
map_add(Command_Map *map, Key_Code event_code, u8 modifiers, Command_Function function, Custom_Command_Function *custom = 0, b32 override_original = true){
|
2017-02-12 23:04:50 +00:00
|
|
|
b32 result = false;
|
2016-02-20 21:36:16 +00:00
|
|
|
Assert(map->count * 8 < map->max * 7);
|
2017-02-17 22:03:19 +00:00
|
|
|
u64 hash = map_hash(event_code, modifiers);
|
2016-02-20 21:36:16 +00:00
|
|
|
|
2017-02-17 22:03:19 +00:00
|
|
|
u32 max = map->max;
|
|
|
|
u32 index = hash % max;
|
|
|
|
Command_Binding entry = map->commands[index];
|
|
|
|
while (entry.function != 0 && entry.hash != COMMAND_HASH_ERASED){
|
|
|
|
if (entry.hash == hash){
|
|
|
|
result = true;
|
2017-02-12 23:04:50 +00:00
|
|
|
break;
|
2016-02-20 21:36:16 +00:00
|
|
|
}
|
|
|
|
index = (index + 1) % max;
|
2017-02-17 22:03:19 +00:00
|
|
|
entry = map->commands[index];
|
2016-02-20 21:36:16 +00:00
|
|
|
}
|
2017-02-17 22:03:19 +00:00
|
|
|
|
2017-02-12 23:04:50 +00:00
|
|
|
if (override_original || !result){
|
2017-02-17 22:03:19 +00:00
|
|
|
Command_Binding bind;
|
|
|
|
bind.function = function;
|
|
|
|
bind.custom = custom;
|
|
|
|
bind.hash = hash;
|
2017-02-12 23:04:50 +00:00
|
|
|
map->commands[index] = bind;
|
|
|
|
++map->count;
|
|
|
|
}
|
2017-02-17 22:03:19 +00:00
|
|
|
|
2017-02-12 23:04:50 +00:00
|
|
|
return(result);
|
2016-02-20 21:36:16 +00:00
|
|
|
}
|
|
|
|
|
2016-02-27 20:23:52 +00:00
|
|
|
inline b32
|
2017-02-17 22:03:19 +00:00
|
|
|
map_add(Command_Map *map, Key_Code event_code, u8 modifiers, Command_Function function, u64 custom_id, b32 override_original = true){
|
|
|
|
return (map_add(map, event_code, modifiers, function, (Custom_Command_Function*)custom_id, override_original));
|
2016-02-27 20:23:52 +00:00
|
|
|
}
|
|
|
|
|
2016-02-20 21:36:16 +00:00
|
|
|
internal b32
|
2017-02-17 22:03:19 +00:00
|
|
|
map_find_entry(Command_Map *map, Key_Code event_code, u8 modifiers, u32 *index_out){
|
|
|
|
u64 hash = map_hash(event_code, modifiers);
|
|
|
|
u32 max = map->max;
|
|
|
|
u32 index = hash % max;
|
|
|
|
b32 result = false;
|
|
|
|
Command_Binding entry = map->commands[index];
|
|
|
|
while (entry.function != 0){
|
2016-02-20 21:36:16 +00:00
|
|
|
if (entry.hash == hash){
|
|
|
|
*index_out = index;
|
2017-02-17 22:03:19 +00:00
|
|
|
result = true;
|
|
|
|
break;
|
2016-02-20 21:36:16 +00:00
|
|
|
}
|
|
|
|
index = (index + 1) % max;
|
2017-02-17 22:03:19 +00:00
|
|
|
entry = map->commands[index];
|
2016-02-20 21:36:16 +00:00
|
|
|
}
|
2017-02-17 22:03:19 +00:00
|
|
|
return(result);
|
2016-02-20 21:36:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
internal b32
|
2017-02-17 22:03:19 +00:00
|
|
|
map_find(Command_Map *map, Key_Code event_code, u8 modifiers, Command_Binding *bind_out){
|
|
|
|
u32 index = 0;
|
|
|
|
b32 result = map_find_entry(map, event_code, modifiers, &index);
|
2016-02-20 21:36:16 +00:00
|
|
|
if (result){
|
|
|
|
*bind_out = map->commands[index];
|
|
|
|
}
|
2017-02-17 22:03:19 +00:00
|
|
|
return(result);
|
2016-02-20 21:36:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
internal b32
|
2017-02-17 22:03:19 +00:00
|
|
|
map_drop(Command_Map *map, Key_Code event_code, u8 modifiers){
|
|
|
|
u32 index = 0;
|
|
|
|
b32 result = map_find_entry(map, event_code, modifiers, &index);
|
2016-02-20 21:36:16 +00:00
|
|
|
if (result){
|
|
|
|
map->commands[index].function = 0;
|
2017-02-17 22:03:19 +00:00
|
|
|
map->commands[index].hash = COMMAND_HASH_ERASED;
|
2016-02-20 21:36:16 +00:00
|
|
|
}
|
2017-02-17 22:03:19 +00:00
|
|
|
return(result);
|
2016-02-20 21:36:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
internal void
|
2016-05-19 13:29:38 +00:00
|
|
|
map_clear(Command_Map *commands){
|
2017-02-17 22:03:19 +00:00
|
|
|
u32 max = commands->max;
|
2016-02-20 21:36:16 +00:00
|
|
|
memset(commands->commands, 0, max*sizeof(*commands->commands));
|
2017-02-18 01:04:41 +00:00
|
|
|
memset(commands->vanilla_keyboard_default, 0, sizeof(commands->vanilla_keyboard_default));
|
2016-02-20 21:36:16 +00:00
|
|
|
commands->count = 0;
|
|
|
|
}
|
|
|
|
|
2017-02-18 01:04:41 +00:00
|
|
|
internal b32
|
2017-02-17 22:03:19 +00:00
|
|
|
map_init(Command_Map *commands, Partition *part, u32 max, Command_Map *parent){
|
2017-02-18 01:04:41 +00:00
|
|
|
b32 result = false;
|
2016-05-19 13:29:38 +00:00
|
|
|
if (commands->commands == 0){
|
2017-02-17 22:03:19 +00:00
|
|
|
max = clamp_bottom((u32)6, max);
|
2016-05-19 13:29:38 +00:00
|
|
|
commands->parent = parent;
|
|
|
|
commands->commands = push_array(part, Command_Binding, max);
|
2017-02-18 01:04:41 +00:00
|
|
|
commands->count = 0;
|
2016-05-19 13:29:38 +00:00
|
|
|
commands->max = max;
|
2017-02-18 01:04:41 +00:00
|
|
|
result = true;
|
2016-05-19 13:29:38 +00:00
|
|
|
}
|
2017-02-18 01:04:41 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal b32
|
|
|
|
map_get_modifiers_hash(u8 modifiers, u32 *hash_out){
|
|
|
|
b32 result = true;
|
|
|
|
u32 hash = 0;
|
|
|
|
if (modifiers & MDFR_SHIFT){
|
|
|
|
hash += 0x1;
|
|
|
|
}
|
|
|
|
if (modifiers & MDFR_CTRL){
|
|
|
|
hash += 0x2;
|
|
|
|
}
|
|
|
|
if (modifiers & MDFR_ALT){
|
|
|
|
hash += 0x4;
|
|
|
|
}
|
|
|
|
*hash_out = hash;
|
|
|
|
return(result);
|
2016-05-19 13:29:38 +00:00
|
|
|
}
|
|
|
|
|
2016-02-20 21:36:16 +00:00
|
|
|
internal void
|
2017-02-12 06:01:01 +00:00
|
|
|
map_get_vanilla_keyboard_default(Command_Map *map, u8 command, Command_Binding *bind_out){
|
2017-02-18 01:04:41 +00:00
|
|
|
u32 modifiers_hashed = 0;
|
|
|
|
if (map_get_modifiers_hash(command, &modifiers_hashed)){
|
|
|
|
*bind_out = map->vanilla_keyboard_default[modifiers_hashed];
|
2016-02-20 21:36:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
internal Command_Binding
|
|
|
|
map_extract(Command_Map *map, Key_Event_Data key){
|
2017-02-12 06:01:01 +00:00
|
|
|
Command_Binding bind = {0};
|
2016-02-20 21:36:16 +00:00
|
|
|
|
2017-11-07 21:35:26 +00:00
|
|
|
b32 ctrl = key.modifiers[MDFR_CONTROL_INDEX];
|
|
|
|
b32 alt = key.modifiers[MDFR_ALT_INDEX];
|
|
|
|
b32 command = key.modifiers[MDFR_COMMAND_INDEX];
|
|
|
|
b32 shift = key.modifiers[MDFR_SHIFT_INDEX];
|
2016-02-20 21:36:16 +00:00
|
|
|
|
2017-11-07 21:35:26 +00:00
|
|
|
u8 mod_flags = MDFR_NONE;
|
|
|
|
if (ctrl) mod_flags |= MDFR_CTRL;
|
|
|
|
if (command) mod_flags |= MDFR_COMMAND;
|
|
|
|
if (alt) mod_flags |= MDFR_ALT;
|
|
|
|
if (shift) mod_flags |= MDFR_SHIFT;
|
2017-02-12 06:01:01 +00:00
|
|
|
|
2017-02-17 22:03:19 +00:00
|
|
|
Key_Code code = key.character_no_caps_lock;
|
2016-02-20 21:36:16 +00:00
|
|
|
if (code == 0){
|
|
|
|
code = key.keycode;
|
2017-11-07 21:35:26 +00:00
|
|
|
map_find(map, code, mod_flags, &bind);
|
2016-02-20 21:36:16 +00:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
if (code != '\n' && code != '\t' && code != ' '){
|
2017-11-07 21:35:26 +00:00
|
|
|
mod_flags &= ~(MDFR_SHIFT);
|
2016-02-20 21:36:16 +00:00
|
|
|
}
|
2017-11-07 21:35:26 +00:00
|
|
|
map_find(map, code, mod_flags, &bind);
|
2016-02-20 21:36:16 +00:00
|
|
|
if (bind.function == 0){
|
2017-11-07 21:35:26 +00:00
|
|
|
map_get_vanilla_keyboard_default(map, mod_flags, &bind);
|
2016-02-20 21:36:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-27 20:23:52 +00:00
|
|
|
return(bind);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal Command_Binding
|
|
|
|
map_extract_recursive(Command_Map *map, Key_Event_Data key){
|
2017-02-17 22:03:19 +00:00
|
|
|
Command_Binding cmd_bind = {0};
|
|
|
|
Command_Map *visited_maps[16] = {0};
|
2016-02-27 20:23:52 +00:00
|
|
|
i32 visited_top = 0;
|
|
|
|
|
|
|
|
while (map){
|
|
|
|
cmd_bind = map_extract(map, key);
|
|
|
|
if (cmd_bind.function == 0){
|
|
|
|
if (visited_top < ArrayCount(visited_maps)){
|
|
|
|
visited_maps[visited_top++] = map;
|
|
|
|
map = map->parent;
|
|
|
|
for (i32 i = 0; i < visited_top; ++i){
|
|
|
|
if (map == visited_maps[i]){
|
|
|
|
map = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-17 22:03:19 +00:00
|
|
|
else{
|
|
|
|
map = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
map = 0;
|
2016-02-27 20:23:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(cmd_bind);
|
2016-02-20 21:36:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// BOTTOM
|
|
|
|
|