summaryrefslogtreecommitdiffstats
path: root/src/graphics/core/nulldevice.cpp
blob: f5e426d30f86d83525e9d22e6628aa166620e70b (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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
/*
 * This file is part of the Colobot: Gold Edition source code
 * Copyright (C) 2001-2014, Daniel Roux, EPSITEC SA & TerranovaTeam
 * http://epsiteс.ch; http://colobot.info; http://github.com/colobot
 *
 * 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 3 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, see http://gnu.org/licenses
 */


#include "graphics/core/nulldevice.h"

#include "common/config.h"
#include "common/logger.h"

#include "math/geometry.h"


// Graphics module namespace
namespace Gfx {

CNullDevice::CNullDevice()
{
    m_matrix = Math::Matrix();
    m_material = Material();
    m_light = Light();
}

CNullDevice::~CNullDevice()
{
}

void CNullDevice::DebugHook()
{
}

void CNullDevice::DebugLights()
{
}

bool CNullDevice::Create()
{
    return true;
}

void CNullDevice::Destroy()
{
}

void CNullDevice::BeginScene()
{
}

void CNullDevice::EndScene()
{
}

void CNullDevice::Clear()
{
}

void CNullDevice::SetTransform(TransformType type, const Math::Matrix &matrix)
{
}

const Math::Matrix& CNullDevice::GetTransform(TransformType type)
{
    return m_matrix;
}

void CNullDevice::MultiplyTransform(TransformType type, const Math::Matrix &matrix)
{
}

void CNullDevice::SetMaterial(const Material &material)
{
}

const Material& CNullDevice::GetMaterial()
{
    return m_material;
}

int CNullDevice::GetMaxLightCount()
{
    return 99;
}

void CNullDevice::SetLight(int index, const Light &light)
{
}

const Light& CNullDevice::GetLight(int index)
{
    return m_light;
}

void CNullDevice::SetLightEnabled(int index, bool enabled)
{
}

bool CNullDevice::GetLightEnabled(int index)
{
    return false;
}

Texture CNullDevice::CreateTexture(CImage *image, const TextureCreateParams &params)
{
    Texture tex;
    tex.id = 1; // tex.id = 0 => invalid texture
    return tex;
}

Texture CNullDevice::CreateTexture(ImageData *data, const TextureCreateParams &params)
{
    Texture tex;
    tex.id = 1; // tex.id = 0 => invalid texture
    return tex;
}

void CNullDevice::DestroyTexture(const Texture &texture)
{
}

void CNullDevice::DestroyAllTextures()
{
}

int CNullDevice::GetMaxTextureStageCount()
{
    return 0;
}

void CNullDevice::SetTexture(int index, const Texture &texture)
{
}

void CNullDevice::SetTexture(int index, unsigned int textureId)
{
}

Texture CNullDevice::GetTexture(int index)
{
    return Texture();
}

void CNullDevice::SetTextureEnabled(int index, bool enabled)
{
}

bool CNullDevice::GetTextureEnabled(int index)
{
    return false;
}

void CNullDevice::SetTextureStageParams(int index, const TextureStageParams &params)
{
}

void CNullDevice::SetTextureStageWrap(int index, TexWrapMode wrapS, TexWrapMode wrapT)
{
}

TextureStageParams CNullDevice::GetTextureStageParams(int index)
{
    return TextureStageParams();
}

void CNullDevice::DrawPrimitive(PrimitiveType type, const Vertex *vertices, int vertexCount,
                              Color color)
{
}

void CNullDevice::DrawPrimitive(PrimitiveType type, const VertexTex2 *vertices, int vertexCount,
                              Color color)
{
}

void CNullDevice::DrawPrimitive(PrimitiveType type, const VertexCol *vertices, int vertexCount)
{
}

unsigned int CNullDevice::CreateStaticBuffer(PrimitiveType primitiveType, const Vertex* vertices, int vertexCount)
{
    return 0;
}

unsigned int CNullDevice::CreateStaticBuffer(PrimitiveType primitiveType, const VertexTex2* vertices, int vertexCount)
{
    return 0;
}

unsigned int CNullDevice::CreateStaticBuffer(PrimitiveType primitiveType, const VertexCol* vertices, int vertexCount)
{
    return 0;
}

void CNullDevice::UpdateStaticBuffer(unsigned int bufferId, PrimitiveType primitiveType, const Vertex* vertices, int vertexCount)
{
}

void CNullDevice::UpdateStaticBuffer(unsigned int bufferId, PrimitiveType primitiveType, const VertexTex2* vertices, int vertexCount)
{
}

void CNullDevice::UpdateStaticBuffer(unsigned int bufferId, PrimitiveType primitiveType, const VertexCol* vertices, int vertexCount)
{
}

void CNullDevice::DrawStaticBuffer(unsigned int bufferId)
{
}

void CNullDevice::DestroyStaticBuffer(unsigned int bufferId)
{
}

int CNullDevice::ComputeSphereVisibility(const Math::Vector &center, float radius)
{
    return 0;
}

void CNullDevice::SetRenderState(RenderState state, bool enabled)
{
}

bool CNullDevice::GetRenderState(RenderState state)
{
    return false;
}

void CNullDevice::SetDepthTestFunc(CompFunc func)
{
}

CompFunc CNullDevice::GetDepthTestFunc()
{
    return COMP_FUNC_NEVER;
}

void CNullDevice::SetDepthBias(float factor)
{
}

float CNullDevice::GetDepthBias()
{
    return 0.0f;
}

void CNullDevice::SetAlphaTestFunc(CompFunc func, float refValue)
{
}

void CNullDevice::GetAlphaTestFunc(CompFunc &func, float &refValue)
{

    func = COMP_FUNC_NEVER;
    refValue = 0.0f;
}

void CNullDevice::SetBlendFunc(BlendFunc srcBlend, BlendFunc dstBlend)
{
}

void CNullDevice::GetBlendFunc(BlendFunc &srcBlend, BlendFunc &dstBlend)
{
    srcBlend = BLEND_ZERO;
    dstBlend = BLEND_ZERO;
}

void CNullDevice::SetClearColor(const Color &color)
{
}

Color CNullDevice::GetClearColor()
{
    return Color(0.0f, 0.0f, 0.0f, 0.0f);
}

void CNullDevice::SetGlobalAmbient(const Color &color)
{
}

Color CNullDevice::GetGlobalAmbient()
{
    return Color(0.0f, 0.0f, 0.0f, 0.0f);
}

void CNullDevice::SetFogParams(FogMode mode, const Color &color, float start, float end, float density)
{
}

void CNullDevice::GetFogParams(FogMode &mode, Color &color, float &start, float &end, float &density)
{
    //
}

void CNullDevice::SetCullMode(CullMode mode)
{
}

CullMode CNullDevice::GetCullMode()
{
    return CULL_CW;
}

void CNullDevice::SetShadeModel(ShadeModel model)
{
}

ShadeModel CNullDevice::GetShadeModel()
{
    return SHADE_FLAT;
}

void CNullDevice::SetFillMode(FillMode mode)
{
}

FillMode CNullDevice::GetFillMode()
{
    return FILL_POINT;
}

void* CNullDevice::GetFrameBufferPixels() const
{
    return nullptr;
}


} // namespace Gfx