forked from kairyu/tkg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
356 lines (334 loc) · 9.48 KB
/
functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
<?php
if (!defined('TKG')) {
exit();
}
function disable_magic_quotes() {
if (get_magic_quotes_gpc()) {
$process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
while (list($key, $val) = each($process)) {
foreach ($val as $k => $v) {
unset($process[$key][$k]);
if (is_array($v)) {
$process[$key][stripslashes($k)] = $v;
$process[] = &$process[$key][stripslashes($k)];
} else {
$process[$key][stripslashes($k)] = stripslashes($v);
}
}
}
unset($process);
}
}
function generate_eep_file($matrix_rows, $matrix_cols, $matrix_size, $max_layers, $max_fns, $keymaps, $fn_actions, $eep_size, $eep_start, $additional) {
// generate binary data
$keymap_bin = '';
// fn actions
for ($fn = 0; $fn < $max_fns; $fn++) {
$keymap_bin .= pack('v', isset($fn_actions[$fn]) ? $fn_actions[$fn] : 0);
}
// keymaps
for ($layer = 0; $layer < $max_layers; $layer++) {
for ($row = 0; $row < $matrix_rows; $row++) {
for ($col = 0; $col < $matrix_cols; $col++) {
$keymap_bin .= pack('C', isset($keymaps[$layer][$row][$col]) ? $keymaps[$layer][$row][$col] : 0);
}
}
if ($matrix_size && $matrix_size > $matrix_rows * $matrix_cols) {
$keymap_bin .= str_repeat(pack('C', 0), $matrix_size - $matrix_rows * $matrix_cols);
}
}
// checksum
$checksum = 0xFEED;
$checksum = calc_checksum_word($keymap_bin, $checksum);
$keymap_bin = pack('v', $checksum) . $keymap_bin;
// fill eeprom
$eep_bin = '';
$eep_bin .= str_repeat(pack('C', 0xFF), $eep_start);
$eep_bin .= $keymap_bin;
$eep_bin .= str_repeat(pack('C', 0xFF), $eep_size - $eep_start - strlen($keymap_bin));
// overwrite additional data
$eep_bin = process_additional($eep_bin, $additional);
// convert to hex
return bin_to_intel_hex($eep_bin);
}
function generate_c_header() {
// generate header
return "// Generated by TKG at " . date("Y-m-d H:i:s"). "\n\n";
}
function generate_c_file($matrix_rows, $matrix_cols, $max_layers, $max_fns, $keymaps, $fn_actions) {
$file = "";
$file .= "#include \"keymap_common.h\"\n\n";
// generate keymap macro
$macro_name = "KEYMAP_TKG";
$blanks = parse_blank_entries($keymaps);
$file .= generate_keymap_macro($macro_name, $matrix_rows, $matrix_cols, $blanks);
// keymaps block
$file .= <<<EOF
#ifdef KEYMAP_SECTION_ENABLE
const uint8_t keymaps[][MATRIX_ROWS][MATRIX_COLS] __attribute__ ((section (".keymap.keymaps"))) = {
#else
const uint8_t keymaps[][MATRIX_ROWS][MATRIX_COLS] PROGMEM = {
#endif
EOF;
$file .= generate_keymaps_content($macro_name, $matrix_rows, $matrix_cols, $keymaps, $blanks);
$file .= "\n};\n\n";
// fn_actions block
$file .= <<<EOF
#ifdef KEYMAP_SECTION_ENABLE
const uint16_t fn_actions[] __attribute__ ((section (".keymap.fn_actions"))) = {
#else
const uint16_t fn_actions[] PROGMEM = {
#endif
EOF;
$file .= generate_fn_actions_content($fn_actions);
$file .= "};";
return $file;
}
function check_cache($subdir, $hash) {
$filename = join(DIRECTORY_SEPARATOR, array(CACHE_DIR, $subdir, $hash));
if (file_exists($filename)) {
return file_get_contents($filename);
}
else {
return NULL;
}
}
function write_cache($subdir, $hash, $file) {
$dir = join(DIRECTORY_SEPARATOR, array(CACHE_DIR, $subdir)) . '/';
if (is_writable($dir)) {
$filename = join(DIRECTORY_SEPARATOR, array(CACHE_DIR, $subdir, $hash));
file_put_contents($filename, $file);
}
}
function calc_checksum_word($bin, $checksum = 0) {
for ($i = 0; $i < strlen($bin); $i += 2) {
list(,$word) = unpack('v', substr($bin, $i, 2));
$checksum = ($checksum + $word) % 0x10000;
}
return $checksum;
}
function process_additional($bin, $addl) {
for ($i = 0; $i < count($addl); $i++) {
$block = $addl[$i];
if (isset($block["start"]) && isset($block["size"]) && isset($block["data"])) {
$start = $block["start"];
$size = $block["size"];
$data = $block["data"];
$format = "C";
$sizeof = 1;
if (isset($block["type"])) {
$type = $block["type"];
if ($type == "byte") {
$format = "C";
$sizeof = 1;
}
else if ($type == "word") {
$format = "v";
$sizeof = 2;
}
}
for ($j = 0; $j < count($data); $j++) {
$array = pack($format, $data[$j]);
for ($k = 0; $k < $sizeof; $k++) {
$bin[$start + $j * $sizeof + $k] = $array[$k];
}
}
}
}
return $bin;
}
function bin_to_intel_hex($bin, $byte_count = 16) {
$hex = '';
for ($i = 0; $i < strlen($bin); $i += $byte_count) {
$block = substr($bin, $i, $byte_count);
$row = sprintf("%02X%04X00%s",
$byte_count,
(int)($i / $byte_count) * $byte_count,
strtoupper(bin2hex($block)));
$bytes = unpack('C*', pack("H*", $row));
$checksum = 0;
foreach ($bytes as $byte) {
$checksum = ($checksum + $byte) % 0x100;
}
$checksum = (0x100 - $checksum) % 0x100;
$hex .= sprintf(":%s%02X\r\n", $row, $checksum);
}
$hex .= ":00000001FF\r\n";
return $hex;
}
function parse_blank_entries($matrices) {
$blank_symbol = "KC_NO";
$blanks = array();
foreach ($matrices as $matrix) {
for ($row = 0; $row < count($matrix); $row++) {
for ($col = 0; $col < count($matrix[$row]); $col++) {
if ($matrix[$row][$col] == $blank_symbol) {
array_push($blanks, "$row,$col");
}
}
}
break;
}
foreach ($matrices as $matrix) {
$alt_blanks = array();
foreach ($blanks as $blank) {
list($row, $col) = explode(',', $blank);
if ($matrix[$row][$col] == $blank_symbol) {
array_push($alt_blanks, $blank);
}
}
$blanks = $alt_blanks;
}
return $blanks;
}
function join_with_func_glur() {
$params = func_get_args();
$callback = array_shift($params);
$array = array_shift($params);
$count = count($array);
$join = '';
for ($i = 0; $i < $count; $i++) {
$join .= $array[$i];
if ($i + 1 < $count) {
$join .= call_user_func_array($callback, array_merge(array($array[$i], $array[$i + 1]), $params));
}
else {
$join .= call_user_func_array($callback, array_merge(array($array[$i], null), $params));
}
}
return $join;
}
function str_patch($input, $length, $patch_string = " ") {
return str_repeat($patch_string, $length - strlen($input));
}
function generate_keymap_macro($macro_name, $matrix_rows, $matrix_cols, $blank_entries = array()) {
// prepare symbols
$symbols = array();
for ($row = 0; $row < $matrix_rows; $row++) {
array_push($symbols, array());
for ($col = 0; $col < $matrix_cols; $col++) {
if (!in_array("$row,$col", $blank_entries)) {
$symbols[$row][$col] = "K$row" . chr(ord("A") + $col);
}
else {
$symbols[$row][$col] = "";
}
}
}
// generate macro
$macro = "#define $macro_name( \\\n ";
$macro .= join_with_func_glur(function($current, $next, $width) {
if ($next === null) {
return "";
}
else {
$glur = preg_match('/,\s*$/', $current) ? " " : ",";
return $glur . str_patch($current, $width - 1) . " \\\n ";
}
}, array_map(function($array) {
return join_with_func_glur(function($current, $next) {
if ($next === null) {
return empty($current) ? " " : "";
}
else {
$glue = empty($current) || empty($next) ? " " : ",";
return $glue . str_patch($current, 4);
}
}, $array);
}, $symbols), $matrix_cols * 5 - 1);
$macro .= " \\\n) { \\\n { ";
$macro .= join_with_func_glur(function($current, $next, $width) {
if ($next === null) {
return "";
}
else {
return str_patch($current, $width - 1) . " }, \\\n { ";
}
}, array_map(function($array) {
return join_with_func_glur(function($current, $next) {
if ($next === null) {
return str_patch($current, 8);
}
else {
return "," . str_patch($current, 9);
}
}, array_map(function($val) {
return empty($val) ? "KC_NO" : "KC_##$val";
}, $array));
}, $symbols), $matrix_cols * 10 - 1);
$macro .= " } \\\n}\n\n";
return $macro;
}
function generate_keymaps_content($macro_name, $matrix_rows, $matrix_cols, $matrices, $blank_entries = array()) {
// prepare symbols
foreach ($matrices as &$matrix) {
foreach ($blank_entries as $blank) {
list($row,$col) = explode(",", $blank);
$matrix[$row][$col] = "";
}
}
unset($matrix);
// generate array content
$content = "";
foreach ($matrices as $layer => $matrix) {
$content .= " [$layer] = $macro_name(\n ";
$content .= join_with_func_glur(function($current, $next, $width) {
if ($next === null) {
return "";
}
else {
$glur = preg_match('/,\s*$/', $current) ? " " : ",";
return $glur . str_patch($current, $width) . " \\\n ";
}
}, array_map(function($array) {
return join_with_func_glur(function($current, $next) {
if ($next === null) {
return "";
}
else {
$glue = empty($current) || empty($next) ? " " : ",";
return $glue . str_patch($current, 4);
}
}, array_map(function($val) {
return substr($val, 3);
}, $array));
}, $matrix), $matrix_cols * 5 - 1);
$content .= "),\n";
}
return $content;
}
function generate_fn_actions_content($fn_actions) {
$content = "";
foreach ($fn_actions as $index => $fn) {
$action = array_shift($fn);
$params = $fn;
$lr = "L";
$content .= " [$index] = $action(";
$content .= join_with_func_glur(function($current, $next) {
if ($current == "" || is_null($next)) {
return "";
}
else {
return ", ";
}
}, array_map(function($val) use (&$lr) {
if ($val == "LR_LEFT") {
$lr = "L";
return "";
}
else if ($val == "LR_RIGHT") {
$lr = "R";
return "";
}
else if (is_array($val)) {
return join(" | ", array_map(function($val) use ($lr) {
return substr($val, 0, 4) . $lr . substr($val, 4);
}, $val));
}
return $val;
}, $params));
$content .= "),\n";
}
return $content;
}
?>