#include #include "boost/program_options.hpp" #include "boost/filesystem.hpp" #include "boost/filesystem/fstream.hpp" #include "RezParser.generated.hh" #include "RezLexer.h" #include "RezWorld.h" #include "ResourceFiles.h" #include "BinaryIO.h" namespace po = boost::program_options; namespace fs = boost::filesystem; static po::options_description desc; static void usage() { std::cerr << "Usage: " << "Rez [options] input-file\n"; std::cerr << desc << std::endl; } int main(int argc, const char *argv[]) { desc.add_options() ("help,h", "show this help message") ("output,o", po::value()->default_value("rez.output.rsrc"), "output file") ("type,t", po::value()->default_value("rsrc"), "output file finder type code") ("creator,c", po::value()->default_value("RSED"), "output file finder creator code") ("debug,d", "debug logging") ; po::options_description hidden, alldesc; hidden.add_options() ("input", po::value>(), "input file" ) ; alldesc.add(desc).add(hidden); po::variables_map options; try { auto parsed = po::command_line_parser(argc, argv) .options(alldesc) .positional(po::positional_options_description().add("input", -1)) .style(po::command_line_style::default_style | po::command_line_style::allow_long_disguise) .run(); po::store(parsed, options); } catch(po::error& e) { std::cerr << "ERROR: " << e.what() << std::endl << std::endl; usage(); return 1; } po::notify(options); if(options.count("help") || !options.count("input")) { usage(); return 0; } RezWorld world; if(options.count("debug")) world.verboseFlag = true; for(std::string fn : options["input"].as>()) { RezLexer lexer(fn); RezParser parser(lexer, world); parser.parse(); } std::string outfile = options["output"].as(); { fs::path dataPath(outfile); fs::create_directory(dataPath.parent_path() / ".rsrc"); fs::create_directory(dataPath.parent_path() / ".finf"); fs::ofstream dataOut(dataPath); fs::ofstream rsrcOut(dataPath.parent_path() / ".rsrc" / dataPath.filename()); fs::ofstream finfOut(dataPath.parent_path() / ".finf" / dataPath.filename()); world.getResources().writeFork(rsrcOut); ostype(finfOut, options["type"].as()); ostype(finfOut, options["creator"].as()); for(int i = 8; i < 32; i++) byte(finfOut, 0); } return 0; }