initial commit, lordsawar source, slightly modified
[lordsawar] / src / signpost.cpp
1 //  Copyright (C) 2007, 2008, 2009 Ben Asselstine
2 //
3 //  This program is free software; you can redistribute it and/or modify
4 //  it under the terms of the GNU General Public License as published by
5 //  the Free Software Foundation; either version 3 of the License, or
6 //  (at your option) any later version.
7 //
8 //  This program is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 //  GNU Library General Public License for more details.
12 //
13 //  You should have received a copy of the GNU General Public License
14 //  along with this program; if not, write to the Free Software
15 //  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 
16 //  02110-1301, USA.
17
18 #include "signpost.h"
19 #include "GameMap.h"
20
21 std::string Signpost::d_tag = "signpost";
22
23 Signpost::Signpost(Vector<int> pos, std::string name)
24   :Location(pos), Renamable(name)
25 {
26     //mark the location on the game map as occupied by a signpost
27     GameMap::getInstance()->getTile(getPos())->setBuilding(Maptile::SIGNPOST);
28 }
29
30 Signpost::Signpost(XML_Helper* helper)
31     :Location(helper), Renamable(helper)
32 {
33     //mark the location on the game map as occupied by a signpost
34     GameMap::getInstance()->getTile(getPos())->setBuilding(Maptile::SIGNPOST);
35 }
36
37 Signpost::Signpost(const Signpost& s)
38   :Location(s), Renamable(s)
39 {
40 }
41 Signpost::Signpost(const Signpost& s, Vector<int> pos)
42   :Location(s, pos), Renamable(s)
43 {
44 }
45
46 Signpost::~Signpost()
47 {
48 }
49
50 bool Signpost::save(XML_Helper* helper) const
51 {
52     bool retval = true;
53
54     retval &= helper->openTag(Signpost::d_tag);
55     retval &= helper->saveData("id", d_id);
56     retval &= helper->saveData("x", getPos().x);
57     retval &= helper->saveData("y", getPos().y);
58     retval &= helper->saveData("name", getName(false));
59     retval &= helper->closeTag();
60     
61     return retval;
62 }