blob: b53a7f10686ff579f0ddea1213ac633a64164889 (
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
|
#pragma once
#include "config/types.h"
#include "lib/glArrays.h"
#include "program.h"
#include <glm/vec2.hpp>
class SceneProvider;
class Camera;
#include <gfx/models/texture.h>
class ShadowMapper {
public:
explicit ShadowMapper(const TextureAbsCoord & size);
static constexpr std::size_t SHADOW_BANDS {4};
struct Definitions {
std::array<glm::mat4x4, SHADOW_BANDS> projections {};
std::array<TextureRelRegion, SHADOW_BANDS> regions {};
size_t maps {};
};
[[nodiscard]] Definitions update(const SceneProvider &, const Direction3D & direction, const Camera &) const;
class FixedPoint : public Program {
public:
FixedPoint(const Shader & vs);
void setViewProjection(const glm::mat4 &) const;
void use() const;
private:
RequiredUniformLocation viewProjectionLoc;
};
class DynamicPoint : public Program {
public:
DynamicPoint();
void setViewProjection(const glm::mat4 &) const;
void use(const Location &) const;
void setModel(const Location &) const;
private:
RequiredUniformLocation viewProjectionLoc;
RequiredUniformLocation modelLoc;
RequiredUniformLocation modelPosLoc;
};
FixedPoint fixedPoint, dynamicPointInst;
DynamicPoint dynamicPoint;
// NOLINTNEXTLINE(hicpp-explicit-conversions)
operator GLuint() const
{
return depthMap;
}
private:
[[nodiscard]] static std::vector<std::array<Position3D, 4>> getBandViewExtents(
const Camera &, const glm::mat4 & lightView);
glFrameBuffer depthMapFBO;
glTexture depthMap;
TextureAbsCoord size;
};
|