summaryrefslogtreecommitdiff
path: root/servergreps
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-09-25 01:03:18 +0300
committerAndrei Karas <akaras@inbox.ru>2016-09-25 01:15:07 +0300
commitae2e0dfd1009e66bd970048a0fc9806998f6b6fc (patch)
tree074805dd8ef35489a4850b3f4bf4fbb9ac6a6867 /servergreps
parent8ab1170b13cf499e07ff1e29c7cd9bb7525d6684 (diff)
downloadevol-tools-ae2e0dfd1009e66bd970048a0fc9806998f6b6fc.tar.gz
evol-tools-ae2e0dfd1009e66bd970048a0fc9806998f6b6fc.tar.bz2
evol-tools-ae2e0dfd1009e66bd970048a0fc9806998f6b6fc.tar.xz
evol-tools-ae2e0dfd1009e66bd970048a0fc9806998f6b6fc.zip
servergreps: add parsing packets_db.txt for eAthena forks.
Diffstat (limited to 'servergreps')
-rwxr-xr-xservergreps/hercules/packets.py12
-rwxr-xr-xservergreps/hercules/src/idathena.py9
-rwxr-xr-xservergreps/hercules/src/packetdb.py279
-rwxr-xr-xservergreps/hercules/src/rathena.py9
-rwxr-xr-xservergreps/hercules/src/reporter.py13
-rwxr-xr-xservergreps/hercules/src/threeceam.py9
6 files changed, 303 insertions, 28 deletions
diff --git a/servergreps/hercules/packets.py b/servergreps/hercules/packets.py
index f33b5f7..67f6f75 100755
--- a/servergreps/hercules/packets.py
+++ b/servergreps/hercules/packets.py
@@ -57,25 +57,25 @@ reporter.packetDir = packetDir;
hercules.prepareTempFiles(codeDir, packetDir, packetVersion)
hercules.processPackets(packetDir, packetVersion)
rathena.prepareTempFiles("rathena", packetDir, packetVersion)
-rathena.processPackets(packetDir, packetVersion)
+rathena.processPackets("rathena", packetDir, packetVersion)
brathena.prepareTempFiles("brathena", packetDir, packetVersion)
brathena.processPackets(packetDir, packetVersion)
ragemu.prepareTempFiles("ragemu", packetDir, packetVersion)
ragemu.processPackets(packetDir, packetVersion)
threeceam.prepareTempFiles("3ceam", packetDir, packetVersion)
-threeceam.processPackets(packetDir, packetVersion)
+threeceam.processPackets("3ceam", packetDir, packetVersion)
idathena.prepareTempFiles("idathena", packetDir, packetVersion)
-idathena.processPackets(packetDir, packetVersion)
+idathena.processPackets("idathena", packetDir, packetVersion)
server2013.processPackets("server2013")
server2014.processPackets("server2014")
manaplus.processPackets(packetVersion);
reporter.reportManaplus(hercules, manaplus)
reporter.reportHercules(hercules)
-reporter.reportRathena(hercules, rathena)
+reporter.reportHerculesFork(hercules, rathena, "rAthena")
reporter.reportHerculesFork(hercules, brathena, "brAthena")
reporter.reportHerculesFork(hercules, ragemu, "RagEmu")
-reporter.reportThreeceam(hercules, threeceam)
-reporter.reportIdathena(hercules, idathena)
+reporter.reportHerculesFork(hercules, threeceam, "3CeaM")
+reporter.reportHerculesFork(hercules, idathena, "idAthena")
reporter.reportServer(hercules, server2013)
reporter.reportServer(hercules, server2014)
diff --git a/servergreps/hercules/src/idathena.py b/servergreps/hercules/src/idathena.py
index 07b04b9..80fb944 100755
--- a/servergreps/hercules/src/idathena.py
+++ b/servergreps/hercules/src/idathena.py
@@ -7,6 +7,7 @@
import os
import re
+from src.packetdb import PacketDb
from src.preproc import PreProc
from src.utils import Utils
@@ -21,6 +22,7 @@ class Idathena:
functionToId = dict()
loginPacketNameToId = dict()
getLenPackets = set()
+ knownLenPackets = dict()
namedPacketre = re.compile(
"((\t|[ ])*)(?P<name>[\w0-9_]+)([ ]*)=" +
@@ -154,17 +156,18 @@ class Idathena:
self.inPacketsSorted.sort()
- def processPackets(self, packetDir, packetVersion):
+ def processPackets(self, codeDir, packetDir, packetVersion):
# namedPacketsPath = packetDir + "/src/" + self.dirName + "/packets_struct.h"
srcPath = packetDir + "/src/" + self.dirName
+ packetsDbPath = "../links/" + codeDir + "/db/packet_db.txt"
# serverInPacketsHPath = packetDir + "/src/" + self.dirName + "/packets.h"
# serverLoginInPackets = packetDir + "/src/" + self.dirName + "/lclif.c"
# serverCharPackets = packetDir + "/src/" + self.dirName + "/char.c"
# self.collectNamedPackets(namedPacketsPath)
self.collectOutPackets(srcPath)
-# self.collectInPackets(serverInPacketsHPath, serverLoginInPackets)
+ PacketDb.getInPackets(packetsDbPath, packetVersion, self)
# self.collectCharInPackets(serverCharPackets);
-# self.sortInPackets()
+ self.sortInPackets()
self.sortOutPackets()
diff --git a/servergreps/hercules/src/packetdb.py b/servergreps/hercules/src/packetdb.py
new file mode 100755
index 0000000..40b6dc3
--- /dev/null
+++ b/servergreps/hercules/src/packetdb.py
@@ -0,0 +1,279 @@
+#! /usr/bin/env python2
+# -*- coding: utf8 -*-
+#
+# Copyright (C) 2015-2016 Evol Online
+# Author: Andrei Karas (4144)
+
+import re
+
+class PacketDb:
+ packetVersionRe = re.compile("^//(?P<v1>[\d][\d][\d][\d])-(?P<v2>[\d][\d])-(?P<v3>[\d][\d])")
+ clientpacketre = re.compile(
+ "^0x(?P<packet>[0-9a-fA-F]+),(?P<len>[\w-]+)" +
+ ",(?P<function>[0-9a-zA-Z_]+),")
+ serverpacketre = re.compile(
+ "^0x(?P<packet>[0-9a-fA-F]+),(?P<len>[\w-]+)")
+
+ nameMap = {
+#3CeAm
+ 'guildinvite': 'clif->pGuildInvite',
+ 'createparty': 'clif->pCreateParty',
+ 'ticksend': 'clif->pTickSend',
+ 'viewplayerequip': 'clif->pViewPlayerEquip',
+ 'hommovetomaster': 'clif->pHomMoveToMaster',
+ 'wisexin': 'clif->pPMIgnore',
+ 'storagepassword': 'clif->pStoragePassword',
+ 'npccloseclicked': 'clif->pNpcCloseClicked',
+ 'guildrequestinfo': 'clif->pGuildRequestInfo',
+ 'hommenu': 'clif->pHomMenu',
+ 'createchatroom': 'clif->pCreateChatRoom',
+ 'partychangeleader': 'clif->pPartyChangeLeader',
+ 'tradecancel': 'clif->pTradeCancel',
+ 'wanttoconnection': 'clif->pWantToConnection',
+ 'lesseffect': 'clif->pLessEffect',
+ 'gmhide': 'clif->pGMHide',
+ 'purchasereq2': 'clif->pPurchaseReq2',
+ 'stopattack': 'clif->pStopAttack',
+ 'walktoxy': 'clif->pWalkToXY',
+ 'npcclicked': 'clif->pNpcClicked',
+ 'bookingcanceljoinparty': 'clif->pDull',
+ 'recall2': 'clif->pGMRecall2',
+ 'changedir': 'clif->pChangeDir',
+ 'guildleave': 'clif->pGuildLeave',
+ 'searchstoreinfo': 'clif->pSearchStoreInfo',
+ 'bookingsearchreq': 'clif->pPartyBookingSearchReq',
+ 'partyinvite': 'clif->pPartyInvite',
+ 'auctionclose': 'clif->pAuction_close',
+ 'repairitem': 'clif->pRepairItem',
+ 'bookingignorereq': 'clif->pDull',
+ 'searchstoreinfonextpage': 'clif->pSearchStoreInfoNextPage',
+ 'solvecharname': 'clif->pSolveCharName',
+ 'guildreplyalliance': 'clif->pGuildReplyAlliance',
+ 'weaponrefine': 'clif->pWeaponRefine',
+ 'maildelete': 'clif->pMail_delete',
+ 'useskilltoid': 'clif->pUseSkillToId',
+ 'cashshopbuy': 'clif->pCashShopBuy',
+ 'traderequest': 'clif->pTradeRequest',
+ 'restart': 'clif->pRestart',
+ 'gmreqnochat': 'clif->pGMReqNoChat',
+ 'movefromkafra': 'clif->pMoveFromKafra',
+ 'replypartyinvite2': 'clif->pReplyPartyInvite2',
+ 'changechatowner': 'clif->pChangeChatOwner',
+ 'guildbreak': 'clif->pGuildBreak',
+ 'producemix': 'clif->pProduceMix',
+ 'auctionregister': 'clif->pAuction_register',
+ 'auctioncancel': 'clif->pAuction_cancel',
+ 'remove': 'clif->pGMShift', # probably error
+ 'summon': 'clif->pGMRecall', # probably error
+ 'openvending': 'clif->pOpenVending',
+ 'leaveparty': 'clif->pLeaveParty',
+ 'cashshopclose': 'clif->pCashShopClose',
+ 'guildchangenotice': 'clif->pGuildChangeNotice',
+ 'chatroomstatuschange': 'clif->pChatRoomStatusChange',
+ 'auctionsearch': 'clif->pAuction_search',
+ 'tradeack': 'clif->pTradeAck',
+ 'useitem': 'clif->pUseItem',
+ 'sndoridori': 'clif->pNoviceDoriDori',
+ 'guildreplyinvite': 'clif->pGuildReplyInvite',
+ 'selectarrow': 'clif->pSelectArrow',
+ 'feelsaveok': 'clif->pFeelSaveOk',
+ 'taekwon': 'clif->pTaekwon',
+ 'battlechat': 'clif->pBattleChat',
+ 'guilddelalliance': 'clif->pGuildDelAlliance',
+ 'cashshopreqtab': 'clif->pCashShopReqTab',
+ 'partyinvite2': 'clif->pPartyInvite2',
+ 'hommoveto': 'clif->pHomMoveTo',
+ 'useskilltoposmoreinfo': 'clif->pUseSkillToPosMoreInfo',
+ 'getcharnamerequest': 'clif->pGetCharNameRequest',
+ 'closesearchstoreinfo': 'clif->pCloseSearchStoreInfo',
+ 'localbroadcast': 'clif->pLocalBroadcast',
+ 'closekafra': 'clif->pCloseKafra',
+ 'putitemtocart': 'clif->pPutItemToCart',
+ 'actionrequest': 'clif->pActionRequest',
+ 'cashshopschedule': 'clif->pCashShopSchedule',
+ 'auctioncancelreg': 'clif->pAuction_cancelreg',
+ 'rc': 'clif->pGMRc',
+ 'guildexpulsion': 'clif->pGuildExpulsion',
+ 'partymessage': 'clif->pPartyMessage',
+ 'equiptickbox': 'clif->pEquipTick',
+ 'guildchangememberposition': 'clif->pGuildChangeMemberPosition',
+ 'adoptreply': 'clif->pAdopt_reply',
+ 'mailwinopen': 'clif->pMail_winopen',
+ 'hotkey': 'clif->pHotkey',
+ 'searchstoreinfolistitemclick': 'clif->pSearchStoreInfoListItemClick',
+ 'npcselllistsend': 'clif->pNpcSellListSend',
+ 'dropitem': 'clif->pDropItem',
+ 'takeitem': 'clif->pTakeItem',
+ 'npcselectmenu': 'clif->pNpcSelectMenu',
+ 'changehomunculusname': 'clif->pChangeHomunculusName',
+ 'shift': 'clif->pGMShift',
+ 'friendslistadd': 'clif->pFriendsListAdd',
+ 'sendemotion': 'clif->pSendEmotion',
+ 'progressbar': 'clif->pProgressbar',
+ 'bookingdelreq': 'clif->pPartyBookingDeleteReq',
+ 'howmanyconnections': 'clif->pHowManyConnections',
+ 'changemaptype': 'clif->pGMChangeMapType',
+ 'blacksmith': 'clif->pBlacksmith',
+ 'npcbuylistsend': 'clif->pNpcBuyListSend',
+ 'gmreqaccname': 'clif->pGMReqAccountName',
+ 'emotion': 'clif->pEmotion',
+ 'skillselectmenu': 'clif->pSkillSelectMenu',
+ 'reqtradebuyingstore': 'clif->pReqTradeBuyingStore',
+ 'pvpinfo': 'clif->pPVPInfo',
+ 'wisexlist': 'clif->pPMIgnoreList',
+ 'chataddmember': 'clif->pChatAddMember',
+ 'remove2': 'clif->pGMRemove2',
+ 'requestmemo': 'clif->pRequestMemo',
+ 'wis': 'clif->pWisMessage',
+ 'petmenu': 'clif->pPetMenu',
+ 'rankingpk': 'clif->pRankingPk',
+ 'mailgetattach': 'clif->pMail_getattach',
+ 'tradeadditem': 'clif->pTradeAddItem',
+ 'useskillmap': 'clif->pUseSkillMap',
+ 'auctionbuysell': 'clif->pAuction_buysell',
+ 'autorevive': 'clif->pAutoRevive',
+ 'movetokafrafromcart': 'clif->pMoveToKafraFromCart',
+ 'cashshopopen': 'clif->pCashShopOpen',
+ 'queststate': 'clif->pquestStateAck',
+ 'loadendack': 'clif->pLoadEndAck',
+ 'unequipitem': 'clif->pUnequipItem',
+ 'replypartyinvite': 'clif->pReplyPartyInvite',
+ 'guildrequestemblem': 'clif->pGuildRequestEmblem',
+ 'globalmessage': 'clif->pGlobalMessage',
+ 'reqclickbuyingstore': 'clif->pReqClickBuyingStore',
+ 'bookingsummonmember': 'clif->pDull',
+ 'friendslistreply': 'clif->pFriendsListReply',
+ 'npcstringinput': 'clif->pNpcStringInput',
+ 'closevending': 'clif->pCloseVending',
+ 'skillup': 'clif->pSkillUp',
+ 'broadcast': 'clif->pBroadcast',
+ 'guildcheckmaster': 'clif->pGuildCheckMaster',
+ 'guildchangeemblem': 'clif->pGuildChangeEmblem',
+ 'itemmonster': 'clif->pGM_Monster_Item',
+ 'vendinglistreq': 'clif->pVendingListReq',
+ 'guildrequestalliance': 'clif->pGuildRequestAlliance',
+ 'bookingupdatereq': 'clif->pPartyBookingUpdateReq',
+ 'removeoption': 'clif->pRemoveOption',
+ 'recall': 'clif->pGMRecall',
+ 'changepetname': 'clif->pChangePetName',
+ 'chatleave': 'clif->pChatLeave',
+ 'snexplosionspirits': 'clif->pNoviceExplosionSpirits',
+ 'mailread': 'clif->pMail_read',
+ 'mermenu': 'clif->pmercenary_action',
+ 'alchemist': 'clif->pAlchemist',
+ 'partychangeoption': 'clif->pPartyChangeOption',
+ 'tradeok': 'clif->pTradeOk',
+ 'kickfromchat': 'clif->pKickFromChat',
+ 'reqopenbuyingstore': 'clif->pReqOpenBuyingStore',
+ 'moveitem': 'clif->pMoveItem',
+ 'homattack': 'clif->pHomAttack',
+ 'ranking': 'clif->pRankingPk',
+ 'changecart': 'clif->pChangeCart',
+ 'reqclosebuyingstore': 'clif->pReqCloseBuyingStore',
+ 'removepartymember': 'clif->pRemovePartyMember',
+ 'catchpet': 'clif->pCatchPet',
+ 'selectegg': 'clif->pSelectEgg',
+ 'partybookingregisterreq': 'clif->pPartyBookingRegisterReq',
+ 'mailsend': 'clif->pMail_send',
+ 'itemlistwindowselected': 'clif->pItemListWindowSelected',
+ 'mailrefresh': 'clif->pMail_refreshinbox',
+ 'mapmove': 'clif->pMapMove',
+ 'check': 'clif->pCheck',
+ 'useskilltoposinfo': 'clif->pUseSkillToPosMoreInfo',
+ 'adoptrequest': 'clif->pAdopt_request',
+ 'npcamountinput': 'clif->pNpcAmountInput',
+ 'battlegroundreg': 'clif->pBGQueueRegister',
+ 'wisall': 'clif->pPMIgnoreAll',
+ 'npcnextclicked': 'clif->pNpcNextClicked',
+ 'resetchar': 'clif->pResetChar',
+ 'npcbuysellselected': 'clif->pNpcBuySellSelected',
+ 'killall': 'clif->pGMKickAll',
+ 'mailsetattach': 'clif->pMail_setattach',
+ 'insertcard': 'clif->pInsertCard',
+ 'purchasereq': 'clif->pPurchaseReq',
+ 'auctionbid': 'clif->pAuction_bid',
+ 'gmkick': 'clif->pGMKick',
+ 'auctionsetitem': 'clif->pAuction_setitem',
+ 'createparty2': 'clif->pCreateParty2',
+ 'statusup': 'clif->pStatusUp',
+ 'usecard': 'clif->pUseCard',
+ 'guildmessage': 'clif->pGuildMessage',
+ 'itemidentify': 'clif->pItemIdentify',
+ 'bookingjoinpartyreq': 'clif->pDull',
+ 'equipitem': 'clif->pEquipItem',
+ 'useskilltopos': 'clif->pUseSkillToPos',
+ 'autospell': 'clif->pAutoSpell',
+ 'cooking': 'clif->pCooking',
+ 'bookingregreq': 'clif->pPartyBookingRegisterReq',
+ 'movefromkafratocart': 'clif->pMoveFromKafraToCart',
+ 'mailreturn': 'clif->pMail_return',
+ 'tradecommit': 'clif->pTradeCommit',
+ 'quitgame': 'clif->pQuitGame',
+ 'movetokafra': 'clif->pMoveToKafra',
+ 'friendslistremove': 'clif->pFriendsListRemove',
+ 'getitemfromcart': 'clif->pGetItemFromCart',
+ 'guildopposition': 'clif->pGuildOpposition',
+ 'createguild': 'clif->pCreateGuild',
+ 'guildchangepositioninfo': 'clif->pGuildChangePositionInfo',
+ 'selectcart': 'clif->pSelectCart',
+
+#rathena
+ 'partytick': 'clif->pPartyTick',
+ 'clientversion': 'in packet',
+ 'gmfullstrip': 'clif->pGMFullStrip',
+ 'guildinvite2': 'clif->pGuildInvite2',
+ 'mergeitem_req': 'clif->ackmergeitems',
+ 'mergeitem_cancel': 'clif->cancelmergeitem',
+ 'booking_playcancel': 'in packet',
+ 'cashshopitemlist': 'clif->pCashShopSchedule',
+ 'reqworldinfo': 'missing',
+ 'ranklist': 'clif->pRanklist',
+ 'bankdeposit': 'clif->pBankDeposit',
+ 'bankwithdrawal': 'clif->pBankWithdraw',
+ 'bankcheck': 'clif->pBankCheck',
+ 'bankopen': 'clif->pBankOpen',
+ 'bankclose': 'clif->pBankClose',
+ 'dull': 'clif->dull',
+ 'npcshopclosed': 'clif->pNPCShopClosed',
+ 'npcmarketpurchase': 'clif->pNPCMarketPurchase',
+ 'npcmarketclosed': 'clif->pNPCMarketClosed',
+ 'hotkeyrowshift': 'clif->pHotkeyRowShift',
+ 'rouletteopen': 'clif->pRouletteOpen',
+ 'rouletteinfo': 'clif->pRouletteInfo',
+ 'rouletteclose': 'clif->pRouletteClose',
+ 'roulettegenerate': 'clif->pRouletteGenerate',
+ 'rouletterecvitem': 'clif->pRouletteRecvItem'
+ }
+
+ @staticmethod
+ def getInPackets(dbName, packetVersion, server):
+ with open(dbName, "r") as f:
+ version = "00000000"
+ for line in f:
+ m = PacketDb.packetVersionRe.search(line)
+ if m is not None:
+ version = m.group("v1") + m.group("v2") + m.group("v3")
+ if version > packetVersion:
+ continue
+ m = PacketDb.clientpacketre.search(line)
+ if m is not None:
+ data = m.group("packet").lower()
+ while len(data) < 4:
+ data = "0" + data
+ func = m.group("function")
+ if func not in PacketDb.nameMap:
+ if func.find("_") < 0:
+ print "Cant find name for functions " + func
+ else:
+ func = PacketDb.nameMap[func]
+ if func.find("_") < 0 and func != "in packet":
+ server.functionToId[func] = data
+ server.inPackets[data] = \
+ (int(m.group("len")), func)
+ #print "{0}, {1}, {2}".format(m.group("packet"), m.group("len"), func)
+ m = PacketDb.serverpacketre.search(line)
+ if m is not None:
+ data = m.group("packet").lower()
+ while len(data) < 4:
+ data = "0" + data
+ server.knownLenPackets[data] = int(m.group("len"))
diff --git a/servergreps/hercules/src/rathena.py b/servergreps/hercules/src/rathena.py
index 78f14b4..596edf0 100755
--- a/servergreps/hercules/src/rathena.py
+++ b/servergreps/hercules/src/rathena.py
@@ -7,6 +7,7 @@
import os
import re
+from src.packetdb import PacketDb
from src.preproc import PreProc
from src.utils import Utils
@@ -21,6 +22,7 @@ class Rathena:
functionToId = dict()
loginPacketNameToId = dict()
getLenPackets = set()
+ knownLenPackets = dict()
namedPacketre = re.compile(
"((\t|[ ])*)(?P<name>[\w0-9_]+)([ ]*)=" +
@@ -154,17 +156,18 @@ class Rathena:
self.inPacketsSorted.sort()
- def processPackets(self, packetDir, packetVersion):
+ def processPackets(self, codeDir, packetDir, packetVersion):
# namedPacketsPath = packetDir + "/src/" + self.dirName + "/packets_struct.h"
srcPath = packetDir + "/src/" + self.dirName
+ packetsDbPath = "../links/" + codeDir + "/db/packet_db.txt"
# serverInPacketsHPath = packetDir + "/src/" + self.dirName + "/packets.h"
# serverLoginInPackets = packetDir + "/src/" + self.dirName + "/lclif.c"
# serverCharPackets = packetDir + "/src/" + self.dirName + "/char_clif.c"
# self.collectNamedPackets(namedPacketsPath)
self.collectOutPackets(srcPath)
-# self.collectInPackets(serverInPacketsHPath, serverLoginInPackets)
+ PacketDb.getInPackets(packetsDbPath, packetVersion, self)
# self.collectCharInPackets(serverCharPackets);
-# self.sortInPackets()
+ self.sortInPackets()
self.sortOutPackets()
diff --git a/servergreps/hercules/src/reporter.py b/servergreps/hercules/src/reporter.py
index 87be910..74c2e50 100755
--- a/servergreps/hercules/src/reporter.py
+++ b/servergreps/hercules/src/reporter.py
@@ -245,19 +245,6 @@ class Reporter:
w.write("Exists only in " + name + ": " + packet + "\n")
- def reportThreeceam(self, hercules, threeceam):
- with open(self.packetDir + "/" + hercules.reportName + "_" + threeceam.reportName + "_outpackets.txt", "w") as w:
- for packet in threeceam.outPacketsSorted:
- if packet not in hercules.packetsSet:
- w.write("Exists only in 3CeaM: " + packet + "\n")
-
-
- def reportIdathena(self, hercules, idathena):
- with open(self.packetDir + "/" + hercules.reportName + "_" + idathena.reportName + "_outpackets.txt", "w") as w:
- for packet in idathena.outPacketsSorted:
- if packet not in hercules.packetsSet:
- w.write("Exists only in idAthena: " + packet + "\n")
-
def reportServer(self, hercules, server):
with open(self.packetDir + "/" + hercules.reportName + "_" + server.dirName + "_outpackets.txt", "w") as w:
for packet in server.outPacketsSorted:
diff --git a/servergreps/hercules/src/threeceam.py b/servergreps/hercules/src/threeceam.py
index ad1341d..322233b 100755
--- a/servergreps/hercules/src/threeceam.py
+++ b/servergreps/hercules/src/threeceam.py
@@ -7,6 +7,7 @@
import os
import re
+from src.packetdb import PacketDb
from src.preproc import PreProc
from src.utils import Utils
@@ -21,6 +22,7 @@ class Threeceam:
functionToId = dict()
loginPacketNameToId = dict()
getLenPackets = set()
+ knownLenPackets = dict()
namedPacketre = re.compile(
"((\t|[ ])*)(?P<name>[\w0-9_]+)([ ]*)=" +
@@ -154,17 +156,18 @@ class Threeceam:
self.inPacketsSorted.sort()
- def processPackets(self, packetDir, packetVersion):
+ def processPackets(self, codeDir, packetDir, packetVersion):
# namedPacketsPath = packetDir + "/src/" + self.dirName + "/packets_struct.h"
srcPath = packetDir + "/src/" + self.dirName
+ packetsDbPath = "../links/" + codeDir + "/db/packet_db.txt"
# serverInPacketsHPath = packetDir + "/src/" + self.dirName + "/packets.h"
# serverLoginInPackets = packetDir + "/src/" + self.dirName + "/lclif.c"
# serverCharPackets = packetDir + "/src/" + self.dirName + "/char.c"
# self.collectNamedPackets(namedPacketsPath)
self.collectOutPackets(srcPath)
-# self.collectInPackets(serverInPacketsHPath, serverLoginInPackets)
+ PacketDb.getInPackets(packetsDbPath, packetVersion, self)
# self.collectCharInPackets(serverCharPackets);
-# self.sortInPackets()
+ self.sortInPackets()
self.sortOutPackets()