initial commit, lordsawar source, slightly modified
[lordsawar] / src / network-history.cpp
1 // Copyright (C) 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 <sstream>
19 #include "network-history.h"
20 #include "player.h"
21
22 #include "xmlhelper.h"
23
24 std::string NetworkHistory::d_tag = "networkhistory";
25
26 NetworkHistory::NetworkHistory(History *history, guint32 owner)
27   :OwnerId(owner)
28 {
29   d_history = History::copy(history);
30 }
31
32 NetworkHistory::NetworkHistory(XML_Helper* helper)
33   : OwnerId(helper)
34 {
35 }
36
37 NetworkHistory::~NetworkHistory()
38 {
39   delete d_history;
40 }
41
42 bool NetworkHistory::save(XML_Helper* helper) const
43 {
44   bool retval = true;
45   retval &= helper->openTag(NetworkHistory::d_tag);
46   retval &= OwnerId::save(helper);
47   d_history->save(helper);
48   retval &= helper->closeTag();
49   return retval;
50 }
51
52 std::string NetworkHistory::toString() const
53 {
54   std::stringstream s;
55   std::string history= d_history->dump();
56   s <<"Player \""<< getOwner()->getName() << "\"--> ";
57   s <<history;
58     
59   return s.str();
60 }