1 //  Copyright (C) 2007, 2008, 2009, 2014 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 #include "xmlhelper.h"
21 
22 Glib::ustring Signpost::d_tag = "signpost";
23 
Signpost(Vector<int> pos,Glib::ustring name)24 Signpost::Signpost(Vector<int> pos, Glib::ustring name)
25   :Location(pos), Renamable(name)
26 {
27     //mark the location on the game map as occupied by a signpost
28     GameMap::getInstance()->getTile(getPos())->setBuilding(Maptile::SIGNPOST);
29 }
30 
Signpost(XML_Helper * helper)31 Signpost::Signpost(XML_Helper* helper)
32     :Location(helper), Renamable(helper)
33 {
34     //mark the location on the game map as occupied by a signpost
35     GameMap::getInstance()->getTile(getPos())->setBuilding(Maptile::SIGNPOST);
36 }
37 
Signpost(const Signpost & s)38 Signpost::Signpost(const Signpost& s)
39   :Location(s), Renamable(s)
40 {
41 }
Signpost(const Signpost & s,Vector<int> pos)42 Signpost::Signpost(const Signpost& s, Vector<int> pos)
43   :Location(s, pos), Renamable(s)
44 {
45 }
46 
save(XML_Helper * helper) const47 bool Signpost::save(XML_Helper* helper) const
48 {
49     bool retval = true;
50 
51     retval &= helper->openTag(Signpost::d_tag);
52     retval &= helper->saveData("id", d_id);
53     retval &= helper->saveData("x", getPos().x);
54     retval &= helper->saveData("y", getPos().y);
55     retval &= helper->saveData("name", getName(false));
56     retval &= helper->closeTag();
57 
58     return retval;
59 }
60