forked from SkywalkerJi/mdt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mdt_deck_reader.py
156 lines (131 loc) · 4.66 KB
/
mdt_deck_reader.py
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
import pymem
import json
import i18n
_ = i18n.t
def pointer_to_address(process, base, offsets):
offset_final = offsets.pop()
address_next = process.read_longlong(base)
for offset in offsets:
address_next = process.read_longlong(address_next + offset)
address_final = address_next + offset_final
return address_final
def read_memory_int(process, address):
value = process.read_int(address)
return value
def read_memory_bytes(process, address, count):
inc = 0x18
value = process.read_bytes(address, count * inc)
return value
def deck_bytes_to_list(bytes: bytes, count: int):
inc = 0x18
card_list = []
for i in range(count):
card_list.append(
int.from_bytes(bytes[i * inc : i * inc + 2], byteorder="little")
)
return card_list
def get_process(process_name):
process = pymem.Pymem(process_name)
return process
def get_base_address(process, module):
base_addr = pymem.process.module_from_name(
process.process_handle, module
).lpBaseOfDll
return base_addr
def get_database(path):
with open(path, "rb") as f:
cards_db = json.load(f)
return cards_db
def get_deck_dict():
main_name = "masterduel.exe"
module_name = "GameAssembly.dll"
ma_count_static = 0x01CCD278
ma_count_offsets = [0xB8, 0x00, 0xF8, 0x1C0, 0x90, 0x18]
ex_count_static = 0x01CCD278
ex_count_offsets = [0xB8, 0x00, 0xF8, 0x1C0, 0x98, 0x18]
ma_cards_static = 0x01CCD278
ma_cards_offsets = [0xB8, 0x00, 0xF8, 0x1C0, 0x90, 0x10, 0x20]
ex_cards_static = 0x01CCD278
ex_cards_offsets = [0xB8, 0x00, 0xF8, 0x1C0, 0x98, 0x10, 0x20]
deck_dict = {"error": _("无法读取卡组信息")}
try:
pm = get_process(main_name)
base_address = get_base_address(pm, module_name)
ma_count_addr = base_address + ma_count_static
ex_count_addr = base_address + ex_count_static
ma_cards_addr = base_address + ma_cards_static
ex_cards_addr = base_address + ex_cards_static
ma_count = read_memory_int(
pm, pointer_to_address(pm, ma_count_addr, ma_count_offsets)
)
ex_count = read_memory_int(
pm, pointer_to_address(pm, ex_count_addr, ex_count_offsets)
)
ma_cid_list = deck_bytes_to_list(
read_memory_bytes(
pm, pointer_to_address(pm, ma_cards_addr, ma_cards_offsets), ma_count
),
ma_count,
)
ex_cid_list = deck_bytes_to_list(
read_memory_bytes(
pm, pointer_to_address(pm, ex_cards_addr, ex_cards_offsets), ex_count
),
ex_count,
)
deck_dict = {
"ma_count": ma_count,
"ex_count": ex_count,
"ma_cid_list": ma_cid_list,
"ex_cid_list": ex_cid_list,
}
return deck_dict
except Exception: # as e:
# print(e)
return deck_dict
def get_deck_string(locale: str):
db_name = "./locales/" + locale + "/cards.json"
deck_string = ""
try:
cards_db = get_database(db_name)
deck = get_deck_dict()
except Exception: # Exception as e:
# print(e)
deck_string += _("无法读取卡组信息")
return deck_string
if "error" not in deck:
deck_string += f"----------------主卡组: {deck['ma_count']}----------------\n"
c = 0
for cid in deck["ma_cid_list"]:
c += 1
card_string = ""
try:
card_info = cards_db[str(cid)]
except Exception:
card_string += "查无此卡"
try:
card_string += f"{card_info['cn_name']} "
card_string += f"{card_info['jp_name']} "
card_string += f"{card_info['en_name']}"
except Exception:
card_string += " " + "该卡信息有缺失"
deck_string += f"{c:<2} {card_string}\n"
deck_string += f"----------------额外卡组: {deck['ex_count']}----------------\n"
c = 0
for cid in deck["ex_cid_list"]:
c += 1
card_string = ""
try:
card_info = cards_db[str(cid)]
except Exception:
card_string += "查无此卡"
try:
card_string += f"{card_info['cn_name']} "
card_string += f"{card_info['jp_name']} "
card_string += f"{card_info['en_name']}"
except Exception:
card_string += " " + "该卡信息有缺失"
deck_string += f"{c:<2} {card_string}\n"
return deck_string
if __name__ == "__main__":
print(get_deck_dict())