2026-01-30 20:23:39 +08:00
|
|
|
#include "Utils.hpp"
|
|
|
|
|
#include <VTAll.hpp>
|
|
|
|
|
#include <yycc.hpp>
|
|
|
|
|
#include <yycc/carton/termcolor.hpp>
|
|
|
|
|
#include <yycc/patch/stream.hpp>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
|
|
using namespace yycc::patch::stream;
|
|
|
|
|
namespace termcolor = yycc::carton::termcolor;
|
2026-01-30 15:23:01 +08:00
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
2026-01-30 20:23:39 +08:00
|
|
|
|
|
|
|
|
// Show splash
|
|
|
|
|
std::cout << termcolor::colored(u8"Ballance Map Inspector", termcolor::Color::LightYellow)
|
|
|
|
|
<< " (based on LibCmo " LIBCMO_VER_STR ") built at " __DATE__ " " __TIME__ << std::endl
|
|
|
|
|
<< u8"The inspector for checking whether your Ballance custom map can be loaded without any issues." << std::endl;
|
|
|
|
|
|
|
|
|
|
// Create reporter
|
|
|
|
|
BMapInspector::Utils::Reporter reporter;
|
|
|
|
|
|
|
|
|
|
// Show report
|
|
|
|
|
reporter.PrintConclusion();
|
|
|
|
|
reporter.PrintDetails();
|
|
|
|
|
|
2026-01-30 15:23:01 +08:00
|
|
|
return 0;
|
|
|
|
|
}
|