summaryrefslogtreecommitdiff
path: root/pokemontools/sym.py
blob: ebd8532a4d229128a8787a15d62e3bc284225395 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# coding: utf-8

import os
import sys
import json

def make_sym_from_json(filename = '../pokecrystal.sym', j = 'labels.json'):
    output = ''
    labels = json.load(open(j))
    for label in labels:
        output += '{0:x}:{1:x} {2}\n'.format(label['bank'], label['address'], label['label'])
    with open(filename, 'w') as sym:
        sym.write(output)

def make_json_from_mapfile(filename='labels.json', mapfile='../pokecrystal.map'):
    output = []
    labels = filter_wram_addresses(read_mapfile(mapfile))
    with open(filename, 'w') as out:
        out.write(json.dumps(labels))

def read_mapfile(filename='../pokecrystal.map'):
    """
    Scrape label addresses from an rgbds mapfile.
    """

    labels = []

    with open(filename, 'r') as mapfile:
        lines = mapfile.readlines()

    for line in lines:
        # bank #
        if 'Bank #' in line:
            cur_bank = int(line.lstrip('Bank #').strip(';\n').strip(' (HOME)'))

        # label definition
        elif '=' in line:
            address, label = line.split('=')
            address = int(address.lstrip().replace('$', '0x'), 16)
            label = label.strip()

            # rgbds doesn't support ram banks yet
            bank = cur_bank
            offset = address

            ranges = [
                0x8000 <= address < 0xa000,
                0xa000 <= address < 0xc000,
                0xc000 <= address < 0xd000,
                0xd000 <= address < 0xe000,
            ]

            if any(ranges):
                bank = 0
            else:
                offset += (bank * 0x4000 - 0x4000) if bank > 0 else 0

            labels += [{
                'label': label,
                'bank': bank,
                'address': offset,
                'offset': offset,
                'local_address': address,
            }]

    return labels

def filter_wram_addresses(labels):
    filtered_labels = []
    for label in labels:
        if label['local_address'] < 0x8000:
            filtered_labels += [label]
    return filtered_labels

def make_sym_from_mapfile(filename = '../pokecrystal.sym', mapfile = '../mapfile.txt'):
    # todo: sort label definitions by address

    output = ''
    labels = read_mapfile()

    # convert to sym format (bank:addr label)
    for label in labels:
        output += '%.2x:%.4x %s\n' % (label['bank'], label['address'], label['label'])

    # dump contents to symfile
    with open(filename, 'w') as sym:
        sym.write(output)

if __name__ == "__main__":
    #if os.path.exists('../pokecrystal.sym'):
    #    sys.exit()
    #elif os.path.exists('../pokecrystal.map'):
    #    make_sym_from_mapfile()
    #elif os.path.exists('labels.json'):
    #    make_sym_from_json()
    make_json_from_mapfile()