Skip to content

Commit

Permalink
Update help window to use player's keybindings (fix #42)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yeedo committed Apr 28, 2019
1 parent a46c5b2 commit e15fce0
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
12 changes: 12 additions & 0 deletions voxygen/src/hud/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,11 @@ pub struct Hud {
mana_percentage: f64,
inventorytest_button: bool,
settings_tab: SettingsTab,
<<<<<<< HEAD
settings: Settings,
=======
help_text: String,
>>>>>>> Update help window to use player's keybindings (fix #42)
}

//#[inline]
Expand Down Expand Up @@ -532,7 +536,11 @@ impl Hud {
xp_percentage: 0.4,
hp_percentage: 1.0,
mana_percentage: 1.0,
<<<<<<< HEAD
settings: settings,
=======
help_text: get_help_text(&Settings::default().controls),
>>>>>>> Update help window to use player's keybindings (fix #42)
}
}

Expand Down Expand Up @@ -1764,7 +1772,11 @@ impl Hud {
},
WinEvent::Char(_) => self.typing(),
WinEvent::SettingsChanged => {
<<<<<<< HEAD
self.settings = global_state.settings.clone();
=======
self.help_text = get_help_text(&global_state.settings.controls);
>>>>>>> Update help window to use player's keybindings (fix #42)
true
},
_ => false,
Expand Down
12 changes: 11 additions & 1 deletion voxygen/src/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ pub struct Window {
window: glutin::GlWindow,
cursor_grabbed: bool,
needs_refresh_resize: bool,
settings_changed: bool,
key_map: HashMap<glutin::VirtualKeyCode, Key>,
supplement_events: Vec<Event>,
}
Expand Down Expand Up @@ -60,6 +61,7 @@ impl Window {
window,
cursor_grabbed: false,
needs_refresh_resize: false,
settings_changed: true,
key_map,
supplement_events: vec![],
});
Expand All @@ -82,6 +84,10 @@ impl Window {
self.needs_refresh_resize = false;
}

if self.settings_changed {
events.push(Event::SettingsChanged);
}

// Copy data that is needed by the events closure to avoid lifetime errors
// TODO: Remove this if/when the compiler permits it
let cursor_grabbed = self.cursor_grabbed;
Expand Down Expand Up @@ -212,4 +218,8 @@ pub enum Event {
Ui(ui::Event),
/// Game settings have changed
SettingsChanged,
}
<<<<<<< HEAD
}
=======
}
>>>>>>> Update help window to use player's keybindings (fix #42)

0 comments on commit e15fce0

Please sign in to comment.