2019-11-13 05:55:41 +01:00
|
|
|
"""Convert raw KLE to JSON
|
|
|
|
"""
|
|
|
|
import json
|
|
|
|
import os
|
|
|
|
from pathlib import Path
|
|
|
|
|
2021-04-15 04:00:22 +02:00
|
|
|
from argcomplete.completers import FilesCompleter
|
2019-11-13 05:55:41 +01:00
|
|
|
from milc import cli
|
|
|
|
from kle2xy import KLE2xy
|
|
|
|
|
|
|
|
from qmk.converter import kle2qmk
|
2021-03-25 12:38:10 +01:00
|
|
|
from qmk.json_encoders import InfoJSONEncoder
|
2019-11-13 05:55:41 +01:00
|
|
|
|
|
|
|
|
2021-04-15 04:00:22 +02:00
|
|
|
@cli.argument('filename', completer=FilesCompleter('.json'), help='The KLE raw txt to convert')
|
2019-11-13 05:55:41 +01:00
|
|
|
@cli.argument('-f', '--force', action='store_true', help='Flag to overwrite current info.json')
|
2020-03-23 21:59:44 +01:00
|
|
|
@cli.subcommand('Convert a KLE layout to a Configurator JSON', hidden=False if cli.config.user.developer else True)
|
2019-11-13 05:55:41 +01:00
|
|
|
def kle2json(cli):
|
|
|
|
"""Convert a KLE layout to QMK's layout format.
|
2019-11-13 06:24:56 +01:00
|
|
|
""" # If filename is a path
|
2019-11-13 05:55:41 +01:00
|
|
|
if cli.args.filename.startswith("/") or cli.args.filename.startswith("./"):
|
|
|
|
file_path = Path(cli.args.filename)
|
|
|
|
# Otherwise assume it is a file name
|
|
|
|
else:
|
|
|
|
file_path = Path(os.environ['ORIG_CWD'], cli.args.filename)
|
|
|
|
# Check for valid file_path for more graceful failure
|
|
|
|
if not file_path.exists():
|
2020-10-07 01:46:10 +02:00
|
|
|
cli.log.error('File {fg_cyan}%s{style_reset_all} was not found.', file_path)
|
|
|
|
return False
|
2019-11-13 05:55:41 +01:00
|
|
|
out_path = file_path.parent
|
2021-02-27 21:00:50 +01:00
|
|
|
raw_code = file_path.read_text(encoding='utf-8')
|
2019-11-13 05:55:41 +01:00
|
|
|
# Check if info.json exists, allow overwrite with force
|
|
|
|
if Path(out_path, "info.json").exists() and not cli.args.force:
|
2020-04-18 22:00:56 +02:00
|
|
|
cli.log.error('File {fg_cyan}%s/info.json{style_reset_all} already exists, use -f or --force to overwrite.', out_path)
|
2019-11-13 06:24:56 +01:00
|
|
|
return False
|
2019-11-13 05:55:41 +01:00
|
|
|
try:
|
|
|
|
# Convert KLE raw to x/y coordinates (using kle2xy package from skullydazed)
|
|
|
|
kle = KLE2xy(raw_code)
|
|
|
|
except Exception as e:
|
|
|
|
cli.log.error('Could not parse KLE raw data: %s', raw_code)
|
|
|
|
cli.log.exception(e)
|
2020-10-07 01:46:10 +02:00
|
|
|
return False
|
2020-12-30 19:27:37 +01:00
|
|
|
keyboard = {
|
|
|
|
'keyboard_name': kle.name,
|
|
|
|
'url': '',
|
|
|
|
'maintainer': 'qmk',
|
|
|
|
'layouts': {
|
|
|
|
'LAYOUT': {
|
|
|
|
'layout': kle2qmk(kle)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-11-13 05:55:41 +01:00
|
|
|
# Write our info.json
|
2020-12-30 19:27:37 +01:00
|
|
|
keyboard = json.dumps(keyboard, indent=4, separators=(', ', ': '), sort_keys=False, cls=InfoJSONEncoder)
|
|
|
|
info_json_file = out_path / 'info.json'
|
|
|
|
|
|
|
|
info_json_file.write_text(keyboard)
|
2020-04-18 22:00:56 +02:00
|
|
|
cli.log.info('Wrote out {fg_cyan}%s/info.json', out_path)
|