feat(pipeline): add WTIT (Wowee Title catalog) format

Novel open replacement for Blizzard's CharTitles.dbc + the
AzerothCore-style character_title SQL table. The 30th open
format added to the editor.

Defines the player-display titles awarded for completing
achievements ("the Versatile"), reaching PvP ranks
("Sergeant Major" / "Stone Guard"), participating in raids
("Champion of the Naaru"), levelling a profession ("Master
Locksmith"), or seasonal events ("Brewmaster", "the
Hallowed").

Closes a long-standing gap: WACH.entry.titleReward has been
a free-form string since batch 116 with no formal catalog
to resolve against. WTIT systematizes those strings into a
real catalog — the runtime resolves WACH.titleReward to a
WTIT entry by name, then displays the titleId in the player
title selector.

Cross-references:
  WACH.entry.titleReward (string) ~= WTIT.entry.name
                                     (string match — runtime
                                      resolves achievement-
                                      granted titles by
                                      looking up matching WTIT
                                      entry by name)

Format:
  • magic "WTIT", version 1, little-endian
  • per title: titleId / name / nameMale / nameFemale /
    iconPath / prefix (suffix vs prefix display) /
    category / sortOrder

Enums:
  • Category (8): Achievement / Pvp / Raid / ClassTitle /
                   Event / Profession / Lore / Custom

API: WoweeTitleLoader::save / load / exists +
WoweeTitle::findById / findByName.

Three preset emitters showcase typical title catalogs:
  • makeStarter     — 4 titles (Versatile / Sergeant /
                       Champion / Hallowed) covering 4
                       categories
  • makePvp         — 28-title classic Honor System ladder
                       (14 Alliance ranks Private->Grand
                       Marshal + 14 Horde ranks Scout->High
                       Warlord)
  • makeAchievement — 8 achievement titles including "the
                       Versatile" matching WACH.makeMeta's
                       achievement 250 titleReward + capstone
                       profession titles

CLI added (5 flags, 608 documented total now):
  --gen-titles / --gen-titles-pvp / --gen-titles-achievement
  --info-wtit / --validate-wtit

Validator catches: titleId=0 + duplicates, empty name,
unknown category, gender variants set on only one side
(causes mixed-gender display when the runtime falls back to
canonical for the unset side).
This commit is contained in:
Kelsi 2026-05-09 17:07:56 -07:00
parent 1f808ca78b
commit eefaa5653b
8 changed files with 580 additions and 0 deletions

View file

@ -0,0 +1,224 @@
#include "pipeline/wowee_titles.hpp"
#include <cstdio>
#include <cstring>
#include <fstream>
namespace wowee {
namespace pipeline {
namespace {
constexpr char kMagic[4] = {'W', 'T', 'I', 'T'};
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) != ".wtit") {
base += ".wtit";
}
return base;
}
} // namespace
const WoweeTitle::Entry* WoweeTitle::findById(uint32_t titleId) const {
for (const auto& e : entries) if (e.titleId == titleId) return &e;
return nullptr;
}
const WoweeTitle::Entry* WoweeTitle::findByName(const std::string& n) const {
for (const auto& e : entries) if (e.name == n) return &e;
return nullptr;
}
const char* WoweeTitle::categoryName(uint8_t c) {
switch (c) {
case Achievement: return "achievement";
case Pvp: return "pvp";
case Raid: return "raid";
case ClassTitle: return "class";
case Event: return "event";
case Profession: return "profession";
case Lore: return "lore";
case Custom: return "custom";
default: return "unknown";
}
}
bool WoweeTitleLoader::save(const WoweeTitle& 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.titleId);
writeStr(os, e.name);
writeStr(os, e.nameMale);
writeStr(os, e.nameFemale);
writeStr(os, e.iconPath);
writePOD(os, e.prefix);
writePOD(os, e.category);
writePOD(os, e.sortOrder);
}
return os.good();
}
WoweeTitle WoweeTitleLoader::load(const std::string& basePath) {
WoweeTitle 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.titleId)) { out.entries.clear(); return out; }
if (!readStr(is, e.name) || !readStr(is, e.nameMale) ||
!readStr(is, e.nameFemale) || !readStr(is, e.iconPath)) {
out.entries.clear(); return out;
}
if (!readPOD(is, e.prefix) ||
!readPOD(is, e.category) ||
!readPOD(is, e.sortOrder)) {
out.entries.clear(); return out;
}
}
return out;
}
bool WoweeTitleLoader::exists(const std::string& basePath) {
std::ifstream is(normalizePath(basePath), std::ios::binary);
return is.good();
}
WoweeTitle WoweeTitleLoader::makeStarter(const std::string& catalogName) {
WoweeTitle c;
c.name = catalogName;
auto add = [&](uint32_t id, const char* name, uint8_t cat,
uint16_t sort, uint8_t prefix = 0) {
WoweeTitle::Entry e;
e.titleId = id; e.name = name; e.category = cat;
e.sortOrder = sort; e.prefix = prefix;
c.entries.push_back(e);
};
add(1, "the Versatile", WoweeTitle::Achievement, 100);
add(2, "Sergeant", WoweeTitle::Pvp, 200, 1);
add(3, "Champion", WoweeTitle::Raid, 300, 1);
add(4, "the Hallowed", WoweeTitle::Event, 400);
return c;
}
WoweeTitle WoweeTitleLoader::makePvp(const std::string& catalogName) {
WoweeTitle c;
c.name = catalogName;
// Classic Honor System rank ladder (14 tiers per faction).
// Most ranks share names across both factions; only the
// ranked-officer titles (Knight / Stone Guard etc.) split.
auto add = [&](uint32_t id, const char* name, uint16_t sort) {
WoweeTitle::Entry e;
e.titleId = id; e.name = name;
e.category = WoweeTitle::Pvp;
e.sortOrder = sort; e.prefix = 1;
c.entries.push_back(e);
};
// Alliance ladder.
add(101, "Private", 10);
add(102, "Corporal", 20);
add(103, "Sergeant", 30);
add(104, "Master Sergeant", 40);
add(105, "Sergeant Major", 50);
add(106, "Knight", 60);
add(107, "Knight-Lieutenant", 70);
add(108, "Knight-Captain", 80);
add(109, "Knight-Champion", 90);
add(110, "Lieutenant Commander", 100);
add(111, "Commander", 110);
add(112, "Marshal", 120);
add(113, "Field Marshal", 130);
add(114, "Grand Marshal", 140);
// Horde ladder (parallel ranks 6-14).
add(201, "Scout", 15);
add(202, "Grunt", 25);
add(203, "Sergeant", 35);
add(204, "Senior Sergeant", 45);
add(205, "First Sergeant", 55);
add(206, "Stone Guard", 65);
add(207, "Blood Guard", 75);
add(208, "Legionnaire", 85);
add(209, "Centurion", 95);
add(210, "Champion", 105);
add(211, "Lieutenant General", 115);
add(212, "General", 125);
add(213, "Warlord", 135);
add(214, "High Warlord", 145);
return c;
}
WoweeTitle WoweeTitleLoader::makeAchievement(const std::string& catalogName) {
WoweeTitle c;
c.name = catalogName;
auto add = [&](uint32_t id, const char* name, uint16_t sort,
uint8_t prefix = 0, uint8_t cat = WoweeTitle::Achievement) {
WoweeTitle::Entry e;
e.titleId = id; e.name = name; e.category = cat;
e.sortOrder = sort; e.prefix = prefix;
c.entries.push_back(e);
};
// titleId=1 + name="the Versatile" matches WACH.makeMeta
// achievement 250 (Jack of All Trades).
add(1, "the Versatile", 100);
add(2, "the Explorer", 200);
add(3, "Loremaster", 300, 1);
add(4, "the Insane", 400);
add(5, "the Patient", 500);
add(6, "Salty", 600);
// Profession capstone titles.
add(10, "Master Locksmith", 1000, 0, WoweeTitle::Profession);
add(11, "Master Chef", 1100, 0, WoweeTitle::Profession);
return c;
}
} // namespace pipeline
} // namespace wowee