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