#include "cli_factions_catalog.hpp" #include "cli_arg_parse.hpp" #include "cli_box_emitter.hpp" #include "pipeline/wowee_factions.hpp" #include #include #include #include #include #include #include namespace wowee { namespace editor { namespace cli { namespace { std::string stripWfacExt(std::string base) { stripExt(base, ".wfac"); return base; } void appendRepFlagsStr(std::string& s, uint32_t flags) { if (flags & wowee::pipeline::WoweeFaction::VisibleOnTab) s += "visible "; if (flags & wowee::pipeline::WoweeFaction::AtWarDefault) s += "at-war "; if (flags & wowee::pipeline::WoweeFaction::Hidden) s += "hidden "; if (flags & wowee::pipeline::WoweeFaction::NoReputation) s += "no-rep "; if (flags & wowee::pipeline::WoweeFaction::IsHeader) s += "header "; if (s.empty()) s = "-"; else if (s.back() == ' ') s.pop_back(); } bool saveOrError(const wowee::pipeline::WoweeFaction& c, const std::string& base, const char* cmd) { if (!wowee::pipeline::WoweeFactionLoader::save(c, base)) { std::fprintf(stderr, "%s: failed to save %s.wfac\n", cmd, base.c_str()); return false; } return true; } void printGenSummary(const wowee::pipeline::WoweeFaction& c, const std::string& base) { std::printf("Wrote %s.wfac\n", base.c_str()); std::printf(" catalog : %s\n", c.name.c_str()); std::printf(" factions : %zu\n", c.entries.size()); } int handleGenStarter(int& i, int argc, char** argv) { std::string base = argv[++i]; std::string name = "StarterFactions"; if (parseOptArg(i, argc, argv)) name = argv[++i]; base = stripWfacExt(base); auto c = wowee::pipeline::WoweeFactionLoader::makeStarter(name); if (!saveOrError(c, base, "gen-factions")) return 1; printGenSummary(c, base); return 0; } int handleGenAlliance(int& i, int argc, char** argv) { std::string base = argv[++i]; std::string name = "AllianceFactions"; if (parseOptArg(i, argc, argv)) name = argv[++i]; base = stripWfacExt(base); auto c = wowee::pipeline::WoweeFactionLoader::makeAlliance(name); if (!saveOrError(c, base, "gen-factions-alliance")) return 1; printGenSummary(c, base); return 0; } int handleGenWildlife(int& i, int argc, char** argv) { std::string base = argv[++i]; std::string name = "WildlifeFactions"; if (parseOptArg(i, argc, argv)) name = argv[++i]; base = stripWfacExt(base); auto c = wowee::pipeline::WoweeFactionLoader::makeWildlife(name); if (!saveOrError(c, base, "gen-factions-wildlife")) return 1; printGenSummary(c, base); return 0; } int handleInfo(int& i, int argc, char** argv) { std::string base = argv[++i]; bool jsonOut = consumeJsonFlag(i, argc, argv); base = stripWfacExt(base); if (!wowee::pipeline::WoweeFactionLoader::exists(base)) { std::fprintf(stderr, "WFAC not found: %s.wfac\n", base.c_str()); return 1; } auto c = wowee::pipeline::WoweeFactionLoader::load(base); if (jsonOut) { nlohmann::json j; j["wfac"] = base + ".wfac"; j["name"] = c.name; j["count"] = c.entries.size(); nlohmann::json arr = nlohmann::json::array(); for (const auto& e : c.entries) { std::string fs; appendRepFlagsStr(fs, e.reputationFlags); nlohmann::json je; je["factionId"] = e.factionId; je["parentFactionId"] = e.parentFactionId; je["name"] = e.name; je["description"] = e.description; je["reputationFlags"] = e.reputationFlags; je["reputationFlagsStr"] = fs; je["baseReputation"] = e.baseReputation; je["thresholdHostile"] = e.thresholdHostile; je["thresholdUnfriendly"] = e.thresholdUnfriendly; je["thresholdNeutral"] = e.thresholdNeutral; je["thresholdFriendly"] = e.thresholdFriendly; je["thresholdHonored"] = e.thresholdHonored; je["thresholdRevered"] = e.thresholdRevered; je["thresholdExalted"] = e.thresholdExalted; je["enemies"] = e.enemies; je["friends"] = e.friends; arr.push_back(je); } j["entries"] = arr; std::printf("%s\n", j.dump(2).c_str()); return 0; } std::printf("WFAC: %s.wfac\n", base.c_str()); std::printf(" catalog : %s\n", c.name.c_str()); std::printf(" factions : %zu\n", c.entries.size()); if (c.entries.empty()) return 0; std::printf(" id parent flags enemies friends name\n"); for (const auto& e : c.entries) { std::string fs; appendRepFlagsStr(fs, e.reputationFlags); std::printf(" %4u %4u %-12s %2zu %2zu %s\n", e.factionId, e.parentFactionId, fs.c_str(), e.enemies.size(), e.friends.size(), e.name.c_str()); } return 0; } int handleValidate(int& i, int argc, char** argv) { std::string base = argv[++i]; bool jsonOut = consumeJsonFlag(i, argc, argv); base = stripWfacExt(base); if (!wowee::pipeline::WoweeFactionLoader::exists(base)) { std::fprintf(stderr, "validate-wfac: WFAC not found: %s.wfac\n", base.c_str()); return 1; } auto c = wowee::pipeline::WoweeFactionLoader::load(base); std::vector errors; std::vector warnings; if (c.entries.empty()) { warnings.push_back("catalog has zero entries"); } std::vector idsSeen; idsSeen.reserve(c.entries.size()); for (size_t k = 0; k < c.entries.size(); ++k) { const auto& e = c.entries[k]; std::string ctx = "entry " + std::to_string(k) + " (id=" + std::to_string(e.factionId); if (!e.name.empty()) ctx += " " + e.name; ctx += ")"; if (e.factionId == 0) { errors.push_back(ctx + ": factionId is 0"); } if (e.name.empty()) { errors.push_back(ctx + ": name is empty"); } // Threshold ordering: hostile < unfriendly < neutral < // friendly < honored < revered < exalted. if (e.thresholdHostile >= e.thresholdUnfriendly || e.thresholdUnfriendly >= e.thresholdNeutral || e.thresholdNeutral >= e.thresholdFriendly || e.thresholdFriendly >= e.thresholdHonored || e.thresholdHonored >= e.thresholdRevered || e.thresholdRevered >= e.thresholdExalted) { errors.push_back(ctx + ": reputation thresholds not strictly ascending " "(hostile