azalea/codegen/migrate.py

93 lines
3.7 KiB
Python
Raw Normal View History

2022-05-25 05:35:53 +00:00
from lib.code.packet import fix_state
2022-05-25 05:30:47 +00:00
from lib.utils import PacketIdentifier, group_packets
2022-05-25 04:05:44 +00:00
import lib.code.utils
import lib.code.version
2022-05-25 05:21:05 +00:00
import lib.code.packet
2022-05-25 04:05:44 +00:00
import lib.download
import lib.extract
2022-05-25 04:05:44 +00:00
import sys
2022-06-22 00:05:44 +00:00
lib.download.clear_version_cache()
2022-05-25 04:05:44 +00:00
old_version_id = lib.code.version.get_version_id()
old_mappings = lib.download.get_mappings_for_version(old_version_id)
old_burger_data = lib.extract.get_burger_data_for_version(old_version_id)
2022-05-25 04:05:44 +00:00
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.extract.get_burger_data_for_version(new_version_id)
2022-05-25 04:05:44 +00:00
new_packet_list = list(new_burger_data[0]['packets']['packet'].values())
2022-05-25 05:21:05 +00:00
old_packets: dict[PacketIdentifier, str] = {}
old_packets_data: dict[PacketIdentifier, dict] = {}
2022-05-25 05:21:05 +00:00
new_packets: dict[PacketIdentifier, str] = {}
new_packets_data: dict[PacketIdentifier, dict] = {}
2022-05-25 04:05:44 +00:00
for packet in old_packet_list:
assert packet['class'].endswith('.class')
packet_name = old_mappings.get_class(packet['class'][:-6])
packet_ident = PacketIdentifier(
packet['id'], packet['direction'].lower(), fix_state(packet['state']))
old_packets[packet_ident] = packet_name
old_packets_data[packet_ident] = packet
2022-05-25 04:05:44 +00:00
for packet in new_packet_list:
assert packet['class'].endswith('.class')
packet_name = new_mappings.get_class(packet['class'][:-6])
packet_ident = PacketIdentifier(
packet['id'], packet['direction'].lower(), fix_state(packet['state']))
new_packets[packet_ident] = packet_name
new_packets_data[packet_ident] = packet
2022-05-25 05:21:05 +00:00
# find removed packets
removed_packets: list[PacketIdentifier] = []
2022-05-25 05:38:27 +00:00
for packet, packet_name in old_packets.items():
2022-05-26 01:18:03 +00:00
if packet_name not in new_packets.values():
2022-05-25 05:21:05 +00:00
removed_packets.append(packet)
2022-05-26 01:18:03 +00:00
print('Removed packet:', packet, packet_name)
2022-05-26 01:21:50 +00:00
for (direction, state), packets in group_packets(removed_packets).items():
lib.code.packet.remove_packet_ids(packets, direction, state)
2022-05-25 04:05:44 +00:00
print()
2022-05-25 05:21:05 +00:00
# find packets that changed ids
changed_packets: dict[PacketIdentifier, int] = {}
for old_packet, old_packet_name in old_packets.items():
for new_packet, new_packet_name in new_packets.items():
2022-05-26 01:09:48 +00:00
if old_packet_name == new_packet_name and old_packet.direction == new_packet.direction and old_packet.state == new_packet.state and old_packet.packet_id != new_packet.packet_id:
2022-05-25 05:21:05 +00:00
changed_packets[old_packet] = new_packet.packet_id
2022-05-25 05:30:47 +00:00
print('Changed packet id:', old_packet, '->',
new_packet, f'({new_packet_name})')
2022-05-25 05:39:33 +00:00
break
2022-05-26 01:21:50 +00:00
for (direction, state), packets in group_packets(list(changed_packets.keys())).items():
id_map: dict[int, int] = {}
for old_packet_id in packets:
new_packet_id = changed_packets[PacketIdentifier(
old_packet_id, direction, state)]
id_map[old_packet_id] = new_packet_id
lib.code.packet.change_packet_ids(id_map, direction, state)
2022-05-25 05:21:05 +00:00
2022-05-25 04:05:44 +00:00
print()
# find added/changed packets
added_or_changed_packets: list[PacketIdentifier] = []
2022-05-25 05:38:27 +00:00
for packet, packet_name in new_packets.items():
if packet_name not in old_packets.values():
added_or_changed_packets.append(packet)
2022-05-26 01:18:03 +00:00
print('Added packet:', packet, packet_name)
if new_packets_data[packet].get('instructions') != old_packets_data[packet].get('instructions'):
print('hmm')
for packet in added_or_changed_packets:
2022-05-26 01:21:50 +00:00
lib.code.packet.generate_packet(
new_burger_data[0]['packets']['packet'], new_mappings, packet.packet_id, packet.direction, packet.state)
2022-05-26 18:45:48 +00:00
lib.code.version.set_protocol_version(
new_burger_data[0]['version']['protocol'])
lib.code.version.set_version_id(new_version_id)
2022-05-25 04:05:44 +00:00
lib.code.utils.fmt()
print('Done!')