mirror of
https://github.com/qmk/qmk_firmware.git
synced 2026-07-14 04:46:21 -04:00
Merge remote-tracking branch 'upstream/develop' into xap
This commit is contained in:
@@ -57,6 +57,7 @@ subcommands = [
|
||||
'qmk.cli.generate.info_json',
|
||||
'qmk.cli.generate.keyboard_c',
|
||||
'qmk.cli.generate.keyboard_h',
|
||||
'qmk.cli.generate.keycodes',
|
||||
'qmk.cli.generate.rgb_breathe_table',
|
||||
'qmk.cli.generate.rules_mk',
|
||||
'qmk.cli.generate.version_h',
|
||||
|
||||
@@ -12,6 +12,7 @@ from qmk.info import info_json
|
||||
from qmk.json_encoders import InfoJSONEncoder
|
||||
from qmk.json_schema import json_load
|
||||
from qmk.keyboard import find_readme, list_keyboards
|
||||
from qmk.keycodes import load_spec, list_versions
|
||||
from qmk.xap.common import get_xap_definition_files, update_xap_definitions
|
||||
|
||||
DATA_PATH = Path('data')
|
||||
@@ -19,6 +20,16 @@ TEMPLATE_PATH = DATA_PATH / 'templates/api/'
|
||||
BUILD_API_PATH = Path('.build/api_data/')
|
||||
|
||||
|
||||
def _resolve_keycode_specs(output_folder):
|
||||
"""To make it easier for consumers, publish pre-merged spec files
|
||||
"""
|
||||
for version in list_versions():
|
||||
overall = load_spec(version)
|
||||
|
||||
output_file = output_folder / f'constants/keycodes_{version}.json'
|
||||
output_file.write_text(json.dumps(overall, indent=4), encoding='utf-8')
|
||||
|
||||
|
||||
def _filtered_keyboard_list():
|
||||
"""Perform basic filtering of list_keyboards
|
||||
"""
|
||||
@@ -113,6 +124,9 @@ def generate_api(cli):
|
||||
'usb': usb_list,
|
||||
}
|
||||
|
||||
# Feature specific handling
|
||||
_resolve_keycode_specs(v1_dir)
|
||||
|
||||
# Feature specific handling
|
||||
_resolve_xap_specs(v1_dir / 'xap')
|
||||
|
||||
|
||||
@@ -0,0 +1,88 @@
|
||||
"""Used by the make system to generate keycodes.h from keycodes_{version}.json
|
||||
"""
|
||||
from milc import cli
|
||||
|
||||
from qmk.constants import GPL2_HEADER_C_LIKE, GENERATED_HEADER_C_LIKE
|
||||
from qmk.commands import dump_lines
|
||||
from qmk.path import normpath
|
||||
from qmk.keycodes import load_spec
|
||||
|
||||
|
||||
def _generate_ranges(lines, keycodes):
|
||||
lines.append('')
|
||||
lines.append('enum qk_keycode_ranges {')
|
||||
lines.append('// Ranges')
|
||||
for key, value in keycodes["ranges"].items():
|
||||
lo, mask = map(lambda x: int(x, 16), key.split("/"))
|
||||
hi = lo + mask
|
||||
define = value.get("define")
|
||||
lines.append(f' {define.ljust(30)} = 0x{lo:04X},')
|
||||
lines.append(f' {(define + "_MAX").ljust(30)} = 0x{hi:04X},')
|
||||
lines.append('};')
|
||||
|
||||
|
||||
def _generate_defines(lines, keycodes):
|
||||
lines.append('')
|
||||
lines.append('enum qk_keycode_defines {')
|
||||
lines.append('// Keycodes')
|
||||
for key, value in keycodes["keycodes"].items():
|
||||
lines.append(f' {value.get("key")} = {key},')
|
||||
|
||||
lines.append('')
|
||||
lines.append('// Alias')
|
||||
for key, value in keycodes["keycodes"].items():
|
||||
temp = value.get("key")
|
||||
for alias in value.get("aliases", []):
|
||||
lines.append(f' {alias.ljust(10)} = {temp},')
|
||||
|
||||
lines.append('};')
|
||||
|
||||
|
||||
def _generate_helpers(lines, keycodes):
|
||||
lines.append('')
|
||||
lines.append('// Range Helpers')
|
||||
for value in keycodes["ranges"].values():
|
||||
define = value.get("define")
|
||||
lines.append(f'#define IS_{define}(code) ((code) >= {define} && (code) <= {define + "_MAX"})')
|
||||
|
||||
# extract min/max
|
||||
temp = {}
|
||||
for key, value in keycodes["keycodes"].items():
|
||||
group = value.get('group', None)
|
||||
if not group:
|
||||
continue
|
||||
if group not in temp:
|
||||
temp[group] = [0xFFFF, 0]
|
||||
key = int(key, 16)
|
||||
if key < temp[group][0]:
|
||||
temp[group][0] = key
|
||||
if key > temp[group][1]:
|
||||
temp[group][1] = key
|
||||
|
||||
lines.append('')
|
||||
lines.append('// Group Helpers')
|
||||
for group, codes in temp.items():
|
||||
lo = keycodes["keycodes"][f'0x{codes[0]:04X}']['key']
|
||||
hi = keycodes["keycodes"][f'0x{codes[1]:04X}']['key']
|
||||
lines.append(f'#define IS_{ group.upper() }_KEYCODE(code) ((code) >= {lo} && (code) <= {hi})')
|
||||
|
||||
|
||||
@cli.argument('-v', '--version', arg_only=True, required=True, help='Version of keycodes to generate.')
|
||||
@cli.argument('-o', '--output', arg_only=True, type=normpath, help='File to write to')
|
||||
@cli.argument('-q', '--quiet', arg_only=True, action='store_true', help="Quiet mode, only output error messages")
|
||||
@cli.subcommand('Used by the make system to generate keycodes.h from keycodes_{version}.json', hidden=True)
|
||||
def generate_keycodes(cli):
|
||||
"""Generates the keycodes.h file.
|
||||
"""
|
||||
|
||||
# Build the keycodes.h file.
|
||||
keycodes_h_lines = [GPL2_HEADER_C_LIKE, GENERATED_HEADER_C_LIKE, '#pragma once', '// clang-format off']
|
||||
|
||||
keycodes = load_spec(cli.args.version)
|
||||
|
||||
_generate_ranges(keycodes_h_lines, keycodes)
|
||||
_generate_defines(keycodes_h_lines, keycodes)
|
||||
_generate_helpers(keycodes_h_lines, keycodes)
|
||||
|
||||
# Show the results
|
||||
dump_lines(cli.args.output, keycodes_h_lines, cli.args.quiet)
|
||||
@@ -1,11 +1,14 @@
|
||||
from pathlib import Path
|
||||
|
||||
from qmk.json_schema import deep_update, json_load
|
||||
from qmk.json_schema import deep_update, json_load, validate
|
||||
|
||||
CONSTANTS_PATH = Path('data/constants/')
|
||||
CONSTANTS_PATH = Path('data/constants/keycodes/')
|
||||
|
||||
|
||||
def _validate(spec):
|
||||
# first throw it to the jsonschema
|
||||
validate(spec, 'qmk.keycodes.v1')
|
||||
|
||||
# no duplicate keycodes
|
||||
keycodes = []
|
||||
for value in spec['keycodes'].values():
|
||||
|
||||
@@ -266,7 +266,7 @@ def generate_c(keymap_json):
|
||||
|
||||
new_macro = "".join(macro)
|
||||
new_macro = new_macro.replace('""', '')
|
||||
macro_txt.append(f' case MACRO_{i}:')
|
||||
macro_txt.append(f' case QK_MACRO_{i}:')
|
||||
macro_txt.append(f' SEND_STRING({new_macro});')
|
||||
macro_txt.append(' return false;')
|
||||
|
||||
|
||||
@@ -150,8 +150,8 @@ def test_json2c():
|
||||
def test_json2c_macros():
|
||||
result = check_subcommand("json2c", 'keyboards/handwired/pytest/macro/keymaps/default/keymap.json')
|
||||
check_returncode(result)
|
||||
assert 'LAYOUT_ortho_1x1(MACRO_0)' in result.stdout
|
||||
assert 'case MACRO_0:' in result.stdout
|
||||
assert 'LAYOUT_ortho_1x1(QK_MACRO_0)' in result.stdout
|
||||
assert 'case QK_MACRO_0:' in result.stdout
|
||||
assert 'SEND_STRING("Hello, World!"SS_TAP(X_ENTER));' in result.stdout
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user