Merge branch 'treeco/add-gamma-setting' into 'master'

Treeco/add gamma setting

Closes #312

See merge request veloren/veloren!797
This commit is contained in:
Imbris 2020-02-17 02:01:06 +00:00
commit 633abcb058
12 changed files with 61 additions and 2 deletions

View File

@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Allow spawning individual pet species, not just generic body kinds.
- Configurable fonts
- Tanslation status tracking
- Added gamma setting
### Changed

View File

@ -208,6 +208,7 @@ Enjoy your stay in the World of Veloren."#,
"hud.settings.view_distance": "View Distance",
"hud.settings.maximum_fps": "Maximum FPS",
"hud.settings.fov": "Field of View (deg)",
"hud.settings.gamma": "Gamma",
"hud.settings.antialiasing_mode": "AntiAliasing Mode",
"hud.settings.cloud_rendering_mode": "Cloud Rendering Mode",
"hud.settings.fluid_rendering_mode": "Fluid Rendering Mode",

View File

@ -12,4 +12,5 @@ uniform u_globals {
uvec4 light_shadow_count;
uvec4 medium;
ivec4 select_pos;
vec4 gamma;
};

View File

@ -45,7 +45,7 @@ void main() {
//hsva_color.z = 1.0 - 1.0 / (1.0 * hsva_color.z + 1.0);
//vec4 final_color = vec4(hsv2rgb(hsva_color.rgb), hsva_color.a);
vec4 final_color = aa_color;
vec4 final_color = pow(aa_color, gamma);
if (medium.x == 1u) {
final_color *= vec4(0.2, 0.2, 0.8, 1.0);

View File

@ -201,6 +201,7 @@ pub enum Event {
ChangeAudioDevice(String),
ChangeMaxFPS(u32),
ChangeFOV(u16),
ChangeGamma(f32),
AdjustWindowSize([u16; 2]),
ToggleFullscreen,
ChangeAaMode(AaMode),
@ -1762,6 +1763,9 @@ impl Hud {
settings_window::Event::AdjustFOV(new_fov) => {
events.push(Event::ChangeFOV(new_fov));
},
settings_window::Event::AdjustGamma(new_gamma) => {
events.push(Event::ChangeGamma(new_gamma));
},
settings_window::Event::ChangeAaMode(new_aa_mode) => {
events.push(Event::ChangeAaMode(new_aa_mode));
},

View File

@ -89,6 +89,9 @@ widget_ids! {
fov_slider,
fov_text,
fov_value,
gamma_slider,
gamma_text,
gamma_value,
aa_mode_text,
aa_mode_list,
cloud_mode_text,
@ -199,6 +202,7 @@ pub enum Event {
ToggleMouseYInvert(bool),
AdjustViewDistance(u32),
AdjustFOV(u16),
AdjustGamma(f32),
AdjustWindowSize([u16; 2]),
ToggleFullscreen,
ChangeAaMode(AaMode),
@ -1554,9 +1558,41 @@ impl<'a> Widget for SettingsWindow<'a> {
.color(TEXT_COLOR)
.set(state.ids.fov_value, ui);
// Gamma
Text::new(&self.localized_strings.get("hud.settings.gamma"))
.down_from(state.ids.fov_slider, 10.0)
.font_size(self.fonts.cyri.scale(14))
.font_id(self.fonts.cyri.conrod_id)
.color(TEXT_COLOR)
.set(state.ids.gamma_text, ui);
if let Some(new_val) = ImageSlider::discrete(
(self.global_state.settings.graphics.gamma.log2() * 8.0).round() as i32,
8,
-8,
self.imgs.slider_indicator,
self.imgs.slider,
)
.w_h(104.0, 22.0)
.down_from(state.ids.gamma_text, 8.0)
.track_breadth(12.0)
.slider_length(10.0)
.pad_track((5.0, 5.0))
.set(state.ids.gamma_slider, ui)
{
events.push(Event::AdjustGamma(2.0f32.powf(new_val as f32 / 8.0)));
}
Text::new(&format!("{}", self.global_state.settings.graphics.gamma))
.right_from(state.ids.gamma_slider, 8.0)
.font_size(self.fonts.cyri.scale(14))
.font_id(self.fonts.cyri.conrod_id)
.color(TEXT_COLOR)
.set(state.ids.gamma_value, ui);
// AaMode
Text::new(&self.localized_strings.get("hud.settings.antialiasing_mode"))
.down_from(state.ids.fov_slider, 8.0)
.down_from(state.ids.gamma_slider, 8.0)
.font_size(self.fonts.cyri.scale(14))
.font_id(self.fonts.cyri.conrod_id)
.color(TEXT_COLOR)

View File

@ -99,6 +99,7 @@ impl PlayState for CharSelectionState {
global_state.window.renderer_mut(),
&self.client.borrow(),
humanoid_body.clone(),
global_state.settings.graphics.gamma,
);
// Render the scene.

View File

@ -119,6 +119,7 @@ impl Scene {
renderer: &mut Renderer,
client: &Client,
body: Option<humanoid::Body>,
gamma: f32,
) {
self.camera.set_focus_pos(Vec3::unit_z() * 1.5);
self.camera.update(client.state().get_time());
@ -142,6 +143,7 @@ impl Scene {
0,
BlockKind::Air,
None,
gamma,
)]) {
error!("Renderer failed to update: {:?}", err);
}

View File

@ -26,6 +26,7 @@ gfx_defines! {
light_shadow_count: [u32; 4] = "light_shadow_count",
medium: [u32; 4] = "medium",
select_pos: [i32; 4] = "select_pos",
gamma: [f32; 4] = "gamma",
}
constant Light {
@ -53,6 +54,7 @@ impl Globals {
shadow_count: usize,
medium: BlockKind,
select_pos: Option<Vec3<i32>>,
gamma: f32,
) -> Self {
Self {
view_mat: arr_to_mat(view_mat.into_col_array()),
@ -70,6 +72,7 @@ impl Globals {
.map(|sp| Vec4::from(sp) + Vec4::unit_w())
.unwrap_or(Vec4::zero())
.into_array(),
gamma: [gamma; 4],
}
}
}
@ -89,6 +92,7 @@ impl Default for Globals {
0,
BlockKind::Air,
None,
1.0,
)
}
}

View File

@ -149,6 +149,7 @@ impl Scene {
renderer: &mut Renderer,
audio: &mut AudioFrontend,
client: &Client,
gamma: f32,
) {
// Get player position.
let player_pos = client
@ -296,6 +297,7 @@ impl Scene {
.map(|b| b.kind())
.unwrap_or(BlockKind::Air),
self.select_pos,
gamma,
)])
.expect("Failed to update global constants");

View File

@ -551,6 +551,10 @@ impl PlayState for SessionState {
global_state.settings.save_to_file_warn();
self.scene.camera_mut().set_fov_deg(new_fov);
},
HudEvent::ChangeGamma(new_gamma) => {
global_state.settings.graphics.gamma = new_gamma;
global_state.settings.save_to_file_warn();
},
HudEvent::ChangeAaMode(new_aa_mode) => {
// Do this first so if it crashes the setting isn't saved :)
global_state
@ -610,6 +614,7 @@ impl PlayState for SessionState {
global_state.window.renderer_mut(),
&mut global_state.audio,
&self.client.borrow(),
global_state.settings.graphics.gamma,
);
// Render the session.

View File

@ -191,6 +191,7 @@ pub struct GraphicsSettings {
pub view_distance: u32,
pub max_fps: u32,
pub fov: u16,
pub gamma: f32,
pub aa_mode: AaMode,
pub cloud_mode: CloudMode,
pub fluid_mode: FluidMode,
@ -204,6 +205,7 @@ impl Default for GraphicsSettings {
view_distance: 10,
max_fps: 60,
fov: 50,
gamma: 1.0,
aa_mode: AaMode::Fxaa,
cloud_mode: CloudMode::Regular,
fluid_mode: FluidMode::Shiny,