Added the <source> tag to the tiles file.
[potpourri.git] / src / main.cpp
blob99a6fa0e412247d3e08327427fccc72da3461b94
1 // Copyright 2008 Brian Caine
3 // This file is part of Potpourri.
5 // Potpourri is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Potpourri is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTIBILITY of FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Potpourri. If not, see <http://www.gnu.org/licenses/>.
19 // NOTES:
21 // Surprisingly enough, this has the main() function
23 #include <iostream>
24 #include <map>
25 #include <string>
27 #include "Engine.h"
29 using namespace fragrant;
31 const std::string ERROR = "error";
33 std::map<std::string, std::string> parseArguments(int argc, char* argv[]);
35 int main(int argc, char* argv[])
37 std::map<std::string, std::string> results = parseArguments(argc, argv);
39 if (results.find(ERROR) != results.end())
41 std::cerr << "main(): Bad command line arguments, exiting.."
42 << std::endl;
43 return 1;
46 Engine* engine = Engine::getEngine(results);
48 if (!engine)
50 std::cerr << "main(): Error making engine, exiting..."
51 << std::endl;
52 return 1;
55 int return_value = engine->run();
57 return return_value;
60 std::map<std::string, std::string> parseArguments(int argc, char* argv[])
62 std::map<std::string, std::string> results;
64 results[ERROR] = "";
66 return results;