-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCObjectStats.cpp
82 lines (62 loc) · 1.51 KB
/
CObjectStats.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// CObjectStats.cpp
//
// CObjectStats class
// Copyright (c) 2013 by Kronosaur Productions, LLC. All Rights Reserved.
#include "PreComp.h"
CObjectStats::SEntry CObjectStats::m_Null;
const CObjectStats::SEntry &CObjectStats::GetEntry (DWORD dwObjID) const
// GetEntry
//
// Get the entry for the given object ID
{
SEntry *pEntry = m_Stats.GetAt(dwObjID);
if (pEntry == NULL)
return m_Null;
return *pEntry;
}
CObjectStats::SEntry &CObjectStats::GetEntryActual (DWORD dwObjID)
// GetEntryActual
//
// Get the actual entry (for modification)
{
return *m_Stats.SetAt(dwObjID);
}
void CObjectStats::ReadFromStream (SUniverseLoadCtx &Ctx)
// ReadFromStream
//
// Read from stream
//
// DWORD No of entries
//
// [For each entry]
// DWORD dwObjID
// DWORD iPlayerMissionsGiven
{
int i;
int iCount;
Ctx.pStream->Read((char *)&iCount, sizeof(DWORD));
for (i = 0; i < iCount; i++)
{
DWORD dwObjID;
Ctx.pStream->Read((char *)&dwObjID, sizeof(DWORD));
SEntry *pEntry = m_Stats.SetAt(dwObjID);
Ctx.pStream->Read((char *)&pEntry->iPlayerMissionsGiven, sizeof(DWORD));
}
}
void CObjectStats::WriteToStream (IWriteStream *pStream)
// WriteToStream
//
// Write to stream
{
int i;
DWORD dwSave;
dwSave = m_Stats.GetCount();
pStream->Write((char *)&dwSave, sizeof(DWORD));
for (i = 0; i < m_Stats.GetCount(); i++)
{
dwSave = m_Stats.GetKey(i);
pStream->Write((char *)&dwSave, sizeof(DWORD));
SEntry *pEntry = &m_Stats[i];
pStream->Write((char *)&pEntry->iPlayerMissionsGiven, sizeof(DWORD));
}
}