mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Update help window to use player's keybindings (fix #42)
Former-commit-id: b1d374e83ab134a094b664ada8f35916e4734602
This commit is contained in:
parent
be9a399269
commit
488132f63b
@ -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]
|
||||
@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
@ -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,
|
||||
|
@ -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>,
|
||||
}
|
||||
@ -60,6 +61,7 @@ impl Window {
|
||||
window,
|
||||
cursor_grabbed: false,
|
||||
needs_refresh_resize: false,
|
||||
settings_changed: true,
|
||||
key_map,
|
||||
supplement_events: vec![],
|
||||
});
|
||||
@ -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;
|
||||
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user