feat(pipeline): add WUMV (Wowee Unit Movement Type) catalog
66th open format — replaces UnitMovement.dbc plus the
movement-modifier portions of CreatureModelData.dbc. Defines
movement speed types (walk / run / swim / flight / fly /
pitch) with their canonical baseline speeds in yards-per-
second, plus the temp speed buffs that stack on top
(Sprint, Aspect of the Cheetah, Travel Form).
12 movement categories cover the canonical surface (Walk /
Run / Backward / Swim / SwimBack / Turn / Flight /
FlightBack / Pitch / Fly / FlyBack / TempBuff). baseSpeed
is yards/second for baseline categories and ignored for
TempBuff entries (which use baseMultiplier instead).
maxMultiplier caps stacking — Sprint capped at 1.4 means
Sprint + Aspect of Cheetah doesn't exceed 1.4× run speed.
stackingPriority resolves conflicts when multiple buffs
of equal multiplier compete (higher wins).
CLI: --gen-umv (4 baseline at canonical WoW vanilla speeds:
Walk 2.5y/s, Run 7.0y/s, Swim 4.7y/s, Turn π rad/s),
--gen-umv-flight (5 flight entries — ground-rail Flight
7y/s, free Fly 14y/s, Pitch 1.5 rad/s, backward variants
at slower 4.5y/s), --gen-umv-buffs (5 temp speed buffs
matching real WoW spell auras with proper durations and
stacking priorities), --info-wumv, --validate-wumv with
--json variants. Validator catches id+name required,
category 0..11, baseMultiplier > 0 (otherwise unit freezes
in place), maxMultiplier >= baseMultiplier (cap below
floor would clamp the base down), baseline categories
need baseSpeed > 0, and Run < 3.0y/s warning (canonical
is 7.0y/s).
Format graph: 65 → 66 binary formats. CLI flag count: 870
→ 875.
2026-05-09 21:18:03 -07:00
|
|
|
#include "cli_unit_movement_catalog.hpp"
|
|
|
|
|
#include "cli_arg_parse.hpp"
|
|
|
|
|
#include "cli_box_emitter.hpp"
|
|
|
|
|
|
|
|
|
|
#include "pipeline/wowee_unit_movement.hpp"
|
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
#include <cstdio>
|
|
|
|
|
#include <cstring>
|
|
|
|
|
#include <fstream>
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
namespace wowee {
|
|
|
|
|
namespace editor {
|
|
|
|
|
namespace cli {
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
std::string stripWumvExt(std::string base) {
|
|
|
|
|
stripExt(base, ".wumv");
|
|
|
|
|
return base;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool saveOrError(const wowee::pipeline::WoweeUnitMovement& c,
|
|
|
|
|
const std::string& base, const char* cmd) {
|
|
|
|
|
if (!wowee::pipeline::WoweeUnitMovementLoader::save(c, base)) {
|
|
|
|
|
std::fprintf(stderr, "%s: failed to save %s.wumv\n",
|
|
|
|
|
cmd, base.c_str());
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void printGenSummary(const wowee::pipeline::WoweeUnitMovement& c,
|
|
|
|
|
const std::string& base) {
|
|
|
|
|
std::printf("Wrote %s.wumv\n", base.c_str());
|
|
|
|
|
std::printf(" catalog : %s\n", c.name.c_str());
|
|
|
|
|
std::printf(" types : %zu\n", c.entries.size());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int handleGenStarter(int& i, int argc, char** argv) {
|
|
|
|
|
std::string base = argv[++i];
|
|
|
|
|
std::string name = "StarterMovementTypes";
|
|
|
|
|
if (parseOptArg(i, argc, argv)) name = argv[++i];
|
|
|
|
|
base = stripWumvExt(base);
|
|
|
|
|
auto c = wowee::pipeline::WoweeUnitMovementLoader::makeStarter(name);
|
|
|
|
|
if (!saveOrError(c, base, "gen-umv")) return 1;
|
|
|
|
|
printGenSummary(c, base);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int handleGenFlight(int& i, int argc, char** argv) {
|
|
|
|
|
std::string base = argv[++i];
|
|
|
|
|
std::string name = "FlightMovementTypes";
|
|
|
|
|
if (parseOptArg(i, argc, argv)) name = argv[++i];
|
|
|
|
|
base = stripWumvExt(base);
|
|
|
|
|
auto c = wowee::pipeline::WoweeUnitMovementLoader::makeFlight(name);
|
|
|
|
|
if (!saveOrError(c, base, "gen-umv-flight")) return 1;
|
|
|
|
|
printGenSummary(c, base);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int handleGenBuffs(int& i, int argc, char** argv) {
|
|
|
|
|
std::string base = argv[++i];
|
|
|
|
|
std::string name = "MovementBuffs";
|
|
|
|
|
if (parseOptArg(i, argc, argv)) name = argv[++i];
|
|
|
|
|
base = stripWumvExt(base);
|
|
|
|
|
auto c = wowee::pipeline::WoweeUnitMovementLoader::makeBuffs(name);
|
|
|
|
|
if (!saveOrError(c, base, "gen-umv-buffs")) 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 = stripWumvExt(base);
|
|
|
|
|
if (!wowee::pipeline::WoweeUnitMovementLoader::exists(base)) {
|
|
|
|
|
std::fprintf(stderr, "WUMV not found: %s.wumv\n", base.c_str());
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
auto c = wowee::pipeline::WoweeUnitMovementLoader::load(base);
|
|
|
|
|
if (jsonOut) {
|
|
|
|
|
nlohmann::json j;
|
|
|
|
|
j["wumv"] = base + ".wumv";
|
|
|
|
|
j["name"] = c.name;
|
|
|
|
|
j["count"] = c.entries.size();
|
|
|
|
|
nlohmann::json arr = nlohmann::json::array();
|
|
|
|
|
for (const auto& e : c.entries) {
|
|
|
|
|
arr.push_back({
|
|
|
|
|
{"moveTypeId", e.moveTypeId},
|
|
|
|
|
{"name", e.name},
|
|
|
|
|
{"description", e.description},
|
|
|
|
|
{"iconPath", e.iconPath},
|
|
|
|
|
{"movementCategory", e.movementCategory},
|
|
|
|
|
{"movementCategoryName", wowee::pipeline::WoweeUnitMovement::movementCategoryName(e.movementCategory)},
|
|
|
|
|
{"requiresFlight", e.requiresFlight},
|
|
|
|
|
{"canStackBuffs", e.canStackBuffs},
|
|
|
|
|
{"baseSpeed", e.baseSpeed},
|
|
|
|
|
{"baseMultiplier", e.baseMultiplier},
|
|
|
|
|
{"maxMultiplier", e.maxMultiplier},
|
|
|
|
|
{"defaultDurationMs", e.defaultDurationMs},
|
|
|
|
|
{"stackingPriority", e.stackingPriority},
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
j["entries"] = arr;
|
|
|
|
|
std::printf("%s\n", j.dump(2).c_str());
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
std::printf("WUMV: %s.wumv\n", base.c_str());
|
|
|
|
|
std::printf(" catalog : %s\n", c.name.c_str());
|
|
|
|
|
std::printf(" types : %zu\n", c.entries.size());
|
|
|
|
|
if (c.entries.empty()) return 0;
|
|
|
|
|
std::printf(" id category baseSpeed baseMul maxMul dur(ms) prio flight stack name\n");
|
|
|
|
|
for (const auto& e : c.entries) {
|
|
|
|
|
std::printf(" %4u %-11s %7.2f %5.2f %5.2f %5u %3u %u %u %s\n",
|
|
|
|
|
e.moveTypeId,
|
|
|
|
|
wowee::pipeline::WoweeUnitMovement::movementCategoryName(e.movementCategory),
|
|
|
|
|
e.baseSpeed, e.baseMultiplier, e.maxMultiplier,
|
|
|
|
|
e.defaultDurationMs, e.stackingPriority,
|
|
|
|
|
e.requiresFlight, e.canStackBuffs,
|
|
|
|
|
e.name.c_str());
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-09 21:20:13 -07:00
|
|
|
int handleExportJson(int& i, int argc, char** argv) {
|
|
|
|
|
std::string base = argv[++i];
|
|
|
|
|
std::string outPath;
|
|
|
|
|
if (parseOptArg(i, argc, argv)) outPath = argv[++i];
|
|
|
|
|
base = stripWumvExt(base);
|
|
|
|
|
if (outPath.empty()) outPath = base + ".wumv.json";
|
|
|
|
|
if (!wowee::pipeline::WoweeUnitMovementLoader::exists(base)) {
|
|
|
|
|
std::fprintf(stderr,
|
|
|
|
|
"export-wumv-json: WUMV not found: %s.wumv\n", base.c_str());
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
auto c = wowee::pipeline::WoweeUnitMovementLoader::load(base);
|
|
|
|
|
nlohmann::json j;
|
|
|
|
|
j["name"] = c.name;
|
|
|
|
|
nlohmann::json arr = nlohmann::json::array();
|
|
|
|
|
for (const auto& e : c.entries) {
|
|
|
|
|
arr.push_back({
|
|
|
|
|
{"moveTypeId", e.moveTypeId},
|
|
|
|
|
{"name", e.name},
|
|
|
|
|
{"description", e.description},
|
|
|
|
|
{"iconPath", e.iconPath},
|
|
|
|
|
{"movementCategory", e.movementCategory},
|
|
|
|
|
{"movementCategoryName", wowee::pipeline::WoweeUnitMovement::movementCategoryName(e.movementCategory)},
|
|
|
|
|
{"requiresFlight", e.requiresFlight},
|
|
|
|
|
{"canStackBuffs", e.canStackBuffs},
|
|
|
|
|
{"baseSpeed", e.baseSpeed},
|
|
|
|
|
{"baseMultiplier", e.baseMultiplier},
|
|
|
|
|
{"maxMultiplier", e.maxMultiplier},
|
|
|
|
|
{"defaultDurationMs", e.defaultDurationMs},
|
|
|
|
|
{"stackingPriority", e.stackingPriority},
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
j["entries"] = arr;
|
|
|
|
|
std::ofstream out(outPath);
|
|
|
|
|
if (!out) {
|
|
|
|
|
std::fprintf(stderr,
|
|
|
|
|
"export-wumv-json: cannot write %s\n", outPath.c_str());
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
out << j.dump(2) << "\n";
|
|
|
|
|
out.close();
|
|
|
|
|
std::printf("Wrote %s\n", outPath.c_str());
|
|
|
|
|
std::printf(" source : %s.wumv\n", base.c_str());
|
|
|
|
|
std::printf(" types : %zu\n", c.entries.size());
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int handleImportJson(int& i, int argc, char** argv) {
|
|
|
|
|
std::string jsonPath = argv[++i];
|
|
|
|
|
std::string outBase;
|
|
|
|
|
if (parseOptArg(i, argc, argv)) outBase = argv[++i];
|
|
|
|
|
if (outBase.empty()) {
|
|
|
|
|
outBase = jsonPath;
|
|
|
|
|
std::string suffix = ".wumv.json";
|
|
|
|
|
if (outBase.size() > suffix.size() &&
|
|
|
|
|
outBase.substr(outBase.size() - suffix.size()) == suffix) {
|
|
|
|
|
outBase = outBase.substr(0, outBase.size() - suffix.size());
|
|
|
|
|
} else if (outBase.size() > 5 &&
|
|
|
|
|
outBase.substr(outBase.size() - 5) == ".json") {
|
|
|
|
|
outBase = outBase.substr(0, outBase.size() - 5);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
outBase = stripWumvExt(outBase);
|
|
|
|
|
std::ifstream in(jsonPath);
|
|
|
|
|
if (!in) {
|
|
|
|
|
std::fprintf(stderr,
|
|
|
|
|
"import-wumv-json: cannot read %s\n", jsonPath.c_str());
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
nlohmann::json j;
|
|
|
|
|
try { in >> j; }
|
|
|
|
|
catch (const std::exception& e) {
|
|
|
|
|
std::fprintf(stderr,
|
|
|
|
|
"import-wumv-json: bad JSON in %s: %s\n",
|
|
|
|
|
jsonPath.c_str(), e.what());
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
auto categoryFromName = [](const std::string& s) -> uint8_t {
|
|
|
|
|
if (s == "walk") return wowee::pipeline::WoweeUnitMovement::Walk;
|
|
|
|
|
if (s == "run") return wowee::pipeline::WoweeUnitMovement::Run;
|
|
|
|
|
if (s == "backward") return wowee::pipeline::WoweeUnitMovement::Backward;
|
|
|
|
|
if (s == "swim") return wowee::pipeline::WoweeUnitMovement::Swim;
|
|
|
|
|
if (s == "swim-back") return wowee::pipeline::WoweeUnitMovement::SwimBack;
|
|
|
|
|
if (s == "turn") return wowee::pipeline::WoweeUnitMovement::Turn;
|
|
|
|
|
if (s == "flight") return wowee::pipeline::WoweeUnitMovement::Flight;
|
|
|
|
|
if (s == "flight-back") return wowee::pipeline::WoweeUnitMovement::FlightBack;
|
|
|
|
|
if (s == "pitch") return wowee::pipeline::WoweeUnitMovement::Pitch;
|
|
|
|
|
if (s == "fly") return wowee::pipeline::WoweeUnitMovement::Fly;
|
|
|
|
|
if (s == "fly-back") return wowee::pipeline::WoweeUnitMovement::FlyBack;
|
|
|
|
|
if (s == "temp-buff") return wowee::pipeline::WoweeUnitMovement::TempBuff;
|
|
|
|
|
return wowee::pipeline::WoweeUnitMovement::Run;
|
|
|
|
|
};
|
|
|
|
|
wowee::pipeline::WoweeUnitMovement c;
|
|
|
|
|
c.name = j.value("name", std::string{});
|
|
|
|
|
if (j.contains("entries") && j["entries"].is_array()) {
|
|
|
|
|
for (const auto& je : j["entries"]) {
|
|
|
|
|
wowee::pipeline::WoweeUnitMovement::Entry e;
|
|
|
|
|
e.moveTypeId = je.value("moveTypeId", 0u);
|
|
|
|
|
e.name = je.value("name", std::string{});
|
|
|
|
|
e.description = je.value("description", std::string{});
|
|
|
|
|
e.iconPath = je.value("iconPath", std::string{});
|
|
|
|
|
if (je.contains("movementCategory") &&
|
|
|
|
|
je["movementCategory"].is_number_integer()) {
|
|
|
|
|
e.movementCategory = static_cast<uint8_t>(
|
|
|
|
|
je["movementCategory"].get<int>());
|
|
|
|
|
} else if (je.contains("movementCategoryName") &&
|
|
|
|
|
je["movementCategoryName"].is_string()) {
|
|
|
|
|
e.movementCategory = categoryFromName(
|
|
|
|
|
je["movementCategoryName"].get<std::string>());
|
|
|
|
|
}
|
|
|
|
|
e.requiresFlight = static_cast<uint8_t>(
|
|
|
|
|
je.value("requiresFlight", 0));
|
|
|
|
|
e.canStackBuffs = static_cast<uint8_t>(
|
|
|
|
|
je.value("canStackBuffs", 1));
|
|
|
|
|
e.baseSpeed = je.value("baseSpeed", 7.0f);
|
|
|
|
|
e.baseMultiplier = je.value("baseMultiplier", 1.0f);
|
|
|
|
|
e.maxMultiplier = je.value("maxMultiplier", 1.4f);
|
|
|
|
|
e.defaultDurationMs = je.value("defaultDurationMs", 0u);
|
|
|
|
|
e.stackingPriority = static_cast<uint8_t>(
|
|
|
|
|
je.value("stackingPriority", 0));
|
|
|
|
|
c.entries.push_back(e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!wowee::pipeline::WoweeUnitMovementLoader::save(c, outBase)) {
|
|
|
|
|
std::fprintf(stderr,
|
|
|
|
|
"import-wumv-json: failed to save %s.wumv\n", outBase.c_str());
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
std::printf("Wrote %s.wumv\n", outBase.c_str());
|
|
|
|
|
std::printf(" source : %s\n", jsonPath.c_str());
|
|
|
|
|
std::printf(" types : %zu\n", c.entries.size());
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
feat(pipeline): add WUMV (Wowee Unit Movement Type) catalog
66th open format — replaces UnitMovement.dbc plus the
movement-modifier portions of CreatureModelData.dbc. Defines
movement speed types (walk / run / swim / flight / fly /
pitch) with their canonical baseline speeds in yards-per-
second, plus the temp speed buffs that stack on top
(Sprint, Aspect of the Cheetah, Travel Form).
12 movement categories cover the canonical surface (Walk /
Run / Backward / Swim / SwimBack / Turn / Flight /
FlightBack / Pitch / Fly / FlyBack / TempBuff). baseSpeed
is yards/second for baseline categories and ignored for
TempBuff entries (which use baseMultiplier instead).
maxMultiplier caps stacking — Sprint capped at 1.4 means
Sprint + Aspect of Cheetah doesn't exceed 1.4× run speed.
stackingPriority resolves conflicts when multiple buffs
of equal multiplier compete (higher wins).
CLI: --gen-umv (4 baseline at canonical WoW vanilla speeds:
Walk 2.5y/s, Run 7.0y/s, Swim 4.7y/s, Turn π rad/s),
--gen-umv-flight (5 flight entries — ground-rail Flight
7y/s, free Fly 14y/s, Pitch 1.5 rad/s, backward variants
at slower 4.5y/s), --gen-umv-buffs (5 temp speed buffs
matching real WoW spell auras with proper durations and
stacking priorities), --info-wumv, --validate-wumv with
--json variants. Validator catches id+name required,
category 0..11, baseMultiplier > 0 (otherwise unit freezes
in place), maxMultiplier >= baseMultiplier (cap below
floor would clamp the base down), baseline categories
need baseSpeed > 0, and Run < 3.0y/s warning (canonical
is 7.0y/s).
Format graph: 65 → 66 binary formats. CLI flag count: 870
→ 875.
2026-05-09 21:18:03 -07:00
|
|
|
int handleValidate(int& i, int argc, char** argv) {
|
|
|
|
|
std::string base = argv[++i];
|
|
|
|
|
bool jsonOut = consumeJsonFlag(i, argc, argv);
|
|
|
|
|
base = stripWumvExt(base);
|
|
|
|
|
if (!wowee::pipeline::WoweeUnitMovementLoader::exists(base)) {
|
|
|
|
|
std::fprintf(stderr,
|
|
|
|
|
"validate-wumv: WUMV not found: %s.wumv\n", base.c_str());
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
auto c = wowee::pipeline::WoweeUnitMovementLoader::load(base);
|
|
|
|
|
std::vector<std::string> errors;
|
|
|
|
|
std::vector<std::string> warnings;
|
|
|
|
|
if (c.entries.empty()) {
|
|
|
|
|
warnings.push_back("catalog has zero entries");
|
|
|
|
|
}
|
|
|
|
|
std::vector<uint32_t> idsSeen;
|
|
|
|
|
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.moveTypeId);
|
|
|
|
|
if (!e.name.empty()) ctx += " " + e.name;
|
|
|
|
|
ctx += ")";
|
|
|
|
|
if (e.moveTypeId == 0)
|
|
|
|
|
errors.push_back(ctx + ": moveTypeId is 0");
|
|
|
|
|
if (e.name.empty())
|
|
|
|
|
errors.push_back(ctx + ": name is empty");
|
|
|
|
|
if (e.movementCategory > wowee::pipeline::WoweeUnitMovement::TempBuff) {
|
|
|
|
|
errors.push_back(ctx + ": movementCategory " +
|
|
|
|
|
std::to_string(e.movementCategory) + " not in 0..11");
|
|
|
|
|
}
|
|
|
|
|
if (e.baseMultiplier <= 0.0f) {
|
|
|
|
|
errors.push_back(ctx +
|
|
|
|
|
": baseMultiplier " +
|
|
|
|
|
std::to_string(e.baseMultiplier) +
|
|
|
|
|
" <= 0 (would freeze unit in place)");
|
|
|
|
|
}
|
|
|
|
|
if (e.maxMultiplier < e.baseMultiplier) {
|
|
|
|
|
errors.push_back(ctx + ": maxMultiplier " +
|
|
|
|
|
std::to_string(e.maxMultiplier) +
|
|
|
|
|
" < baseMultiplier " +
|
|
|
|
|
std::to_string(e.baseMultiplier) +
|
|
|
|
|
" (cap below floor — base would be clamped down)");
|
|
|
|
|
}
|
|
|
|
|
// Baseline movement (Walk/Run/Swim/Turn) should have
|
|
|
|
|
// a positive baseSpeed — TempBuff entries are
|
|
|
|
|
// multiplier-only and may have baseSpeed=0.
|
|
|
|
|
bool isBaseline =
|
|
|
|
|
e.movementCategory >= wowee::pipeline::WoweeUnitMovement::Walk &&
|
|
|
|
|
e.movementCategory <= wowee::pipeline::WoweeUnitMovement::FlyBack;
|
|
|
|
|
if (isBaseline && e.baseSpeed <= 0.0f) {
|
|
|
|
|
errors.push_back(ctx +
|
|
|
|
|
": baseline movement category with baseSpeed " +
|
|
|
|
|
std::to_string(e.baseSpeed) + " <= 0 — unit "
|
|
|
|
|
"won't move on this category");
|
|
|
|
|
}
|
|
|
|
|
// Run speed below walk speed is suspicious — flag.
|
|
|
|
|
// Run is ~7.0y/s, walk is ~2.5y/s in canonical WoW.
|
|
|
|
|
if (e.movementCategory == wowee::pipeline::WoweeUnitMovement::Run &&
|
|
|
|
|
e.baseSpeed < 3.0f) {
|
|
|
|
|
warnings.push_back(ctx +
|
|
|
|
|
": Run baseSpeed " +
|
|
|
|
|
std::to_string(e.baseSpeed) +
|
|
|
|
|
" unusually slow (canonical 7.0y/s) — verify intent");
|
|
|
|
|
}
|
|
|
|
|
for (uint32_t prev : idsSeen) {
|
|
|
|
|
if (prev == e.moveTypeId) {
|
|
|
|
|
errors.push_back(ctx + ": duplicate moveTypeId");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
idsSeen.push_back(e.moveTypeId);
|
|
|
|
|
}
|
|
|
|
|
bool ok = errors.empty();
|
|
|
|
|
if (jsonOut) {
|
|
|
|
|
nlohmann::json j;
|
|
|
|
|
j["wumv"] = base + ".wumv";
|
|
|
|
|
j["ok"] = ok;
|
|
|
|
|
j["errors"] = errors;
|
|
|
|
|
j["warnings"] = warnings;
|
|
|
|
|
std::printf("%s\n", j.dump(2).c_str());
|
|
|
|
|
return ok ? 0 : 1;
|
|
|
|
|
}
|
|
|
|
|
std::printf("validate-wumv: %s.wumv\n", base.c_str());
|
|
|
|
|
if (ok && warnings.empty()) {
|
|
|
|
|
std::printf(" OK — %zu movement types, all moveTypeIds unique, all multipliers consistent\n",
|
|
|
|
|
c.entries.size());
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (!warnings.empty()) {
|
|
|
|
|
std::printf(" warnings (%zu):\n", warnings.size());
|
|
|
|
|
for (const auto& w : warnings)
|
|
|
|
|
std::printf(" - %s\n", w.c_str());
|
|
|
|
|
}
|
|
|
|
|
if (!errors.empty()) {
|
|
|
|
|
std::printf(" ERRORS (%zu):\n", errors.size());
|
|
|
|
|
for (const auto& e : errors)
|
|
|
|
|
std::printf(" - %s\n", e.c_str());
|
|
|
|
|
}
|
|
|
|
|
return ok ? 0 : 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
|
|
bool handleUnitMovementCatalog(int& i, int argc, char** argv,
|
|
|
|
|
int& outRc) {
|
|
|
|
|
if (std::strcmp(argv[i], "--gen-umv") == 0 && i + 1 < argc) {
|
|
|
|
|
outRc = handleGenStarter(i, argc, argv); return true;
|
|
|
|
|
}
|
|
|
|
|
if (std::strcmp(argv[i], "--gen-umv-flight") == 0 && i + 1 < argc) {
|
|
|
|
|
outRc = handleGenFlight(i, argc, argv); return true;
|
|
|
|
|
}
|
|
|
|
|
if (std::strcmp(argv[i], "--gen-umv-buffs") == 0 && i + 1 < argc) {
|
|
|
|
|
outRc = handleGenBuffs(i, argc, argv); return true;
|
|
|
|
|
}
|
|
|
|
|
if (std::strcmp(argv[i], "--info-wumv") == 0 && i + 1 < argc) {
|
|
|
|
|
outRc = handleInfo(i, argc, argv); return true;
|
|
|
|
|
}
|
|
|
|
|
if (std::strcmp(argv[i], "--validate-wumv") == 0 && i + 1 < argc) {
|
|
|
|
|
outRc = handleValidate(i, argc, argv); return true;
|
|
|
|
|
}
|
2026-05-09 21:20:13 -07:00
|
|
|
if (std::strcmp(argv[i], "--export-wumv-json") == 0 && i + 1 < argc) {
|
|
|
|
|
outRc = handleExportJson(i, argc, argv); return true;
|
|
|
|
|
}
|
|
|
|
|
if (std::strcmp(argv[i], "--import-wumv-json") == 0 && i + 1 < argc) {
|
|
|
|
|
outRc = handleImportJson(i, argc, argv); return true;
|
|
|
|
|
}
|
feat(pipeline): add WUMV (Wowee Unit Movement Type) catalog
66th open format — replaces UnitMovement.dbc plus the
movement-modifier portions of CreatureModelData.dbc. Defines
movement speed types (walk / run / swim / flight / fly /
pitch) with their canonical baseline speeds in yards-per-
second, plus the temp speed buffs that stack on top
(Sprint, Aspect of the Cheetah, Travel Form).
12 movement categories cover the canonical surface (Walk /
Run / Backward / Swim / SwimBack / Turn / Flight /
FlightBack / Pitch / Fly / FlyBack / TempBuff). baseSpeed
is yards/second for baseline categories and ignored for
TempBuff entries (which use baseMultiplier instead).
maxMultiplier caps stacking — Sprint capped at 1.4 means
Sprint + Aspect of Cheetah doesn't exceed 1.4× run speed.
stackingPriority resolves conflicts when multiple buffs
of equal multiplier compete (higher wins).
CLI: --gen-umv (4 baseline at canonical WoW vanilla speeds:
Walk 2.5y/s, Run 7.0y/s, Swim 4.7y/s, Turn π rad/s),
--gen-umv-flight (5 flight entries — ground-rail Flight
7y/s, free Fly 14y/s, Pitch 1.5 rad/s, backward variants
at slower 4.5y/s), --gen-umv-buffs (5 temp speed buffs
matching real WoW spell auras with proper durations and
stacking priorities), --info-wumv, --validate-wumv with
--json variants. Validator catches id+name required,
category 0..11, baseMultiplier > 0 (otherwise unit freezes
in place), maxMultiplier >= baseMultiplier (cap below
floor would clamp the base down), baseline categories
need baseSpeed > 0, and Run < 3.0y/s warning (canonical
is 7.0y/s).
Format graph: 65 → 66 binary formats. CLI flag count: 870
→ 875.
2026-05-09 21:18:03 -07:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace cli
|
|
|
|
|
} // namespace editor
|
|
|
|
|
} // namespace wowee
|