Updated Copyright year to 2013
[getmangos.git] / contrib / vmap_assembler / vmap_assembler.cpp
blobec4a4d55dfa81ff281628d7ee21c5229c37a87be
1 /*
2 * Copyright (C) 2005-2013 MaNGOS <http://getmangos.com/>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #include <string>
20 #include <iostream>
22 #include "TileAssembler.h"
24 //=======================================================
25 int main(int argc, char* argv[])
27 if (argc != 3)
29 std::cout << "usage: " << argv[0] << " <raw data dir> <vmap dest dir>" << std::endl;
30 return 1;
33 std::string src = argv[1];
34 std::string dest = argv[2];
36 std::cout << "using " << src << " as source directory and writing output to " << dest << std::endl;
38 VMAP::TileAssembler* ta = new VMAP::TileAssembler(src, dest);
40 if (!ta->convertWorld2())
42 std::cout << "exit with errors" << std::endl;
43 delete ta;
44 return 1;
47 delete ta;
48 std::cout << "Ok, all done" << std::endl;
49 return 0;