You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.8 KiB
59 lines
1.8 KiB
6 years ago
|
// Written by konstantin: vomindoraan
|
||
|
#include "send_unicode.h"
|
||
|
#include <ctype.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
__attribute__((weak))
|
||
|
void send_unicode_hex_string(const char* str) {
|
||
|
if (!str) { return; } // Safety net
|
||
|
|
||
|
while (*str) {
|
||
|
// Find the next code point (token) in the string
|
||
|
for (; *str == ' '; str++);
|
||
|
size_t n = strcspn(str, " "); // Length of the current token
|
||
|
char code_point[n+1];
|
||
|
strncpy(code_point, str, n);
|
||
|
code_point[n] = '\0'; // Make sure it's null-terminated
|
||
|
|
||
|
// Normalize the code point: make all hex digits lowercase
|
||
|
for (char *p = code_point; *p; p++) {
|
||
|
*p = tolower((unsigned char)*p);
|
||
|
}
|
||
|
|
||
|
// Send the code point as a Unicode input string
|
||
|
unicode_input_start();
|
||
|
send_string(code_point);
|
||
|
unicode_input_finish();
|
||
|
|
||
|
str += n; // Move to the first ' ' (or '\0') after the current token
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// (ノಠ痊ಠ)ノ彡┻━┻
|
||
|
// send_unicode_hex_string("0028 30CE 0CA0 75CA 0CA0 0029 30CE 5F61 253B 2501 253B");
|
||
|
|
||
|
//Old code
|
||
|
// (╯°□°)╯ ︵ ┻━┻
|
||
|
#if 0
|
||
|
register_code(KC_RSFT);
|
||
|
tap(KC_9);
|
||
|
unregister_code(KC_RSFT);
|
||
|
process_unicode((0x256F | QK_UNICODE), record); // Arm
|
||
|
process_unicode((0x00B0 | QK_UNICODE), record); // Eye
|
||
|
process_unicode((0x25A1 | QK_UNICODE), record); // Mouth
|
||
|
process_unicode((0x00B0 | QK_UNICODE), record); // Eye
|
||
|
register_code(KC_RSFT);
|
||
|
tap(KC_0);
|
||
|
unregister_code(KC_RSFT);
|
||
|
process_unicode((0x256F | QK_UNICODE), record); // Arm
|
||
|
tap(KC_SPC);
|
||
|
process_unicode((0x0361 | QK_UNICODE), record); // Flippy
|
||
|
tap(KC_SPC);
|
||
|
process_unicode((0x253B | QK_UNICODE), record); // Table
|
||
|
process_unicode((0x2501 | QK_UNICODE), record); // Table
|
||
|
process_unicode((0x253B | QK_UNICODE), record); // Table
|
||
|
#endif
|
||
|
|
||
|
|
||
|
// If you need a good converter: https://r12a.github.io/app-conversion/
|