blob: 64a21be65c436d57f002fd28571619268ec47f8a (
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
|
#include "railVehicleClass.h"
#include "gfx/gl/sceneShader.h"
#include "gfx/gl/shadowMapper.h"
#include "gfx/gl/vertexArrayObject.h"
#include "gfx/models/mesh.h"
#include "gfx/models/texture.h"
#include <algorithm>
#include <array>
#include <cache.h>
#include <cmath>
#include <cstddef>
#include <filesystem>
#include <glm/glm.hpp>
#include <iterator>
#include <lib/resource.h>
#include <location.h>
#include <map>
#include <maths.h>
#include <memory>
#include <set>
#include <string>
#include <utility>
#include <vector>
bool
RailVehicleClass::persist(Persistence::PersistenceStore & store)
{
return STORE_TYPE && STORE_MEMBER(length) && STORE_MEMBER(wheelBase) && STORE_MEMBER(maxSpeed)
&& STORE_NAME_HELPER("bogie", bogies, Asset::MeshArrayConstruct)
&& STORE_HELPER(bodyMesh, Asset::MeshConstruct) && Asset::persist(store);
}
void
RailVehicleClass::postLoad()
{
texture = getTexture();
bodyMesh->configureVAO(instanceVAO).addAttribs<glm::mat4>(instancesBody.bufferName(), 1);
bogies.front()
->configureVAO(instancesBogiesVAO.front())
.addAttribs<glm::mat4>(instancesBogies.front().bufferName(), 1);
bogies.back()
->configureVAO(instancesBogiesVAO.back())
.addAttribs<glm::mat4>(instancesBogies.back().bufferName(), 1);
}
void
RailVehicleClass::render(const SceneShader & shader) const
{
if (const auto count = instancesBody.count()) {
if (texture) {
texture->bind();
}
shader.basicInst.use();
bodyMesh->DrawInstanced(instanceVAO, static_cast<GLsizei>(count));
bogies.front()->DrawInstanced(
instancesBogiesVAO.front(), static_cast<GLsizei>(instancesBogies.front().count()));
bogies.back()->DrawInstanced(instancesBogiesVAO.back(), static_cast<GLsizei>(instancesBogies.back().count()));
}
}
void
RailVehicleClass::shadows(const ShadowMapper & mapper) const
{
if (const auto count = instancesBody.count()) {
mapper.dynamicPointInst.use();
bodyMesh->DrawInstanced(instanceVAO, static_cast<GLsizei>(count));
bogies.front()->DrawInstanced(
instancesBogiesVAO.front(), static_cast<GLsizei>(instancesBogies.front().count()));
bogies.back()->DrawInstanced(instancesBogiesVAO.back(), static_cast<GLsizei>(instancesBogies.back().count()));
}
}
|