initial commit, lordsawar source, slightly modified
[lordsawar] / src / bridgelist.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 <sigc++/functors/mem_fun.h>
19
20 #include "bridgelist.h"
21 #include "bridge.h"
22 #include "xmlhelper.h"
23
24 std::string Bridgelist::d_tag = "bridgelist";
25 //#define debug(x) {cerr<<__FILE__<<": "<<__LINE__<<": "<<x<<endl<<flush;}
26 #define debug(x)
27
28 Bridgelist* Bridgelist::s_instance=0;
29
30 Bridgelist* Bridgelist::getInstance()
31 {
32     if (s_instance == 0)
33         s_instance = new Bridgelist();
34
35     return s_instance;
36 }
37
38 Bridgelist* Bridgelist::getInstance(XML_Helper* helper)
39 {
40     if (s_instance)
41         deleteInstance();
42
43     s_instance = new Bridgelist(helper);
44     return s_instance;
45 }
46
47 void Bridgelist::deleteInstance()
48 {
49     if (s_instance)
50         delete s_instance;
51
52     s_instance = 0;
53 }
54
55 Bridgelist::Bridgelist()
56 {
57 }
58
59 Bridgelist::Bridgelist(XML_Helper* helper)
60 {
61     helper->registerTag(Bridge::d_tag, sigc::mem_fun(this, &Bridgelist::load));
62 }
63
64 bool Bridgelist::save(XML_Helper* helper) const
65 {
66     bool retval = true;
67
68     retval &= helper->openTag(Bridgelist::d_tag);
69
70     for (const_iterator it = begin(); it != end(); it++)
71         retval &= (*it)->save(helper);
72     
73     retval &= helper->closeTag();
74
75     return retval;
76 }
77
78 bool Bridgelist::load(std::string tag, XML_Helper* helper)
79 {
80     if (tag != Bridge::d_tag)
81     //what has happened?
82         return false;
83     
84     add(new Bridge(helper));
85
86     return true;
87 }
88
89 int Bridgelist::calculateType(Vector<int> t) const
90 {
91     // examine neighbour tiles to discover whether there's a bridge on them
92     bool u = getObjectAt(t + Vector<int>(0, -1));
93     bool b = getObjectAt(t + Vector<int>(0, 1));
94     bool l = getObjectAt(t + Vector<int>(-1, 0));
95     bool r = getObjectAt(t + Vector<int>(1, 0));
96
97     if (u)
98       return Bridge::CONNECTS_TO_NORTH;
99     if (b)
100       return Bridge::CONNECTS_TO_SOUTH;
101     if (r)
102       return Bridge::CONNECTS_TO_EAST;
103     if (l)
104       return Bridge::CONNECTS_TO_WEST;
105     return Bridge::CONNECTS_TO_NORTH;
106 }
107