431ee4ce86d9e7e5c1d93351c70bc22f546c61f5
[supertux.git] / src / worldmap / spawn_point.cpp
1 //  $Id$
2 //
3 //  SuperTux - Worldmap Spawnpoint
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 namespace WorldMapNS
30 {
31
32 // from worldmap.cpp
33 Direction string_to_direction(const std::string& directory);
34
35 SpawnPoint::SpawnPoint(const lisp::Lisp* slisp) : auto_dir(D_NONE)
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 if(token == "auto-dir") {
49             std::string s = "";
50             iter.value()->get(s);
51             auto_dir = string_to_direction(s);
52         } else {
53             log_warning << "unknown token '" << token << "' in SpawnPoint" << std::endl;
54         }
55     }
56
57     if(name == "")
58         throw std::runtime_error("No name specified for spawnpoint");
59     if(pos.x < 0 || pos.y < 0)
60         throw std::runtime_error("Invalid coordinates for spawnpoint");
61 }
62
63 }
64