| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553 |
- #include QMK_KEYBOARD_H
- #include "keymap.h"
- enum marianas_layers {
- QWERTY,
- /*
- COLEMAK,
- DVORAK,
- */
- NAV_CLUSTER,
- GAMING,
- SQLMACROS,
- SQLNAMES,
- FN_LAYER
- };
- enum sql_macros {
- S_LFTJN = SAFE_RANGE, // L
- S_INRJN, // I
- S_SLCT, // S
- S_FROM, // F
- S_DSNCT, // D
- S_ORDER, // O
- S_WHERE, // W
- S_ALTER, // Esc
- S_ASTRK, // *
- TD_A,
- TD_B,
- TD_C, // Corp, Corporation, Company
- TD_D, // Distribution, Dist, Distributor
- TD_E,
- TD_F,
- TD_G, // GlobalLookup
- TD_H,
- TD_I, // Instance, Item
- TD_J,
- TD_K,
- TD_L,
- TD_M,
- TD_N, // NadRate
- TD_O,
- TD_P, // Product, Person,
- TD_Q, // Darden
- TD_R,
- TD_S, // Supplier, Step
- TD_T, // Task, Type
- TD_U,
- TD_V,
- TD_W, // Workflow,
- TD_X,
- TD_Y,
- TD_Z,
- TD_BSPC,
- TD_ENT,
- TD_ESC
- };
- uint16_t *macroTaps = 0;
- char *tableNameList = 0;
- uint8_t *charCount = 0;
- uint8_t countPointer = 0;
- bool shifted = false;
- bool sendAbbr = false;
- void initStringData(void)
- {
- if (macroTaps == 0)
- {
- macroTaps = malloc(macroTapsLen*sizeof(uint16_t));
- for(int i = 0; i < macroTapsLen; i++)
- {
- macroTaps[i] = 0;
- }
- }
- if (tableNameList == 0)
- {
- tableNameList = malloc(tableNameListLen*sizeof(char));
- for(int i = 0; i < tableNameListLen; i++)
- {
- tableNameList[i] = 0;
- }
- }
- if (charCount == 0)
- {
- charCount = malloc(charCountLen*sizeof(uint8_t));
- for (int i = 0; i < charCountLen; i++)
- {
- charCount[i] = 0;
- }
- }
- }
- uint32_t layer_state_set_user(uint32_t state)
- {
- switch (biton32(state))
- {
- case QWERTY:
- rgblight_mode(9);
- break;
- case NAV_CLUSTER:
- rgblight_mode(29);
- break;
- case GAMING:
- rgblight_mode(26);
- break;
- case SQLMACROS:
- rgblight_mode(1);
- rgblight_setrgb(0x00, 0xFF, 0x80);
- break;
- case SQLNAMES:
- rgblight_mode(1);
- rgblight_setrgb(0x80, 0xFF, 0x00);
- break;
- case FN_LAYER:
- rgblight_mode(1);
- rgblight_setrgb(0x00, 0x80, 0xFF);
- break;
- }
- return state;
- }
- bool containsCode(uint16_t kc)
- {
- for (int i = 0; i < macroTapsLen && macroTaps[i] > 0; i++)
- {
- if (macroTaps[i] == kc) return true;
- }
- return false;
- }
- bool lastCodeIs(uint16_t kc)
- {
- for (int i = 0; i < macroTapsLen-1 && macroTaps[i] > 0; i++)
- {
- if (macroTaps[i] == kc && macroTaps[i+1] == 0) return true;
- }
- return false;
- }
- bool last2CodeAre(uint16_t kc)
- {
- for (int i = 0; i < macroTapsLen-2 && macroTaps[i] > 0; i++)
- {
- if (macroTaps[i] == kc && macroTaps[i+1] == kc && macroTaps[i+2] == 0) return true;
- }
- return false;
- }
- bool last2CodesAre(uint16_t kc, uint16_t kc2)
- {
- for (int i = 0; i < macroTapsLen-2 && macroTaps[i] > 0; i++)
- {
- if (macroTaps[i] == kc && macroTaps[i+1] == kc2 && macroTaps[i+2] == 0) return true;
- }
- return false;
- }
- void addKeyCode(uint16_t kc)
- {
- int i = 0;
- while (i < macroTapsLen-2 && macroTaps[i] > 0) i++;
- if (macroTaps[i] == 0)
- {
- macroTaps[i] = kc;
- macroTaps[i+1] = 0;
- }
- }
- void eraseKeyCodes(void)
- {
- int i = 0;
- while (i < macroTapsLen && macroTaps[i] > 0) macroTaps[i++] = 0;
- }
- void eraseCharCounts(void)
- {
- int i = 0;
- while (i < charCountLen)
- {
- charCount[i] = 0;
- }
- }
- void printTableAbbreviation(void)
- {
- initStringData();
- if (tableNameList[0] == 0)
- {
- return;
- }
- send_char(0x20);
- int i = 0;
- for (i = 0; i < tableNameListLen && tableNameList[i] > 0; i++)
- {
- if (tableNameList[i] >= 65 && tableNameList[i] <= 90)
- {
- send_char(tableNameList[i]+32);
- }
- else
- {
- send_char(tableNameList[i]);
- }
- }
- send_char(0x20);
- }
- void eraseTableAbbreviation(void)
- {
- initStringData();
- for (int i = 0; i < tableNameListLen && tableNameList[i] > 0; i++)
- {
- tableNameList[i] = '\0';
- }
- }
- void printString(char* str)
- {
- if (str[0] != '\0')
- {
- int i = 0;
- while (true)
- {
- if (str[i] == 0)
- {
- break;
- }
- send_char(str[i++]);
- charCount[countPointer]++;
- }
- }
- }
- void printStringAndQueueChar(char* str)
- {
- initStringData();
- if (charCount[countPointer] != 0)
- {
- countPointer++;
- }
- sendAbbr = true;
- if (str[0] != '\0')
- {
- printString(str);
- for (int i = 0; i < tableNameListLen-1; i++)
- {
- if (tableNameList[i] == '\0')
- {
- tableNameList[i] = str[0];
- tableNameList[i+1] = '\0';
- break;
- }
- else if (i == tableNameListLen-2)
- {
- printTableAbbreviation();
- break;
- }
- }
- //for (i = 0; i < tableNameListLen && tableNameList[i] > 0; i++)
- //{
- // send_char(tableNameList[i]);
- //}
- //send_string_P("Darden");
- //send_string_P(&myarray);
- //send_string_P(str);
- }
- }
- void ReplaceString(char *orig, char *repl)
- {
- int i = 0;
- while((orig[i] != 0x0 && repl[i] != 0x0) && orig[i] == repl[i])
- i++;
- if(orig[i] != 0x0)
- {
- int o = i;
- while (orig[o++] != 0x0) {
- charCount[countPointer]--;
- register_code(KC_BSPC);
- unregister_code(KC_BSPC);
- }
- }
- printString(repl+i);
- }
- void deletePrev(void)
- {
- for (int i = 0; i < charCount[countPointer]; i++)
- {
- register_code(KC_BSPC);
- unregister_code(KC_BSPC);
- }
- charCount[countPointer] = 0;
- countPointer--;
- int i = 1;
- for (;i < tableNameListLen-1; i++)
- {
- if (tableNameList[i] == 0x0)
- {
- break;
- }
- }
- tableNameList[i-1] = 0x0;
- }
- void processSmartMacroTap(uint16_t kc)
- {
- initStringData();
- switch(kc)
- {
- case TD_C:
- if (containsCode(TD_D))
- {
- printString("ribution");
- printStringAndQueueChar("Center");
- }
- else if (last2CodeAre(TD_C))
- {
- ReplaceString("Corporation", "Contact");
- }
- else if(lastCodeIs(TD_C))
- {
- printString("oration");
- }
- else
- {
- printStringAndQueueChar("Corp");
- }
- break;
- case TD_D:
- if (last2CodeAre(TD_D))
- {
- ReplaceString("Distribution", "Distributor");
- }
- else if(lastCodeIs(TD_D))
- {
- printString("ribution");
- }
- else
- {
- printStringAndQueueChar("Dist");
- }
- break;
- case TD_G:
- printStringAndQueueChar("Global");
- printStringAndQueueChar("Lookup");
- break;
- case TD_I:
- if (containsCode(TD_W))
- printStringAndQueueChar("Instance");
- else
- printStringAndQueueChar("Item");
- break;
- case TD_N:
- printStringAndQueueChar("NadRate");
- break;
- case TD_P:
- if (last2CodesAre(TD_D, TD_C))
- {
- ReplaceString("DistributionCenter", "DistCenter");
- printStringAndQueueChar("Pricing");
- }
- else if (last2CodeAre(TD_P))
- {
- }
- else if(lastCodeIs(TD_P))
- {
- ReplaceString("Product", "Person");
- }
- else
- {
- printStringAndQueueChar("Product");
- }
- break;
- case TD_Q:
- printStringAndQueueChar("Darden");
- break;
- case TD_S:
- if (containsCode(TD_W))
- if (containsCode(TD_S) || containsCode(TD_D))
- printStringAndQueueChar("Step");
- else
- printStringAndQueueChar("Session");
- else
- printStringAndQueueChar("Supplier");
- break;
- case TD_T:
- if (containsCode(TD_W))
- printStringAndQueueChar("Task");
- else
- printStringAndQueueChar("Type");
- break;
- case TD_W:
- printStringAndQueueChar("Workflow");
- break;
- }
- addKeyCode(kc);
- }
- bool process_record_user(uint16_t keycode, keyrecord_t *record)
- {
- if (record->event.pressed)
- {
- switch (keycode)
- {
- case KC_LSPO:
- case KC_RSPC:
- shifted = true;
- return true;
- case S_LFTJN: SEND_STRING("LEFT JOIN"); return false;
- case S_INRJN: SEND_STRING("INNER JOIN "); return false;
- case S_SLCT: SEND_STRING("SELECT "); return false;
- case S_FROM: SEND_STRING("FROM "); return false;
- case S_DSNCT: SEND_STRING("DISTINCT "); return false;
- case S_ORDER: SEND_STRING("ORDER "); return false;
- case S_WHERE: SEND_STRING("WHERE "); return false;
- case S_ALTER: SEND_STRING("ALTER SESSION SET CURRENT_SCHEMA = "); return false;
- case S_ASTRK: SEND_STRING("* "); return false;
- case KC_BSLS:
- initStringData();
- layer_on(SQLNAMES);
- return false;
- case TD_BSPC:
- if (!shifted){
- deletePrev();
- }
- else {
- register_code(KC_BSPC);
- unregister_code(KC_BSPC);
- }
- return false;
- case TD_A:
- case TD_B:
- case TD_C:
- case TD_D:
- case TD_E:
- case TD_F:
- case TD_G:
- case TD_H:
- case TD_I:
- case TD_J:
- case TD_K:
- case TD_L:
- case TD_M:
- case TD_N:
- case TD_O:
- case TD_P:
- case TD_Q:
- case TD_R:
- case TD_S:
- case TD_T:
- case TD_U:
- case TD_V:
- case TD_W:
- case TD_X:
- case TD_Y:
- case TD_Z:
- processSmartMacroTap(keycode);
- return false;
- case TD_ENT:
- printTableAbbreviation();
- case TD_ESC:
- eraseKeyCodes();
- eraseTableAbbreviation();
- layer_off(SQLNAMES);
- return true;
- }
- }
- else
- {
- switch (keycode)
- {
- case KC_BSLS:
- if (macroTaps[0] == 0)
- {
- SEND_STRING("\\");
- layer_off(SQLNAMES);
- }
- return true;
- case KC_LSPO:
- case KC_RSPC:
- shifted = false;
- return true;
- }
- }
- return true;
- };
- const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
- [QWERTY]=
- LAYOUT_60_ansi(
- ESCAP, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, MNUS, EQUL, BACKSPC,
- KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, LBRC, RBRC, BSLASH,
- MO_FNLR, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, COLN, QUOT, ENTER_OR_SQL,
- LEFTSHFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, CMMA, PRRD, SLSH, RIGHT_SHIFT__PAREN,
- CTLL, WINL, ALTL, SPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACE, ALTR, WINR, APPR, CTLR),
- [NAV_CLUSTER]=
- LAYOUT_60_ansi(
- _____, PSCR, SCRL, PAUS, NSRT, HOME, PGUP, NMLK, KSSH, STAR, KMIN, ____, ____, ______,
- ______, ____, ____, ____, DELT, END_, PGDN, KP_7, KP_8, KP_9, PLUS, ____, ____, _____,
- _______, ____, ____, ____, ____, UPUP, UPUP, KP_4, KP_5, KP_6, PLUS, ____, ___________,
- ________, ____, ____, ____, LEFT, D_WN, RGHT, KP_1, KP_2, KP_3, KNTR, _________________,
- ____, ____, ____, /*-----------------*/KC_KP_0/*-----------------*/, KDOT, KNTR, ____, ____),
- [GAMING]=
- LAYOUT_60_ansi(
- _____, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, ______,
- ______, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, _____,
- KCNO, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, ___________,
- ________, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, _________________,
- ____, KCNO, ____, /*------------------*/_____/*------------------*/, ____, KCNO, ____, QWRTY),
- [SQLMACROS]=
- LAYOUT_60_ansi(
- S_ALTER, ____, ____, ____, ____, ____, ____, ____, S_ASTRK, ____, ____, ____, ____, ___________,
- ______, ____, S_WHERE, ____, ____, ____, ____, ____, S_INRJN, S_ORDER, ____, ____, ____, ______,
- _______, KC_LBRC, S_SLCT, KC_PAST,S_FROM, ____, ____, ____, ____, S_LFTJN, ____, RBRC, ___________,
- ________, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, _________________,
- ____, ____, ____, /*------------------*/_____/*------------------*/, ____, ____, ____, ____),
- [SQLNAMES]=
- LAYOUT_60_ansi(
- TD_ESC, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, ____, TD_BSPC,
- ________, TD_Q, TD_W, TD_E, TD_R, TD_T, TD_Y, TD_U, TD_I, TD_O, TD_P, ____, ____, _____,
- ___________, TD_A, TD_S, TD_D, TD_F, TD_G, TD_H, TD_J, TD_K, TD_L, ____, ____, TD_ENT,
- ___________, TD_Z, TD_X, TD_C, TD_V, TD_B, TD_N, TD_M, ____, ____, ____, _________________,
- ____, ____, ____, /*----------------------*/TD_ENT/*-----------------------*/, ____, ____, ____, RESET),
- [FN_LAYER]=
- LAYOUT_60_ansi(
- KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_DEL,
- KC_CAPSLOCK, KC_MPRV, KC_MPLY, KC_MNXT, LWIN(KC_R), ____, KC_CALC, KC_PGUP, KC_UP, KC_PGDN, KC_PSCR, KC_SLCK, KC_BRK, ____,
- ____, KC_VOLD, KC_MUTE, KC_VOLU, ____, ____, KC_HOME, KC_LEFT, KC_DOWN, KC_RIGHT, KC_INS, KC_DEL, ____,
- ____, ____, ____, ____, ____, ____, KC_END, ____, QWRTY, NAVS, GAME, ____,
- ____, ____, ____, _________________, ____, KC_HYPR, KC_MEH, ____)
- };
|