Mercurial > fife-parpg
diff utils/dat_extract/usage.cpp @ 0:4a0efb7baf70
* Datasets becomes the new trunk and retires after that :-)
author | mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Sun, 29 Jun 2008 18:44:17 +0000 |
parents | |
children | 90005975cdbb |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/utils/dat_extract/usage.cpp Sun Jun 29 18:44:17 2008 +0000 @@ -0,0 +1,20 @@ +#include <iostream> +int print_usage(const char* prg_name, int exit_code) { + std::cout << "USAGE: " << prg_name; + std::cout << " [-s DAT_source] [-f 1|2] -t target_file" << std::endl; + std::cout << "" << std::endl; + std::cout << "This is a very limited DAT extraction utility that can read" << std::endl; + std::cout << "Fo1 and Fo2 DAT files and extract a single file." << std::endl; + std::cout << "" << std::endl; + std::cout << "The DAT source _has to be_ in the same directory, furthermore" << std::endl; + std::cout << "the program needs the 'content' directory (otherwise the engine" << std::endl; + std::cout << "will not start)." << std::endl; + std::cout << "" << std::endl; + std::cout << "The default DAT file is critter.dat, the default format is" << std::endl; + std::cout << "FO1; you have to specify '-f 2' if you work on Fo2 DAT files!" << std::endl; + std::cout << "" << std::endl; + std::cout << "The target_file has to be the full path inside the DAT file" << std::endl; + std::cout << "(using / as directory separator); the output file will have" << std::endl; + std::cout << "the same filename (in the current directory)." << std::endl; + exit(exit_code); +}