From c31e8c8052386de10ef85626f508d608c6a55df1 Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Mon, 6 Nov 2023 17:02:27 +0100 Subject: events WIP --- tools/gencards.py | 10 +++++----- tools/gencode.js | 4 +++- 2 files changed, 8 insertions(+), 6 deletions(-) (limited to 'tools') diff --git a/tools/gencards.py b/tools/gencards.py index 87fd401..2cb04d0 100644 --- a/tools/gencards.py +++ b/tools/gencards.py @@ -9,7 +9,7 @@ cards = [None] card = { 'id': 1, 'type': "", - 'title': "", + 'name': "", 'era': "", 'text': [], 'attrs': {} @@ -19,7 +19,7 @@ kv_pattern = r'' file_format = "tools/{}_cards.md" def flush(): - if card['title']: + if card['name']: output = card.copy() # Combine text into a single string output['text'] = " ".join(output['text']) @@ -35,10 +35,10 @@ def flush(): cards.append(output) - # print("CARD {} - {}\n# {}\n".format(output['id'], output['title'], output['text'])) + # print("CARD {} - {}\n# {}\n".format(output['id'], output['name'], output['text'])) # Reset card attributes for the next entry - card['title'] = "" + card['name'] = "" card['text'] = [] card['attrs'] = {} card['id'] += 1 @@ -57,7 +57,7 @@ def read_cards(_card_type): card['era'] = line[2:].strip() elif line.startswith("## "): flush() - card['title'] = line[3:].strip() + card['name'] = line[3:].strip() elif match := re.match(kv_pattern, line): key = match.group('key').strip() value = match.group('value').strip() diff --git a/tools/gencode.js b/tools/gencode.js index e2522e7..39c87bd 100644 --- a/tools/gencode.js +++ b/tools/gencode.js @@ -30,7 +30,9 @@ for (let line of fs.readFileSync("events.txt", "utf-8").split("\n")) { continue if (line === "EOF") break - line = line.split(" ") + // line = line.split(" ") + // split by spaces unless those spaces are within double quotes. + line = line.match(/(?:[^\s"]+|"[^"]*")+/g) switch (line[0]) { case "CARD": if (first++) { -- cgit v1.2.3