viewing paste Unknown #6340 | Perl

Posted on the | Last edited on
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 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
#!/usr/bin/perl
 
# To run this file:
#   item_db.pl --i=../db/pre-re/item_db.txt --o=../sql-files/item_db.sql --t=pre
#   item_db.pl --i=../db/re/item_db.txt --o=../sql-files/item_db_re.sql --t=re
# For a list of options:
#   item_db.pl --help
 
use strict;
use warnings;
use Getopt::Long;
 
my $sFilein = "";
my $sFileout = "";
my $sTarget = "";
my $sType = "";
my $sHelp = 0;
my $stable = "";
 
my $db;
my $nb_columns;
my @str_col = (); #use basic escape
my @str_col2 = (); #use second escape (for script currently
my $line_format;
my $create_table;
my @defaults = ();
 
Main();
 
sub GetArgs {
    GetOptions(
    'i=s' => \$sFilein, #output file
    'o=s' => \$sFileout, #input file
    't=s' => \$sTarget, # re/pre-re
    'm=s' => \$sType, #item/mob
    'table=s' => \$stable,
    'help!' => \$sHelp,
    ) or $sHelp=1; #Display help if invalid options are supplied.
    my $sValidTarget = "Re|Pre";
    my $sValidType = "Item|Mob|Mob_skill";
 
    if( $sHelp ) {
        print "Incorrect option specified. Available options:\n"
            ."\t --o=filename => output filename \n"
            ."\t --i=filename => intput filename \n"
            ."\t --table=tablename => tablename to create \n"
            ."\t --t=target => specify target ([$sValidTarget]) \n"
            ."\t --m=type => specify type ([$sValidType]) \n";
        exit;
    }
    unless($sFilein or $sFileout){
        print "ERROR: Filename_in and Filename_out are required to continue.\n";
        exit;
    }
    unless($sTarget =~ /$sValidTarget/i){
        print "ERROR: Incorrect target specified. Available targets:\n"
            ."\t --t => target (specify which kind of table_struct to build [$sValidTarget])\n";
        exit;
    }
    unless($sType =~ /$sValidType/i){
        print "ERROR: Incorrect type specified. Available type:\n"
            ."\t --m => type (specify which data entry to use [$sValidType])\n";
        exit;
    }
}
 
sub Main {
    GetArgs();
    BuildDataForType($sTarget,$sType);
    ConvertFile($sFilein,$sFileout,$sType);
    print "Conversion ended.\n";
}
 
sub ConvertFile { my($sFilein,$sFileout,$sType)=@_;
    my $sFHout;
    print "Starting ConvertFile with: \n\t filein=$sFilein \n\t fileout=$sFileout \n";
    open FHIN,"$sFilein" or die "ERROR: Can't read or locate $sFilein.\n";
    open $sFHout,">$sFileout" or die "ERROR: Can't write $sFileout.\n";
    
    printf $sFHout ("%s\n",$create_table);
    while(my $ligne=<FHIN>)
    {
        if ($ligne =~ /^\s*$/ ){
                print $sFHout "\n";
                next;
        }
        if ($ligne =~ /[^\r\n]+/)
        {
            $ligne = $&;
            if ($ligne =~ /^\/\//) {
                printf $sFHout ("#");
                $ligne = substr($ligne, 2);
            }
            my @champ = ();
            if ($sType =~ /mob_skill/i ) {
                if ($ligne =~ $line_format ) { @champ = ($1,$2,$3,$4,$5,$6,$7,$8,$9,$10,$11,$12,$13,$14,$15,$16,$17,$18,$19); }
            }
            elsif ($sType =~ /mob/i) {  @champ = split(",",$ligne); }
            elsif ($sType =~ /item/i ) {
                if ($ligne =~ $line_format) { @champ = ($1,$2,$3,$4,$5,$6,$7,$8,$9,$10,$11,$12,$13,$14,$15,$16,$17,$18,$19,$20,$21,$22); } 
            }
            if ($#champ != $nb_columns - 1) { # Can't parse, it's a real comment
                printf $sFHout ("%s\n", $ligne);
            } else {
                printf $sFHout ("REPLACE INTO `%s` VALUES (", $db);
                for (my $i=0; $i<$#champ; $i++) {
                    printField($sFHout,$champ[$i],",",$i);
                }
                printField($sFHout,$champ[$#champ],");\n",$#champ);
            }
        }
    }
    print $sFHout "\n";
}
 
sub printField { my ($sFHout,$str, $suffix, $idCol) = @_;
    # Remove first { and last }
    if ($str =~ /{.*}/)
    {
        $str = substr($&,1,-1);
    }
    # If nothing, put NULL
    if ($str eq "") {
        my $sDef;
        if(scalar(@defaults)) { $sDef = $defaults[$idCol]; } #Use default in array.
        else { $sDef = "NULL" unless($sDef); } #Let SQL handle the default.
        print $sFHout "$sDef$suffix";
    } else {
        my $flag = 0;
        # Search if it's a string column?
        foreach my $col (@str_col) {
            if ($col == $idCol) {
                $flag |= 1;
                last;
            }
        }
        foreach my $col (@str_col2) {
            if ($col == $idCol) {
                $flag |= 2;
                last;
            }
        }
 
        if ($flag & 3)
        {
            # String column, so escape , remove trailing and add ''
            my $string;
            $string = escape($str,"'","\\'") if($flag & 1) ;
            $string =~ s/\s+$//; #Remove trailing spaces.
            $string =~ s/^\s+//; #Remove leading spaces.
            $string = escape($string,'\\\"','\\\\\"') if($flag & 2) ;
            printf $sFHout ("'%s'%s", $string, $suffix);
        } else {
            # Not a string column.
            printf $sFHout ("%s%s", $str,$suffix);
        }
    }
}
 
sub escape { my ($str,$sregex,$sreplace) = @_;
    my @str_splitted = split($sregex, $str);
    my $result = "";
    for (my $i=0; $i<=$#str_splitted; $i++)
    {
        if ($i == 0) {
            $result = $str_splitted[0];
        } else {
            $result = $result.$sreplace.$str_splitted[$i];
        }
    }
    return $result
}
 
sub BuildDataForType{ my($sTarget,$sType) = @_;
    print "Starting BuildDataForType with: \n\t Target=$sTarget, Type=$sType \n";
    
    if($sType =~ /item/i) {
        if($sTarget =~ /Pre/i){
            $db = $stable;
            $db = "item_db" unless($db);
            $nb_columns = 22;
            @str_col = (1,2,19,20,21);
            @str_col2 = (19,20,21);
            $line_format = "([^\,]*),"x($nb_columns-3)."(\{.*\}),"x(2)."(\{.*\})"; #Last 3 columns are scripts.
            $create_table = "
#
# Table structure for table `$db`
#
DROP TABLE IF EXISTS `$db`;
CREATE TABLE `$db` (
  `id` smallint(5) unsigned NOT NULL default '0',
  `name_english` varchar(50) NOT NULL default '',
  `name_japanese` varchar(50) NOT NULL default '',
  `type` tinyint(2) unsigned NOT NULL default '0',
  `price_buy` mediumint(10) unsigned default NULL,
  `price_sell` mediumint(10) unsigned default NULL,
  `weight` smallint(5) unsigned NOT NULL default '0',
  `attack` smallint(3) unsigned default NULL,
  `defence` smallint(5) NULL default NULL,
  `range` tinyint(2) unsigned default NULL,
  `slots` tinyint(2) unsigned default NULL,
  `equip_jobs` int(12) unsigned default NULL,
  `equip_upper` tinyint(8) unsigned default NULL,
  `equip_genders` tinyint(2) unsigned default NULL,
  `equip_locations` smallint(4) unsigned default NULL,
  `weapon_level` tinyint(2) unsigned default NULL,
  `equip_level` tinyint(3) unsigned default NULL,
  `refineable` tinyint(1) unsigned default NULL,
  `view` smallint(3) unsigned default NULL,
  `script` text,
  `equip_script` text,
  `unequip_script` text,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM;
";
        #NOTE: These do not match the table struct defaults.
        @defaults = ('0','\'\'','\'\'','0','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL');
        }
        elsif($sTarget =~ /Re/i){
            $db = $stable;
            $db = "item_db_re" unless($db);
            $nb_columns = 22;
            @str_col = (1,2,7,16,19,20,21);
            @str_col2 = (19,20,21);
            $line_format = "([^\,]*),"x($nb_columns-3)."(\{.*\}),"x(2)."(\{.*\})"; #Last 3 columns are scripts.
            $create_table = "
#
# Table structure for table `$db`
#
 
DROP TABLE IF EXISTS `$db`;
CREATE TABLE `$db` (
 `id` smallint(5) unsigned NOT NULL default '0',
 `name_english` varchar(50) NOT NULL default '',
 `name_japanese` varchar(50) NOT NULL default '',
 `type` tinyint(2) unsigned NOT NULL default '0',
 `price_buy` mediumint(10) unsigned default NULL,
 `price_sell` mediumint(10) unsigned default NULL,
 `weight` smallint(5) unsigned NOT NULL default '0',
 `atk:matk` varchar(11) default '',
 `defence` smallint(5) NULL default NULL,
 `range` tinyint(2) unsigned default NULL,
 `slots` tinyint(2) unsigned default NULL,
 `equip_jobs` int(12) unsigned default NULL,
 `equip_upper` tinyint(8) unsigned default NULL,
 `equip_genders` tinyint(2) unsigned default NULL,
 `equip_locations` smallint(4) unsigned default NULL,
 `weapon_level` tinyint(2) unsigned default NULL,
 `equip_level` varchar(10) default '',
 `refineable` tinyint(1) unsigned default NULL,
 `view` smallint(3) unsigned default NULL,
 `script` text,
 `equip_script` text,
 `unequip_script` text,
 PRIMARY KEY (`id`)
) ENGINE=MyISAM;
";
        #NOTE: These do not match the table struct defaults.
        @defaults = ('0','\'\'','\'\'','0','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL');
        }
    } #end item type
    elsif($sType =~ /mob_skill/i) { #same format for pre and re
        $db = "mob_skill_db" unless($db);
        $nb_columns = 19;
        @str_col = (1,2,8,9,10,11,17,18);
        $line_format = "([^\,]*),"x($nb_columns-1)."([^\,]*)";
        $create_table = "
#
# Table structure for table `$db`
#
 
DROP TABLE IF EXISTS `$db`;
CREATE TABLE IF NOT EXISTS `$db` (
  `MOB_ID` smallint(6) NOT NULL,
  `INFO` text NOT NULL,
  `STATE` text NOT NULL,
  `SKILL_ID` smallint(6) NOT NULL,
  `SKILL_LV` tinyint(4) NOT NULL,
  `RATE` smallint(4) NOT NULL,
  `CASTTIME` mediumint(9) NOT NULL,
  `DELAY` int(9) NOT NULL,
  `CANCELABLE` text NOT NULL,
  `TARGET` text NOT NULL,
  `CONDITION` text NOT NULL,
  `CONDITION_VALUE` text,
  `VAL1` mediumint(9) DEFAULT NULL,
  `VAL2` mediumint(9) DEFAULT NULL,
  `VAL3` mediumint(9) DEFAULT NULL,
  `VAL4` mediumint(9) DEFAULT NULL,
  `VAL5` mediumint(9) DEFAULT NULL,
  `EMOTION` text,
  `CHAT` text
) ENGINE=MyISAM;
";
    }
    elsif($sType =~ /mob/i) { #same format for pre and re
        $db = "mob_db" unless($db);
        $nb_columns = 57;
        @str_col = (1,2,3);
        $line_format = "([^\,]*),"x($nb_columns-1)."([^\,]*)";
        $create_table = "
#
# Table structure for table `$db`
#
DROP TABLE IF EXISTS `$db`;
CREATE TABLE `$db` (
  `ID` mediumint(9) unsigned NOT NULL default '0',
  `Sprite` text NOT NULL,
  `kName` text NOT NULL,
  `iName` text NOT NULL,
  `LV` tinyint(6) unsigned NOT NULL default '0',
  `HP` int(9) unsigned NOT NULL default '0',
  `SP` mediumint(9) unsigned NOT NULL default '0',
  `EXP` mediumint(9) unsigned NOT NULL default '0',
  `JEXP` mediumint(9) unsigned NOT NULL default '0',
  `Range1` tinyint(4) unsigned NOT NULL default '0',
  `ATK1` smallint(6) unsigned NOT NULL default '0',
  `ATK2` smallint(6) unsigned NOT NULL default '0',
  `DEF` smallint(6) unsigned NOT NULL default '0',
  `MDEF` smallint(6) unsigned NOT NULL default '0',
  `STR` smallint(6) unsigned NOT NULL default '0',
  `AGI` smallint(6) unsigned NOT NULL default '0',
  `VIT` smallint(6) unsigned NOT NULL default '0',
  `INT` smallint(6) unsigned NOT NULL default '0',
  `DEX` smallint(6) unsigned NOT NULL default '0',
  `LUK` smallint(6) unsigned NOT NULL default '0',
  `Range2` tinyint(4) unsigned NOT NULL default '0',
  `Range3` tinyint(4) unsigned NOT NULL default '0',
  `Scale` tinyint(4) unsigned NOT NULL default '0',
  `Race` tinyint(4) unsigned NOT NULL default '0',
  `Element` tinyint(4) unsigned NOT NULL default '0',
  `Mode` smallint(6) unsigned NOT NULL default '0',
  `Speed` smallint(6) unsigned NOT NULL default '0',
  `aDelay` smallint(6) unsigned NOT NULL default '0',
  `aMotion` smallint(6) unsigned NOT NULL default '0',
  `dMotion` smallint(6) unsigned NOT NULL default '0',
  `MEXP` mediumint(9) unsigned NOT NULL default '0',
  `MVP1id` smallint(9) unsigned NOT NULL default '0',
  `MVP1per` smallint(9) unsigned NOT NULL default '0',
  `MVP2id` smallint(9) unsigned NOT NULL default '0',
  `MVP2per` smallint(9) unsigned NOT NULL default '0',
  `MVP3id` smallint(9) unsigned NOT NULL default '0',
  `MVP3per` smallint(9) unsigned NOT NULL default '0',
  `Drop1id` smallint(9) unsigned NOT NULL default '0',
  `Drop1per` smallint(9) unsigned NOT NULL default '0',
  `Drop2id` smallint(9) unsigned NOT NULL default '0',
  `Drop2per` smallint(9) unsigned NOT NULL default '0',
  `Drop3id` smallint(9) unsigned NOT NULL default '0',
  `Drop3per` smallint(9) unsigned NOT NULL default '0',
  `Drop4id` smallint(9) unsigned NOT NULL default '0',
  `Drop4per` smallint(9) unsigned NOT NULL default '0',
  `Drop5id` smallint(9) unsigned NOT NULL default '0',
  `Drop5per` smallint(9) unsigned NOT NULL default '0',
  `Drop6id` smallint(9) unsigned NOT NULL default '0',
  `Drop6per` smallint(9) unsigned NOT NULL default '0',
  `Drop7id` smallint(9) unsigned NOT NULL default '0',
  `Drop7per` smallint(9) unsigned NOT NULL default '0',
  `Drop8id` smallint(9) unsigned NOT NULL default '0',
  `Drop8per` smallint(9) unsigned NOT NULL default '0',
  `Drop9id` smallint(9) unsigned NOT NULL default '0',
  `Drop9per` smallint(9) unsigned NOT NULL default '0',
  `DropCardid` smallint(9) unsigned NOT NULL default '0',
  `DropCardper` smallint(9) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ID`)
) ENGINE=MyISAM;
";
    } #end mob type
}
 
Viewed 1878 times, submitted by lighta.