Browse Source

Ad hoc fix of command API

tags/v1.9
tmk 10 years ago
parent
commit
47bc3016d3
2 changed files with 27 additions and 11 deletions
  1. 19
    9
      common/command.c
  2. 8
    2
      common/command.h

+ 19
- 9
common/command.c View File

static void switch_default_layer(uint8_t layer); static void switch_default_layer(uint8_t layer);




typedef enum { ONESHOT, CONSOLE, MOUSEKEY } cmdstate_t;
static cmdstate_t state = ONESHOT;
command_state_t command_state = ONESHOT;




bool command_proc(uint8_t code) bool command_proc(uint8_t code)
{ {
switch (state) {
switch (command_state) {
case ONESHOT: case ONESHOT:
if (!IS_COMMAND()) if (!IS_COMMAND())
return false; return false;
return (command_extra(code) || command_common(code)); return (command_extra(code) || command_common(code));
break;
case CONSOLE: case CONSOLE:
command_console(code);
if (IS_COMMAND())
return (command_extra(code) || command_common(code));
else
return (command_console_extra(code) || command_console(code));
break; break;
#ifdef MOUSEKEY_ENABLE #ifdef MOUSEKEY_ENABLE
case MOUSEKEY: case MOUSEKEY:
break; break;
#endif #endif
default: default:
state = ONESHOT;
command_state = ONESHOT;
return false; return false;
} }
return true; return true;
} }


/* TODO: Refactoring is needed. */
/* This allows to define extra commands. return false when not processed. */ /* This allows to define extra commands. return false when not processed. */
bool command_extra(uint8_t code) __attribute__ ((weak)); bool command_extra(uint8_t code) __attribute__ ((weak));
bool command_extra(uint8_t code) bool command_extra(uint8_t code)
return false; return false;
} }


bool command_console_extra(uint8_t code) __attribute__ ((weak));
bool command_console_extra(uint8_t code)
{
return false;
}



/*********************************************************** /***********************************************************
* Command common * Command common
command_console_help(); command_console_help();
print("\nEnter Console Mode\n"); print("\nEnter Console Mode\n");
print("C> "); print("C> ");
state = CONSOLE;
command_state = CONSOLE;
break; break;
case KC_PAUSE: case KC_PAUSE:
clear_keyboard(); clear_keyboard();
case KC_Q: case KC_Q:
case KC_ESC: case KC_ESC:
print("\nQuit Console Mode\n"); print("\nQuit Console Mode\n");
state = ONESHOT;
command_state = ONESHOT;
return false; return false;
#ifdef MOUSEKEY_ENABLE #ifdef MOUSEKEY_ENABLE
case KC_M: case KC_M:
mousekey_console_help(); mousekey_console_help();
print("\nEnter Mousekey Console\n"); print("\nEnter Mousekey Console\n");
print("M0>"); print("M0>");
state = MOUSEKEY;
command_state = MOUSEKEY;
return true; return true;
#endif #endif
default: default:
mousekey_param = 0; mousekey_param = 0;
print("\nQuit Mousekey Console\n"); print("\nQuit Mousekey Console\n");
print("C> "); print("C> ");
state = CONSOLE;
command_state = CONSOLE;
return false; return false;
case KC_P: case KC_P:
mousekey_param_print(); mousekey_param_print();

+ 8
- 2
common/command.h View File

#ifndef COMMAND_H #ifndef COMMAND_H
#define COMMAND #define COMMAND


/* TODO: Refactoring */
typedef enum { ONESHOT, CONSOLE, MOUSEKEY } command_state_t;
extern command_state_t command_state;

/* This allows to extend commands. Return false when command is not processed. */
bool command_extra(uint8_t code);
bool command_console_extra(uint8_t code);

#ifdef COMMAND_ENABLE #ifdef COMMAND_ENABLE
bool command_proc(uint8_t code); bool command_proc(uint8_t code);
/* This allows to extend commands. Return 0 when command is not processed. */
bool command_extra(uint8_t code);
#else #else
#define command_proc(code) false #define command_proc(code) false
#endif #endif

Loading…
Cancel
Save