Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[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 {}
25
26 SpawnPoint::SpawnPoint(const SpawnPoint& other)
27   : name(other.name), pos(other.pos)
28 {}
29
30 SpawnPoint::SpawnPoint(const lisp::Lisp* slisp)
31 {
32   pos.x = -1;
33   pos.y = -1;
34   lisp::ListIterator iter(slisp);
35   while(iter.next()) {
36     const std::string& token = iter.item();
37     if(token == "name") {
38       iter.value()->get(name);
39     } else if(token == "x") {
40       iter.value()->get(pos.x);
41     } else if(token == "y") {
42       iter.value()->get(pos.y);
43     } else {
44       log_warning << "unknown token '" << token << "' in SpawnPoint" << std::endl;
45     }
46   }
47
48   if(name == "")
49     throw std::runtime_error("No name specified for spawnpoint");
50   if(pos.x < 0 || pos.y < 0)
51     throw std::runtime_error("Invalid coordinates for spawnpoint");
52 }
53
54 /* EOF */