kscheme-converter/theme_converter.py

282 lines
7.4 KiB
Python
Raw Permalink Normal View History

#!/usr/bin/env python3
"""
LICENSE:
SPDX-FileCopyrightText: 2020 Juraj Oravec <jurajoravec@mailo.com>
SPDX-License-Identifier: MIT
Configuration:
- IncludeCustoms: Try to export all available settings
- prefferStandAloneData: prefferdata set specifically for current datatype
Usage:
script.py ThemeName themefile.kateschema
"""
from configparser import ConfigParser
import json
import sys
settings = {
"prefferStandAloneData": True,
"IncludeCustoms": True
}
jsonConfig = {
"_comments": "Created by theme_converter script"
}
editorColors = {
"Color Background": "BackgroundColor",
"Color Code Folding": "CodeFolding",
"Color Current Line Number": "CurrentLineNumber",
"Color Highlighted Bracket": "BracketMatching",
"Color Highlighted Line": "CurrentLine",
"Color Icon Bar": "IconBorder",
"Color Indentation Line": "IndentationLine",
"Color Line Number": "LineNumbers",
"Color MarkType 1": "MarkBookmark",
"Color MarkType 2": "MarkBreakpointActive",
"Color MarkType 3": "MarkBreakpointReached",
"Color MarkType 4": "MarkBreakpointDisabled",
"Color MarkType 5": "MarkExecution",
"Color MarkType 6": "MarkWarning",
"Color MarkType 7": "MarkError",
"Color Modified Lines": "ModifiedLines",
"Color Replace Highlight": "ReplaceHighlight",
"Color Saved Lines": "SavedLines",
"Color Search Highlight": "SearchHighlight",
"Color Selection": "TextSelection",
"Color Separator": "Separator",
"Color Spelling Mistake Line": "SpellChecking",
"Color Tab Marker": "TabMarker",
"Color Template Background": "TemplateBackground",
"Color Template Editable Placeholder": "TemplatePlaceholder",
"Color Template Focused Editable Placeholder": "TemplateFocusedPlaceholder",
"Color Template Not Editable Placeholder": "TemplateReadOnlyPlaceholder",
"Color Word Wrap Marker": "WordWrapMarker"
}
textStyles = {
"Alert": "Alert",
"Annotation": "Annotation",
"Attribute": "Attribute",
"Base-N Integer": "BaseN",
"Built-in": "BuiltIn",
"Character": "Char",
"Comment": "Comment",
"Comment Variable": "CommentVar",
"Constant": "Constant",
"Control Flow": "ControlFlow",
"Data Type": "DataType",
"Decimal/Value": "DecVal",
"Documentation": "Documentation",
"Error": "Error",
"Extension": "Extension",
"Floating Point": "Float",
"Function": "Function",
"Import": "Import",
"Information": "Information",
"Keyword": "Keyword",
"Normal": "Normal",
"Operator": "Operator",
"Others": "Others",
"Preprocessor": "Preprocessor",
"Region Marker": "RegionMarker",
"Special Character": "SpecialChar",
"Special String": "SpecialString",
"String": "String",
"Variable": "Variable",
"Verbatim String": "VerbatimString",
"Warning": "Warning"
}
indexToStyle = {
"0": "Normal",
"1": "Keyword",
"2": "Function",
"3": "Variable",
"4": "ControlFlow",
"5": "Operator",
"6": "BuiltIn",
"7": "Extension",
"8": "Preprocessor",
"9": "Attribute",
"10": "Char",
"11": "SpecialChar",
"12": "String",
"13": "VerbatimString",
"14": "SpecialString",
"15": "Import",
"16": "DataType",
"17": "DecVal",
"18": "BaseN",
"19": "Float",
"20": "Constant",
"21": "Comment",
"22": "Documentation",
"23": "Annotation",
"24": "CommentVar",
"25": "RegionMarker",
"26": "Information",
"27": "Warning",
"28": "Alert",
"29": "Others",
"30": "Error"
}
normalizedSections = {}
custom_styles = {}
def normalizeSections(sections: list):
value: str
for value in sections:
normal = value
if " - " in value:
normal = normal.split(" - ")[0]
normalizedSections[normal] = value
def reEcodeColors(text: str) -> str:
return "#" + text[2:]
def reEncodeBool(text: str) -> bool:
return True if text == "1" else False
def rgb_to_hex(rgb: tuple) -> str:
return '#%02x%02x%02x' % rgb
def decodeTextStyle(text: str) -> dict:
style = {}
field = text.split(",")
if len(field) == 11:
styleIndex = field.pop(0)
style = jsonConfig["text-styles"][indexToStyle[styleIndex]].copy()
if len(field) != 10:
return dict()
if field[0] and len(field[0]) == 8:
style["text-color"] = reEcodeColors(field[0])
if field[1] and len(field[1]) == 8:
style["selected-text-color"] = reEcodeColors(field[1])
if field[2] and len(field[2]) == 1:
style["bold"] = reEncodeBool(field[2])
if field[3] and len(field[3]) == 1:
style["italic"] = reEncodeBool(field[3])
if field[4] and len(field[4]) == 1:
style["strike-through"] = reEncodeBool(field[4])
if field[5] and len(field[5]) == 1:
style["underline"] = reEncodeBool(field[5])
if field[6] and len(field[6]) == 8:
style["background-color"] = reEcodeColors(field[6])
if field[7] and len(field[7]) == 8:
style["selected-text-color"] = reEcodeColors(field[7])
# 8: font family > ignored
# 9: --- > ignored
return style
def decodeColorSettings(text: str) -> str:
fieldds = tuple(map(int, text.split(",")))
if len(fieldds) != 3:
return
return rgb_to_hex(fieldds)
def extractEditorColors(section: dict) -> dict:
editor_colors = {}
key: str
value: str
for key, value in section.items():
editor_colors[editorColors[key]] = decodeColorSettings(value)
return editor_colors
def extractTextStyles(section: dict) -> dict:
text_styles = {}
key: str
value: str
for key, value in section.items():
text_styles[textStyles[key]] = decodeTextStyle(value)
return text_styles
def extractCustomStyle(style: dict, realKey: str):
global custom_styles
key: str
value: str
for key, value in style.items():
style = decodeTextStyle(value)
primaryKey, SeondaryKey = key.split(":")[-2:]
if primaryKey not in custom_styles:
custom_styles[primaryKey] = dict()
if style and SeondaryKey not in custom_styles[primaryKey]:
custom_styles[primaryKey][SeondaryKey] = style
if settings["prefferStandAloneData"] and style and realKey == primaryKey:
custom_styles[primaryKey][SeondaryKey] = style
def extractCustomStyles(config: ConfigParser) -> dict:
global custom_styles
key: str
value: str
for key, value in normalizedSections.items():
if not key.startswith("Highlighting"):
continue
realKey = key[len("Highlighting "):]
extractCustomStyle(config[value], realKey)
return custom_styles
def main(inputFile: str):
config = ConfigParser(delimiters="=")
config.optionxform = str
config.read(inputFile)
normalizeSections(config.sections())
if "Editor Colors" in normalizedSections:
jsonConfig["editor-colors"] = extractEditorColors(config[normalizedSections["Editor Colors"]])
if "Default Item Styles" in normalizedSections:
jsonConfig["text-styles"] = extractTextStyles(config[normalizedSections["Default Item Styles"]])
if settings["IncludeCustoms"]:
jsonConfig["custom-styles"] = extractCustomStyles(config)
print(json.dumps(jsonConfig, indent=4, sort_keys=True))
if __name__ == "__main__":
if len(sys.argv) != 3:
print("Usage: " + sys.argv[0] + " ThemeName Filepath.kateschema")
exit()
jsonConfig["metadata"] = {
"name": str(sys.argv[1]),
"revision": 1
}
main(str(sys.argv[2]))