initial commit, lordsawar source, slightly modified
[lordsawar] / src / signpostlist.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 "signpostlist.h"
21 #include "xmlhelper.h"
22
23 std::string Signpostlist::d_tag = "signpostlist";
24
25 //#define debug(x) {cerr<<__FILE__<<": "<<__LINE__<<": "<<x<<endl<<flush;}
26 #define debug(x)
27
28 Signpostlist* Signpostlist::s_instance=0;
29
30 Signpostlist* Signpostlist::getInstance()
31 {
32     if (s_instance == 0)
33         s_instance = new Signpostlist();
34
35     return s_instance;
36 }
37
38 Signpostlist* Signpostlist::getInstance(XML_Helper* helper)
39 {
40     if (s_instance)
41         deleteInstance();
42
43     s_instance = new Signpostlist(helper);
44     return s_instance;
45 }
46
47 void Signpostlist::deleteInstance()
48 {
49     if (s_instance)
50         delete s_instance;
51
52     s_instance = 0;
53 }
54
55 Signpostlist::Signpostlist()
56 {
57 }
58
59 Signpostlist::Signpostlist(XML_Helper* helper)
60 {
61     helper->registerTag(Signpost::d_tag, sigc::mem_fun(this, &Signpostlist::load));
62 }
63
64 bool Signpostlist::save(XML_Helper* helper) const
65 {
66     bool retval = true;
67
68     retval &= helper->openTag(Signpostlist::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 Signpostlist::load(std::string tag, XML_Helper* helper)
79 {
80     if (tag != Signpost::d_tag)
81     //what has happened?
82         return false;
83     
84     add(new Signpost(helper));
85
86     return true;
87 }
88