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
|
#!/usr/bin/perl
#
# This file is part of Hercules.
# http://herc.ws - http://github.com/HerculesWS/Hercules
#
# Copyright (C) 2015 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/>.
# Base Author: Dastgir @ http://herc.ws
# This Script converts quest_db.txt to quest_db.conf format.
# usage example: perl tools/questdbconverter.pl < db/quest_db.txt > db/quest_db.conf
use strict;
use warnings;
sub parse_questdb (@) {
my @input = @_;
foreach (@input) {
chomp $_;
# Quest ID,Time Limit,Target1,Val1,Target2,Val2,Target3,Val3,Quest Title
if( $_ =~ qr/^
(?<prefix>(?:\/\/[^0-9]*)?)
(?<QuestID>[0-9]+)[^,]*,[\s\t]*
(?<TimeLimit>[0-9]+)[^,]*,[\s\t]*
(?<Target1>[0-9]+)[^,]*,[\s\t]*
(?<Val1>[0-9]+)[^,]*,[\s\t]*
(?<Target2>[0-9]+)[^,]*,[\s\t]*
(?<Val2>[0-9]+)[^,]*,[\s\t]*
(?<Target3>[0-9]+)[^,]*,[\s\t]*
(?<Val3>[0-9]+)[^,]*,[\s\t]*
"(?<QuestTitle>[^"]*)"
/x ) {
my %cols = map { $_ => $+{$_} } keys %+;
print "/*\n" if $cols{prefix};
print "$cols{prefix}\n" if $cols{prefix} and $cols{prefix} !~ m|^//[\s\t]*$|;
print "{\n";
print "\tId: $cols{QuestID}\n";
print "\tName: \"$cols{QuestTitle}\"\n";
print "\tTimeLimit: $cols{TimeLimit}\n" if $cols{TimeLimit};
print "\tTargets: (\n" if $cols{Target1} || $cols{Target2} || $cols{Target3};
print "\t{\n" if $cols{Target1};
print "\t\tMobId: $cols{Target1}\n" if $cols{Target1};
print "\t\tCount: $cols{Val1}\n" if $cols{Target1};
print "\t},\n" if $cols{Target1};
print "\t{\n" if $cols{Target2};
print "\t\tMobId: $cols{Target2}\n" if $cols{Target2};
print "\t\tCount: $cols{Val2}\n" if $cols{Target2};
print "\t},\n" if $cols{Target2};
print "\t{\n" if $cols{Target3};
print "\t\tMobId: $cols{Target3}\n" if $cols{Target3};
print "\t\tCount: $cols{Val3}\n" if $cols{Target3};
print "\t},\n" if $cols{Target3};
print "\t)\n" if $cols{Target1} || $cols{Target2} || $cols{Target3};
print "},\n";
print "*/\n" if $cols{prefix};
} elsif( $_ =~ /^\/\/(.*)$/ ) {
my $s = $1;
print "// $s\n" unless $s =~ /^[\s\t]*$/;
} elsif( $_ !~ /^\s*$/ ) {
print "// Error parsing: $_\n";
}
}
}
print <<"EOF";
quest_db: (
// Quest Database
/******************************************************************************
************* Entry structure ************************************************
******************************************************************************
{
Id: Quest ID [int]
Name: Quest Name [string]
TimeLimit: Time Limit (seconds) [int, optional]
Targets: ( [array, optional]
{
MobId: Mob ID [int]
Count: [int]
},
... (can repeated up to MAX_QUEST_OBJECTIVES times)
)
Drops: (
{
ItemId: Item ID to drop [int]
Rate: Drop rate [int]
MobId: Mob ID to match [int, optional]
},
... (can be repeated)
)
},
******************************************************************************/
EOF
parse_questdb(<>);
print ")\n";
|