mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-06 09:03:52 +00:00
feat(editor): --list-zones CLI flag to discover custom zones without GUI
This commit is contained in:
parent
c75337ed2c
commit
8ac36e2f05
1 changed files with 14 additions and 0 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
#include "editor_app.hpp"
|
#include "editor_app.hpp"
|
||||||
#include "pipeline/wowee_model.hpp"
|
#include "pipeline/wowee_model.hpp"
|
||||||
#include "pipeline/asset_manager.hpp"
|
#include "pipeline/asset_manager.hpp"
|
||||||
|
#include "pipeline/custom_zone_discovery.hpp"
|
||||||
#include "core/logger.hpp"
|
#include "core/logger.hpp"
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
|
@ -29,6 +30,19 @@ int main(int argc, char* argv[]) {
|
||||||
adtMap = argv[++i];
|
adtMap = argv[++i];
|
||||||
adtX = std::atoi(argv[++i]);
|
adtX = std::atoi(argv[++i]);
|
||||||
adtY = std::atoi(argv[++i]);
|
adtY = std::atoi(argv[++i]);
|
||||||
|
} else if (std::strcmp(argv[i], "--list-zones") == 0) {
|
||||||
|
auto zones = wowee::pipeline::CustomZoneDiscovery::scan({"custom_zones", "output"});
|
||||||
|
if (zones.empty()) {
|
||||||
|
LOG_INFO("No custom zones found in custom_zones/ or output/");
|
||||||
|
} else {
|
||||||
|
LOG_INFO("Custom zones found:");
|
||||||
|
for (const auto& z : zones) {
|
||||||
|
LOG_INFO(" ", z.name, " — ", z.directory,
|
||||||
|
z.hasCreatures ? " [NPCs]" : "",
|
||||||
|
z.hasQuests ? " [Quests]" : "");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
} else if (std::strcmp(argv[i], "--version") == 0 || std::strcmp(argv[i], "-v") == 0) {
|
} else if (std::strcmp(argv[i], "--version") == 0 || std::strcmp(argv[i], "-v") == 0) {
|
||||||
LOG_INFO("Wowee World Editor v1.0.0");
|
LOG_INFO("Wowee World Editor v1.0.0");
|
||||||
LOG_INFO("Open formats: WOT/WHM/WOM/WOB/WCP (all novel, no Blizzard IP)");
|
LOG_INFO("Open formats: WOT/WHM/WOM/WOB/WCP (all novel, no Blizzard IP)");
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue