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
|
#include "foliage.h"
#include "gfx/gl/sceneShader.h"
#include "gfx/gl/shadowMapper.h"
#include "gfx/gl/vertexArrayObject.h"
#include "gfx/models/texture.h"
bool
Foliage::persist(Persistence::PersistenceStore & store)
{
return STORE_TYPE && STORE_HELPER(bodyMesh, Asset::MeshConstruct) && Asset::persist(store);
}
void
Foliage::postLoad()
{
texture = getTexture();
bodyMesh->configureVAO(instanceVAO)
.addAttribs<LocationVertex, &LocationVertex::rotation, &LocationVertex::position>(
instances.bufferName(), 1);
VertexArrayObject {instancePointVAO}.addAttribs<LocationVertex, &LocationVertex::position, &LocationVertex::yaw>(
instances.bufferName());
}
void
Foliage::updateStencil(const ShadowStenciller & ss) const
{
if (instances.size() > 0) {
ss.renderStencil(shadowStencil, *bodyMesh, texture);
Texture::saveDepth(shadowStencil, std::format("/tmp/stencil-{}.tga", id).c_str());
}
}
void
Foliage::render(const SceneShader & shader) const
{
if (const auto count = instances.size()) {
shader.basicInst.use();
if (texture) {
texture->bind();
}
bodyMesh->DrawInstanced(instanceVAO, static_cast<GLsizei>(count));
}
}
void
Foliage::shadows(const ShadowMapper & mapper) const
{
if (const auto count = instances.size()) {
const auto dimensions = bodyMesh->getDimensions();
mapper.stencilShadowProgram.use(dimensions.centre, dimensions.size);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D_ARRAY, shadowStencil);
glBindVertexArray(instancePointVAO);
glDrawArrays(GL_POINTS, 0, static_cast<GLsizei>(count));
glBindVertexArray(0);
}
}
|