mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
- removed web-setup - new CLI parameters --account : create initial account(s) --siteconfig : edit php/aowow config values --dbconfig : set up db connection --sql : create db content from world/dbc-tables --firstrun : [NYI] step by step initial setup - some fixes by the wayside * display required arena bracket for extendedCost * achievement chains are searchable again * category trees for factions should now be correct * trainer tab on spell detail page reapeared * userMenu item 'Settings' no longer breaks the page * display abilities of shapeshift in tab on spell detail page * corrected reading ?_sourcestrings for titles * fixed error on race detail page * added simple descriptions to skill detail page * fixed tab "reward from" (achievement) on title detail page * fixed alphabetical order of some filter-dropdowns * fixed skill colors for spells * fixed power display for rune-based spells, that also cost mana * added more information to zones * also check mail_loot_template for achivements * fixed bug, where loot_template-ids would be reused for multiple templates * display sourcemore for pvp-sources
90 lines
2.8 KiB
PHP
90 lines
2.8 KiB
PHP
<?php
|
|
|
|
if (!defined('AOWOW_REVISION'))
|
|
die('illegal access');
|
|
|
|
if (!CLI)
|
|
die('not in cli mode');
|
|
|
|
|
|
// Create 'gems'-file for available locales
|
|
// this script requires the following dbc-files to be parsed and available
|
|
// ItemEnchantment, GemProperties, Spells, Icons
|
|
|
|
/* Example
|
|
22460: {
|
|
name:'Prismatic Sphere',
|
|
quality:3,
|
|
icon:'INV_Enchant_PrismaticSphere',
|
|
enchantment:'+3 Resist All',
|
|
jsonequip:{"arcres":3,"avgbuyout":242980,"firres":3,"frores":3,"holres":3,"natres":3,"shares":3},
|
|
colors:14,
|
|
expansion:1
|
|
gearscore:8 // as if.....
|
|
},
|
|
*/
|
|
|
|
function gems()
|
|
{
|
|
// sketchy, but should work
|
|
// Id < 36'000 || ilevel < 70 ? BC : WOTLK
|
|
$gems = DB::Aowow()->Select(
|
|
'SELECT i.id AS itemId,
|
|
i.name_loc0, i.name_loc2, i.name_loc3, i.name_loc6, i.name_loc8,
|
|
IF (i.id < 36000 OR i.itemLevel < 70, 1 , 2) AS expansion,
|
|
i.quality,
|
|
ic.iconString AS icon,
|
|
i.gemEnchantmentId AS enchId,
|
|
i.gemColorMask AS colors
|
|
FROM ?_items i
|
|
JOIN ?_icons ic ON ic.id = -i.displayId
|
|
WHERE i.gemEnchantmentId <> 0
|
|
ORDER BY i.id DESC');
|
|
$success = true;
|
|
|
|
|
|
// check directory-structure
|
|
foreach (Util::$localeStrings as $dir)
|
|
if (!CLISetup::writeDir('datasets/'.$dir))
|
|
$success = false;
|
|
|
|
$enchIds = [];
|
|
foreach ($gems as $pop)
|
|
$enchIds[] = $pop['enchId'];
|
|
|
|
$enchMisc = [];
|
|
$enchJSON = Util::parseItemEnchantment($enchIds, false, $enchMisc);
|
|
|
|
foreach (CLISetup::$localeIds as $lId)
|
|
{
|
|
set_time_limit(5);
|
|
|
|
User::useLocale($lId);
|
|
Lang::load(Util::$localeStrings[$lId]);
|
|
|
|
$gemsOut = [];
|
|
foreach ($gems as $pop)
|
|
{
|
|
$gemsOut[$pop['itemId']] = array(
|
|
'name' => Util::localizedString($pop, 'name'),
|
|
'quality' => $pop['quality'],
|
|
'icon' => strToLower($pop['icon']),
|
|
'enchantment' => Util::localizedString(@$enchMisc[$pop['enchId']]['text'] ?: [], 'text'),
|
|
'jsonequip' => @$enchJSON[$pop['enchId']] ?: [],
|
|
'colors' => $pop['colors'],
|
|
'expansion' => $pop['expansion']
|
|
);
|
|
}
|
|
|
|
$toFile = "var g_gems = ".Util::toJSON($gemsOut).";";
|
|
$file = 'datasets/'.User::$localeString.'/gems';
|
|
|
|
if (!CLISetup::writeFile($file, $toFile))
|
|
$success = false;
|
|
}
|
|
|
|
return $success;
|
|
}
|
|
|
|
?>
|