diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-02 15:19:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-02 15:19:50 +0300 |
commit | a6b6a2e85f9f8aa7ddade816d0f328c3b2ce0a8b (patch) | |
tree | b4c178cc1efb610458ae45b5f4c887bd6e5cc645 /hercules/code | |
parent | 12a366099b803264ccb2066d056ac17bd52d55d6 (diff) | |
download | evol-tools-a6b6a2e85f9f8aa7ddade816d0f328c3b2ce0a8b.tar.gz evol-tools-a6b6a2e85f9f8aa7ddade816d0f328c3b2ce0a8b.tar.bz2 evol-tools-a6b6a2e85f9f8aa7ddade816d0f328c3b2ce0a8b.tar.xz evol-tools-a6b6a2e85f9f8aa7ddade816d0f328c3b2ce0a8b.zip |
hercules: convert npc id to constants.
Diffstat (limited to 'hercules/code')
-rw-r--r-- | hercules/code/server/tmw/consts.py | 9 | ||||
-rw-r--r-- | hercules/code/server/tmw/main.py | 5 | ||||
-rw-r--r-- | hercules/code/server/tmw/npcs.py | 26 |
3 files changed, 26 insertions, 14 deletions
diff --git a/hercules/code/server/tmw/consts.py b/hercules/code/server/tmw/consts.py index 2712cdc..64e2f64 100644 --- a/hercules/code/server/tmw/consts.py +++ b/hercules/code/server/tmw/consts.py @@ -52,7 +52,7 @@ def writeConst(w, const): else: w.write("\t{0}:{1}\n".format(const[0], const[1])) -def convertConsts(quests): +def convertConsts(quests, npcIds): dstFile = "newserverdata/db/constants.conf" fields = dict() vals = [("MF_NOTELEPORT", "mf_noteleport"), @@ -120,4 +120,11 @@ def convertConsts(quests): print "warning: different const values for {0} ({1}, {2})".format(rows[0], rows[1][:-1], fields[rows[0]]) else: writeConst(w, (rows[0], stripNewLine(rows[1]), 0)) + w.write("// tmw npcs\n") + for npc in npcIds: + if npc == -1: + key = "MINUS1" + else: + key = str(npc) + writeConst(w, ("NPC" + key, npc, 0)) w.write("}") diff --git a/hercules/code/server/tmw/main.py b/hercules/code/server/tmw/main.py index 221cfd2..7a872b4 100644 --- a/hercules/code/server/tmw/main.py +++ b/hercules/code/server/tmw/main.py @@ -29,10 +29,11 @@ def serverTmwMain(): print "Updating server" createMainScript() items = convertItemDb() - convertNpcs(items) + npcIds = Set() + convertNpcs(items, npcIds) convertMobDb() quests = dict() - convertConsts(quests) + convertConsts(quests, npcIds) convertMobSkillDb() def dbTmwMain(): diff --git a/hercules/code/server/tmw/npcs.py b/hercules/code/server/tmw/npcs.py index 525de7c..9916878 100644 --- a/hercules/code/server/tmw/npcs.py +++ b/hercules/code/server/tmw/npcs.py @@ -62,10 +62,10 @@ def createMainScript(): w.write("npc: npc/functions/main.txt\n") w.write("import: npc/scripts.conf\n") -def convertNpcs(items): - processNpcDir("oldserverdata/world/map/npc/", "newserverdata/npc/", items) +def convertNpcs(items, npcIds): + processNpcDir("oldserverdata/world/map/npc/", "newserverdata/npc/", items, npcIds) -def processNpcDir(srcDir, dstDir, items): +def processNpcDir(srcDir, dstDir, items, npcIds): makeDir(dstDir) files = os.listdir(srcDir) for file1 in files: @@ -74,16 +74,17 @@ def processNpcDir(srcDir, dstDir, items): srcPath = os.path.abspath(srcDir + os.path.sep + file1) dstPath = os.path.abspath(dstDir + os.path.sep + file1) if not os.path.isfile(srcPath): - processNpcDir(srcPath, dstPath, items) + processNpcDir(srcPath, dstPath, items, npcIds) else: if file1[-5:] == ".conf" or file1[-4:] == ".txt": - processNpcFile(srcPath, dstPath, items) + processNpcFile(srcPath, dstPath, items, npcIds) -def processNpcFile(srcFile, dstFile, items): +def processNpcFile(srcFile, dstFile, items, npcIds): # print "file: " + srcFile tracker = ScriptTracker() tracker.insideScript = False tracker.items = items + tracker.npcIds = npcIds with open(srcFile, "r") as r: with open(dstFile, "w") as w: tracker.w = w @@ -148,7 +149,7 @@ def processScriptMapLine(line): w.write("{0} {1}\n".format(line[5:], mapsIndex)) mapsIndex = mapsIndex + 1 -def writeScript(w, m): +def writeScript(w, m, npcIds): try: if m.group("function") != None: isFunction = True @@ -171,12 +172,15 @@ def writeScript(w, m): else: class_ = m.group("class") if class_ == "0": # hidden npc - class_ = "32767" + class_ = 32767 else: class_ = int(class_) # if class_ > 125 and class_ <= 400: # class_ = class_ + 100 - w.write("\t{0}\t{1}\t{2}".format(m.group("tag"), m.group("name"), class_)); + npcIds.add(int(class_)) + if class_ == -1: + class_ = "MINUS1" + w.write("\t{0}\t{1}\tNPC{2}".format(m.group("tag"), m.group("name"), class_)); def processScript(tracker): line = tracker.line[:-1] @@ -204,7 +208,7 @@ def processScript(tracker): except: isFunction = False - writeScript(w, m) + writeScript(w, m, tracker.npcIds) if m.group("xs") != None: w.write(",{0},{1}".format(m.group("xs"), m.group("ys"))); @@ -254,7 +258,7 @@ def processShop(tracker): # m.group("map"), m.group("x"), m.group("y"), m.group("dir"), # m.group("tag"), m.group("name"), m.group("class"), m.group("items")) - writeScript(w, m) + writeScript(w, m, tracker.npcIds) w.write("," + itemsToShop(tracker, m.group("items")) + "\n") def processMapFlag(tracker): |