Updated addon repository URL and improved debug output on download
[supertux.git] / src / worldmap / spawn_point.cpp
1 //  SuperTux - Worldmap Spawnpoint
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
3 //
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 3 of the License, or
7 //  (at your option) any later version.
8 //
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.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #include <stdexcept>
18
19 #include "lisp/list_iterator.hpp"
20 #include "util/log.hpp"
21 #include "util/reader.hpp"
22 #include "worldmap/spawn_point.hpp"
23
24 namespace worldmap {
25
26 SpawnPoint::SpawnPoint(const Reader& slisp) :
27   name(),
28   pos(),
29   auto_dir(D_NONE)
30 {
31   pos.x = -1;
32   pos.y = -1;
33   lisp::ListIterator iter(&slisp);
34   while(iter.next()) {
35     const std::string& token = iter.item();
36     if(token == "name") {
37       iter.value()->get(name);
38     } else if(token == "x") {
39       iter.value()->get(pos.x);
40     } else if(token == "y") {
41       iter.value()->get(pos.y);
42     } else if(token == "auto-dir") {
43       std::string s = "";
44       iter.value()->get(s);
45       auto_dir = string_to_direction(s);
46     } else {
47       log_warning << "unknown token '" << token << "' in SpawnPoint" << std::endl;
48     }
49   }
50
51   if(name == "")
52     throw std::runtime_error("No name specified for spawnpoint");
53   if(pos.x < 0 || pos.y < 0)
54     throw std::runtime_error("Invalid coordinates for spawnpoint");
55 }
56
57 }
58
59 /* EOF */