blob: c074840056a6cc70f2f1b63b660d90a1e8633cbe (
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
|
import lib.code.utils
import lib.code.version
import lib.download
import sys
import os
old_version_id = lib.code.version.get_version_id()
old_mappings = lib.download.get_mappings_for_version(old_version_id)
old_burger_data = lib.download.get_burger_data_for_version(old_version_id)
old_packet_list = list(old_burger_data[0]['packets']['packet'].values())
new_version_id = sys.argv[1]
new_mappings = lib.download.get_mappings_for_version(new_version_id)
new_burger_data = lib.download.get_burger_data_for_version(new_version_id)
new_packet_list = list(new_burger_data[0]['packets']['packet'].values())
old_packet_ids = {}
new_packet_ids = {}
for packet in old_packet_list:
assert packet['class'].endswith('.class')
packet_name = old_mappings.get_class(packet['class'][:-6])
old_packet_ids[packet_name] = packet['id']
for packet in new_packet_list:
assert packet['class'].endswith('.class')
packet_name = new_mappings.get_class(packet['class'][:-6])
new_packet_ids[packet_name] = packet['id']
# find packets that changed ids
for packet_name in old_packet_ids:
if packet_name in new_packet_ids:
if old_packet_ids[packet_name] != new_packet_ids[packet_name]:
print(packet_name, 'id changed from',
old_packet_ids[packet_name], 'to', new_packet_ids[packet_name])
print()
# find removed packets
for packet_name in old_packet_ids:
if packet_name not in new_packet_ids:
print(packet_name, 'removed')
print()
# find added packets
for packet_name in new_packet_ids:
if packet_name not in old_packet_ids:
print(packet_name, 'added')
lib.code.utils.fmt()
print('Done!')
|