mirror of
https://gitlab.com/hashborgir/d2tools.git
synced 2024-11-30 12:36:03 +00:00
latest.
This commit is contained in:
parent
ab78848845
commit
caf675cff5
109
genDocs.php
109
genDocs.php
@ -79,6 +79,12 @@ $strings = $idoc->getStrings();
|
|||||||
$itemtypesTbl = $idoc->getItemTypesTbl();
|
$itemtypesTbl = $idoc->getItemTypesTbl();
|
||||||
$namestr = $idoc->getNameStr();
|
$namestr = $idoc->getNameStr();
|
||||||
|
|
||||||
|
$query = "SELECT ROWID,* FROM magicprefix";
|
||||||
|
$mpre = PDO_FetchAll($query);
|
||||||
|
|
||||||
|
$query = "SELECT ROWID,* FROM magicsuffix";
|
||||||
|
$spre = PDO_FetchAll($query);
|
||||||
|
|
||||||
// htmlTop was huge, so put it into another file and just include it
|
// htmlTop was huge, so put it into another file and just include it
|
||||||
require_once 'templates/htmlTop.php';
|
require_once 'templates/htmlTop.php';
|
||||||
$htmlbottom = "</div></body></html>";
|
$htmlbottom = "</div></body></html>";
|
||||||
@ -230,32 +236,32 @@ EOT;
|
|||||||
$i_params = [
|
$i_params = [
|
||||||
"any" => "Any Item",
|
"any" => "Any Item",
|
||||||
"low" => "Low Quality",
|
"low" => "Low Quality",
|
||||||
"hiq" => "Superior",
|
"hiq" => "Superior Quality",
|
||||||
"nor" => "Normal",
|
"nor" => "Normal Quality",
|
||||||
"mag" => "<span class='blue'>Magic<span>",
|
"mag" => "<span class='blue'>Magic<span> item",
|
||||||
"rar" => "<span class='yellow'>Rare<span>",
|
"rar" => "<span class='yellow'>Rare<span> item",
|
||||||
"set" => "<span class='green'>Set<span>",
|
"set" => "<span class='green'>Set<span> item",
|
||||||
"uni" => "<span class='gold'>Unique<span>",
|
"uni" => "<span class='gold'>Unique<span> item",
|
||||||
"crf" => "<span class='orange'>Crafted<span>",
|
"crf" => "<span class='orange'>Crafted<span> item",
|
||||||
"tmp" => "<span class='orange'>Tempered<span>",
|
"tmp" => "<span class='orange'>Tempered<span> item",
|
||||||
"eth" => "<span style='color: #ccc;'>Ethereal<span>",
|
"eth" => "<span style='color: #ccc;'>Ethereal<span>item ",
|
||||||
"noe" => "<span style='color: #ccc;'>Not Ethereal<span>",
|
"noe" => "<span style='color: #ccc;'>Not Ethereal<span>",
|
||||||
"nos" => "No Socket (for input)",
|
"nos" => "No Socket (for input1)",
|
||||||
"sock" => "Sockets",
|
"sock" => "Sockets",
|
||||||
"pre" => "Prefix (ID from magicprefix.txt) - ID => (Row Number - 2)",
|
"pre" => "Prefix (ID from magicprefix.txt) - ID => (Row Number - 2)",
|
||||||
"suf" => "Suffix (ID from magicsuffix.txt) - ID => (Row Number - 2)",
|
"suf" => "Suffix (ID from magicsuffix.txt) - ID => (Row Number - 2)",
|
||||||
"rep" => "Repair durability",
|
"rep" => "Repair item durability",
|
||||||
"rch" => "Recharge Quantity",
|
"rch" => "Recharge all of the skill charges on the Item",
|
||||||
"qty" => 'Quantity',
|
"qty" => 'Quantity',
|
||||||
"upg" => "For inputs only, Item is upgraded.",
|
"upg" => "For inputs only, Item is upgraded.",
|
||||||
"bas" => "Base item",
|
"bas" => "Base item",
|
||||||
"exc" => "Exceptional",
|
"exc" => "Exceptional",
|
||||||
"eli" => "Elite",
|
"eli" => "Elite",
|
||||||
"usetype" => "Uses base type of input1 for output",
|
"usetype" => "Uses base type of input1 for output",
|
||||||
"useitem" => "Uses item from input 1",
|
"useitem" => "Uses item from input1",
|
||||||
"uns" => "Unsocket Item(destroys gems)",
|
"uns" => "Unsocket Item(destroys gems)",
|
||||||
"rem" => "Unsocket Item(removes gems)",
|
"rem" => "Unsocket Item(removes gems)",
|
||||||
"reg" => "Regenerate? Seems to reroll the item",
|
"reg" => "Reroll the item",
|
||||||
"mod" => "Transfers properties from input1 to output item.",
|
"mod" => "Transfers properties from input1 to output item.",
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -291,8 +297,8 @@ EOT;
|
|||||||
"input 7" => $r["input 7"],
|
"input 7" => $r["input 7"],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$input1_code = explode(',',$r['input 1'])[0];
|
$input1_code = explode(',', $r['input 1'])[0];
|
||||||
|
|
||||||
foreach ($input_codes as $inputNum => $value) {
|
foreach ($input_codes as $inputNum => $value) {
|
||||||
if (str_contains($value, ',')) {
|
if (str_contains($value, ',')) {
|
||||||
$input_codes[$inputNum] = explode(",", $value); // hpot,qty=3
|
$input_codes[$inputNum] = explode(",", $value); // hpot,qty=3
|
||||||
@ -371,9 +377,12 @@ EOT;
|
|||||||
$oarray = explode(",", $value); // hpot,qty=3
|
$oarray = explode(",", $value); // hpot,qty=3
|
||||||
if ($oarray[0] == 'usetype' || $oarray[0] == 'useitem') {
|
if ($oarray[0] == 'usetype' || $oarray[0] == 'useitem') {
|
||||||
$oarray[0] = $input1_code;
|
$oarray[0] = $input1_code;
|
||||||
|
$oarray[2] = $i_params[$oarray[2]];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//var_dump($oarray);
|
||||||
//if (in_array($oarray[0], $strings)) {
|
//if (in_array($oarray[0], $strings)) {
|
||||||
$str = $strings[$oarray[0]];
|
$str = $strings[$oarray[0]];
|
||||||
//}
|
//}
|
||||||
// "SELECT `String` FROM `strings` WHERE Key=\"{$oarray[0]}\"";
|
// "SELECT `String` FROM `strings` WHERE Key=\"{$oarray[0]}\"";
|
||||||
// clean str
|
// clean str
|
||||||
@ -383,12 +392,11 @@ EOT;
|
|||||||
$str = preg_replace($p, "", $str);
|
$str = preg_replace($p, "", $str);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// what if we set it to input codes 1 code
|
// what if we set it to input codes 1 code
|
||||||
//var_dump($strings[$oarray[0]]);
|
//var_dump($strings[$oarray[0]]);
|
||||||
// var_dump($oarray[0]);
|
// var_dump($oarray[0]);
|
||||||
// var_dump($str);
|
// var_dump($str);
|
||||||
|
|
||||||
// if empty, str == 4-letter code, so just display
|
// if empty, str == 4-letter code, so just display
|
||||||
if (empty($str)) {
|
if (empty($str)) {
|
||||||
$output_codes[$outputNum][0] = ($oarray[0]);
|
$output_codes[$outputNum][0] = ($oarray[0]);
|
||||||
@ -421,7 +429,58 @@ EOT;
|
|||||||
$e = explode("=", $mod[1]);
|
$e = explode("=", $mod[1]);
|
||||||
$output_codes[$outputNum]['code'] = $e[0];
|
$output_codes[$outputNum]['code'] = $e[0];
|
||||||
$output_codes[$outputNum]['value'] = $e[1];
|
$output_codes[$outputNum]['value'] = $e[1];
|
||||||
|
|
||||||
|
// if ($e[0] == 'pre') {
|
||||||
|
// $e[1]++;
|
||||||
|
//
|
||||||
|
// $pre = $mpre[$e[1]];
|
||||||
|
//
|
||||||
|
// for ($i = 1; $i <= 3; $i++) {
|
||||||
|
//
|
||||||
|
// $mods = array_filter([
|
||||||
|
// "mod{$i}code" => $pre["mod{$i}code"],
|
||||||
|
// "mod{$i}param" => $pre["mod{$i}param"],
|
||||||
|
// "mod{$i}min" => $pre["mod{$i}min"],
|
||||||
|
// "mod{$i}max" => $pre["mod{$i}max"],
|
||||||
|
// ]);
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// // var_dump($output['mods']);
|
||||||
|
// foreach ($mods as $k => $v) {
|
||||||
|
// $prop = ($v["mod " . $k + 1]);
|
||||||
|
// $par = ($v["mod{$k}param"]) ?? "";
|
||||||
|
// $min = ($v["mod{$k}min"]) ?? $max;
|
||||||
|
// $max = ($v["mod{$k}max"]) ?? $min;
|
||||||
|
//
|
||||||
|
// //var_dump($isc[$prop]);
|
||||||
|
//
|
||||||
|
// $pre['mods'][$k]["isc"] = $isc[$prop];
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// $params = [
|
||||||
|
// 'string1' => $pre['mods'][$k]["isc"]['string1'],
|
||||||
|
// 'string2' => $pre['mods'][$k]["isc"]['string2'],
|
||||||
|
// 'descfunc' => $pre['mods'][$k]["isc"]['descfunc'],
|
||||||
|
// 'descval' => $pre['mods'][$k]["isc"]['descval'],
|
||||||
|
// "prop" => $prop,
|
||||||
|
// "par" => $par,
|
||||||
|
// "min" => $min,
|
||||||
|
// "max" => $max,
|
||||||
|
// // "val1" => $funcval['val1'],
|
||||||
|
// // "func1" => $funcval['func1']
|
||||||
|
// // 'item' => $return
|
||||||
|
// ];
|
||||||
|
//
|
||||||
|
// //var_dump($idesc->getDesc($params));
|
||||||
|
//
|
||||||
|
// $output['pre']['mods'][$k]["str"] = $idesc->getDesc($params);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -455,7 +514,7 @@ EOT;
|
|||||||
$m[] = array_filter($mods);
|
$m[] = array_filter($mods);
|
||||||
}
|
}
|
||||||
$output['mods'] = array_filter($m);
|
$output['mods'] = array_filter($m);
|
||||||
|
|
||||||
//var_dump($output['mods']);
|
//var_dump($output['mods']);
|
||||||
|
|
||||||
$result = [];
|
$result = [];
|
||||||
@ -484,12 +543,10 @@ EOT;
|
|||||||
// 'item' => $return
|
// 'item' => $return
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
//var_dump($idesc->getDesc($params));
|
//var_dump($idesc->getDesc($params));
|
||||||
|
|
||||||
|
|
||||||
$output['mods'][$k]["str"] = $idesc->getDesc($params);
|
$output['mods'][$k]["str"] = $idesc->getDesc($params);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -567,6 +624,8 @@ EOT;
|
|||||||
$htmlRow .= $output["output"][1] . "<br>";
|
$htmlRow .= $output["output"][1] . "<br>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$htmlRow .= $i_params[$output["output"][2]] . "<br>";
|
||||||
|
|
||||||
for ($i = 1; $i <= 5; $i++) {
|
for ($i = 1; $i <= 5; $i++) {
|
||||||
|
|
||||||
if ($output["mods"][0]["mod $i"]) {
|
if ($output["mods"][0]["mod $i"]) {
|
||||||
|
1164
src/D2ItemDesc.php
1164
src/D2ItemDesc.php
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user