summaryrefslogtreecommitdiff
path: root/tools/petevolutionconverter.py
blob: 5428ff6eb8a6c180e3601328960890682fd13924 (plain) (blame)
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
#!/usr/bin/python
# -*- coding: utf8 -*-
#
# This file is part of Hercules.
# http://herc.ws - http://github.com/HerculesWS/Hercules
#
# Copyright (C) 2018-2020 Hercules Dev Team
# Copyright (C) 2018 Dastgir
#
# Hercules is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
# Usage:
#  python petevolutionconverter.py PetEvolutionCln.lub re ../ > pet_evolve_db.conf

import re
import sys
import utils.common as Tools

def printHeader():
	print('''//================= Hercules Database =====================================
//=       _   _                     _
//=      | | | |                   | |
//=      | |_| | ___ _ __ ___ _   _| | ___  ___
//=      |  _  |/ _ \ '__/ __| | | | |/ _ \/ __|
//=      | | | |  __/ | | (__| |_| | |  __/\__ \
//=      \_| |_/\___|_|  \___|\__,_|_|\___||___/
//================= License ===============================================
//= This file is part of Hercules.
//= http://herc.ws - http://github.com/HerculesWS/Hercules
//=
//= Copyright (C) 2018-2020 Hercules Dev Team
//=
//= Hercules is free software: you can redistribute it and/or modify
//= it under the terms of the GNU General Public License as published by
//= the Free Software Foundation, either version 3 of the License, or
//= (at your option) any later version.
//=
//= This program is distributed in the hope that it will be useful,
//= but WITHOUT ANY WARRANTY; without even the implied warranty of
//= MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//= GNU General Public License for more details.
//=
//= You should have received a copy of the GNU General Public License
//= along with this program.  If not, see <http://www.gnu.org/licenses/>.
//=========================================================================
//= Pets Database
//=========================================================================

pet_db:(
/**************************************************************************
 ************* Entry structure ********************************************
 **************************************************************************
{
	// ================ Mandatory fields ==============================
	Id: ID                               (int)
	SpriteName: "Sprite_Name"            (string)
	Name: "Pet Name"                     (string)
	// ================ Optional fields ===============================
	TamingItem: Taming Item              (string, defaults to 0)
	EggItem: Egg Id                      (string, defaults to 0)
	AccessoryItem: Equipment Id          (string, defaults to 0)
	FoodItem: Food Id                    (string, defaults to 0)
	FoodEffectiveness: hunger points     (int, defaults to 0)
	HungerDelay: hunger time             (int, defaults to 0)
	Intimacy: {
		Initial: start intimacy                   (int, defaults to 0)
		FeedIncrement: feeding intimacy           (int, defaults to 0)
		OverFeedDecrement: overfeeding intimacy   (int, defaults to 0)
		OwnerDeathDecrement: owner die intimacy   (int, defaults to 0)
	}
	CaptureRate: capture rate            (int, defaults to 0)
	Speed: speed                         (int, defaults to 0)
	SpecialPerformance: true/false       (boolean, defaults to false)
	TalkWithEmotes: convert talk         (boolean, defaults to false)
	AttackRate: attack rate              (int, defaults to 0)
	DefendRate: Defence attack           (int, defaults to 0)
	ChangeTargetRate: change target      (int, defaults to 0)
	Evolve: {
		EggID: {						 (string, Evolved Pet EggID)
			Name: Amount                 (items required to perform evolution)
			...
		}
	}
	AutoFeed: true/false                 (boolean, defaults to false)
	PetScript: <" Pet Script (can also be multi-line) ">
	EquipScript: <" Equip Script (can also be multi-line) ">
},
**************************************************************************/''')

def printID(db, name, tabSize = 1):
	if (name not in db or int(db[name]) == 0):
		return
	print('{}{}: {}'.format('\t'*tabSize, name, db[name]))

def printString(db, name, tabSize = 1):
	if (name not in db or db[name].strip() == ""):
		return
	print('{}{}: "{}"'.format('\t'*tabSize, name, db[name]))

def printBool(db, name):
	if (name not in db or db[name] == '0'):
		return
	print('\t{}: true'.format(name))

def printScript(db, name):
	if (name not in db or db[name].strip() == ""):
		return
	print('\t{}: <{}>'.format(name, db[name]))

def printEntry(ItemDB, EvolveDB, autoFeedDB, entry, mode, serverpath):
	PetDB = Tools.LoadDB('pet_db', mode, serverpath)

	for i, db in enumerate(PetDB):
		print('{')
		printID(db, 'Id')
		printString(db, 'SpriteName')
		printString(db, 'Name')

		printString(db, 'TamingItem')
		printString(db, 'EggItem')
		printString(db, 'AccessoryItem')
		printString(db, 'FoodItem')
		printID(db, 'FoodEffectiveness')
		printID(db, 'HungerDelay')

		if ('Intimacy' in db and (db['Intimacy']['Initial'] != 0 or db['Intimacy']['FeedIncrement'] != 0 or
			db['Intimacy']['OverFeedDecrement'] != 0 or db['Intimacy']['OwnerDeathDecrement'] != 0)):
			print('\tIntimacy: {')
			printID(db['Intimacy'], 'Initial', 2)
			printID(db['Intimacy'], 'FeedIncrement', 2)
			printID(db['Intimacy'], 'OverFeedDecrement', 2)
			printID(db['Intimacy'], 'OwnerDeathDecrement', 2)
			print('\t}')
		#
		printID(db, 'CaptureRate')
		printID(db, 'Speed')
		printBool(db, 'SpecialPerformance')
		printBool(db, 'TalkWithEmotes')
		printID(db, 'AttackRate')
		printID(db, 'DefendRate')
		printID(db, 'ChangeTargetRate')
		if (str(db['Id']) in autoFeedDB):
			print('\tAutoFeed: true')
		else:
			print('\tAutoFeed: false')
		printScript(db, 'PetScript')
		printScript(db, 'EquipScript')

		if (db['EggItem'] in EvolveDB):
			entry = EvolveDB[db['EggItem']]
			print('\tEvolve: {')

			for evolve in entry:
				if ('comment' in evolve):
					print('/*')
				print('\t\t{}: {'.format(evolve['Id']))

				for items in evolve['items']:
					print('\t\t\t{}: {}'.format(items[0], items[1]))

				print('\t\t}')
				if ('comment' in evolve):
					print('*/')

			print('\t}')
		print('},')

def saveEntry(EvolveDB, entry):
	if (entry['from'] not in EvolveDB):
		EvolveDB[entry['from']] = list()
	EvolveDB[entry['from']].append(entry)
	return EvolveDB

def getItemConstant(entry, ItemDB, itemID):
	if (itemID in ItemDB):
		return ItemDB[itemID]
	print(itemID, "not found", entry)
	entry['comment'] = 1
	return itemID

def ConvertDB(luaName, mode, serverpath):
	ItemDB = Tools.LoadDBConsts('item_db', mode, serverpath)
	f = open(luaName)
	content = f.read()
	f.close()

	recipeDB = re.findall(r'InsertEvolutionRecipeLGU\((\d+),\s*(\d+),\s*(\d+),\s*(\d+)\)', content)
	autoFeedDB = re.findall(r'InsertPetAutoFeeding\((\d+)\)', content)

	current = 0

	entry = dict()
	EvolveDB = dict()

	printHeader()
	for recipe in recipeDB:
		fromEgg = getItemConstant(entry, ItemDB, int(recipe[0]))
		petEgg = getItemConstant(entry, ItemDB, int(recipe[1]))

		if (current == 0):
			entry = {
				'Id': petEgg,
				'from': fromEgg,
				'items': list()
			}
			current = petEgg

		if (current != petEgg):
			EvolveDB = saveEntry(EvolveDB, entry)
			entry = {
				'Id': petEgg,
				'from': fromEgg,
				'items': list()
			}
			entry['id'] = petEgg
			entry['items'] = list()
			current = petEgg

		itemConst = getItemConstant(entry, ItemDB, int(recipe[2]))
		quantity = int(recipe[3])

		entry['items'].append((itemConst, quantity))
	saveEntry(EvolveDB, entry)

	printEntry(ItemDB, EvolveDB, autoFeedDB, entry, mode, serverpath)
	print(')')


if len(sys.argv) != 4:
	print('Pet Evolution Lua to DB')
	print('Usage:')
	print('    petevolutionconverter.py lua mode serverpath')
	print("example:")
	print('    petevolutionconverter.py PetEvolutionCln.lua pre-re ../')
	exit(1)

ConvertDB(sys.argv[1], sys.argv[2], sys.argv[3])