File: lab_renderer.h

package info (click to toggle)
freespace2 24.0.2%2Brepack-1
  • links: PTS, VCS
  • area: non-free
  • in suites: trixie
  • size: 43,188 kB
  • sloc: cpp: 583,107; ansic: 21,729; python: 1,174; sh: 464; makefile: 248; xml: 181
file content (225 lines) | stat: -rw-r--r-- 4,391 bytes parent folder | download | duplicates (2)
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
#pragma once

#include "globalincs/pstypes.h"
#include "globalincs/flagset.h"
#include "graphics/2d.h"
#include "lighting/lighting_profiles.h"
#include "camera/camera.h"
#include "cmdline/cmdline.h"
#include "lab/renderer/lab_cameras.h"
#include "globalincs/systemvars.h"
#include "starfield/starfield.h"
#include "graphics/light.h"
#include "globalincs/alphacolors.h"

FLAG_LIST(LabRenderFlag) {
	ModelRotationEnabled,
	ShowInsignia,
	ShowDamageLightning,
	MoveSubsystems,
	HidePostProcessing,
	NoDiffuseMap,
	NoGlowMap,
	NoSpecularMap,
	NoReflectMap,
	NoEnvMap,
	NoNormalMap,
	NoHeightMap,
	NoAOMap,
	NoMiscMap,
	NoGlowpoints,
	NoLighting,
	ShowWireframe,
	ShowFullDetail,
	ShowThrusters,
	ShowWeapons,
	ShowEmissiveLighting,
	ShowAfterburners,
	TimeStopped,

	NUM_VALUES
};

enum class TextureQuality {
	Minimum = 0,
	Low,
	Medium,
	High,
	Maximum
};

enum class TextureChannel {
	DiffuseRed,
	DiffuseGreen,
	DiffuseBlue,
	GlowRed,
	GlowGreen,
	GlowBlue,
	SpecularRed,
	SpecularGreen,
	SpecularBlue,
	SpecularGloss
};

enum class TextureOverride {
	Diffuse,
	Glow,
	Specular
};


namespace ltp = lighting_profiles;

struct gfx_options {
	int bloom_level;
	float ambient_factor;
	float light_factor;
	float emissive_factor;
	float exposure_level;
	ltp::piecewise_power_curve_values ppcv;
	AntiAliasMode aa_mode;
	ltp::TonemapperAlgorithm tonemapper;
};

constexpr auto LAB_MISSION_NONE_STRING = "None";
constexpr auto LAB_TEAM_COLOR_NONE = "<none>";

class LabRenderer {
public:
	LabRenderer() {
		bloomLevel = gr_bloom_intensity();
		textureQuality = TextureQuality::Maximum;
		cameraDistance = 100.0f;
		currentTeamColor = LAB_TEAM_COLOR_NONE;
		useBackground(LAB_MISSION_NONE_STRING);

		labCamera.reset(new OrbitCamera());

		Viewer_mode |= VM_FREECAMERA;

		Motion_debris_override = true;
		Num_stars = 0;

		gr_set_clear_color(0, 0, 0);
	}

	void onFrame(float frametime);

	static void close() {
		Viewer_mode &= ~VM_FREECAMERA;
	}

	void useBackground(const SCP_string& mission_name);

	SCP_string currentMissionBackground;


	static void setAAMode(AntiAliasMode mode) {
		Gr_aa_mode = mode;

		Motion_debris_override = false;
	}

	static void setTonemapper(ltp::TonemapperAlgorithm mode) {
		ltp::lab_set_tonemapper(mode);
	}

	void useNextTeamColorPreset() {
		if (!Team_Colors.empty()) {
			auto color_itr = Team_Colors.find(currentTeamColor);

			if (color_itr == Team_Colors.begin()) {
				color_itr = --Team_Colors.end();
				currentTeamColor = color_itr->first;
			} else {
				--color_itr;
				currentTeamColor = color_itr->first;
			}
		}
	}

	void usePreviousTeamColorPreset() {
		if (!Team_Colors.empty()) {
			auto color_itr = Team_Colors.find(currentTeamColor);

			++color_itr;
			if (color_itr == Team_Colors.end())
				color_itr = Team_Colors.begin();
			currentTeamColor = color_itr->first;
		}
	}

	void setTeamColor(SCP_string teamColor) {
		currentTeamColor = std::move(teamColor);
	}

	SCP_string getCurrentTeamColor()
	{
		return currentTeamColor;
	}

	void resetView() {}

	void setRenderFlag(LabRenderFlag flag, bool value) { renderFlags.set(flag, value); }

	static float setAmbientFactor(float factor) { 
		ltp::lab_set_ambient(factor);
		return factor; 
	}

	static float setLightFactor(float factor) {
		ltp::lab_set_light(factor);
		return factor; 
	}

	static float setEmissiveFactor(float factor) { 
		ltp::lab_set_emissive(factor);
		return factor; 
	}

	int setBloomLevel(int level) { 
		bloomLevel = level; 
		gr_set_bloom_intensity(level);
		return level; 
	}

	float setExposureLevel(float level) {
		exposureLevel = level;
		ltp::lab_set_exposure(level);
		return level;
	}
	
	static void setPPCValues(ltp::piecewise_power_curve_values ppcv) {
		ltp::lab_set_ppc(ppcv);
	}

	void setTextureQuality(TextureQuality quality) { textureQuality = quality; }
	TextureQuality getTextureQuality()
	{
		return textureQuality;
	}

	void setTextureOverride(TextureOverride, bool) {};

	void resetTextureOverride() {};

	void resetGraphicsSettings(gfx_options settings);

	std::unique_ptr<LabCamera> &getCurrentCamera();
	void setCurrentCamera(std::unique_ptr<LabCamera> &newcam);

private:
	flagset<LabRenderFlag> renderFlags;
	int bloomLevel;
	float exposureLevel;
	TextureQuality textureQuality;
	SCP_string currentTeamColor;

	std::unique_ptr<LabCamera> labCamera;

	float cameraDistance;

	void renderHud(float);
	void renderModel(float frametime);

};