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
|
#include "editNetwork.h"
#include "builders/freeExtend.h"
#include "builders/join.h"
#include "builders/straight.h"
#include "imgui_wrap.h"
#include <game/gamestate.h>
#include <game/terrain.h>
#include <gfx/gl/sceneShader.h>
#include <gfx/models/texture.h>
constexpr const glm::u8vec4 TRANSPARENT_BLUE {30, 50, 255, 200};
EditNetwork::EditNetwork(Network * n) : network {n}, blue {1, 1, &TRANSPARENT_BLUE} { }
bool
EditNetwork::click(const SDL_MouseButtonEvent & e, const Ray<GlobalPosition3D> & ray)
{
if (builder && (e.button == SDL_BUTTON_LEFT || e.button == SDL_BUTTON_MIDDLE)) {
builder->click(network, gameState->terrain.get(), e, ray);
return true;
}
return false;
}
bool
EditNetwork::move(const SDL_MouseMotionEvent & e, const Ray<GlobalPosition3D> & ray)
{
if (builder) {
builder->move(network, gameState->terrain.get(), e, ray);
}
return false;
}
bool
EditNetwork::handleInput(const SDL_Event &)
{
return false;
}
void
EditNetwork::render(const SceneShader & shader, const Frustum & frustum) const
{
if (builder) {
blue.bind();
shader.absolute.use();
builder->render(shader, frustum);
}
}
void
EditNetwork::Builder::render(const SceneShader & shader, const Frustum & frustum) const
{
candidateLinks.apply<const Renderable>(&Renderable::render, shader, frustum);
}
void
EditNetwork::Builder::setHeightsFor(Network * network, const Link::CCollection & links, GeoData::SetHeightsOpts opts)
{
opts.surface = network->getBaseSurface();
const auto width = network->getBaseWidth();
for (const auto & link : links) {
gameState->terrain->setHeights(link->getBase(width), opts);
}
}
void
EditNetwork::render(bool & open)
{
ImGui::SetNextWindowSize({-1, -1});
ImGui::Begin("Edit Network", &open);
auto builderChoice = [this]<typename Impl>(const char * name) {
if (ImGui::RadioButton(name, dynamic_cast<Impl *>(builder.get()))) {
builder = std::make_unique<Impl>();
}
};
builderChoice.operator()<BuilderStraight>("Straight");
builderChoice.operator()<BuilderJoin>("Join");
builderChoice.operator()<BuilderFreeExtend>("Free Extend");
ImGui::TextUnformatted(builder ? builder->hint().c_str() : "Select a build mode");
ImGui::End();
}
|