From 73dab34d7cbe9490ee9e030f164e5f3df57a4829 Mon Sep 17 00:00:00 2001 From: sfan5 Date: Tue, 9 Aug 2016 16:45:39 +0200 Subject: [PATCH] Allow specifying location of colors.txt file --- TileGenerator.cpp | 5 ++--- mapper.cpp | 43 +++++++++++++++++++++++-------------------- 2 files changed, 25 insertions(+), 23 deletions(-) diff --git a/TileGenerator.cpp b/TileGenerator.cpp index ef8730a..280a172 100644 --- a/TileGenerator.cpp +++ b/TileGenerator.cpp @@ -230,9 +230,8 @@ void TileGenerator::parseColorsFile(const std::string &fileName) { ifstream in; in.open(fileName.c_str(), ifstream::in); - if (!in.is_open()) { - return; - } + if (!in.is_open()) + throw std::runtime_error("Specified colors file could not be found."); parseColorsStream(in); } diff --git a/mapper.cpp b/mapper.cpp index f9baa77..0f60eb9 100644 --- a/mapper.cpp +++ b/mapper.cpp @@ -1,12 +1,3 @@ -/* - * ===================================================================== - * Version: 1.0 - * Created: 22.08.2012 15:15:54 - * Author: Miroslav Bendík - * Company: LinuxOS.sk - * ===================================================================== - */ - #include #include #include @@ -16,8 +7,6 @@ #include #include "TileGenerator.h" -using namespace std; - void usage() { const char *usage_text = "minetestmapper [options]\n" @@ -37,10 +26,17 @@ void usage() " --backend \n" " --geometry x:y+w+h\n" " --zoom \n" + " --colors \n" "Color format: '#000000'\n"; std::cout << usage_text; } +std::string search_colors() +{ + // TBD + return "colors.txt"; +} + int main(int argc, char *argv[]) { static struct option long_options[] = @@ -61,14 +57,15 @@ int main(int argc, char *argv[]) {"geometry", required_argument, 0, 'g'}, {"min-y", required_argument, 0, 'a'}, {"max-y", required_argument, 0, 'c'}, - {"zoom", required_argument, 0, 'z'} + {"zoom", required_argument, 0, 'z'}, + {"colors", required_argument, 0, 'C'}, }; - string input; - string output; + std::string input; + std::string output; + std::string colors = ""; TileGenerator generator; - generator.parseColorsFile("colors.txt"); int option_index = 0; int c = 0; while (1) { @@ -122,7 +119,7 @@ int main(int argc, char *argv[]) generator.setBackend(optarg); break; case 'a': { - istringstream iss; + std::istringstream iss; iss.str(optarg); int miny; iss >> miny; @@ -130,7 +127,7 @@ int main(int argc, char *argv[]) } break; case 'c': { - istringstream iss; + std::istringstream iss; iss.str(optarg); int maxy; iss >> maxy; @@ -138,7 +135,7 @@ int main(int argc, char *argv[]) } break; case 'g': { - istringstream geometry; + std::istringstream geometry; geometry.str(optarg); int x, y, w, h; char c; @@ -151,21 +148,27 @@ int main(int argc, char *argv[]) } break; case 'z': { - istringstream iss; + std::istringstream iss; iss.str(optarg); int zoom; iss >> zoom; generator.setZoom(zoom); } break; + case 'C': + colors = optarg; + break; default: exit(1); } } + if(colors == "") + colors = search_colors(); try { + generator.parseColorsFile(colors); generator.generate(input, output); } catch(std::runtime_error e) { - std::cout<<"Exception: "<