summaryrefslogtreecommitdiff
path: root/po/compile.py
blob: 650dc3eb1557280905e7e0315c9028f8938accea (plain)
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
#!/usr/bin/env python3
# Parses all the .po files and generates binary language strings to be loaded 
# at runtime via embedded data.

import os, sys

MODE = 'compile'
ESCAPES = {
    '\\': '\\',
    '"': '"',
    'n': '\n',
    'r': '\r',
    't': '\t'
}

if '--new' in sys.argv:
    MODE = 'new'


def unquote(string):
    txt = string.strip()
    if txt[0] != '"' or txt[-1] != '"':
        raise Exception("invalid quoted string: " + string)
    txt = txt[1:-1]
    out = ''
    is_escape = False
    for c in txt:
        if is_escape:
            out += ESCAPES[c]
            is_escape = False
            continue
        if c == '\\':
            is_escape = True
        else:
            out += c
    return out        
    
    
def parse_po(src):
    messages = []
    msg_id, msg_str = None, None
    for line in open(src, 'rt', encoding='utf-8').readlines():
        line = line.strip()
        if line.startswith('msgid'):
            msg_id = unquote(line[6:])
        elif line.startswith('msgstr'):
            msg_str = unquote(line[7:])        
            messages.append((msg_id, msg_str))
    return messages
    

if MODE == 'compile':
    for src in os.listdir('.'):
        if src.endswith('.po'):
            # Make a binary blob with strings sorted by ID.
            compiled = bytes()
            for msg in sorted(parse_po(src)):
                compiled += msg[0].encode('utf-8') + bytes([0])
                compiled += msg[1].encode('utf-8') + bytes([0])
            open(f'../res/lang/{src[:-3]}.bin', 'wb').write(compiled)

elif MODE == 'new':
    messages = parse_po('en.po')
    f = open('new.po', 'wt', encoding='utf-8')
    for msg_id, _ in messages:
        print(f'\nmsgid "{msg_id}"\nmsgstr ""\n', file=f)