mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-06 09:03:52 +00:00
- File > Project > Git submenu: Init, Commit, Push, Pull operations - Init Git Repo: initializes git in the project directory with initial commit - Commit Changes: auto-saves zone then commits all changes - Push/Pull: sync with remote repositories for team collaboration - Git Status: shows current repo state directly in the menu - Teams can collaborate on custom expansions using standard git workflows
145 lines
5.2 KiB
C++
145 lines
5.2 KiB
C++
#include "editor_project.hpp"
|
|
#include "core/logger.hpp"
|
|
#include <fstream>
|
|
#include <filesystem>
|
|
|
|
namespace wowee {
|
|
namespace editor {
|
|
|
|
bool EditorProject::save(const std::string& path) const {
|
|
namespace fs = std::filesystem;
|
|
fs::create_directories(fs::path(path).parent_path());
|
|
|
|
std::ofstream f(path);
|
|
if (!f) return false;
|
|
|
|
f << "{\n";
|
|
f << " \"format\": \"wowee-project-1.0\",\n";
|
|
f << " \"name\": \"" << name << "\",\n";
|
|
f << " \"author\": \"" << author << "\",\n";
|
|
f << " \"description\": \"" << description << "\",\n";
|
|
f << " \"version\": \"" << version << "\",\n";
|
|
f << " \"startMapId\": " << startMapId << ",\n";
|
|
f << " \"zones\": [\n";
|
|
for (size_t i = 0; i < zones.size(); i++) {
|
|
const auto& z = zones[i];
|
|
f << " {\"mapName\": \"" << z.mapName << "\""
|
|
<< ", \"tileX\": " << z.tileX
|
|
<< ", \"tileY\": " << z.tileY
|
|
<< ", \"biome\": \"" << z.biome << "\""
|
|
<< ", \"description\": \"" << z.description << "\""
|
|
<< "}" << (i + 1 < zones.size() ? "," : "") << "\n";
|
|
}
|
|
f << " ]\n";
|
|
f << "}\n";
|
|
|
|
LOG_INFO("Project saved: ", path, " (", zones.size(), " zones)");
|
|
return true;
|
|
}
|
|
|
|
bool EditorProject::load(const std::string& path) {
|
|
std::ifstream f(path);
|
|
if (!f) return false;
|
|
std::string content((std::istreambuf_iterator<char>(f)),
|
|
std::istreambuf_iterator<char>());
|
|
|
|
auto findStr = [&](const std::string& key) -> std::string {
|
|
auto pos = content.find("\"" + key + "\"");
|
|
if (pos == std::string::npos) return "";
|
|
pos = content.find('"', content.find(':', pos) + 1);
|
|
if (pos == std::string::npos) return "";
|
|
auto end = content.find('"', pos + 1);
|
|
return content.substr(pos + 1, end - pos - 1);
|
|
};
|
|
|
|
name = findStr("name");
|
|
author = findStr("author");
|
|
description = findStr("description");
|
|
version = findStr("version");
|
|
projectDir = std::filesystem::path(path).parent_path().string();
|
|
|
|
// Parse zones from JSON array
|
|
zones.clear();
|
|
size_t zonesPos = content.find("\"zones\"");
|
|
if (zonesPos != std::string::npos) {
|
|
size_t start = zonesPos;
|
|
while ((start = content.find('{', start + 1)) != std::string::npos) {
|
|
auto end = content.find('}', start);
|
|
if (end == std::string::npos) break;
|
|
// Check we're still inside the zones array
|
|
auto closeBracket = content.find(']', zonesPos);
|
|
if (start > closeBracket) break;
|
|
|
|
std::string block = content.substr(start, end - start + 1);
|
|
ProjectZone z;
|
|
|
|
auto blockFindStr = [&](const std::string& key) -> std::string {
|
|
auto p = block.find("\"" + key + "\"");
|
|
if (p == std::string::npos) return "";
|
|
p = block.find('"', block.find(':', p) + 1);
|
|
if (p == std::string::npos) return "";
|
|
auto e = block.find('"', p + 1);
|
|
return block.substr(p + 1, e - p - 1);
|
|
};
|
|
|
|
z.mapName = blockFindStr("mapName");
|
|
z.biome = blockFindStr("biome");
|
|
z.description = blockFindStr("description");
|
|
|
|
auto txPos = block.find("\"tileX\":");
|
|
if (txPos != std::string::npos) z.tileX = std::stoi(block.substr(txPos + 8));
|
|
auto tyPos = block.find("\"tileY\":");
|
|
if (tyPos != std::string::npos) z.tileY = std::stoi(block.substr(tyPos + 8));
|
|
|
|
if (!z.mapName.empty()) zones.push_back(z);
|
|
start = end;
|
|
}
|
|
}
|
|
|
|
LOG_INFO("Project loaded: ", path, " (", name, ", ", zones.size(), " zones)");
|
|
return true;
|
|
}
|
|
|
|
bool EditorProject::initGitRepo() const {
|
|
if (projectDir.empty()) return false;
|
|
int ret = std::system(("cd \"" + projectDir + "\" && git init && git add -A && "
|
|
"git commit -m \"Initial project commit\"").c_str());
|
|
return ret == 0;
|
|
}
|
|
|
|
bool EditorProject::gitCommit(const std::string& message) const {
|
|
if (projectDir.empty()) return false;
|
|
int ret = std::system(("cd \"" + projectDir + "\" && git add -A && "
|
|
"git commit -m \"" + message + "\"").c_str());
|
|
return ret == 0;
|
|
}
|
|
|
|
bool EditorProject::gitPush() const {
|
|
if (projectDir.empty()) return false;
|
|
return std::system(("cd \"" + projectDir + "\" && git push").c_str()) == 0;
|
|
}
|
|
|
|
bool EditorProject::gitPull() const {
|
|
if (projectDir.empty()) return false;
|
|
return std::system(("cd \"" + projectDir + "\" && git pull").c_str()) == 0;
|
|
}
|
|
|
|
std::string EditorProject::gitStatus() const {
|
|
if (projectDir.empty()) return "No project directory";
|
|
std::string cmd = "cd \"" + projectDir + "\" && git status --short 2>&1";
|
|
FILE* pipe = popen(cmd.c_str(), "r");
|
|
if (!pipe) return "git not available";
|
|
char buf[256];
|
|
std::string result;
|
|
while (fgets(buf, sizeof(buf), pipe)) result += buf;
|
|
pclose(pipe);
|
|
return result.empty() ? "Clean (no changes)" : result;
|
|
}
|
|
|
|
std::string EditorProject::getZoneOutputDir(int zoneIdx) const {
|
|
if (zoneIdx < 0 || zoneIdx >= static_cast<int>(zones.size())) return "";
|
|
return projectDir + "/" + zones[zoneIdx].mapName;
|
|
}
|
|
|
|
} // namespace editor
|
|
} // namespace wowee
|