aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/gfx/graphicengine.cpp
blob: f8a3a1a44a9b4755c2faaa98085667898156345e (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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
/* ScummVM - Graphic Adventure Engine
 *
 * ScummVM is the legal property of its developers, whose names
 * are too numerous to list here. Please refer to the COPYRIGHT
 * file distributed with this source distribution.
 *
 * This program 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.

 * This program 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 this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 * $URL$
 * $Id$
 *
 */

/* 
 * This code is based on Broken Sword 2.5 engine
 *
 * Copyright (c) Malte Thiesen, Daniel Queteschiner and Michael Elsdoerfer
 *
 * Licensed under GNU GPL v2
 *
 */

#define BS_LOG_PREFIX "GRAPHICENGINE"

#include "sword25/gfx/image/image.h"
#include "sword25/gfx/screenshot.h"
#include "sword25/kernel/memlog_off.h"
#include <memory>
#include <vector>
#include "sword25/kernel/memlog_on.h"
#include "sword25/kernel/inputpersistenceblock.h"
#include "sword25/kernel/outputpersistenceblock.h"

extern "C"
{
#include "sword25/util/lua/lua.h"
#include "sword25/util/lua/lauxlib.h"
}

namespace Sword25 {

using namespace std;

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

static const unsigned int FRAMETIME_SAMPLE_COUNT = 5;		// Anzahl der Framezeiten �ber die, die Framezeit gemittelt wird

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

#include "sword25/gfx/graphicengine.h"

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

BS_GraphicEngine::BS_GraphicEngine(BS_Kernel * pKernel) : 
	m_Width(0),
	m_Height(0),
	m_BitDepth(0),
	m_Windowed(0),
	m_LastTimeStamp(9223372036854775807), // max. BS_INT64 um beim ersten Aufruf von _UpdateLastFrameDuration() einen Reset zu erzwingen
	m_LastFrameDuration(0),
	m_TimerActive(true),
	m_FrameTimeSamples(FRAMETIME_SAMPLE_COUNT, 0),
	m_FrameTimeSampleSlot(0),
	m_RepaintedPixels(0),
	BS_ResourceService(pKernel)
{
	if (!RegisterScriptBindings())
		BS_LOG_ERRORLN("Script bindings could not be registered.");
	else
		BS_LOGLN("Script bindings registered.");
}

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

void  BS_GraphicEngine::UpdateLastFrameDuration()
{
	// Aktuelle Zeit holen
	uint64_t CurrentTime = BS_Kernel::GetInstance()->GetMicroTicks();

	// Verstrichene Zeit seit letztem Frame berechnen und zu gro�e Zeitspr�nge ( > 250 msek.) unterbinden
	// (kann vorkommen bei geladenen Spielst�nden, w�hrend des Debuggings oder Hardwareungenauigkeiten)
	m_FrameTimeSamples[m_FrameTimeSampleSlot] = static_cast<unsigned int>(CurrentTime - m_LastTimeStamp);
	if (m_FrameTimeSamples[m_FrameTimeSampleSlot] > 250000) m_FrameTimeSamples[m_FrameTimeSampleSlot] = 250000;
	m_FrameTimeSampleSlot = (m_FrameTimeSampleSlot + 1) % FRAMETIME_SAMPLE_COUNT;

	// Die Framezeit wird �ber mehrere Frames gemittelt um Ausreisser zu eliminieren
	std::vector<unsigned int>::const_iterator it = m_FrameTimeSamples.begin();
	unsigned int Sum = *it;
	for (it++; it != m_FrameTimeSamples.end(); it++) Sum += *it;
	m_LastFrameDuration = Sum / FRAMETIME_SAMPLE_COUNT;

	// _LastTimeStamp auf die Zeit des aktuellen Frames setzen
	m_LastTimeStamp = CurrentTime;
}

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

namespace
{
	bool DoSaveScreenshot(BS_GraphicEngine & GraphicEngine, const Common::String & Filename, bool Thumbnail)
	{
		unsigned int Width;
		unsigned int Height;
		vector<unsigned int> Data;
		if (!GraphicEngine.GetScreenshot(Width, Height, Data))
		{
			BS_LOG_ERRORLN("Call to GetScreenshot() failed. Cannot save screenshot.");
			return false;
		}

		unsigned int test = Data.size();

		if (Thumbnail)
			return BS_Screenshot::SaveThumbnailToFile(Width, Height, Data, Filename);
		else
			return BS_Screenshot::SaveToFile(Width, Height, Data, Filename);
	}
}

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

bool BS_GraphicEngine::SaveScreenshot(const Common::String & Filename)
{
	return DoSaveScreenshot(*this, Filename, false);
}

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

bool BS_GraphicEngine::SaveThumbnailScreenshot( const Common::String & Filename )
{
	return DoSaveScreenshot(*this, Filename, true);
}

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

void BS_GraphicEngine::ARGBColorToLuaColor(lua_State * L, unsigned int Color)
{
	lua_Number Components[4] =
	{
		(Color >> 16) & 0xff,	// Rot
		(Color >> 8) & 0xff,	// Gr�n
		 Color & 0xff,			// Blau
		 Color >> 24,			// Alpha
	};

	lua_newtable(L);

	for (unsigned int i = 1; i <= 4; i++)
	{
		lua_pushnumber(L, i);
		lua_pushnumber(L, Components[i - 1]);
		lua_settable(L, -3);
	}
}

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

unsigned int BS_GraphicEngine::LuaColorToARGBColor(lua_State * L, int StackIndex)
{
#ifdef DEBUG
	int __startStackDepth = lua_gettop(L);
#endif

	// Sicherstellen, dass wir wirklich eine Tabelle betrachten
	luaL_checktype(L, StackIndex, LUA_TTABLE);
	// Gr��e der Tabelle auslesen
	unsigned int n = luaL_getn(L, StackIndex);
	// RGB oder RGBA Farben werden unterst�tzt und sonst keine
	if (n != 3 && n != 4) luaL_argcheck(L, 0, StackIndex, "at least 3 of the 4 color components have to be specified");

	// Rote Farbkomponente auslesen
	lua_rawgeti(L, StackIndex, 1);
	unsigned int Red = static_cast<unsigned int>(lua_tonumber(L, -1));
	if (!lua_isnumber(L, -1) || Red >= 256) luaL_argcheck(L, 0, StackIndex, "red color component must be an integer between 0 and 255");
	lua_pop(L, 1);

	// Gr�ne Farbkomponente auslesen
	lua_rawgeti(L, StackIndex, 2);
	unsigned int Green = static_cast<unsigned int>(lua_tonumber(L, -1));
	if (!lua_isnumber(L, -1) || Green >= 256) luaL_argcheck(L, 0, StackIndex, "green color component must be an integer between 0 and 255");
	lua_pop(L, 1);

	// Blaue Farbkomponente auslesen
	lua_rawgeti(L, StackIndex, 3);
	unsigned int Blue = static_cast<unsigned int>(lua_tonumber(L, -1));
	if (!lua_isnumber(L, -1) || Blue >= 256) luaL_argcheck(L, 0, StackIndex, "blue color component must be an integer between 0 and 255");
	lua_pop(L, 1);

	// Alpha Farbkomponente auslesen
	unsigned int Alpha = 0xff;
	if (n == 4)
	{
		lua_rawgeti(L, StackIndex, 4);
		Alpha = static_cast<unsigned int>(lua_tonumber(L, -1));
		if (!lua_isnumber(L, -1) || Alpha >= 256) luaL_argcheck(L, 0, StackIndex, "alpha color component must be an integer between 0 and 255");
		lua_pop(L, 1);
	}

#ifdef DEBUG
	BS_ASSERT(__startStackDepth == lua_gettop(L));
#endif

	return (Alpha << 24) | (Red << 16) | (Green << 8) | Blue;
}

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

bool BS_GraphicEngine::Persist(BS_OutputPersistenceBlock & Writer)
{
	Writer.Write(m_TimerActive);
	return true;
}

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

bool BS_GraphicEngine::Unpersist(BS_InputPersistenceBlock & Reader)
{
	Reader.Read(m_TimerActive);
	return Reader.IsGood();
}

} // End of namespace Sword25