aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/kernel/outputpersistenceblock.cpp
blob: 37410caaecfe9cbdff7d1a9454ad0b206a5cd68b (plain)
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
// -----------------------------------------------------------------------------
// This file is part of Broken Sword 2.5
// Copyright (c) Malte Thiesen, Daniel Queteschiner and Michael Elsd�rfer
//
// Broken Sword 2.5 is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// Broken Sword 2.5 is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Broken Sword 2.5; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
// -----------------------------------------------------------------------------

#define BS_LOG_PREFIX "OUTPUTPERSISTENCEBLOCK"

// -----------------------------------------------------------------------------
// Includes
// -----------------------------------------------------------------------------

#include "outputpersistenceblock.h"

// -----------------------------------------------------------------------------
// Constants
// -----------------------------------------------------------------------------

namespace
{
	const unsigned int INITIAL_BUFFER_SIZE = 1024 * 64;
}

// -----------------------------------------------------------------------------
// Construction / Destruction
// -----------------------------------------------------------------------------

BS_OutputPersistenceBlock::BS_OutputPersistenceBlock()
{
	m_Data.reserve(INITIAL_BUFFER_SIZE);
}

// -----------------------------------------------------------------------------
// Writing
// -----------------------------------------------------------------------------

void BS_OutputPersistenceBlock::Write(signed int Value)
{
	WriteMarker(SINT_MARKER);
	Value = ConvertEndianessFromSystemToStorage(Value);
	RawWrite(&Value, sizeof(Value));
}

// -----------------------------------------------------------------------------

void BS_OutputPersistenceBlock::Write(unsigned int Value)
{
	WriteMarker(UINT_MARKER);
	Value = ConvertEndianessFromSystemToStorage(Value);
	RawWrite(&Value, sizeof(Value));
}

// -----------------------------------------------------------------------------

void BS_OutputPersistenceBlock::Write(float Value)
{
	WriteMarker(FLOAT_MARKER);
	Value = ConvertEndianessFromSystemToStorage(Value);
	RawWrite(&Value, sizeof(Value));
}

// -----------------------------------------------------------------------------

void BS_OutputPersistenceBlock::Write(bool Value)
{
	WriteMarker(BOOL_MARKER);

	unsigned int UIntBool = Value ? 1 : 0;
	UIntBool = ConvertEndianessFromSystemToStorage(UIntBool);
	RawWrite(&UIntBool, sizeof(UIntBool));
}

// -----------------------------------------------------------------------------

void BS_OutputPersistenceBlock::Write(const std::string & String)
{
	WriteMarker(STRING_MARKER);

	Write(String.size());
	RawWrite(String.c_str(), String.size());
}

// -----------------------------------------------------------------------------

void BS_OutputPersistenceBlock::Write(const void * BufferPtr, size_t Size)
{
	WriteMarker(BLOCK_MARKER);

	Write(Size);
	RawWrite(BufferPtr, Size);
}

// -----------------------------------------------------------------------------

void BS_OutputPersistenceBlock::WriteMarker(unsigned char Marker)
{
	m_Data.push_back(Marker);
}

// -----------------------------------------------------------------------------

void BS_OutputPersistenceBlock::RawWrite(const void * DataPtr, size_t Size)
{
	if (Size > 0)
	{
		unsigned int OldSize = m_Data.size();
		m_Data.resize(OldSize + Size);
		memcpy(&m_Data[OldSize], DataPtr, Size);
	}
}