2021-03-23 08:13:54 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
2021-03-28 08:12:25 +00:00
|
|
|
Copyright (C) 2021 Hash Borgir
|
2021-03-23 08:13:54 +00:00
|
|
|
|
2021-03-28 08:12:25 +00:00
|
|
|
This file is part of D2Modder
|
2021-03-23 08:13:54 +00:00
|
|
|
|
2021-03-28 08:12:25 +00:00
|
|
|
Redistribution and use in source and binary forms, with
|
|
|
|
or without modification, are permitted provided that the
|
|
|
|
following conditions are met:
|
2021-03-23 08:13:54 +00:00
|
|
|
|
2021-03-28 08:12:25 +00:00
|
|
|
* Redistributions of source code must retain the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer.
|
2021-03-23 08:13:54 +00:00
|
|
|
|
2021-03-28 08:12:25 +00:00
|
|
|
* Redistributions in binary form must reproduce the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer in the documentation and/or other
|
|
|
|
materials provided with the distribution.
|
2021-03-23 08:13:54 +00:00
|
|
|
|
2021-03-28 08:12:25 +00:00
|
|
|
* This software must not be used for commercial purposes
|
|
|
|
* without my consent. Any sales or commercial use are prohibited
|
|
|
|
* without my express knowledge and consent.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY!
|
2021-03-23 08:13:54 +00:00
|
|
|
|
2021-03-28 08:12:25 +00:00
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
|
|
|
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
|
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
|
|
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
|
|
|
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
2022-07-06 23:41:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
2021-03-23 08:13:54 +00:00
|
|
|
class D2TxtParser {
|
|
|
|
|
2022-07-06 23:41:24 +00:00
|
|
|
/**
|
|
|
|
* @var mixed
|
|
|
|
*/
|
|
|
|
public $path = TXT_PATH;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var
|
|
|
|
*/
|
|
|
|
public $db;
|
2021-03-23 18:35:28 +00:00
|
|
|
|
2022-07-06 23:41:24 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function __construct() {
|
2021-03-23 08:13:54 +00:00
|
|
|
}
|
2021-03-23 18:35:28 +00:00
|
|
|
|
2022-07-06 23:41:24 +00:00
|
|
|
/**
|
|
|
|
* @param $file
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function parseFile($file) {
|
2021-03-23 18:35:28 +00:00
|
|
|
return $this->parseData($file);
|
|
|
|
}
|
|
|
|
|
2022-07-06 23:41:24 +00:00
|
|
|
/**
|
|
|
|
* @param $file
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function filterProps($file) {
|
2021-03-23 18:35:28 +00:00
|
|
|
$data = $this->parseData($file);
|
|
|
|
$propsToFilter = file(FILTER_PROPERTIES_FILE, FILE_IGNORE_NEW_LINES);
|
|
|
|
foreach ($data as $d) {
|
|
|
|
$allProps[] = $d['code'];
|
|
|
|
}
|
|
|
|
$filteredProps = array_diff($allProps, $propsToFilter);
|
2021-03-30 12:18:54 +00:00
|
|
|
sort($filteredProps);
|
2021-03-24 10:26:51 +00:00
|
|
|
return $filteredProps;
|
2021-03-23 18:35:28 +00:00
|
|
|
}
|
|
|
|
|
2022-07-06 23:41:24 +00:00
|
|
|
/**
|
|
|
|
* @param $file
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function parseData($file) {
|
2021-03-23 08:13:54 +00:00
|
|
|
$file = $this->path . $file;
|
|
|
|
$rows = array_map(function ($v) {
|
|
|
|
return str_getcsv($v, "\t");
|
2021-03-27 13:06:10 +00:00
|
|
|
}, file($file));
|
|
|
|
$header = array_shift($rows);
|
2021-03-26 19:09:05 +00:00
|
|
|
$data = null;
|
2021-03-23 08:13:54 +00:00
|
|
|
foreach ($rows as $row) {
|
|
|
|
$data[] = @array_combine($header, $row);
|
2021-03-24 15:37:21 +00:00
|
|
|
}
|
2021-03-27 13:06:10 +00:00
|
|
|
unset($rows);
|
2021-03-23 08:13:54 +00:00
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|