restore trunk
[supertux.git] / src / spawn_point.cpp
1 //  $Id$
2 //
3 //  SuperTux
4 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
5 //
6 //  This program is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU General Public License
8 //  as published by the Free Software Foundation; either version 2
9 //  of the License, or (at your option) any later version.
10 //
11 //  This program is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //  GNU General Public License for more details.
15 //
16 //  You should have received a copy of the GNU General Public License
17 //  along with this program; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 #include <config.h>
21
22 #include <stdexcept>
23 #include <iostream>
24 #include "spawn_point.hpp"
25 #include "lisp/lisp.hpp"
26 #include "lisp/list_iterator.hpp"
27 #include "log.hpp"
28
29 SpawnPoint::SpawnPoint()
30 {}
31
32 SpawnPoint::SpawnPoint(const SpawnPoint& other)
33     : name(other.name), pos(other.pos)
34 {}
35
36 SpawnPoint::SpawnPoint(const lisp::Lisp* slisp)
37 {
38     pos.x = -1;
39     pos.y = -1;
40     lisp::ListIterator iter(slisp);
41     while(iter.next()) {
42         const std::string& token = iter.item();
43         if(token == "name") {
44             iter.value()->get(name);
45         } else if(token == "x") {
46             iter.value()->get(pos.x);
47         } else if(token == "y") {
48             iter.value()->get(pos.y);
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 }