mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-11 11:33:52 +00:00
42nd open format — replaces GlyphProperties.dbc + GlyphSlot.dbc plus the AzerothCore-style glyph_properties SQL table. Defines the WotLK glyph system: per-class inscribable glyphs that modify spell behavior. Each entry pairs a glyph item (the inscriber's craft output) with the spell aura that applies the modification, tagged with a Major / Minor / Prime slot type and a classMask of allowed classes. Cross-references with prior formats — spellId points at WSPL.spellId (the aura), itemId points at WIT.itemId (the inscribed item), and classMask bit positions match the WCHC classId enum (1=Warrior, 2=Paladin, 3=Hunter, etc). CLI: --gen-glyphs (3-entry per-role starter), --gen-glyphs-warrior (6-entry full warrior allotment), --gen-glyphs-universal (4 classMask=All utility glyphs), --info-wgly, --validate-wgly with --json variants. Validator catches id=0/duplicates, empty name, spellId=0 (glyph applies no aura), classMask=0 (no class can inscribe), itemId=0 warning, requiredLevel<25 warning (below WotLK glyph threshold), and glyphType out-of-range.
251 lines
8.4 KiB
C++
251 lines
8.4 KiB
C++
#include "pipeline/wowee_glyphs.hpp"
|
|
|
|
#include <cstdio>
|
|
#include <cstring>
|
|
#include <fstream>
|
|
|
|
namespace wowee {
|
|
namespace pipeline {
|
|
|
|
namespace {
|
|
|
|
constexpr char kMagic[4] = {'W', 'G', 'L', 'Y'};
|
|
constexpr uint32_t kVersion = 1;
|
|
|
|
template <typename T>
|
|
void writePOD(std::ofstream& os, const T& v) {
|
|
os.write(reinterpret_cast<const char*>(&v), sizeof(T));
|
|
}
|
|
|
|
template <typename T>
|
|
bool readPOD(std::ifstream& is, T& v) {
|
|
is.read(reinterpret_cast<char*>(&v), sizeof(T));
|
|
return is.gcount() == static_cast<std::streamsize>(sizeof(T));
|
|
}
|
|
|
|
void writeStr(std::ofstream& os, const std::string& s) {
|
|
uint32_t n = static_cast<uint32_t>(s.size());
|
|
writePOD(os, n);
|
|
if (n > 0) os.write(s.data(), n);
|
|
}
|
|
|
|
bool readStr(std::ifstream& is, std::string& s) {
|
|
uint32_t n = 0;
|
|
if (!readPOD(is, n)) return false;
|
|
if (n > (1u << 20)) return false;
|
|
s.resize(n);
|
|
if (n > 0) {
|
|
is.read(s.data(), n);
|
|
if (is.gcount() != static_cast<std::streamsize>(n)) {
|
|
s.clear();
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
std::string normalizePath(std::string base) {
|
|
if (base.size() < 5 || base.substr(base.size() - 5) != ".wgly") {
|
|
base += ".wgly";
|
|
}
|
|
return base;
|
|
}
|
|
|
|
} // namespace
|
|
|
|
const WoweeGlyph::Entry*
|
|
WoweeGlyph::findById(uint32_t glyphId) const {
|
|
for (const auto& e : entries) if (e.glyphId == glyphId) return &e;
|
|
return nullptr;
|
|
}
|
|
|
|
const char* WoweeGlyph::glyphTypeName(uint8_t t) {
|
|
switch (t) {
|
|
case Major: return "major";
|
|
case Minor: return "minor";
|
|
case Prime: return "prime";
|
|
default: return "unknown";
|
|
}
|
|
}
|
|
|
|
bool WoweeGlyphLoader::save(const WoweeGlyph& cat,
|
|
const std::string& basePath) {
|
|
std::ofstream os(normalizePath(basePath), std::ios::binary);
|
|
if (!os) return false;
|
|
os.write(kMagic, 4);
|
|
writePOD(os, kVersion);
|
|
writeStr(os, cat.name);
|
|
uint32_t entryCount = static_cast<uint32_t>(cat.entries.size());
|
|
writePOD(os, entryCount);
|
|
for (const auto& e : cat.entries) {
|
|
writePOD(os, e.glyphId);
|
|
writeStr(os, e.name);
|
|
writeStr(os, e.description);
|
|
writeStr(os, e.iconPath);
|
|
writePOD(os, e.glyphType);
|
|
uint8_t pad[3] = {0, 0, 0};
|
|
os.write(reinterpret_cast<const char*>(pad), 3);
|
|
writePOD(os, e.spellId);
|
|
writePOD(os, e.itemId);
|
|
writePOD(os, e.classMask);
|
|
writePOD(os, e.requiredLevel);
|
|
uint8_t pad2[2] = {0, 0};
|
|
os.write(reinterpret_cast<const char*>(pad2), 2);
|
|
}
|
|
return os.good();
|
|
}
|
|
|
|
WoweeGlyph WoweeGlyphLoader::load(const std::string& basePath) {
|
|
WoweeGlyph out;
|
|
std::ifstream is(normalizePath(basePath), std::ios::binary);
|
|
if (!is) return out;
|
|
char magic[4];
|
|
is.read(magic, 4);
|
|
if (std::memcmp(magic, kMagic, 4) != 0) return out;
|
|
uint32_t version = 0;
|
|
if (!readPOD(is, version) || version != kVersion) return out;
|
|
if (!readStr(is, out.name)) return out;
|
|
uint32_t entryCount = 0;
|
|
if (!readPOD(is, entryCount)) return out;
|
|
if (entryCount > (1u << 20)) return out;
|
|
out.entries.resize(entryCount);
|
|
for (auto& e : out.entries) {
|
|
if (!readPOD(is, e.glyphId)) {
|
|
out.entries.clear(); return out;
|
|
}
|
|
if (!readStr(is, e.name) || !readStr(is, e.description) ||
|
|
!readStr(is, e.iconPath)) {
|
|
out.entries.clear(); return out;
|
|
}
|
|
if (!readPOD(is, e.glyphType)) {
|
|
out.entries.clear(); return out;
|
|
}
|
|
uint8_t pad[3];
|
|
is.read(reinterpret_cast<char*>(pad), 3);
|
|
if (is.gcount() != 3) { out.entries.clear(); return out; }
|
|
if (!readPOD(is, e.spellId) ||
|
|
!readPOD(is, e.itemId) ||
|
|
!readPOD(is, e.classMask) ||
|
|
!readPOD(is, e.requiredLevel)) {
|
|
out.entries.clear(); return out;
|
|
}
|
|
uint8_t pad2[2];
|
|
is.read(reinterpret_cast<char*>(pad2), 2);
|
|
if (is.gcount() != 2) { out.entries.clear(); return out; }
|
|
}
|
|
return out;
|
|
}
|
|
|
|
bool WoweeGlyphLoader::exists(const std::string& basePath) {
|
|
std::ifstream is(normalizePath(basePath), std::ios::binary);
|
|
return is.good();
|
|
}
|
|
|
|
WoweeGlyph WoweeGlyphLoader::makeStarter(const std::string& catalogName) {
|
|
WoweeGlyph c;
|
|
c.name = catalogName;
|
|
{
|
|
WoweeGlyph::Entry e;
|
|
e.glyphId = 1; e.name = "Glyph of Cleaving";
|
|
e.description = "Increases Cleave target count by one.";
|
|
e.iconPath = "Interface/Icons/Inv_Glyph_MajorWarrior.blp";
|
|
e.glyphType = WoweeGlyph::Major;
|
|
e.spellId = 56308; // canonical WotLK spellId
|
|
e.itemId = 43412; // canonical inscription item
|
|
e.classMask = WoweeGlyph::kClassWarrior;
|
|
e.requiredLevel = 25;
|
|
c.entries.push_back(e);
|
|
}
|
|
{
|
|
WoweeGlyph::Entry e;
|
|
e.glyphId = 2; e.name = "Glyph of Polymorph";
|
|
e.description = "Polymorph cleanses DoT effects on the target.";
|
|
e.iconPath = "Interface/Icons/Inv_Glyph_MajorMage.blp";
|
|
e.glyphType = WoweeGlyph::Major;
|
|
e.spellId = 56375;
|
|
e.itemId = 42735;
|
|
e.classMask = WoweeGlyph::kClassMage;
|
|
e.requiredLevel = 25;
|
|
c.entries.push_back(e);
|
|
}
|
|
{
|
|
WoweeGlyph::Entry e;
|
|
e.glyphId = 3; e.name = "Glyph of Vanish";
|
|
e.description = "Vanish increases your run speed for 6 sec.";
|
|
e.iconPath = "Interface/Icons/Inv_Glyph_MajorRogue.blp";
|
|
e.glyphType = WoweeGlyph::Major;
|
|
e.spellId = 56474;
|
|
e.itemId = 42964;
|
|
e.classMask = WoweeGlyph::kClassRogue;
|
|
e.requiredLevel = 25;
|
|
c.entries.push_back(e);
|
|
}
|
|
return c;
|
|
}
|
|
|
|
WoweeGlyph WoweeGlyphLoader::makeWarrior(const std::string& catalogName) {
|
|
WoweeGlyph c;
|
|
c.name = catalogName;
|
|
auto add = [&](uint32_t id, const char* name, uint8_t type,
|
|
uint32_t spellId, uint32_t itemId,
|
|
uint16_t reqLevel, const char* desc) {
|
|
WoweeGlyph::Entry e;
|
|
e.glyphId = id; e.name = name; e.description = desc;
|
|
e.iconPath = std::string("Interface/Icons/Inv_Glyph_") +
|
|
(type == WoweeGlyph::Major ? "MajorWarrior" : "MinorWarrior") +
|
|
".blp";
|
|
e.glyphType = type;
|
|
e.spellId = spellId; e.itemId = itemId;
|
|
e.classMask = WoweeGlyph::kClassWarrior;
|
|
e.requiredLevel = reqLevel;
|
|
c.entries.push_back(e);
|
|
};
|
|
// 3 majors.
|
|
add(100, "Glyph of Cleaving", WoweeGlyph::Major,
|
|
56308, 43412, 25, "Cleave hits +1 target.");
|
|
add(101, "Glyph of Bloodthirst", WoweeGlyph::Major,
|
|
58368, 43395, 50, "Bloodthirst heals you for additional health.");
|
|
add(102, "Glyph of Heroic Strike", WoweeGlyph::Major,
|
|
58367, 43399, 70, "Heroic Strike refunds rage on critical hits.");
|
|
// 3 minors.
|
|
add(110, "Glyph of Battle", WoweeGlyph::Minor,
|
|
58095, 43395, 25, "Battle Shout duration increased by 30 min.");
|
|
add(111, "Glyph of Charge", WoweeGlyph::Minor,
|
|
58097, 43413, 50, "Charge range increased by 5 yards.");
|
|
add(112, "Glyph of Mocking Blow", WoweeGlyph::Minor,
|
|
58099, 43421, 70, "Mocking Blow taunt duration extended by 4 sec.");
|
|
return c;
|
|
}
|
|
|
|
WoweeGlyph WoweeGlyphLoader::makeUniversal(const std::string& catalogName) {
|
|
WoweeGlyph c;
|
|
c.name = catalogName;
|
|
auto add = [&](uint32_t id, const char* name, uint8_t type,
|
|
uint32_t spellId, uint32_t itemId,
|
|
uint16_t reqLevel, const char* desc) {
|
|
WoweeGlyph::Entry e;
|
|
e.glyphId = id; e.name = name; e.description = desc;
|
|
e.iconPath = "Interface/Icons/Inv_Glyph_Generic.blp";
|
|
e.glyphType = type;
|
|
e.spellId = spellId; e.itemId = itemId;
|
|
e.classMask = WoweeGlyph::kClassAll; // any class
|
|
e.requiredLevel = reqLevel;
|
|
c.entries.push_back(e);
|
|
};
|
|
add(200, "Glyph of Hearthstone", WoweeGlyph::Minor,
|
|
59672, 43906, 25,
|
|
"Reduces Hearthstone cooldown by 5 minutes.");
|
|
add(201, "Glyph of Levitate", WoweeGlyph::Minor,
|
|
59673, 43911, 50,
|
|
"Levitate also makes you weightless underwater.");
|
|
add(202, "Glyph of Mounting", WoweeGlyph::Minor,
|
|
59674, 43912, 50,
|
|
"Reduces mount cast time by 1 second.");
|
|
add(203, "Glyph of Salvation", WoweeGlyph::Major,
|
|
59675, 43913, 70,
|
|
"Once per minute, automatically dispels a fear effect.");
|
|
return c;
|
|
}
|
|
|
|
} // namespace pipeline
|
|
} // namespace wowee
|