Update CMake to 3.2.1 in .travis.yml
[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 Reader& slisp) :
34   name(),
35   pos()
36 {
37   pos.x = -1;
38   pos.y = -1;
39   lisp::ListIterator iter(&slisp);
40   while(iter.next()) {
41     const std::string& token = iter.item();
42     if(token == "name") {
43       iter.value()->get(name);
44     } else if(token == "x") {
45       iter.value()->get(pos.x);
46     } else if(token == "y") {
47       iter.value()->get(pos.y);
48     } else {
49       log_warning << "unknown token '" << token << "' in SpawnPoint" << std::endl;
50     }
51   }
52
53   if(name == "")
54     throw std::runtime_error("No name specified for spawnpoint");
55   if(pos.x < 0 || pos.y < 0)
56     throw std::runtime_error("Invalid coordinates for spawnpoint");
57 }
58
59 /* EOF */