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
|
#! /usr/bin/env python2.7
# -*- coding: utf8 -*-
#
# Copyright (C) 2015 Evol Online
# Author: Andrei Karas (4144)
import os
import re
filt = re.compile(".+[.]c", re.IGNORECASE)
serverpacketre = re.compile("(WFIFOW|WBUFW)([ ]*)[(]([ ]*)([\w>_-]+),([ ]*)"
+ "(?P<offset>0)([ ]*)[)]([ ]*)=([ ]*)0x(?P<packet>[0-9a-fA-F]+)([ ]*)[;]")
serverpacketre2 = re.compile("[.]PacketType([ ]*)=([ ]*)(?P<name>[\w]+);")
protocolre = re.compile("#define[ ](?P<name>[A-Z0-9_]+)([ ]*)0x(?P<packet>[0-9a-fA-F]+)")
protocolClientre = re.compile("#define[ ](?P<name>CMSG_[A-Z0-9_]+)([ ]*)0x(?P<packet>[0-9a-fA-F]+)")
clientpacketre = re.compile("(\t*)packet[(]0x(?P<packet>[0-9a-fA-F]+),(?P<len>[\w-]+),(?P<function>[0-9a-zA-Z_>-]+)(,|[)])")
packetsSet = set()
serverpacketsSorted = []
clientpacketsSorted = []
clientPacketsManaPlus = dict()
clientPacketsManaPlusClient = dict()
clientPackets = dict()
def collectServerPackets(parentDir):
global itemNamesByName
files = os.listdir(parentDir)
for file1 in files:
if file1[0] == ".":
continue
file2 = os.path.abspath(parentDir + os.path.sep + file1)
if not os.path.isfile(file2):
collectServerPackets(file2)
elif filt.search(file1):
with open(file2, "r") as f:
for line in f:
m = serverpacketre.findall(line)
if len(m) > 0:
for str in m:
data = str[9]
while len(data) < 4:
data = "0" + data
packetsSet.add(data.lower())
m = serverpacketre2.findall(line)
if len(m) > 0:
for str in m:
packetsSet.add(str[2].lower())
def sortServerPackets():
for packet in packetsSet:
serverpacketsSorted.append(packet)
serverpacketsSorted.sort()
def sortClientPackets():
for packet in clientPackets:
clientpacketsSorted.append(packet)
clientpacketsSorted.sort()
def collectManaPlusPackets(fileName):
with open(fileName, "r") as f:
for line in f:
m = protocolre.search(line)
if m is not None:
clientPacketsManaPlus[m.group("packet").lower()] = m.group("name")
m = protocolClientre.search(line)
if m is not None:
clientPacketsManaPlusClient[m.group("packet").lower()] = m.group("name")
def collectClientPackets(fileName):
with open(fileName, "r") as f:
for line in f:
m = clientpacketre.search(line)
if m is not None:
data = m.group("packet").lower()
while len(data) < 4:
data = "0" + data
clientPackets[data] = (m.group("len"), m.group("function"));
#print "{0},{1},{2}".format(m.group("packet"), m.group("len"), m.group("function"))
def printPackets():
with open("serverpackets.txt", "w") as w:
for packet in serverpacketsSorted:
data = packet
while data[0] == "0":
data = data[1:]
if packet in clientPacketsManaPlus:
w.write(data + " client name: " + clientPacketsManaPlus[packet])
else:
w.write(data)
w.write("\n")
funcDict = dict()
forRemove = []
for packet in clientpacketsSorted:
data = packet
while data[0] == "0":
data = data[1:]
if packet in clientPackets:
funcDict[clientPackets[packet][1]] = packet
with open("uselesspackets.txt", "w") as w:
for packet in clientPacketsManaPlusClient:
if packet not in clientPackets:
w.write("Useless packet {0}.\n".format(packet))
manaplusFunc = set()
rev = []
with open("clientpackets.txt", "w") as w:
for packet in clientPacketsManaPlusClient:
if packet in clientPackets:
manaplusFunc.add(clientPackets[packet][1])
for func in funcDict:
if func not in manaplusFunc:
packet = funcDict[func]
rev.append("{0:4} {1:>4} {2}".format(packet, clientPackets[packet][0], clientPackets[packet][1]))
rev.sort()
for data in rev:
w.write(data)
w.write("\n")
srcPath = "../../server-code/src/"
protocolPath = "../../manaplus/src/net/eathena/protocol.h"
clientPacketsPath = srcPath + "map/packets.h"
collectServerPackets(srcPath)
collectClientPackets(clientPacketsPath)
collectManaPlusPackets(protocolPath)
sortClientPackets()
sortServerPackets()
printPackets()
|