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
|
#include <backends/imgui_impl_opengl3.h>
#include <backends/imgui_impl_sdl2.h>
#include <boost/program_options.hpp>
#include <game/environment.h>
#include <game/gamestate.h>
#include <game/terrain.h>
#include <gfx/gl/sceneProvider.h>
#include <gfx/gl/sceneRenderer.h>
#include <gfx/renderable.h>
#include <location.h>
#include <ui/applicationBase.h>
#include <ui/mainApplication.h>
#include <ui/mainWindow.h>
constexpr ScreenAbsCoord DEFAULT_WINDOW_SIZE {800, 600};
constexpr GlobalDistance TERRAIN_LIMIT = 1'000'000;
constexpr GlobalDistance TERRAIN_HEIGHT = 10'000;
constexpr RelativeDistance DEFAULT_CAMERA_DIST = 7'000;
constexpr GlobalDistance DEFAULT_CAMERA_HEIGHT = 5'000;
constexpr GlobalDistance DEFAULT_CAMERA_FOCUS = 3'000;
constexpr GlobalDistance MAX_CAMERA_HEIGHT = 10'000;
constexpr GlobalDistance MIN_CAMERA_DIST = 1'000;
constexpr GlobalDistance MAX_CAMERA_DIST = 30'000;
class ViewerContent : public WindowContent, SceneRenderer, SceneProvider {
public:
ViewerContent(ScreenAbsCoord size, std::span<const std::filesystem::path> files) :
SceneRenderer {size, 0}, fileList(files)
{
camera.setPosition(calcCameraPosition());
camera.lookAt({0, 0, TERRAIN_HEIGHT + cameraFocus});
gameState->terrain = std::make_shared<Terrain>(
GeoData::createFlat({-TERRAIN_LIMIT, -TERRAIN_LIMIT}, {TERRAIN_LIMIT, TERRAIN_LIMIT}, TERRAIN_HEIGHT));
}
private:
[[nodiscard]]
GlobalPosition3D
calcCameraPosition() const
{
return {sincos(cameraAngle) * cameraDistance, TERRAIN_HEIGHT + cameraHeight};
}
void
render() override
{
SceneRenderer::render(*this);
controls();
}
void
tick(TickDuration tick) override
{
if (autoRotate != 0) {
cameraAngle = normalize(cameraAngle + (autoRotate * tick.count()));
camera.setPosition(calcCameraPosition());
camera.lookAt({0, 0, TERRAIN_HEIGHT + cameraFocus});
}
}
bool
handleInput(const SDL_Event & event) override
{
if (event.type == SDL_WINDOWEVENT && event.window.event == SDL_WINDOWEVENT_RESIZED) {
SceneRenderer::resize({event.window.data1, event.window.data2});
}
return WindowContent::handleInput(event);
}
void
controls()
{
if (ImGui::Begin("Resource view")) {
ImGui::SetWindowSize({});
fileSelection();
assetSelection();
}
ImGui::End();
if (ImGui::Begin("Camera")) {
ImGui::SetWindowSize({});
if (std::max({ImGui::SliderFloat("Camera position", &cameraAngle, -pi, pi),
ImGui::SliderInt("Camera focus", &cameraFocus, 1, MAX_CAMERA_HEIGHT),
ImGui::SliderInt("Camera height", &cameraHeight, 1, MAX_CAMERA_HEIGHT),
ImGui::SliderFloat("Camera distance", &cameraDistance, MIN_CAMERA_DIST, MAX_CAMERA_DIST)})) {
camera.setPosition(calcCameraPosition());
camera.lookAt({0, 0, TERRAIN_HEIGHT + cameraFocus});
}
ImGui::SliderFloat("Auto rotate speed", &autoRotate, -1, 1);
}
ImGui::End();
}
void
fileSelection()
{
ImGui::BeginListBox("File");
for (const auto & file : fileList) {
if (ImGui::Selectable(file.c_str(), &file == selectedFile)) {
location.reset();
selectedAsset = nullptr;
gameState->assets = AssetFactory::loadXML(file)->assets;
selectedFile = &file;
}
}
ImGui::EndListBox();
}
void
assetSelection()
{
if (!gameState->assets.empty()) {
ImGui::BeginListBox("Asset");
for (const auto & asset : gameState->assets) {
auto renderable = asset.second.getAs<const Renderable>();
if (renderable) {
if (ImGui::Selectable(asset.first.c_str(), renderable == selectedAsset)) {
selectedAsset = renderable;
location = asset.second->createAt(position);
}
}
}
ImGui::EndListBox();
}
}
void
content(const SceneShader & sceneShader, const Frustum & frustum) const override
{
gameState->terrain->render(sceneShader, frustum);
if (selectedAsset) {
selectedAsset->render(sceneShader, frustum);
}
}
void
lights(const SceneShader & sceneShader) const override
{
if (selectedAsset) {
selectedAsset->lights(sceneShader);
}
}
void
shadows(const ShadowMapper & mapper, const Frustum & frustum) const override
{
gameState->terrain->shadows(mapper, frustum);
if (selectedAsset) {
selectedAsset->shadows(mapper, frustum);
}
}
std::span<const std::filesystem::path> fileList;
const std::filesystem::path * selectedFile {};
const Renderable * selectedAsset {};
Location position {.pos = {0, 0, TERRAIN_HEIGHT}, .rot = {}};
std::any location;
Angle cameraAngle {0.F};
RelativeDistance cameraDistance {DEFAULT_CAMERA_DIST};
GlobalDistance cameraHeight {DEFAULT_CAMERA_HEIGHT};
GlobalDistance cameraFocus {DEFAULT_CAMERA_FOCUS};
float autoRotate {0.F};
};
int
main(int argc, char ** argv)
{
class ResViewer : GameState, MainApplication {
public:
void
run(std::span<const std::filesystem::path> fileList)
{
windows.create<MainWindow>(DEFAULT_WINDOW_SIZE, "ILT - Resource Viewer")
->setContent<ViewerContent>(fileList);
mainLoop();
}
};
namespace po = boost::program_options;
po::options_description opts("ILT - Resource Viewer");
std::vector<std::filesystem::path> resources;
// clang-format off
opts.add_options()
("resource,r", po::value(&resources)->composing(), "Resource file")
("help,h", po::value<bool>()->default_value(false)->zero_tokens(), "Help")
;
// clang-format on
po::positional_options_description pod;
pod.add("resource", -1);
po::variables_map varmap;
po::store(po::command_line_parser(argc, argv).options(opts).positional(pod).run(), varmap);
po::notify(varmap);
if (varmap.at("help").as<bool>()) {
std::cout << opts << '\n';
return EXIT_SUCCESS;
}
ResViewer {}.run(resources);
return EXIT_SUCCESS;
}
|