More -Weffc++ cleanup
[supertux.git] / src / supertux / spawn_point.cpp
1 //  SuperTux
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 "supertux/spawn_point.hpp"
21 #include "util/log.hpp"
22
23 SpawnPoint::SpawnPoint() :
24   name(),
25   pos()
26 {}
27
28 SpawnPoint::SpawnPoint(const SpawnPoint& other) :
29   name(other.name), 
30   pos(other.pos)
31 {}
32
33 SpawnPoint::SpawnPoint(const lisp::Lisp* slisp)
34 {
35   pos.x = -1;
36   pos.y = -1;
37   lisp::ListIterator iter(slisp);
38   while(iter.next()) {
39     const std::string& token = iter.item();
40     if(token == "name") {
41       iter.value()->get(name);
42     } else if(token == "x") {
43       iter.value()->get(pos.x);
44     } else if(token == "y") {
45       iter.value()->get(pos.y);
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 /* EOF */