Renamed namespaces to all lowercase
[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 // from worldmap.cpp
27 Direction string_to_direction(const std::string& directory);
28
29 SpawnPoint::SpawnPoint(const Reader& slisp) : 
30   name(),
31   pos(),
32   auto_dir(D_NONE)
33 {
34   pos.x = -1;
35   pos.y = -1;
36   lisp::ListIterator iter(&slisp);
37   while(iter.next()) {
38     const std::string& token = iter.item();
39     if(token == "name") {
40       iter.value()->get(name);
41     } else if(token == "x") {
42       iter.value()->get(pos.x);
43     } else if(token == "y") {
44       iter.value()->get(pos.y);
45     } else if(token == "auto-dir") {
46       std::string s = "";
47       iter.value()->get(s);
48       auto_dir = string_to_direction(s);
49     } else {
50       log_warning << "unknown token '" << token << "' in SpawnPoint" << std::endl;
51     }
52   }
53
54   if(name == "")
55     throw std::runtime_error("No name specified for spawnpoint");
56   if(pos.x < 0 || pos.y < 0)
57     throw std::runtime_error("Invalid coordinates for spawnpoint");
58 }
59
60 }
61
62 /* EOF */