2013-02-15 09:48:36 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include "keyboard.h"
|
|
|
|
#include "action.h"
|
2013-02-15 19:05:58 +00:00
|
|
|
#include "util.h"
|
2013-04-02 08:44:24 +00:00
|
|
|
#include "action_layer.h"
|
2013-02-15 09:48:36 +00:00
|
|
|
|
2013-05-14 07:18:22 +00:00
|
|
|
#ifdef DEBUG_ACTION
|
|
|
|
#include "debug.h"
|
|
|
|
#else
|
|
|
|
#include "nodebug.h"
|
|
|
|
#endif
|
|
|
|
|
2013-02-15 09:48:36 +00:00
|
|
|
|
2013-02-20 02:16:13 +00:00
|
|
|
/*
|
2013-04-02 07:09:43 +00:00
|
|
|
* Default Layer State
|
2013-02-20 02:16:13 +00:00
|
|
|
*/
|
2013-04-02 07:09:43 +00:00
|
|
|
uint32_t default_layer_state = 0;
|
2013-02-15 19:05:58 +00:00
|
|
|
|
2013-04-02 07:09:43 +00:00
|
|
|
static void default_layer_state_set(uint32_t state)
|
2013-02-20 02:16:13 +00:00
|
|
|
{
|
2013-04-02 07:09:43 +00:00
|
|
|
debug("default_layer_state: ");
|
|
|
|
default_layer_debug(); debug(" to ");
|
|
|
|
default_layer_state = state;
|
|
|
|
default_layer_debug(); debug("\n");
|
2014-07-20 03:52:56 +00:00
|
|
|
#ifdef LEDMAP_ENABLE
|
|
|
|
default_layer_state_change(state);
|
|
|
|
#endif
|
2013-02-20 02:16:13 +00:00
|
|
|
clear_keyboard_but_mods(); // To avoid stuck keys
|
|
|
|
}
|
|
|
|
|
2013-04-02 07:09:43 +00:00
|
|
|
void default_layer_debug(void)
|
2013-02-20 02:16:13 +00:00
|
|
|
{
|
2013-05-14 07:18:22 +00:00
|
|
|
dprintf("%08lX(%u)", default_layer_state, biton32(default_layer_state));
|
2013-02-20 02:16:13 +00:00
|
|
|
}
|
|
|
|
|
2013-06-22 07:14:56 +00:00
|
|
|
void default_layer_set(uint32_t state)
|
2013-02-20 02:16:13 +00:00
|
|
|
{
|
2013-06-22 07:14:56 +00:00
|
|
|
default_layer_state_set(state);
|
2013-04-02 07:09:43 +00:00
|
|
|
}
|
2013-02-15 09:48:36 +00:00
|
|
|
|
2013-04-02 07:09:43 +00:00
|
|
|
#ifndef NO_ACTION_LAYER
|
|
|
|
void default_layer_or(uint32_t state)
|
|
|
|
{
|
|
|
|
default_layer_state_set(default_layer_state | state);
|
|
|
|
}
|
|
|
|
void default_layer_and(uint32_t state)
|
|
|
|
{
|
|
|
|
default_layer_state_set(default_layer_state & state);
|
|
|
|
}
|
|
|
|
void default_layer_xor(uint32_t state)
|
|
|
|
{
|
|
|
|
default_layer_state_set(default_layer_state ^ state);
|
|
|
|
}
|
|
|
|
#endif
|
2013-02-20 02:16:13 +00:00
|
|
|
|
|
|
|
|
2013-04-02 07:09:43 +00:00
|
|
|
#ifndef NO_ACTION_LAYER
|
|
|
|
/*
|
|
|
|
* Keymap Layer State
|
|
|
|
*/
|
|
|
|
uint32_t layer_state = 0;
|
2013-02-20 02:16:13 +00:00
|
|
|
|
2013-04-02 07:09:43 +00:00
|
|
|
static void layer_state_set(uint32_t state)
|
2013-02-20 02:16:13 +00:00
|
|
|
{
|
2013-05-14 07:18:22 +00:00
|
|
|
dprint("layer_state: ");
|
|
|
|
layer_debug(); dprint(" to ");
|
2013-04-02 07:09:43 +00:00
|
|
|
layer_state = state;
|
2013-05-14 07:18:22 +00:00
|
|
|
layer_debug(); dprintln();
|
2014-07-20 03:52:56 +00:00
|
|
|
#ifdef LEDMAP_ENABLE
|
|
|
|
layer_state_change(state);
|
|
|
|
#endif
|
2013-04-02 07:09:43 +00:00
|
|
|
clear_keyboard_but_mods(); // To avoid stuck keys
|
2013-02-20 02:16:13 +00:00
|
|
|
}
|
|
|
|
|
2013-04-02 07:09:43 +00:00
|
|
|
void layer_clear(void)
|
2013-02-20 02:16:13 +00:00
|
|
|
{
|
2013-04-02 07:09:43 +00:00
|
|
|
layer_state_set(0);
|
2013-02-20 02:16:13 +00:00
|
|
|
}
|
|
|
|
|
2013-04-02 07:09:43 +00:00
|
|
|
void layer_move(uint8_t layer)
|
2013-02-20 02:16:13 +00:00
|
|
|
{
|
2013-04-02 07:09:43 +00:00
|
|
|
layer_state_set(1UL<<layer);
|
2013-02-20 02:16:13 +00:00
|
|
|
}
|
2013-02-15 09:48:36 +00:00
|
|
|
|
2013-04-02 07:09:43 +00:00
|
|
|
void layer_on(uint8_t layer)
|
2013-02-15 09:48:36 +00:00
|
|
|
{
|
2013-04-02 07:09:43 +00:00
|
|
|
layer_state_set(layer_state | (1UL<<layer));
|
2013-02-15 09:48:36 +00:00
|
|
|
}
|
|
|
|
|
2013-04-02 07:09:43 +00:00
|
|
|
void layer_off(uint8_t layer)
|
2013-02-20 02:16:13 +00:00
|
|
|
{
|
2013-04-02 07:09:43 +00:00
|
|
|
layer_state_set(layer_state & ~(1UL<<layer));
|
2013-02-20 02:16:13 +00:00
|
|
|
}
|
|
|
|
|
2013-04-02 07:09:43 +00:00
|
|
|
void layer_invert(uint8_t layer)
|
2013-02-20 02:16:13 +00:00
|
|
|
{
|
2013-04-02 07:09:43 +00:00
|
|
|
layer_state_set(layer_state ^ (1UL<<layer));
|
2013-02-20 02:16:13 +00:00
|
|
|
}
|
|
|
|
|
2013-04-02 07:09:43 +00:00
|
|
|
void layer_or(uint32_t state)
|
2013-02-20 02:16:13 +00:00
|
|
|
{
|
2013-04-02 07:09:43 +00:00
|
|
|
layer_state_set(layer_state | state);
|
2013-02-20 02:16:13 +00:00
|
|
|
}
|
2013-04-02 07:09:43 +00:00
|
|
|
void layer_and(uint32_t state)
|
2013-02-20 02:16:13 +00:00
|
|
|
{
|
2013-04-02 07:09:43 +00:00
|
|
|
layer_state_set(layer_state & state);
|
2013-02-20 02:16:13 +00:00
|
|
|
}
|
2013-04-02 07:09:43 +00:00
|
|
|
void layer_xor(uint32_t state)
|
2013-02-20 02:16:13 +00:00
|
|
|
{
|
2013-04-02 07:09:43 +00:00
|
|
|
layer_state_set(layer_state ^ state);
|
2013-02-20 02:16:13 +00:00
|
|
|
}
|
|
|
|
|
2013-04-02 07:09:43 +00:00
|
|
|
void layer_debug(void)
|
2013-02-20 02:16:13 +00:00
|
|
|
{
|
2013-05-14 07:18:22 +00:00
|
|
|
dprintf("%08lX(%u)", layer_state, biton32(layer_state));
|
2013-02-20 02:16:13 +00:00
|
|
|
}
|
2013-03-19 15:56:54 +00:00
|
|
|
#endif
|
2013-02-20 02:16:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2014-06-16 15:57:59 +00:00
|
|
|
action_t layer_switch_get_action(keypos_t key)
|
2013-02-15 09:48:36 +00:00
|
|
|
{
|
|
|
|
action_t action;
|
|
|
|
action.code = ACTION_TRANSPARENT;
|
|
|
|
|
2013-03-31 13:47:19 +00:00
|
|
|
#ifndef NO_ACTION_LAYER
|
2013-04-02 07:09:43 +00:00
|
|
|
uint32_t layers = layer_state | default_layer_state;
|
|
|
|
/* check top layer first */
|
|
|
|
for (int8_t i = 31; i >= 0; i--) {
|
|
|
|
if (layers & (1UL<<i)) {
|
2013-02-15 09:48:36 +00:00
|
|
|
action = action_for_key(i, key);
|
|
|
|
if (action.code != ACTION_TRANSPARENT) {
|
|
|
|
return action;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-02 07:09:43 +00:00
|
|
|
/* fall back to layer 0 */
|
|
|
|
action = action_for_key(0, key);
|
|
|
|
return action;
|
|
|
|
#else
|
|
|
|
action = action_for_key(biton32(default_layer_state), key);
|
2013-02-15 09:48:36 +00:00
|
|
|
return action;
|
2013-04-02 07:09:43 +00:00
|
|
|
#endif
|
2013-02-15 09:48:36 +00:00
|
|
|
}
|