~ubuntu-branches/ubuntu/trusty/lordsawar/trusty

« back to all changes in this revision

Viewing changes to src/network-history.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese
  • Date: 2008-06-17 16:07:00 UTC
  • mto: (5.1.1 lenny) (1.1.5 upstream)
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20080617160700-6d8ofoz0qkasxlnw
ImportĀ upstreamĀ versionĀ 0.1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright (C) 2008 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 2 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 "network-history.h"
 
19
#include "player.h"
 
20
 
 
21
#include "xmlhelper.h"
 
22
 
 
23
NetworkHistory::NetworkHistory(History *history, Player *owner)
 
24
     : Ownable(owner)
 
25
{
 
26
  d_history = History::copy(history);
 
27
}
 
28
 
 
29
NetworkHistory::NetworkHistory(XML_Helper* helper)
 
30
     : Ownable(helper)
 
31
{
 
32
}
 
33
 
 
34
NetworkHistory::~NetworkHistory()
 
35
{
 
36
  delete d_history;
 
37
}
 
38
 
 
39
bool NetworkHistory::save(XML_Helper* helper) const
 
40
{
 
41
  bool retval = true;
 
42
  retval &= helper->openTag("networkhistory");
 
43
  retval &= helper->saveData("owner", d_owner->getId());
 
44
  d_history->save(helper);
 
45
  retval &= helper->closeTag();
 
46
  return retval;
 
47
}
 
48
 
 
49
std::string NetworkHistory::toString() const
 
50
{
 
51
  std::stringstream s;
 
52
  std::string history= d_history->dump();
 
53
  s <<"Player \""<< getOwner()->getName() << "\"--> ";
 
54
  s <<history;
 
55
    
 
56
  return s.str();
 
57
}