// // Author: Michael Cameron // Email: chronokun@hotmail.com // #include #include #include #include #include #include "oopless-parser.hpp" #include "brushdef.hpp" using namespace std; // .map files for GTKRadiant bool writemap(const TWorldSpawn &x, const char *fn, void (*f) (std::stringstream &, const vector &)) { ofstream OutFile; OutFile.open(fn); if(!OutFile.is_open()) { return false; } OutFile << "{" << std::endl << "\"classname\" \"worldspawn\"" << std::endl; for(const TBrush& krBrush : x.m_Brushes) { OutFile << GetBrushString(krBrush, f); } OutFile << "}" << std::endl; return true; } int main(const int _kiArgC, const char** _kppcArgv) { // Check we have correct number of parameters if(_kiArgC < 3) { return(3); } convertmap(_kppcArgv[1], _kppcArgv[2], &brushdef_net); /* CMapParser Parser; const bool kbSuccess = Parser.LoadMap(_kppcArgv[1]); if(!kbSuccess) { return(1); } else { if (writemap(Parser.m_WorldSpawn, _kppcArgv[2], &brushdef_net)) { cout << "Successfully exported map." << endl; } else { cout << "Failed to write output file." << endl; } } */ return(0); }