From 51e88da8c65d5693d19156486bc9bc1eec0b01f3 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Mon, 29 Apr 2019 00:01:57 +0200 Subject: [PATCH 01/45] Map Window, Settings Window Former-commit-id: 1522b1fb8567516ab92ebb7d22974a59e3695556 --- voxygen/src/hud/mod.rs | 100 ++++++++++++++++++++++++++++------------- 1 file changed, 70 insertions(+), 30 deletions(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 228a89a0a8..7a2a03c308 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -99,6 +99,8 @@ widget_ids! { settings_button_mo, settings_close, settings_title, + settings_r, + settings_l, //Contents button_help, button_help2, @@ -123,6 +125,8 @@ widget_ids! { map_title, map_frame_l, map_frame_r, + map_frame_bl, + map_frame_br, //3 Spellbook spellbook_frame, spellbook_bg, @@ -238,6 +242,12 @@ pub(self) struct Imgs { window_frame: ImgId, window_frame_2: ImgId, //Settings-Window + settings_frame_r: ImgId, + settings_frame_l: ImgId, + settings_button: ImgId, + settings_button_pressed: ImgId, + settings_button_hover: ImgId, + settings_button_press: ImgId, settings_bg: ImgId, settings_icon: ImgId, settings_button_mo: ImgId, @@ -260,6 +270,8 @@ pub(self) struct Imgs { map_icon: ImgId, map_frame_l: ImgId, map_frame_r: ImgId, + map_frame_bl: ImgId, + map_frame_br: ImgId, // Spell Book Window spellbook_bg: ImgId, spellbook_icon: ImgId, @@ -388,6 +400,12 @@ impl Imgs { window_frame_2: load_img("element/frames/window_2.png", ui), // Settings Window + settings_frame_r: load_vox("element/frames/settings_r.vox", ui), + settings_frame_l: load_vox("element/frames/settings_l.vox", ui), + settings_button: load_vox("element/buttons/settings_button.vox", ui), + settings_button_pressed: load_vox("element/buttons/settings_button_pressed.vox", ui), + settings_button_hover: load_vox("element/buttons/settings_button_hover.vox", ui), + settings_button_press: load_vox("element/buttons/settings_button_press.vox", ui), settings_bg: load_img("element/frames/settings.png", ui), settings_icon: load_img("element/icons/settings.png", ui), settings_button_mo: load_img("element/buttons/blue_mo.png", ui), @@ -414,6 +432,8 @@ impl Imgs { map_icon: load_img("element/icons/map.png", ui), map_frame_l: load_vox("element/frames/map_l.vox", ui), map_frame_r: load_vox("element/frames/map_r.vox", ui), + map_frame_bl: load_vox("element/frames/map_bl.vox", ui), + map_frame_br: load_vox("element/frames/map_br.vox", ui), // Spell Book Window spellbook_bg: load_img("element/misc_bg/small_bg.png", ui), @@ -658,7 +678,7 @@ impl Hud { }; if Button::image(if self.mmap_open {self.imgs.mmap_open} else {self.imgs.mmap_closed}) - .w_h(10.0 * 2.0, 10.0 * 2.0) + .w_h(100.0 * 0.2, 100.0 * 0.2) .hover_image(if self.mmap_open {self.imgs.mmap_open_hover} else {self.imgs.mmap_closed_hover}) .press_image(if self.mmap_open {self.imgs.mmap_open_press} else {self.imgs.mmap_closed_press}) .top_right_with_margins_on(self.ids.mmap_frame, 0.0, 0.0) @@ -950,11 +970,11 @@ impl Hud { // Contents Image::new(self.imgs.bag_contents) .w_h(68.0 * 4.0, 123.0 * 4.0) - .bottom_right_with_margins_on(ui_widgets.window, 90.0, 5.0) + .bottom_right_with_margins_on(ui_widgets.window, 60.0, 5.0) .set(self.ids.bag_contents, ui_widgets); // Alignment for Grid - Rectangle::fill_with([(58.0 * 4.0) - 5.0, 100.0 * 4.0], color::TRANSPARENT) + Rectangle::fill_with([58.0 * 4.0 - 5.0, 100.0 * 4.0], color::TRANSPARENT) .top_left_with_margins_on(self.ids.bag_contents, 11.0 * 4.0, 5.0 * 4.0) .scroll_kids() .scroll_kids_vertically() @@ -1028,17 +1048,27 @@ impl Hud { // 0 Settings if let Windows::Settings = self.open_windows { - // BG - Image::new(self.imgs.window_frame) + // Alignment + Rectangle::fill_with([824.0, 488.0], color::TRANSPARENT) .middle_of(ui_widgets.window) - .w_h(1648.0 / 2.5, 1952.0 / 2.5) + .scroll_kids() + .scroll_kids_vertically() .set(self.ids.settings_bg, ui_widgets); + // Frame + Image::new(self.imgs.settings_frame_l) + .top_left_with_margins_on(self.ids.settings_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.settings_l, ui_widgets); + Image::new(self.imgs.settings_frame_r) + .top_right_with_margins_on(self.ids.settings_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.settings_r, ui_widgets); // X-Button if Button::image(self.imgs.close_button) - .w_h(244.0 * 0.22 / 2.5, 244.0 * 0.22 / 2.5) + .w_h(28.0, 28.0) .hover_image(self.imgs.close_button_hover) .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.settings_bg, 4.0, 4.0) + .top_right_with_margins_on(self.ids.settings_r, 0.0, 0.0) .set(self.ids.settings_close, ui_widgets) .was_clicked() { @@ -1048,15 +1078,15 @@ impl Hud { // Title Text::new("Settings") - .mid_top_with_margin_on(self.ids.settings_bg, 10.0) - .font_size(30) + .mid_top_with_margin_on(self.ids.settings_bg, 5.0) + .font_size(14) .color(TEXT_COLOR) .set(self.ids.settings_title, ui_widgets); // Icon - Image::new(self.imgs.settings_icon) - .w_h(224.0 / 3.0, 224.0 / 3.0) - .top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) - .set(self.ids.settings_icon, ui_widgets); + //Image::new(self.imgs.settings_icon) + //.w_h(224.0 / 3.0, 224.0 / 3.0) + //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) + //.set(self.ids.settings_icon, ui_widgets); // TODO: Find out if we can remove this // Alignment Rectangle Rectangle::fill_with([1008.0 / 2.5, 1616.0 / 2.5], color::TRANSPARENT) @@ -1247,10 +1277,10 @@ impl Hud { // X-Button if Button::image(self.imgs.close_button) - .w_h(20.0, 20.0) + .w_h(28.0, 28.0) .hover_image(self.imgs.close_button_hover) .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.social_frame, 17.0, 5.0) + .top_right_with_margins_on(self.ids.social_frame, 12.0, 0.0) .set(self.ids.social_close, ui_widgets) .was_clicked() { @@ -1297,10 +1327,10 @@ impl Hud { // X-Button if Button::image(self.imgs.close_button) - .w_h(20.0, 20.0) + .w_h(14.0, 14.0) .hover_image(self.imgs.close_button_hover) .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.spellbook_frame, 17.0, 5.0) + .top_right_with_margins_on(self.ids.spellbook_frame, 12.0, 0.0) .set(self.ids.spellbook_close, ui_widgets) .was_clicked() { @@ -1492,10 +1522,11 @@ impl Hud { // 2 Map if self.map_open { - // BG - Image::new(self.imgs.map_bg) - .w_h(824.0, 488.0) - .mid_top_with_margin_on(ui_widgets.window, 200.0) + // BG + Rectangle::fill_with([824.0, 976.0], color::TRANSPARENT) + .mid_top_with_margin_on(ui_widgets.window, 15.0) + .scroll_kids() + .scroll_kids_vertically() .set(self.ids.map_bg, ui_widgets); // Frame Image::new(self.imgs.map_frame_l) @@ -1504,8 +1535,17 @@ impl Hud { .set(self.ids.map_frame_l, ui_widgets); Image::new(self.imgs.map_frame_r) .top_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) - .w_h(1648.0 / 4.0, 1952.0 / 4.0) + .w_h(412.0, 488.0) .set(self.ids.map_frame_r, ui_widgets); + Image::new(self.imgs.map_frame_br) + .bottom_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_br, ui_widgets); + Image::new(self.imgs.map_frame_bl) + .bottom_left_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_bl, ui_widgets); + // Icon Image::new(self.imgs.map_icon) @@ -1515,21 +1555,21 @@ impl Hud { // X-Button if Button::image(self.imgs.close_button) - .w_h(20.0, 20.0) + .w_h(28.0, 28.0) .hover_image(self.imgs.close_button_hover) .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.map_frame_r, 17.0, 5.0) + .top_right_with_margins_on(self.ids.map_frame_r, 0.0, 0.0) .set(self.ids.map_close, ui_widgets) .was_clicked() { self.map_open = false; } // Title - Text::new("Map") - .mid_top_with_margin_on(self.ids.map_bg, -7.0) - .font_size(14) - .color(TEXT_COLOR) - .set(self.ids.map_title, ui_widgets); + //Text::new("Map") + //.mid_top_with_margin_on(self.ids.map_bg, -7.0) + //.font_size(14) + //.color(TEXT_COLOR) + //.set(self.ids.map_title, ui_widgets); } // ESC-MENU From 22d17341838059f67320fea01821b1a1c075475d Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Mon, 29 Apr 2019 00:01:57 +0200 Subject: [PATCH 02/45] Map Window, Settings Window Former-commit-id: c6878d353c8e3b92509d6e95fa75a0f874b5abf9 --- voxygen/src/hud/mod.rs | 100 ++++++++++++++++++++++++++++------------- 1 file changed, 70 insertions(+), 30 deletions(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 228a89a0a8..7a2a03c308 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -99,6 +99,8 @@ widget_ids! { settings_button_mo, settings_close, settings_title, + settings_r, + settings_l, //Contents button_help, button_help2, @@ -123,6 +125,8 @@ widget_ids! { map_title, map_frame_l, map_frame_r, + map_frame_bl, + map_frame_br, //3 Spellbook spellbook_frame, spellbook_bg, @@ -238,6 +242,12 @@ pub(self) struct Imgs { window_frame: ImgId, window_frame_2: ImgId, //Settings-Window + settings_frame_r: ImgId, + settings_frame_l: ImgId, + settings_button: ImgId, + settings_button_pressed: ImgId, + settings_button_hover: ImgId, + settings_button_press: ImgId, settings_bg: ImgId, settings_icon: ImgId, settings_button_mo: ImgId, @@ -260,6 +270,8 @@ pub(self) struct Imgs { map_icon: ImgId, map_frame_l: ImgId, map_frame_r: ImgId, + map_frame_bl: ImgId, + map_frame_br: ImgId, // Spell Book Window spellbook_bg: ImgId, spellbook_icon: ImgId, @@ -388,6 +400,12 @@ impl Imgs { window_frame_2: load_img("element/frames/window_2.png", ui), // Settings Window + settings_frame_r: load_vox("element/frames/settings_r.vox", ui), + settings_frame_l: load_vox("element/frames/settings_l.vox", ui), + settings_button: load_vox("element/buttons/settings_button.vox", ui), + settings_button_pressed: load_vox("element/buttons/settings_button_pressed.vox", ui), + settings_button_hover: load_vox("element/buttons/settings_button_hover.vox", ui), + settings_button_press: load_vox("element/buttons/settings_button_press.vox", ui), settings_bg: load_img("element/frames/settings.png", ui), settings_icon: load_img("element/icons/settings.png", ui), settings_button_mo: load_img("element/buttons/blue_mo.png", ui), @@ -414,6 +432,8 @@ impl Imgs { map_icon: load_img("element/icons/map.png", ui), map_frame_l: load_vox("element/frames/map_l.vox", ui), map_frame_r: load_vox("element/frames/map_r.vox", ui), + map_frame_bl: load_vox("element/frames/map_bl.vox", ui), + map_frame_br: load_vox("element/frames/map_br.vox", ui), // Spell Book Window spellbook_bg: load_img("element/misc_bg/small_bg.png", ui), @@ -658,7 +678,7 @@ impl Hud { }; if Button::image(if self.mmap_open {self.imgs.mmap_open} else {self.imgs.mmap_closed}) - .w_h(10.0 * 2.0, 10.0 * 2.0) + .w_h(100.0 * 0.2, 100.0 * 0.2) .hover_image(if self.mmap_open {self.imgs.mmap_open_hover} else {self.imgs.mmap_closed_hover}) .press_image(if self.mmap_open {self.imgs.mmap_open_press} else {self.imgs.mmap_closed_press}) .top_right_with_margins_on(self.ids.mmap_frame, 0.0, 0.0) @@ -950,11 +970,11 @@ impl Hud { // Contents Image::new(self.imgs.bag_contents) .w_h(68.0 * 4.0, 123.0 * 4.0) - .bottom_right_with_margins_on(ui_widgets.window, 90.0, 5.0) + .bottom_right_with_margins_on(ui_widgets.window, 60.0, 5.0) .set(self.ids.bag_contents, ui_widgets); // Alignment for Grid - Rectangle::fill_with([(58.0 * 4.0) - 5.0, 100.0 * 4.0], color::TRANSPARENT) + Rectangle::fill_with([58.0 * 4.0 - 5.0, 100.0 * 4.0], color::TRANSPARENT) .top_left_with_margins_on(self.ids.bag_contents, 11.0 * 4.0, 5.0 * 4.0) .scroll_kids() .scroll_kids_vertically() @@ -1028,17 +1048,27 @@ impl Hud { // 0 Settings if let Windows::Settings = self.open_windows { - // BG - Image::new(self.imgs.window_frame) + // Alignment + Rectangle::fill_with([824.0, 488.0], color::TRANSPARENT) .middle_of(ui_widgets.window) - .w_h(1648.0 / 2.5, 1952.0 / 2.5) + .scroll_kids() + .scroll_kids_vertically() .set(self.ids.settings_bg, ui_widgets); + // Frame + Image::new(self.imgs.settings_frame_l) + .top_left_with_margins_on(self.ids.settings_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.settings_l, ui_widgets); + Image::new(self.imgs.settings_frame_r) + .top_right_with_margins_on(self.ids.settings_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.settings_r, ui_widgets); // X-Button if Button::image(self.imgs.close_button) - .w_h(244.0 * 0.22 / 2.5, 244.0 * 0.22 / 2.5) + .w_h(28.0, 28.0) .hover_image(self.imgs.close_button_hover) .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.settings_bg, 4.0, 4.0) + .top_right_with_margins_on(self.ids.settings_r, 0.0, 0.0) .set(self.ids.settings_close, ui_widgets) .was_clicked() { @@ -1048,15 +1078,15 @@ impl Hud { // Title Text::new("Settings") - .mid_top_with_margin_on(self.ids.settings_bg, 10.0) - .font_size(30) + .mid_top_with_margin_on(self.ids.settings_bg, 5.0) + .font_size(14) .color(TEXT_COLOR) .set(self.ids.settings_title, ui_widgets); // Icon - Image::new(self.imgs.settings_icon) - .w_h(224.0 / 3.0, 224.0 / 3.0) - .top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) - .set(self.ids.settings_icon, ui_widgets); + //Image::new(self.imgs.settings_icon) + //.w_h(224.0 / 3.0, 224.0 / 3.0) + //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) + //.set(self.ids.settings_icon, ui_widgets); // TODO: Find out if we can remove this // Alignment Rectangle Rectangle::fill_with([1008.0 / 2.5, 1616.0 / 2.5], color::TRANSPARENT) @@ -1247,10 +1277,10 @@ impl Hud { // X-Button if Button::image(self.imgs.close_button) - .w_h(20.0, 20.0) + .w_h(28.0, 28.0) .hover_image(self.imgs.close_button_hover) .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.social_frame, 17.0, 5.0) + .top_right_with_margins_on(self.ids.social_frame, 12.0, 0.0) .set(self.ids.social_close, ui_widgets) .was_clicked() { @@ -1297,10 +1327,10 @@ impl Hud { // X-Button if Button::image(self.imgs.close_button) - .w_h(20.0, 20.0) + .w_h(14.0, 14.0) .hover_image(self.imgs.close_button_hover) .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.spellbook_frame, 17.0, 5.0) + .top_right_with_margins_on(self.ids.spellbook_frame, 12.0, 0.0) .set(self.ids.spellbook_close, ui_widgets) .was_clicked() { @@ -1492,10 +1522,11 @@ impl Hud { // 2 Map if self.map_open { - // BG - Image::new(self.imgs.map_bg) - .w_h(824.0, 488.0) - .mid_top_with_margin_on(ui_widgets.window, 200.0) + // BG + Rectangle::fill_with([824.0, 976.0], color::TRANSPARENT) + .mid_top_with_margin_on(ui_widgets.window, 15.0) + .scroll_kids() + .scroll_kids_vertically() .set(self.ids.map_bg, ui_widgets); // Frame Image::new(self.imgs.map_frame_l) @@ -1504,8 +1535,17 @@ impl Hud { .set(self.ids.map_frame_l, ui_widgets); Image::new(self.imgs.map_frame_r) .top_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) - .w_h(1648.0 / 4.0, 1952.0 / 4.0) + .w_h(412.0, 488.0) .set(self.ids.map_frame_r, ui_widgets); + Image::new(self.imgs.map_frame_br) + .bottom_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_br, ui_widgets); + Image::new(self.imgs.map_frame_bl) + .bottom_left_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_bl, ui_widgets); + // Icon Image::new(self.imgs.map_icon) @@ -1515,21 +1555,21 @@ impl Hud { // X-Button if Button::image(self.imgs.close_button) - .w_h(20.0, 20.0) + .w_h(28.0, 28.0) .hover_image(self.imgs.close_button_hover) .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.map_frame_r, 17.0, 5.0) + .top_right_with_margins_on(self.ids.map_frame_r, 0.0, 0.0) .set(self.ids.map_close, ui_widgets) .was_clicked() { self.map_open = false; } // Title - Text::new("Map") - .mid_top_with_margin_on(self.ids.map_bg, -7.0) - .font_size(14) - .color(TEXT_COLOR) - .set(self.ids.map_title, ui_widgets); + //Text::new("Map") + //.mid_top_with_margin_on(self.ids.map_bg, -7.0) + //.font_size(14) + //.color(TEXT_COLOR) + //.set(self.ids.map_title, ui_widgets); } // ESC-MENU From 8756b3cf1e363ca72a39a0a9165a91acbb6c7d56 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Mon, 29 Apr 2019 20:13:22 +0200 Subject: [PATCH 03/45] settings window Former-commit-id: a63a117d9595db501b135677b720dbbfbdfad2ad --- voxygen/src/hud/mod.rs | 130 ++++++++++++++++++++++++++++------------- 1 file changed, 89 insertions(+), 41 deletions(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 7a2a03c308..794d63ea6f 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -95,6 +95,7 @@ widget_ids! { window_frame_5, //0 Settings-Window settings_bg, + settings_content, settings_icon, settings_button_mo, settings_close, @@ -1048,11 +1049,9 @@ impl Hud { // 0 Settings if let Windows::Settings = self.open_windows { - // Alignment + // Frame Alignment Rectangle::fill_with([824.0, 488.0], color::TRANSPARENT) - .middle_of(ui_widgets.window) - .scroll_kids() - .scroll_kids_vertically() + .middle_of(ui_widgets.window) .set(self.ids.settings_bg, ui_widgets); // Frame Image::new(self.imgs.settings_frame_l) @@ -1060,9 +1059,16 @@ impl Hud { .w_h(412.0, 488.0) .set(self.ids.settings_l, ui_widgets); Image::new(self.imgs.settings_frame_r) - .top_right_with_margins_on(self.ids.settings_bg, 0.0, 0.0) + .right_from(self.ids.settings_l, 0.0) + .parent(self.ids.settings_bg) .w_h(412.0, 488.0) .set(self.ids.settings_r, ui_widgets); + // Content Alignment + Rectangle::fill_with([189.0*4.0, 97.0*4.0], color::TRANSPARENT) + .top_right_with_margins_on(self.ids.settings_r, 21.0*4.0, 4.0*4.0) + .scroll_kids() + .scroll_kids_vertically() + .set(self.ids.settings_content, ui_widgets); // X-Button if Button::image(self.imgs.close_button) .w_h(28.0, 28.0) @@ -1095,14 +1101,22 @@ impl Hud { // 1 Interface//////////////////////////// if Button::image(if let SettingsTab::Interface = self.settings_tab { - self.imgs.button_blue_mo + self.imgs.settings_button_pressed } else { - self.imgs.button_blank + self.imgs.settings_button }) - .w_h(304.0 / 2.5, 80.0 / 2.5) - .hover_image(self.imgs.button_blue_mo) - .press_image(self.imgs.button_blue_press) - .top_left_with_margins_on(self.ids.settings_bg, 78.0, 50.0) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Interface = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Interface = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .top_left_with_margins_on(self.ids.settings_l, 8.0*4.0, 2.0*4.0) .label("Interface") .label_font_size(14) .label_color(TEXT_COLOR) @@ -1116,7 +1130,7 @@ impl Hud { self.show_help = ToggleButton::new(self.show_help, self.imgs.check, self.imgs.check_checked) .w_h(288.0 / 24.0, 288.0 / 24.0) - .top_left_with_margins_on(self.ids.rectangle, 15.0, 15.0) + .top_left_with_margins_on(self.ids.settings_content, 5.0, 5.0) .hover_images(self.imgs.check_checked_mo, self.imgs.check_mo) .press_images(self.imgs.check_press, self.imgs.check_press) .set(self.ids.button_help, ui_widgets); @@ -1165,15 +1179,23 @@ impl Hud { } // 2 Gameplay//////////////// - if Button::image(if let SettingsTab::Gameplay = self.settings_tab { - self.imgs.button_blue_mo + if Button::image(if let SettingsTab::Gameplay = self.settings_tab { + self.imgs.settings_button_pressed } else { - self.imgs.button_blank + self.imgs.settings_button }) - .w_h(304.0 / 2.5, 80.0 / 2.5) - .hover_image(self.imgs.button_blue_mo) - .press_image(self.imgs.button_blue_press) - .down_from(self.ids.interface, 1.0) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Gameplay = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Gameplay = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .right_from(self.ids.interface, 0.0) .label("Gameplay") .label_font_size(14) .label_color(TEXT_COLOR) @@ -1185,14 +1207,22 @@ impl Hud { // 3 Controls///////////////////// if Button::image(if let SettingsTab::Controls = self.settings_tab { - self.imgs.button_blue_mo + self.imgs.settings_button_pressed } else { - self.imgs.button_blank + self.imgs.settings_button }) - .w_h(304.0 / 2.5, 80.0 / 2.5) - .hover_image(self.imgs.button_blue_mo) - .press_image(self.imgs.button_blue_press) - .down_from(self.ids.gameplay, 1.0) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Controls = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Controls = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .right_from(self.ids.gameplay, 0.0) .label("Controls") .label_font_size(14) .label_color(TEXT_COLOR) @@ -1203,16 +1233,25 @@ impl Hud { } // 4 Video//////////////////////////////// - if Button::image(if let SettingsTab::Video = self.settings_tab { - self.imgs.button_blue_mo + if Button::image(if let SettingsTab::Video = self.settings_tab { + self.imgs.settings_button_pressed } else { - self.imgs.button_blank + self.imgs.settings_button }) - .w_h(304.0 / 2.5, 80.0 / 2.5) - .hover_image(self.imgs.button_blue_mo) - .press_image(self.imgs.button_blue_press) - .down_from(self.ids.controls, 1.0) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Video = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Video = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .right_from(self.ids.controls, 0.0) .label("Video") + .parent(self.ids.settings_r) .label_font_size(14) .label_color(TEXT_COLOR) .set(self.ids.video, ui_widgets) @@ -1223,14 +1262,23 @@ impl Hud { // 5 Sound/////////////////////////////// if Button::image(if let SettingsTab::Sound = self.settings_tab { - self.imgs.button_blue_mo + self.imgs.settings_button_pressed } else { - self.imgs.button_blank + self.imgs.settings_button }) - .w_h(304.0 / 2.5, 80.0 / 2.5) - .hover_image(self.imgs.button_blue_mo) - .press_image(self.imgs.button_blue_press) - .down_from(self.ids.video, 1.0) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Sound = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Sound = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .right_from(self.ids.video, 0.0) + .parent(self.ids.settings_r) .label("Sound") .label_font_size(14) .label_color(TEXT_COLOR) @@ -1534,15 +1582,15 @@ impl Hud { .w_h(412.0, 488.0) .set(self.ids.map_frame_l, ui_widgets); Image::new(self.imgs.map_frame_r) - .top_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .right_from(self.ids.map_frame_l, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_r, ui_widgets); Image::new(self.imgs.map_frame_br) - .bottom_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .down_from(self.ids.map_frame_r, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_br, ui_widgets); Image::new(self.imgs.map_frame_bl) - .bottom_left_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .down_from(self.ids.map_frame_l, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_bl, ui_widgets); From 10c212802a43c9085e272ba1fc2b89ffbc2ac3ab Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Mon, 29 Apr 2019 00:01:57 +0200 Subject: [PATCH 04/45] Map Window, Settings Window Former-commit-id: 66f1b1d3e9e2dbb757bdbc82ed417b23cb201831 --- voxygen/src/hud/mod.rs | 100 ++++++++++++++++++++++++++++------------- 1 file changed, 70 insertions(+), 30 deletions(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 228a89a0a8..7a2a03c308 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -99,6 +99,8 @@ widget_ids! { settings_button_mo, settings_close, settings_title, + settings_r, + settings_l, //Contents button_help, button_help2, @@ -123,6 +125,8 @@ widget_ids! { map_title, map_frame_l, map_frame_r, + map_frame_bl, + map_frame_br, //3 Spellbook spellbook_frame, spellbook_bg, @@ -238,6 +242,12 @@ pub(self) struct Imgs { window_frame: ImgId, window_frame_2: ImgId, //Settings-Window + settings_frame_r: ImgId, + settings_frame_l: ImgId, + settings_button: ImgId, + settings_button_pressed: ImgId, + settings_button_hover: ImgId, + settings_button_press: ImgId, settings_bg: ImgId, settings_icon: ImgId, settings_button_mo: ImgId, @@ -260,6 +270,8 @@ pub(self) struct Imgs { map_icon: ImgId, map_frame_l: ImgId, map_frame_r: ImgId, + map_frame_bl: ImgId, + map_frame_br: ImgId, // Spell Book Window spellbook_bg: ImgId, spellbook_icon: ImgId, @@ -388,6 +400,12 @@ impl Imgs { window_frame_2: load_img("element/frames/window_2.png", ui), // Settings Window + settings_frame_r: load_vox("element/frames/settings_r.vox", ui), + settings_frame_l: load_vox("element/frames/settings_l.vox", ui), + settings_button: load_vox("element/buttons/settings_button.vox", ui), + settings_button_pressed: load_vox("element/buttons/settings_button_pressed.vox", ui), + settings_button_hover: load_vox("element/buttons/settings_button_hover.vox", ui), + settings_button_press: load_vox("element/buttons/settings_button_press.vox", ui), settings_bg: load_img("element/frames/settings.png", ui), settings_icon: load_img("element/icons/settings.png", ui), settings_button_mo: load_img("element/buttons/blue_mo.png", ui), @@ -414,6 +432,8 @@ impl Imgs { map_icon: load_img("element/icons/map.png", ui), map_frame_l: load_vox("element/frames/map_l.vox", ui), map_frame_r: load_vox("element/frames/map_r.vox", ui), + map_frame_bl: load_vox("element/frames/map_bl.vox", ui), + map_frame_br: load_vox("element/frames/map_br.vox", ui), // Spell Book Window spellbook_bg: load_img("element/misc_bg/small_bg.png", ui), @@ -658,7 +678,7 @@ impl Hud { }; if Button::image(if self.mmap_open {self.imgs.mmap_open} else {self.imgs.mmap_closed}) - .w_h(10.0 * 2.0, 10.0 * 2.0) + .w_h(100.0 * 0.2, 100.0 * 0.2) .hover_image(if self.mmap_open {self.imgs.mmap_open_hover} else {self.imgs.mmap_closed_hover}) .press_image(if self.mmap_open {self.imgs.mmap_open_press} else {self.imgs.mmap_closed_press}) .top_right_with_margins_on(self.ids.mmap_frame, 0.0, 0.0) @@ -950,11 +970,11 @@ impl Hud { // Contents Image::new(self.imgs.bag_contents) .w_h(68.0 * 4.0, 123.0 * 4.0) - .bottom_right_with_margins_on(ui_widgets.window, 90.0, 5.0) + .bottom_right_with_margins_on(ui_widgets.window, 60.0, 5.0) .set(self.ids.bag_contents, ui_widgets); // Alignment for Grid - Rectangle::fill_with([(58.0 * 4.0) - 5.0, 100.0 * 4.0], color::TRANSPARENT) + Rectangle::fill_with([58.0 * 4.0 - 5.0, 100.0 * 4.0], color::TRANSPARENT) .top_left_with_margins_on(self.ids.bag_contents, 11.0 * 4.0, 5.0 * 4.0) .scroll_kids() .scroll_kids_vertically() @@ -1028,17 +1048,27 @@ impl Hud { // 0 Settings if let Windows::Settings = self.open_windows { - // BG - Image::new(self.imgs.window_frame) + // Alignment + Rectangle::fill_with([824.0, 488.0], color::TRANSPARENT) .middle_of(ui_widgets.window) - .w_h(1648.0 / 2.5, 1952.0 / 2.5) + .scroll_kids() + .scroll_kids_vertically() .set(self.ids.settings_bg, ui_widgets); + // Frame + Image::new(self.imgs.settings_frame_l) + .top_left_with_margins_on(self.ids.settings_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.settings_l, ui_widgets); + Image::new(self.imgs.settings_frame_r) + .top_right_with_margins_on(self.ids.settings_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.settings_r, ui_widgets); // X-Button if Button::image(self.imgs.close_button) - .w_h(244.0 * 0.22 / 2.5, 244.0 * 0.22 / 2.5) + .w_h(28.0, 28.0) .hover_image(self.imgs.close_button_hover) .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.settings_bg, 4.0, 4.0) + .top_right_with_margins_on(self.ids.settings_r, 0.0, 0.0) .set(self.ids.settings_close, ui_widgets) .was_clicked() { @@ -1048,15 +1078,15 @@ impl Hud { // Title Text::new("Settings") - .mid_top_with_margin_on(self.ids.settings_bg, 10.0) - .font_size(30) + .mid_top_with_margin_on(self.ids.settings_bg, 5.0) + .font_size(14) .color(TEXT_COLOR) .set(self.ids.settings_title, ui_widgets); // Icon - Image::new(self.imgs.settings_icon) - .w_h(224.0 / 3.0, 224.0 / 3.0) - .top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) - .set(self.ids.settings_icon, ui_widgets); + //Image::new(self.imgs.settings_icon) + //.w_h(224.0 / 3.0, 224.0 / 3.0) + //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) + //.set(self.ids.settings_icon, ui_widgets); // TODO: Find out if we can remove this // Alignment Rectangle Rectangle::fill_with([1008.0 / 2.5, 1616.0 / 2.5], color::TRANSPARENT) @@ -1247,10 +1277,10 @@ impl Hud { // X-Button if Button::image(self.imgs.close_button) - .w_h(20.0, 20.0) + .w_h(28.0, 28.0) .hover_image(self.imgs.close_button_hover) .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.social_frame, 17.0, 5.0) + .top_right_with_margins_on(self.ids.social_frame, 12.0, 0.0) .set(self.ids.social_close, ui_widgets) .was_clicked() { @@ -1297,10 +1327,10 @@ impl Hud { // X-Button if Button::image(self.imgs.close_button) - .w_h(20.0, 20.0) + .w_h(14.0, 14.0) .hover_image(self.imgs.close_button_hover) .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.spellbook_frame, 17.0, 5.0) + .top_right_with_margins_on(self.ids.spellbook_frame, 12.0, 0.0) .set(self.ids.spellbook_close, ui_widgets) .was_clicked() { @@ -1492,10 +1522,11 @@ impl Hud { // 2 Map if self.map_open { - // BG - Image::new(self.imgs.map_bg) - .w_h(824.0, 488.0) - .mid_top_with_margin_on(ui_widgets.window, 200.0) + // BG + Rectangle::fill_with([824.0, 976.0], color::TRANSPARENT) + .mid_top_with_margin_on(ui_widgets.window, 15.0) + .scroll_kids() + .scroll_kids_vertically() .set(self.ids.map_bg, ui_widgets); // Frame Image::new(self.imgs.map_frame_l) @@ -1504,8 +1535,17 @@ impl Hud { .set(self.ids.map_frame_l, ui_widgets); Image::new(self.imgs.map_frame_r) .top_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) - .w_h(1648.0 / 4.0, 1952.0 / 4.0) + .w_h(412.0, 488.0) .set(self.ids.map_frame_r, ui_widgets); + Image::new(self.imgs.map_frame_br) + .bottom_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_br, ui_widgets); + Image::new(self.imgs.map_frame_bl) + .bottom_left_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_bl, ui_widgets); + // Icon Image::new(self.imgs.map_icon) @@ -1515,21 +1555,21 @@ impl Hud { // X-Button if Button::image(self.imgs.close_button) - .w_h(20.0, 20.0) + .w_h(28.0, 28.0) .hover_image(self.imgs.close_button_hover) .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.map_frame_r, 17.0, 5.0) + .top_right_with_margins_on(self.ids.map_frame_r, 0.0, 0.0) .set(self.ids.map_close, ui_widgets) .was_clicked() { self.map_open = false; } // Title - Text::new("Map") - .mid_top_with_margin_on(self.ids.map_bg, -7.0) - .font_size(14) - .color(TEXT_COLOR) - .set(self.ids.map_title, ui_widgets); + //Text::new("Map") + //.mid_top_with_margin_on(self.ids.map_bg, -7.0) + //.font_size(14) + //.color(TEXT_COLOR) + //.set(self.ids.map_title, ui_widgets); } // ESC-MENU From 43faae2a85027e89d2bc5ef81eb68e2b43e9a6e3 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Mon, 29 Apr 2019 20:13:22 +0200 Subject: [PATCH 05/45] settings window Former-commit-id: da0b82d0219fd2cfc105d5abb6e4d99caf87c379 --- voxygen/src/hud/mod.rs | 130 ++++++++++++++++++++++++++++------------- 1 file changed, 89 insertions(+), 41 deletions(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 7a2a03c308..794d63ea6f 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -95,6 +95,7 @@ widget_ids! { window_frame_5, //0 Settings-Window settings_bg, + settings_content, settings_icon, settings_button_mo, settings_close, @@ -1048,11 +1049,9 @@ impl Hud { // 0 Settings if let Windows::Settings = self.open_windows { - // Alignment + // Frame Alignment Rectangle::fill_with([824.0, 488.0], color::TRANSPARENT) - .middle_of(ui_widgets.window) - .scroll_kids() - .scroll_kids_vertically() + .middle_of(ui_widgets.window) .set(self.ids.settings_bg, ui_widgets); // Frame Image::new(self.imgs.settings_frame_l) @@ -1060,9 +1059,16 @@ impl Hud { .w_h(412.0, 488.0) .set(self.ids.settings_l, ui_widgets); Image::new(self.imgs.settings_frame_r) - .top_right_with_margins_on(self.ids.settings_bg, 0.0, 0.0) + .right_from(self.ids.settings_l, 0.0) + .parent(self.ids.settings_bg) .w_h(412.0, 488.0) .set(self.ids.settings_r, ui_widgets); + // Content Alignment + Rectangle::fill_with([189.0*4.0, 97.0*4.0], color::TRANSPARENT) + .top_right_with_margins_on(self.ids.settings_r, 21.0*4.0, 4.0*4.0) + .scroll_kids() + .scroll_kids_vertically() + .set(self.ids.settings_content, ui_widgets); // X-Button if Button::image(self.imgs.close_button) .w_h(28.0, 28.0) @@ -1095,14 +1101,22 @@ impl Hud { // 1 Interface//////////////////////////// if Button::image(if let SettingsTab::Interface = self.settings_tab { - self.imgs.button_blue_mo + self.imgs.settings_button_pressed } else { - self.imgs.button_blank + self.imgs.settings_button }) - .w_h(304.0 / 2.5, 80.0 / 2.5) - .hover_image(self.imgs.button_blue_mo) - .press_image(self.imgs.button_blue_press) - .top_left_with_margins_on(self.ids.settings_bg, 78.0, 50.0) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Interface = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Interface = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .top_left_with_margins_on(self.ids.settings_l, 8.0*4.0, 2.0*4.0) .label("Interface") .label_font_size(14) .label_color(TEXT_COLOR) @@ -1116,7 +1130,7 @@ impl Hud { self.show_help = ToggleButton::new(self.show_help, self.imgs.check, self.imgs.check_checked) .w_h(288.0 / 24.0, 288.0 / 24.0) - .top_left_with_margins_on(self.ids.rectangle, 15.0, 15.0) + .top_left_with_margins_on(self.ids.settings_content, 5.0, 5.0) .hover_images(self.imgs.check_checked_mo, self.imgs.check_mo) .press_images(self.imgs.check_press, self.imgs.check_press) .set(self.ids.button_help, ui_widgets); @@ -1165,15 +1179,23 @@ impl Hud { } // 2 Gameplay//////////////// - if Button::image(if let SettingsTab::Gameplay = self.settings_tab { - self.imgs.button_blue_mo + if Button::image(if let SettingsTab::Gameplay = self.settings_tab { + self.imgs.settings_button_pressed } else { - self.imgs.button_blank + self.imgs.settings_button }) - .w_h(304.0 / 2.5, 80.0 / 2.5) - .hover_image(self.imgs.button_blue_mo) - .press_image(self.imgs.button_blue_press) - .down_from(self.ids.interface, 1.0) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Gameplay = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Gameplay = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .right_from(self.ids.interface, 0.0) .label("Gameplay") .label_font_size(14) .label_color(TEXT_COLOR) @@ -1185,14 +1207,22 @@ impl Hud { // 3 Controls///////////////////// if Button::image(if let SettingsTab::Controls = self.settings_tab { - self.imgs.button_blue_mo + self.imgs.settings_button_pressed } else { - self.imgs.button_blank + self.imgs.settings_button }) - .w_h(304.0 / 2.5, 80.0 / 2.5) - .hover_image(self.imgs.button_blue_mo) - .press_image(self.imgs.button_blue_press) - .down_from(self.ids.gameplay, 1.0) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Controls = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Controls = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .right_from(self.ids.gameplay, 0.0) .label("Controls") .label_font_size(14) .label_color(TEXT_COLOR) @@ -1203,16 +1233,25 @@ impl Hud { } // 4 Video//////////////////////////////// - if Button::image(if let SettingsTab::Video = self.settings_tab { - self.imgs.button_blue_mo + if Button::image(if let SettingsTab::Video = self.settings_tab { + self.imgs.settings_button_pressed } else { - self.imgs.button_blank + self.imgs.settings_button }) - .w_h(304.0 / 2.5, 80.0 / 2.5) - .hover_image(self.imgs.button_blue_mo) - .press_image(self.imgs.button_blue_press) - .down_from(self.ids.controls, 1.0) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Video = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Video = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .right_from(self.ids.controls, 0.0) .label("Video") + .parent(self.ids.settings_r) .label_font_size(14) .label_color(TEXT_COLOR) .set(self.ids.video, ui_widgets) @@ -1223,14 +1262,23 @@ impl Hud { // 5 Sound/////////////////////////////// if Button::image(if let SettingsTab::Sound = self.settings_tab { - self.imgs.button_blue_mo + self.imgs.settings_button_pressed } else { - self.imgs.button_blank + self.imgs.settings_button }) - .w_h(304.0 / 2.5, 80.0 / 2.5) - .hover_image(self.imgs.button_blue_mo) - .press_image(self.imgs.button_blue_press) - .down_from(self.ids.video, 1.0) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Sound = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Sound = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .right_from(self.ids.video, 0.0) + .parent(self.ids.settings_r) .label("Sound") .label_font_size(14) .label_color(TEXT_COLOR) @@ -1534,15 +1582,15 @@ impl Hud { .w_h(412.0, 488.0) .set(self.ids.map_frame_l, ui_widgets); Image::new(self.imgs.map_frame_r) - .top_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .right_from(self.ids.map_frame_l, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_r, ui_widgets); Image::new(self.imgs.map_frame_br) - .bottom_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .down_from(self.ids.map_frame_r, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_br, ui_widgets); Image::new(self.imgs.map_frame_bl) - .bottom_left_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .down_from(self.ids.map_frame_l, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_bl, ui_widgets); From 49e6fb617287f4cdd0fc5a9314bed6d68a89fd1b Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Mon, 29 Apr 2019 20:51:26 +0200 Subject: [PATCH 06/45] settings window Former-commit-id: b647fa56d26cf9f8e4a2a14ebbad43384d87e50c --- voxygen/src/hud/mod.rs | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 794d63ea6f..7bdb483e45 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -1064,7 +1064,7 @@ impl Hud { .w_h(412.0, 488.0) .set(self.ids.settings_r, ui_widgets); // Content Alignment - Rectangle::fill_with([189.0*4.0, 97.0*4.0], color::TRANSPARENT) + Rectangle::fill_with([198.0*4.0, 97.0*4.0], color::TRANSPARENT) .top_right_with_margins_on(self.ids.settings_r, 21.0*4.0, 4.0*4.0) .scroll_kids() .scroll_kids_vertically() @@ -1093,11 +1093,7 @@ impl Hud { //.w_h(224.0 / 3.0, 224.0 / 3.0) //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) //.set(self.ids.settings_icon, ui_widgets); - // TODO: Find out if we can remove this - // Alignment Rectangle - Rectangle::fill_with([1008.0 / 2.5, 1616.0 / 2.5], color::TRANSPARENT) - .top_left_with_margins_on(self.ids.settings_bg, 77.0, 205.0) - .set(self.ids.rectangle, ui_widgets); + // TODO: Find out if we can remove this // 1 Interface//////////////////////////// if Button::image(if let SettingsTab::Interface = self.settings_tab { @@ -1136,7 +1132,7 @@ impl Hud { .set(self.ids.button_help, ui_widgets); Text::new("Show Help") .right_from(self.ids.button_help, 10.0) - .font_size(12) + .font_size(14) .font_id(self.font_opensans) .graphics_for(self.ids.button_help) .color(TEXT_COLOR) @@ -1148,14 +1144,14 @@ impl Hud { self.imgs.check_checked, ) .w_h(288.0 / 24.0, 288.0 / 24.0) - .top_left_with_margins_on(self.ids.rectangle, 40.0, 15.0) + .down_from(self.ids.button_help, 7.0) .hover_images(self.imgs.check_checked_mo, self.imgs.check_mo) .press_images(self.imgs.check_press, self.imgs.check_press) .set(self.ids.inventorytest_button, ui_widgets); Text::new("Show Inventory Test Button") .right_from(self.ids.inventorytest_button, 10.0) - .font_size(12) + .font_size(14) .font_id(self.font_opensans) .graphics_for(self.ids.inventorytest_button) .color(TEXT_COLOR) @@ -1164,14 +1160,14 @@ impl Hud { self.show_debug = ToggleButton::new(self.show_debug, self.imgs.check, self.imgs.check_checked) .w_h(288.0 / 24.0, 288.0 / 24.0) - .top_left_with_margins_on(self.ids.rectangle, 65.0, 15.0) + .down_from(self.ids.inventorytest_button, 7.0) .hover_images(self.imgs.check_checked_mo, self.imgs.check_mo) .press_images(self.imgs.check_press, self.imgs.check_press) .set(self.ids.debug_button, ui_widgets); Text::new("Show Debug Window") .right_from(self.ids.debug_button, 10.0) - .font_size(12) + .font_size(14) .font_id(self.font_opensans) .graphics_for(self.ids.debug_button) .color(TEXT_COLOR) From 818d28e765032f936b4afc1bbfc3e4be0aa5d8e5 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Mon, 29 Apr 2019 00:01:57 +0200 Subject: [PATCH 07/45] Map Window, Settings Window Former-commit-id: 74560f37005ec0dc1b5fda6dc18e2b56d74f598d --- voxygen/src/hud/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index d5271f0ca7..210d60c64c 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -1059,9 +1059,11 @@ impl Hud { // 0 Settings if let Windows::Settings = self.open_windows { - // Frame Alignment + // Alignment Rectangle::fill_with([824.0, 488.0], color::TRANSPARENT) .middle_of(ui_widgets.window) + .scroll_kids() + .scroll_kids_vertically() .set(self.ids.settings_bg, ui_widgets); // Frame Image::new(self.imgs.settings_frame_l) From 047578eca0cecfd6da737b964e8dea80808fbc42 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Mon, 29 Apr 2019 20:13:22 +0200 Subject: [PATCH 08/45] settings window Former-commit-id: 0dd430bdff017ab95f8df35403c5f4b6d8f10198 --- voxygen/src/hud/mod.rs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 210d60c64c..2aa0a4a3e2 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -1059,18 +1059,20 @@ impl Hud { // 0 Settings if let Windows::Settings = self.open_windows { - // Alignment + // Frame Alignment Rectangle::fill_with([824.0, 488.0], color::TRANSPARENT) - .middle_of(ui_widgets.window) - .scroll_kids() - .scroll_kids_vertically() + .middle_of(ui_widgets.window) .set(self.ids.settings_bg, ui_widgets); // Frame Image::new(self.imgs.settings_frame_l) .top_left_with_margins_on(self.ids.settings_bg, 0.0, 0.0) .w_h(412.0, 488.0) .set(self.ids.settings_l, ui_widgets); +<<<<<<< HEAD Image::new(self.imgs.settings_frame_r) +======= + Image::new(self.imgs.settings_frame_r) +>>>>>>> settings window .right_from(self.ids.settings_l, 0.0) .parent(self.ids.settings_bg) .w_h(412.0, 488.0) From 0ed94d010cf0013201413e818d23ca9f7447e7c7 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Mon, 29 Apr 2019 00:01:57 +0200 Subject: [PATCH 09/45] Map Window, Settings Window Former-commit-id: 72ac20ecdcaccf39c1691be1fbdcb5305d900e78 --- voxygen/src/hud/mod.rs | 45 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 43 insertions(+), 2 deletions(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 2aa0a4a3e2..1f30aa3c7e 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -1059,15 +1059,18 @@ impl Hud { // 0 Settings if let Windows::Settings = self.open_windows { - // Frame Alignment + // Alignment Rectangle::fill_with([824.0, 488.0], color::TRANSPARENT) - .middle_of(ui_widgets.window) + .middle_of(ui_widgets.window) + .scroll_kids() + .scroll_kids_vertically() .set(self.ids.settings_bg, ui_widgets); // Frame Image::new(self.imgs.settings_frame_l) .top_left_with_margins_on(self.ids.settings_bg, 0.0, 0.0) .w_h(412.0, 488.0) .set(self.ids.settings_l, ui_widgets); +<<<<<<< HEAD <<<<<<< HEAD Image::new(self.imgs.settings_frame_r) ======= @@ -1083,6 +1086,12 @@ impl Hud { .scroll_kids() .scroll_kids_vertically() .set(self.ids.settings_content, ui_widgets); +======= + Image::new(self.imgs.settings_frame_r) + .top_right_with_margins_on(self.ids.settings_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.settings_r, ui_widgets); +>>>>>>> Map Window, Settings Window // X-Button if Button::image(self.imgs.close_button) .w_h(28.0, 28.0) @@ -1104,9 +1113,15 @@ impl Hud { .set(self.ids.settings_title, ui_widgets); // Icon //Image::new(self.imgs.settings_icon) +<<<<<<< HEAD //.w_h(224.0 / 3.0, 224.0 / 3.0) //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) //.set(self.ids.settings_icon, ui_widgets); +======= + //.w_h(224.0 / 3.0, 224.0 / 3.0) + //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) + //.set(self.ids.settings_icon, ui_widgets); +>>>>>>> Map Window, Settings Window // TODO: Find out if we can remove this // 1 Interface//////////////////////////// @@ -1580,7 +1595,11 @@ impl Hud { // 2 Map if self.map_open { +<<<<<<< HEAD // BG +======= + // BG +>>>>>>> Map Window, Settings Window Rectangle::fill_with([824.0, 976.0], color::TRANSPARENT) .mid_top_with_margin_on(ui_widgets.window, 15.0) .scroll_kids() @@ -1592,6 +1611,7 @@ impl Hud { .w_h(412.0, 488.0) .set(self.ids.map_frame_l, ui_widgets); Image::new(self.imgs.map_frame_r) +<<<<<<< HEAD .right_from(self.ids.map_frame_l, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_r, ui_widgets); @@ -1603,6 +1623,20 @@ impl Hud { .down_from(self.ids.map_frame_l, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_bl, ui_widgets); +======= + .top_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_r, ui_widgets); + Image::new(self.imgs.map_frame_br) + .bottom_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_br, ui_widgets); + Image::new(self.imgs.map_frame_bl) + .bottom_left_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_bl, ui_widgets); + +>>>>>>> Map Window, Settings Window // Icon Image::new(self.imgs.map_icon) @@ -1623,10 +1657,17 @@ impl Hud { } // Title //Text::new("Map") +<<<<<<< HEAD //.mid_top_with_margin_on(self.ids.map_bg, -7.0) //.font_size(14) //.color(TEXT_COLOR) //.set(self.ids.map_title, ui_widgets); +======= + //.mid_top_with_margin_on(self.ids.map_bg, -7.0) + //.font_size(14) + //.color(TEXT_COLOR) + //.set(self.ids.map_title, ui_widgets); +>>>>>>> Map Window, Settings Window } // ESC-MENU From aa856b953f7496eaacf1b193dca80bb8346b2e9d Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Mon, 29 Apr 2019 20:13:22 +0200 Subject: [PATCH 10/45] settings window Former-commit-id: 1fc6e52bb860c2f114114bd75ef0b260d9f43871 --- voxygen/src/hud/mod.rs | 101 ++++++++++++++++++++++++++++++++++++++--- 1 file changed, 94 insertions(+), 7 deletions(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 1f30aa3c7e..a793381d5f 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -1059,11 +1059,9 @@ impl Hud { // 0 Settings if let Windows::Settings = self.open_windows { - // Alignment + // Frame Alignment Rectangle::fill_with([824.0, 488.0], color::TRANSPARENT) - .middle_of(ui_widgets.window) - .scroll_kids() - .scroll_kids_vertically() + .middle_of(ui_widgets.window) .set(self.ids.settings_bg, ui_widgets); // Frame Image::new(self.imgs.settings_frame_l) @@ -1088,10 +1086,20 @@ impl Hud { .set(self.ids.settings_content, ui_widgets); ======= Image::new(self.imgs.settings_frame_r) - .top_right_with_margins_on(self.ids.settings_bg, 0.0, 0.0) + .right_from(self.ids.settings_l, 0.0) + .parent(self.ids.settings_bg) .w_h(412.0, 488.0) .set(self.ids.settings_r, ui_widgets); +<<<<<<< HEAD >>>>>>> Map Window, Settings Window +======= + // Content Alignment + Rectangle::fill_with([189.0*4.0, 97.0*4.0], color::TRANSPARENT) + .top_right_with_margins_on(self.ids.settings_r, 21.0*4.0, 4.0*4.0) + .scroll_kids() + .scroll_kids_vertically() + .set(self.ids.settings_content, ui_widgets); +>>>>>>> settings window // X-Button if Button::image(self.imgs.close_button) .w_h(28.0, 28.0) @@ -1127,6 +1135,7 @@ impl Hud { // 1 Interface//////////////////////////// if Button::image(if let SettingsTab::Interface = self.settings_tab { self.imgs.settings_button_pressed +<<<<<<< HEAD } else { self.imgs.settings_button }) @@ -1142,6 +1151,23 @@ impl Hud { self.imgs.settings_button_press }) .top_left_with_margins_on(self.ids.settings_l, 8.0 * 4.0, 2.0 * 4.0) +======= + } else { + self.imgs.settings_button + }) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Interface = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Interface = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .top_left_with_margins_on(self.ids.settings_l, 8.0*4.0, 2.0*4.0) +>>>>>>> settings window .label("Interface") .label_font_size(14) .label_color(TEXT_COLOR) @@ -1204,11 +1230,16 @@ impl Hud { } // 2 Gameplay//////////////// +<<<<<<< HEAD if Button::image(if let SettingsTab::Gameplay = self.settings_tab { +======= + if Button::image(if let SettingsTab::Gameplay = self.settings_tab { +>>>>>>> settings window self.imgs.settings_button_pressed } else { self.imgs.settings_button }) +<<<<<<< HEAD .w_h(31.0 * 4.0, 12.0 * 4.0) .hover_image(if let SettingsTab::Gameplay = self.settings_tab { self.imgs.settings_button_pressed @@ -1220,6 +1251,19 @@ impl Hud { } else { self.imgs.settings_button_press }) +======= + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Gameplay = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Gameplay = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) +>>>>>>> settings window .right_from(self.ids.interface, 0.0) .label("Gameplay") .label_font_size(14) @@ -1236,7 +1280,11 @@ impl Hud { } else { self.imgs.settings_button }) +<<<<<<< HEAD .w_h(31.0 * 4.0, 12.0 * 4.0) +======= + .w_h(31.0*4.0, 12.0*4.0) +>>>>>>> settings window .hover_image(if let SettingsTab::Controls = self.settings_tab { self.imgs.settings_button_pressed } else { @@ -1258,11 +1306,16 @@ impl Hud { } // 4 Video//////////////////////////////// +<<<<<<< HEAD if Button::image(if let SettingsTab::Video = self.settings_tab { +======= + if Button::image(if let SettingsTab::Video = self.settings_tab { +>>>>>>> settings window self.imgs.settings_button_pressed } else { self.imgs.settings_button }) +<<<<<<< HEAD .w_h(31.0 * 4.0, 12.0 * 4.0) .hover_image(if let SettingsTab::Video = self.settings_tab { self.imgs.settings_button_pressed @@ -1274,6 +1327,19 @@ impl Hud { } else { self.imgs.settings_button_press }) +======= + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Video = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Video = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) +>>>>>>> settings window .right_from(self.ids.controls, 0.0) .label("Video") .parent(self.ids.settings_r) @@ -1288,6 +1354,7 @@ impl Hud { // 5 Sound/////////////////////////////// if Button::image(if let SettingsTab::Sound = self.settings_tab { self.imgs.settings_button_pressed +<<<<<<< HEAD } else { self.imgs.settings_button }) @@ -1302,6 +1369,22 @@ impl Hud { } else { self.imgs.settings_button_press }) +======= + } else { + self.imgs.settings_button + }) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Sound = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Sound = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) +>>>>>>> settings window .right_from(self.ids.video, 0.0) .parent(self.ids.settings_r) .label("Sound") @@ -1611,6 +1694,7 @@ impl Hud { .w_h(412.0, 488.0) .set(self.ids.map_frame_l, ui_widgets); Image::new(self.imgs.map_frame_r) +<<<<<<< HEAD <<<<<<< HEAD .right_from(self.ids.map_frame_l, 0.0) .w_h(412.0, 488.0) @@ -1625,14 +1709,17 @@ impl Hud { .set(self.ids.map_frame_bl, ui_widgets); ======= .top_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) +======= + .right_from(self.ids.map_frame_l, 0.0) +>>>>>>> settings window .w_h(412.0, 488.0) .set(self.ids.map_frame_r, ui_widgets); Image::new(self.imgs.map_frame_br) - .bottom_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .down_from(self.ids.map_frame_r, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_br, ui_widgets); Image::new(self.imgs.map_frame_bl) - .bottom_left_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .down_from(self.ids.map_frame_l, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_bl, ui_widgets); From ed582c79e4ac788a927c4eceb8505bd15d4e3cc8 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Mon, 29 Apr 2019 20:51:26 +0200 Subject: [PATCH 11/45] settings window Former-commit-id: b85c0f656c331195bd9c35f57a2609cd4f34f3fa --- voxygen/src/hud/mod.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index a793381d5f..999ba664e9 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -1094,7 +1094,7 @@ impl Hud { >>>>>>> Map Window, Settings Window ======= // Content Alignment - Rectangle::fill_with([189.0*4.0, 97.0*4.0], color::TRANSPARENT) + Rectangle::fill_with([198.0*4.0, 97.0*4.0], color::TRANSPARENT) .top_right_with_margins_on(self.ids.settings_r, 21.0*4.0, 4.0*4.0) .scroll_kids() .scroll_kids_vertically() @@ -1129,8 +1129,12 @@ impl Hud { //.w_h(224.0 / 3.0, 224.0 / 3.0) //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) //.set(self.ids.settings_icon, ui_widgets); +<<<<<<< HEAD >>>>>>> Map Window, Settings Window // TODO: Find out if we can remove this +======= + // TODO: Find out if we can remove this +>>>>>>> settings window // 1 Interface//////////////////////////// if Button::image(if let SettingsTab::Interface = self.settings_tab { From 25aa4e08eee2873d7976f1cdbad7f4e41b635467 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Tue, 30 Apr 2019 13:49:29 +0200 Subject: [PATCH 12/45] rebase Former-commit-id: b3eef84c3a76629e399827e12327556b4c8c7ffa --- voxygen/src/hud/mod.rs | 201 ++++++----------------------------------- 1 file changed, 28 insertions(+), 173 deletions(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 999ba664e9..7bdb483e45 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -176,6 +176,7 @@ pub(self) struct Imgs { inv_slot: ImgId, // Buttons + mmap_closed: ImgId, mmap_closed_hover: ImgId, mmap_closed_press: ImgId, @@ -220,7 +221,7 @@ pub(self) struct Imgs { button_dark_press: ImgId, // MiniMap - mmap_frame: ImgId, + mmap_frame: ImgId, mmap_frame_closed: ImgId, // SkillBar Module @@ -340,7 +341,7 @@ impl Imgs { mmap_open: load_vox("element/buttons/button_mmap_open.vox", ui), mmap_open_hover: load_vox("element/buttons/button_mmap_open_hover.vox", ui), mmap_open_press: load_vox("element/buttons/button_mmap_open_press.vox", ui), - + settings: load_vox("element/buttons/settings.vox", ui), settings_hover: load_vox("element/buttons/settings_hover.vox", ui), settings_press: load_vox("element/buttons/settings_press.vox", ui), @@ -383,7 +384,7 @@ impl Imgs { button_dark_press: load_img("element/buttons/button_dark_press.png", ui), // MiniMap - mmap_frame: load_vox("element/frames/mmap.vox", ui), + mmap_frame: load_vox("element/frames/mmap.vox", ui), mmap_frame_closed: load_vox("element/frames/mmap_closed.vox", ui), // Skillbar Module @@ -658,46 +659,35 @@ impl Hud { }; } - // Minimap + // Minimap - if self.mmap_open { + if self.mmap_open { Image::new(self.imgs.mmap_frame) - .w_h(100.0 * 2.0, 100.0 * 2.0) - .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) - .set(self.ids.mmap_frame, ui_widgets); + .w_h(100.0 * 2.0, 100.0 * 2.0) + .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) + .set(self.ids.mmap_frame, ui_widgets); - Rectangle::fill_with([92.0 * 2.0, 82.0 * 2.0], color::TRANSPARENT) - .mid_top_with_margin_on(self.ids.mmap_frame, 13.0 * 2.0 + 2.0) - .set(self.ids.mmap_frame_bg, ui_widgets); - } else { - Image::new(self.imgs.mmap_frame_closed) + Rectangle::fill_with([92.0 * 2.0, 82.0 * 2.0], color::TRANSPARENT) + .mid_top_with_margin_on(self.ids.mmap_frame, 13.0 * 2.0 + 2.0) + .set(self.ids.mmap_frame_bg, ui_widgets); + } + else { + Image::new(self.imgs.mmap_frame_closed) .w_h(100.0 * 2.0, 11.0 * 2.0) .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) - .set(self.ids.mmap_frame, ui_widgets); - }; - - if Button::image(if self.mmap_open { - self.imgs.mmap_open - } else { - self.imgs.mmap_closed - }) - .w_h(100.0 * 0.2, 100.0 * 0.2) - .hover_image(if self.mmap_open { - self.imgs.mmap_open_hover - } else { - self.imgs.mmap_closed_hover - }) - .press_image(if self.mmap_open { - self.imgs.mmap_open_press - } else { - self.imgs.mmap_closed_press - }) - .top_right_with_margins_on(self.ids.mmap_frame, 0.0, 0.0) - .set(self.ids.mmap_button, ui_widgets) - .was_clicked() - { - self.mmap_open = !self.mmap_open; - }; + .set(self.ids.mmap_frame, ui_widgets); + }; + + if Button::image(if self.mmap_open {self.imgs.mmap_open} else {self.imgs.mmap_closed}) + .w_h(100.0 * 0.2, 100.0 * 0.2) + .hover_image(if self.mmap_open {self.imgs.mmap_open_hover} else {self.imgs.mmap_closed_hover}) + .press_image(if self.mmap_open {self.imgs.mmap_open_press} else {self.imgs.mmap_closed_press}) + .top_right_with_margins_on(self.ids.mmap_frame, 0.0, 0.0) + .set(self.ids.mmap_button, ui_widgets) + .was_clicked() + { + self.mmap_open = !self.mmap_open; + }; // Title // Make it display the actual location @@ -1068,38 +1058,17 @@ impl Hud { .top_left_with_margins_on(self.ids.settings_bg, 0.0, 0.0) .w_h(412.0, 488.0) .set(self.ids.settings_l, ui_widgets); -<<<<<<< HEAD -<<<<<<< HEAD - Image::new(self.imgs.settings_frame_r) -======= - Image::new(self.imgs.settings_frame_r) ->>>>>>> settings window - .right_from(self.ids.settings_l, 0.0) - .parent(self.ids.settings_bg) - .w_h(412.0, 488.0) - .set(self.ids.settings_r, ui_widgets); - // Content Alignment - Rectangle::fill_with([198.0 * 4.0, 97.0 * 4.0], color::TRANSPARENT) - .top_right_with_margins_on(self.ids.settings_r, 21.0 * 4.0, 4.0 * 4.0) - .scroll_kids() - .scroll_kids_vertically() - .set(self.ids.settings_content, ui_widgets); -======= Image::new(self.imgs.settings_frame_r) .right_from(self.ids.settings_l, 0.0) .parent(self.ids.settings_bg) .w_h(412.0, 488.0) .set(self.ids.settings_r, ui_widgets); -<<<<<<< HEAD ->>>>>>> Map Window, Settings Window -======= // Content Alignment Rectangle::fill_with([198.0*4.0, 97.0*4.0], color::TRANSPARENT) .top_right_with_margins_on(self.ids.settings_r, 21.0*4.0, 4.0*4.0) .scroll_kids() .scroll_kids_vertically() .set(self.ids.settings_content, ui_widgets); ->>>>>>> settings window // X-Button if Button::image(self.imgs.close_button) .w_h(28.0, 28.0) @@ -1121,41 +1090,14 @@ impl Hud { .set(self.ids.settings_title, ui_widgets); // Icon //Image::new(self.imgs.settings_icon) -<<<<<<< HEAD - //.w_h(224.0 / 3.0, 224.0 / 3.0) - //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) - //.set(self.ids.settings_icon, ui_widgets); -======= //.w_h(224.0 / 3.0, 224.0 / 3.0) //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) //.set(self.ids.settings_icon, ui_widgets); -<<<<<<< HEAD ->>>>>>> Map Window, Settings Window - // TODO: Find out if we can remove this -======= // TODO: Find out if we can remove this ->>>>>>> settings window // 1 Interface//////////////////////////// if Button::image(if let SettingsTab::Interface = self.settings_tab { self.imgs.settings_button_pressed -<<<<<<< HEAD - } else { - self.imgs.settings_button - }) - .w_h(31.0 * 4.0, 12.0 * 4.0) - .hover_image(if let SettingsTab::Interface = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_hover - }) - .press_image(if let SettingsTab::Interface = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_press - }) - .top_left_with_margins_on(self.ids.settings_l, 8.0 * 4.0, 2.0 * 4.0) -======= } else { self.imgs.settings_button }) @@ -1171,7 +1113,6 @@ impl Hud { self.imgs.settings_button_press }) .top_left_with_margins_on(self.ids.settings_l, 8.0*4.0, 2.0*4.0) ->>>>>>> settings window .label("Interface") .label_font_size(14) .label_color(TEXT_COLOR) @@ -1234,28 +1175,11 @@ impl Hud { } // 2 Gameplay//////////////// -<<<<<<< HEAD - if Button::image(if let SettingsTab::Gameplay = self.settings_tab { -======= if Button::image(if let SettingsTab::Gameplay = self.settings_tab { ->>>>>>> settings window self.imgs.settings_button_pressed } else { self.imgs.settings_button }) -<<<<<<< HEAD - .w_h(31.0 * 4.0, 12.0 * 4.0) - .hover_image(if let SettingsTab::Gameplay = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_hover - }) - .press_image(if let SettingsTab::Gameplay = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_press - }) -======= .w_h(31.0*4.0, 12.0*4.0) .hover_image(if let SettingsTab::Gameplay = self.settings_tab { self.imgs.settings_button_pressed @@ -1267,7 +1191,6 @@ impl Hud { } else { self.imgs.settings_button_press }) ->>>>>>> settings window .right_from(self.ids.interface, 0.0) .label("Gameplay") .label_font_size(14) @@ -1284,11 +1207,7 @@ impl Hud { } else { self.imgs.settings_button }) -<<<<<<< HEAD - .w_h(31.0 * 4.0, 12.0 * 4.0) -======= .w_h(31.0*4.0, 12.0*4.0) ->>>>>>> settings window .hover_image(if let SettingsTab::Controls = self.settings_tab { self.imgs.settings_button_pressed } else { @@ -1310,28 +1229,11 @@ impl Hud { } // 4 Video//////////////////////////////// -<<<<<<< HEAD - if Button::image(if let SettingsTab::Video = self.settings_tab { -======= if Button::image(if let SettingsTab::Video = self.settings_tab { ->>>>>>> settings window self.imgs.settings_button_pressed } else { self.imgs.settings_button }) -<<<<<<< HEAD - .w_h(31.0 * 4.0, 12.0 * 4.0) - .hover_image(if let SettingsTab::Video = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_hover - }) - .press_image(if let SettingsTab::Video = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_press - }) -======= .w_h(31.0*4.0, 12.0*4.0) .hover_image(if let SettingsTab::Video = self.settings_tab { self.imgs.settings_button_pressed @@ -1343,7 +1245,6 @@ impl Hud { } else { self.imgs.settings_button_press }) ->>>>>>> settings window .right_from(self.ids.controls, 0.0) .label("Video") .parent(self.ids.settings_r) @@ -1358,22 +1259,6 @@ impl Hud { // 5 Sound/////////////////////////////// if Button::image(if let SettingsTab::Sound = self.settings_tab { self.imgs.settings_button_pressed -<<<<<<< HEAD - } else { - self.imgs.settings_button - }) - .w_h(31.0 * 4.0, 12.0 * 4.0) - .hover_image(if let SettingsTab::Sound = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_hover - }) - .press_image(if let SettingsTab::Sound = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_press - }) -======= } else { self.imgs.settings_button }) @@ -1388,7 +1273,6 @@ impl Hud { } else { self.imgs.settings_button_press }) ->>>>>>> settings window .right_from(self.ids.video, 0.0) .parent(self.ids.settings_r) .label("Sound") @@ -1682,11 +1566,7 @@ impl Hud { // 2 Map if self.map_open { -<<<<<<< HEAD - // BG -======= // BG ->>>>>>> Map Window, Settings Window Rectangle::fill_with([824.0, 976.0], color::TRANSPARENT) .mid_top_with_margin_on(ui_widgets.window, 15.0) .scroll_kids() @@ -1698,8 +1578,6 @@ impl Hud { .w_h(412.0, 488.0) .set(self.ids.map_frame_l, ui_widgets); Image::new(self.imgs.map_frame_r) -<<<<<<< HEAD -<<<<<<< HEAD .right_from(self.ids.map_frame_l, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_r, ui_widgets); @@ -1707,27 +1585,11 @@ impl Hud { .down_from(self.ids.map_frame_r, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_br, ui_widgets); - Image::new(self.imgs.map_frame_bl) - .down_from(self.ids.map_frame_l, 0.0) - .w_h(412.0, 488.0) - .set(self.ids.map_frame_bl, ui_widgets); -======= - .top_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) -======= - .right_from(self.ids.map_frame_l, 0.0) ->>>>>>> settings window - .w_h(412.0, 488.0) - .set(self.ids.map_frame_r, ui_widgets); - Image::new(self.imgs.map_frame_br) - .down_from(self.ids.map_frame_r, 0.0) - .w_h(412.0, 488.0) - .set(self.ids.map_frame_br, ui_widgets); Image::new(self.imgs.map_frame_bl) .down_from(self.ids.map_frame_l, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_bl, ui_widgets); ->>>>>>> Map Window, Settings Window // Icon Image::new(self.imgs.map_icon) @@ -1748,17 +1610,10 @@ impl Hud { } // Title //Text::new("Map") -<<<<<<< HEAD - //.mid_top_with_margin_on(self.ids.map_bg, -7.0) - //.font_size(14) - //.color(TEXT_COLOR) - //.set(self.ids.map_title, ui_widgets); -======= //.mid_top_with_margin_on(self.ids.map_bg, -7.0) //.font_size(14) //.color(TEXT_COLOR) //.set(self.ids.map_title, ui_widgets); ->>>>>>> Map Window, Settings Window } // ESC-MENU From 84388dd1dac6571e2a971be66901e2d9a22edcef Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Wed, 1 May 2019 14:11:55 +0200 Subject: [PATCH 13/45] changed char head and offset Former-commit-id: 6e9ca7249a33504bc0b7cf8f5b5591ead0399151 --- assets/voxygen | 2 +- voxygen/.gitignore | 5 ++ voxygen/src/hud/mod.rs | 121 +++++++++++++++++++----------------- voxygen/src/scene/figure.rs | 2 +- 4 files changed, 72 insertions(+), 58 deletions(-) create mode 100644 voxygen/.gitignore diff --git a/assets/voxygen b/assets/voxygen index cff10b010d..2cd23530f8 160000 --- a/assets/voxygen +++ b/assets/voxygen @@ -1 +1 @@ -Subproject commit cff10b010db25ce9af5edbdfb5ef0af889dd741a +Subproject commit 2cd23530f89408da75fbbc016cdac6ac0de54328 diff --git a/voxygen/.gitignore b/voxygen/.gitignore new file mode 100644 index 0000000000..6f47212ae1 --- /dev/null +++ b/voxygen/.gitignore @@ -0,0 +1,5 @@ +/target +**/*.rs.bk +Cargo.lock +settings.toml +voxygen.log diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 7bdb483e45..e719db3b1a 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -176,7 +176,6 @@ pub(self) struct Imgs { inv_slot: ImgId, // Buttons - mmap_closed: ImgId, mmap_closed_hover: ImgId, mmap_closed_press: ImgId, @@ -221,7 +220,7 @@ pub(self) struct Imgs { button_dark_press: ImgId, // MiniMap - mmap_frame: ImgId, + mmap_frame: ImgId, mmap_frame_closed: ImgId, // SkillBar Module @@ -341,7 +340,7 @@ impl Imgs { mmap_open: load_vox("element/buttons/button_mmap_open.vox", ui), mmap_open_hover: load_vox("element/buttons/button_mmap_open_hover.vox", ui), mmap_open_press: load_vox("element/buttons/button_mmap_open_press.vox", ui), - + settings: load_vox("element/buttons/settings.vox", ui), settings_hover: load_vox("element/buttons/settings_hover.vox", ui), settings_press: load_vox("element/buttons/settings_press.vox", ui), @@ -384,7 +383,7 @@ impl Imgs { button_dark_press: load_img("element/buttons/button_dark_press.png", ui), // MiniMap - mmap_frame: load_vox("element/frames/mmap.vox", ui), + mmap_frame: load_vox("element/frames/mmap.vox", ui), mmap_frame_closed: load_vox("element/frames/mmap_closed.vox", ui), // Skillbar Module @@ -549,12 +548,12 @@ impl Hud { ids, chat, settings_tab: SettingsTab::Interface, - show_help: true, - show_debug: false, + show_help: false, + show_debug: true, bag_open: false, menu_open: false, map_open: false, - mmap_open: true, + mmap_open: false, show_ui: true, inventorytest_button: false, inventory_space: 0, @@ -659,35 +658,46 @@ impl Hud { }; } - // Minimap + // Minimap - if self.mmap_open { + if self.mmap_open { Image::new(self.imgs.mmap_frame) - .w_h(100.0 * 2.0, 100.0 * 2.0) - .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) - .set(self.ids.mmap_frame, ui_widgets); + .w_h(100.0 * 2.0, 100.0 * 2.0) + .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) + .set(self.ids.mmap_frame, ui_widgets); - Rectangle::fill_with([92.0 * 2.0, 82.0 * 2.0], color::TRANSPARENT) - .mid_top_with_margin_on(self.ids.mmap_frame, 13.0 * 2.0 + 2.0) - .set(self.ids.mmap_frame_bg, ui_widgets); - } - else { - Image::new(self.imgs.mmap_frame_closed) + Rectangle::fill_with([92.0 * 2.0, 82.0 * 2.0], color::TRANSPARENT) + .mid_top_with_margin_on(self.ids.mmap_frame, 13.0 * 2.0 + 2.0) + .set(self.ids.mmap_frame_bg, ui_widgets); + } else { + Image::new(self.imgs.mmap_frame_closed) .w_h(100.0 * 2.0, 11.0 * 2.0) .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) - .set(self.ids.mmap_frame, ui_widgets); - }; - - if Button::image(if self.mmap_open {self.imgs.mmap_open} else {self.imgs.mmap_closed}) - .w_h(100.0 * 0.2, 100.0 * 0.2) - .hover_image(if self.mmap_open {self.imgs.mmap_open_hover} else {self.imgs.mmap_closed_hover}) - .press_image(if self.mmap_open {self.imgs.mmap_open_press} else {self.imgs.mmap_closed_press}) - .top_right_with_margins_on(self.ids.mmap_frame, 0.0, 0.0) - .set(self.ids.mmap_button, ui_widgets) - .was_clicked() - { - self.mmap_open = !self.mmap_open; - }; + .set(self.ids.mmap_frame, ui_widgets); + }; + + if Button::image(if self.mmap_open { + self.imgs.mmap_open + } else { + self.imgs.mmap_closed + }) + .w_h(100.0 * 0.2, 100.0 * 0.2) + .hover_image(if self.mmap_open { + self.imgs.mmap_open_hover + } else { + self.imgs.mmap_closed_hover + }) + .press_image(if self.mmap_open { + self.imgs.mmap_open_press + } else { + self.imgs.mmap_closed_press + }) + .top_right_with_margins_on(self.ids.mmap_frame, 0.0, 0.0) + .set(self.ids.mmap_button, ui_widgets) + .was_clicked() + { + self.mmap_open = !self.mmap_open; + }; // Title // Make it display the actual location @@ -1049,23 +1059,23 @@ impl Hud { // 0 Settings if let Windows::Settings = self.open_windows { - // Frame Alignment + // Frame Alignment Rectangle::fill_with([824.0, 488.0], color::TRANSPARENT) - .middle_of(ui_widgets.window) + .middle_of(ui_widgets.window) .set(self.ids.settings_bg, ui_widgets); // Frame Image::new(self.imgs.settings_frame_l) .top_left_with_margins_on(self.ids.settings_bg, 0.0, 0.0) .w_h(412.0, 488.0) .set(self.ids.settings_l, ui_widgets); - Image::new(self.imgs.settings_frame_r) + Image::new(self.imgs.settings_frame_r) .right_from(self.ids.settings_l, 0.0) .parent(self.ids.settings_bg) .w_h(412.0, 488.0) .set(self.ids.settings_r, ui_widgets); // Content Alignment - Rectangle::fill_with([198.0*4.0, 97.0*4.0], color::TRANSPARENT) - .top_right_with_margins_on(self.ids.settings_r, 21.0*4.0, 4.0*4.0) + Rectangle::fill_with([198.0 * 4.0, 97.0 * 4.0], color::TRANSPARENT) + .top_right_with_margins_on(self.ids.settings_r, 21.0 * 4.0, 4.0 * 4.0) .scroll_kids() .scroll_kids_vertically() .set(self.ids.settings_content, ui_widgets); @@ -1090,10 +1100,10 @@ impl Hud { .set(self.ids.settings_title, ui_widgets); // Icon //Image::new(self.imgs.settings_icon) - //.w_h(224.0 / 3.0, 224.0 / 3.0) - //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) - //.set(self.ids.settings_icon, ui_widgets); - // TODO: Find out if we can remove this + //.w_h(224.0 / 3.0, 224.0 / 3.0) + //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) + //.set(self.ids.settings_icon, ui_widgets); + // TODO: Find out if we can remove this // 1 Interface//////////////////////////// if Button::image(if let SettingsTab::Interface = self.settings_tab { @@ -1101,7 +1111,7 @@ impl Hud { } else { self.imgs.settings_button }) - .w_h(31.0*4.0, 12.0*4.0) + .w_h(31.0 * 4.0, 12.0 * 4.0) .hover_image(if let SettingsTab::Interface = self.settings_tab { self.imgs.settings_button_pressed } else { @@ -1112,7 +1122,7 @@ impl Hud { } else { self.imgs.settings_button_press }) - .top_left_with_margins_on(self.ids.settings_l, 8.0*4.0, 2.0*4.0) + .top_left_with_margins_on(self.ids.settings_l, 8.0 * 4.0, 2.0 * 4.0) .label("Interface") .label_font_size(14) .label_color(TEXT_COLOR) @@ -1175,12 +1185,12 @@ impl Hud { } // 2 Gameplay//////////////// - if Button::image(if let SettingsTab::Gameplay = self.settings_tab { + if Button::image(if let SettingsTab::Gameplay = self.settings_tab { self.imgs.settings_button_pressed } else { self.imgs.settings_button }) - .w_h(31.0*4.0, 12.0*4.0) + .w_h(31.0 * 4.0, 12.0 * 4.0) .hover_image(if let SettingsTab::Gameplay = self.settings_tab { self.imgs.settings_button_pressed } else { @@ -1207,7 +1217,7 @@ impl Hud { } else { self.imgs.settings_button }) - .w_h(31.0*4.0, 12.0*4.0) + .w_h(31.0 * 4.0, 12.0 * 4.0) .hover_image(if let SettingsTab::Controls = self.settings_tab { self.imgs.settings_button_pressed } else { @@ -1229,12 +1239,12 @@ impl Hud { } // 4 Video//////////////////////////////// - if Button::image(if let SettingsTab::Video = self.settings_tab { + if Button::image(if let SettingsTab::Video = self.settings_tab { self.imgs.settings_button_pressed } else { self.imgs.settings_button }) - .w_h(31.0*4.0, 12.0*4.0) + .w_h(31.0 * 4.0, 12.0 * 4.0) .hover_image(if let SettingsTab::Video = self.settings_tab { self.imgs.settings_button_pressed } else { @@ -1244,7 +1254,7 @@ impl Hud { self.imgs.settings_button_pressed } else { self.imgs.settings_button_press - }) + }) .right_from(self.ids.controls, 0.0) .label("Video") .parent(self.ids.settings_r) @@ -1262,7 +1272,7 @@ impl Hud { } else { self.imgs.settings_button }) - .w_h(31.0*4.0, 12.0*4.0) + .w_h(31.0 * 4.0, 12.0 * 4.0) .hover_image(if let SettingsTab::Sound = self.settings_tab { self.imgs.settings_button_pressed } else { @@ -1566,7 +1576,7 @@ impl Hud { // 2 Map if self.map_open { - // BG + // BG Rectangle::fill_with([824.0, 976.0], color::TRANSPARENT) .mid_top_with_margin_on(ui_widgets.window, 15.0) .scroll_kids() @@ -1588,8 +1598,7 @@ impl Hud { Image::new(self.imgs.map_frame_bl) .down_from(self.ids.map_frame_l, 0.0) .w_h(412.0, 488.0) - .set(self.ids.map_frame_bl, ui_widgets); - + .set(self.ids.map_frame_bl, ui_widgets); // Icon Image::new(self.imgs.map_icon) @@ -1610,10 +1619,10 @@ impl Hud { } // Title //Text::new("Map") - //.mid_top_with_margin_on(self.ids.map_bg, -7.0) - //.font_size(14) - //.color(TEXT_COLOR) - //.set(self.ids.map_title, ui_widgets); + //.mid_top_with_margin_on(self.ids.map_bg, -7.0) + //.font_size(14) + //.color(TEXT_COLOR) + //.set(self.ids.map_title, ui_widgets); } // ESC-MENU diff --git a/voxygen/src/scene/figure.rs b/voxygen/src/scene/figure.rs index 2a4fbda412..43fb2a5c0c 100644 --- a/voxygen/src/scene/figure.rs +++ b/voxygen/src/scene/figure.rs @@ -116,7 +116,7 @@ impl FigureCache { match head { Head::DefaultHead => "head.vox", }, - Vec3::new(-5.5, -7.0, -6.0), + Vec3::new(-7.5, -8.0, 0.0), ) } From 7791eef57dc41da7cbcd277916a9e4b4306d55fd Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Wed, 1 May 2019 15:50:41 +0200 Subject: [PATCH 14/45] Controls Window Text Former-commit-id: 2e479f29af73fd36b5cb8e6f34b8d2d4265dd100 --- voxygen/src/hud/mod.rs | 78 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 77 insertions(+), 1 deletion(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index e719db3b1a..a7a99bbf9f 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -102,6 +102,8 @@ widget_ids! { settings_title, settings_r, settings_l, + settings_scrollbar, + controls_text, //Contents button_help, button_help2, @@ -1079,6 +1081,10 @@ impl Hud { .scroll_kids() .scroll_kids_vertically() .set(self.ids.settings_content, ui_widgets); + Scrollbar::y_axis(self.ids.settings_content) + .thickness(5.0) + .rgba(0.33, 0.33, 0.33, 1.0) + .set(self.ids.settings_scrollbar, ui_widgets); // X-Button if Button::image(self.imgs.close_button) .w_h(28.0, 28.0) @@ -1237,7 +1243,75 @@ impl Hud { { self.settings_tab = SettingsTab::Controls; } + if let SettingsTab::Controls = self.settings_tab { + Text::new( + "Free Cursor: TAB \n\ + Toggle Help Window: F1 \n\ + Toggle Interface: F2 \n\ + Toggle FPS and Debug Info: F3 \n\ + \n\ + \n\ + Move Forward: W \n\ + Move Left : A \n\ + Move Right: S \n\ + Move Backwards: D \n\ + \n\ + Jump: Space \n\ + \n\ + Dodge: ?? \n\ + \n\ + Auto Walk: ?? \n\ + \n\ + Sheathe/Draw Weapons: Y \n\ + \n\ + Put on/Remove Helmet: ?? [Has a Cast time of 0,5s] \n\ + \n\ + \n\ + Basic Attack: L-Click \n\ + Secondary Attack/Block/Aim: R-Click \n\ + \n\ + \n\ + Skillbar Slot 1: 1 \n\ + Skillbar Slot 2: 2 \n\ + Skillbar Slot 3: 3 \n\ + Skillbar Slot 4: 4 \n\ + Skillbar Slot 5: 5 \n\ + Skillbar Slot 6: 6 \n\ + Skillbar Slot 7: 7 \n\ + Skillbar Slot 8: 8 \n\ + Skillbar Slot 9: 9 \n\ + Skillbar Slot 10: 0 \n\ + \n\ + \n\ + Pause Menu: ESC \n\ + Settings: N \n\ + Social: O \n\ + Map: M \n\ + Spellbook: P \n\ + Character: C \n\ + Questlog L \n\ + Bag: B \n\ + \n\ + \n\ + \n\ + Activate Chat & Input/Send Message: Enter \n\ + Scroll Chat: Mousewheel on Chat-Window \n\ + \n\ + \n\ + Chat commands: \n\ + \n\ + /alias [Name] - Change your Chat Name \n\ + /tp [Name] - Teleports you to another player + ") + .color(TEXT_COLOR) + .top_left_with_margins_on(self.ids.settings_content, 5.0, 5.0) + .font_id(self.font_opensans) + .font_size(18) + .set(self.ids.controls_text, ui_widgets); + + + } // 4 Video//////////////////////////////// if Button::image(if let SettingsTab::Video = self.settings_tab { self.imgs.settings_button_pressed @@ -1667,7 +1741,9 @@ impl Hud { .set(self.ids.menu_button_2, ui_widgets) .was_clicked() { - //self.menu_open = false; + self.menu_open = false; + self.settings_tab = SettingsTab::Controls; + self.open_windows = Windows::Settings; }; // Servers if Button::image(self.imgs.button_dark) From aa5f70f7c1de643afa10420b5e196eacd43c4272 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Wed, 1 May 2019 23:20:31 +0200 Subject: [PATCH 15/45] Controls Window Contents Former-commit-id: f11a9b4da250ba9bd095220efc9e8fc97d32c983 --- voxygen/src/hud/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index a7a99bbf9f..4a71e0eae7 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -1008,10 +1008,10 @@ impl Hud { // X-button if Button::image(self.imgs.close_button) - .w_h(4.0 * 4.0, 4.0 * 4.0) + .w_h(28.0, 28.0) .hover_image(self.imgs.close_button_hover) .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.bag_contents, 4.5, 4.5) + .top_right_with_margins_on(self.ids.bag_contents, 0.0, 0.0) .set(self.ids.bag_close, ui_widgets) .was_clicked() { From 83dcec0567b18fa546376db6dde22595183eaf6b Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Wed, 1 May 2019 23:21:21 +0200 Subject: [PATCH 16/45] controls window Former-commit-id: 2bf1970e5e11117d8192030c1846ec76310f64ca --- assets/voxygen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/voxygen b/assets/voxygen index 2cd23530f8..6d5ab8a510 160000 --- a/assets/voxygen +++ b/assets/voxygen @@ -1 +1 @@ -Subproject commit 2cd23530f89408da75fbbc016cdac6ac0de54328 +Subproject commit 6d5ab8a5109cf91a3fea7df0886c77ae42857823 From e9554e709df3942c5ce0b4400226c10eff88df4f Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Wed, 1 May 2019 23:35:08 +0200 Subject: [PATCH 17/45] Asset Update Former-commit-id: 3ef4a1d4cf4d4e29f6d8d20a30d981864e4278eb --- assets/voxygen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/voxygen b/assets/voxygen index 6d5ab8a510..62d68110b9 160000 --- a/assets/voxygen +++ b/assets/voxygen @@ -1 +1 @@ -Subproject commit 6d5ab8a5109cf91a3fea7df0886c77ae42857823 +Subproject commit 62d68110b97d750a0c4b15bc58dbcb6a4595b9c2 From f8c5e7e4ec30ba3542ca515ff35708d30d14186b Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Wed, 1 May 2019 23:47:09 +0200 Subject: [PATCH 18/45] rebase Former-commit-id: 047a4ffcad326721eaff6f77eb9c8b57cfa0b2b4 --- common/Cargo.toml | 4 +- common/src/state.rs | 11 +- voxygen/src/hud/mod.rs | 88 +- voxygen/src/hud/mod.rs~settings window | 1899 ++++++++++++++++++++++++ voxygen/src/scene/figure.rs | 2 +- 5 files changed, 1916 insertions(+), 88 deletions(-) create mode 100644 voxygen/src/hud/mod.rs~settings window diff --git a/common/Cargo.toml b/common/Cargo.toml index da924061fd..7c6a403538 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -7,8 +7,7 @@ edition = "2018" [dependencies] sphynx = { git = "https://gitlab.com/veloren/sphynx.git", features = ["serde1"] } -specs = { version = "0.14", features = ["serde"] } -shred = { version = "0.7", features = ["nightly"] } +specs = { version = "0.14", features = ["serde", "nightly"] } vek = { version = "0.9", features = ["serde"] } dot_vox = "4.0" threadpool = "1.7" @@ -19,3 +18,4 @@ serde_derive = "1.0" bincode = "1.0" log = "0.4" rand = "0.5" +rayon = "1.0" diff --git a/common/src/state.rs b/common/src/state.rs index 9e7646a988..447c9117e4 100644 --- a/common/src/state.rs +++ b/common/src/state.rs @@ -7,14 +7,15 @@ use crate::{ sys, terrain::{TerrainChunk, TerrainMap}, }; -use shred::{Fetch, FetchMut}; +use rayon::{ThreadPool, ThreadPoolBuilder}; use specs::{ saveload::{MarkedBuilder, MarkerAllocator}, + shred::{Fetch, FetchMut}, storage::{MaskedStorage as EcsMaskedStorage, Storage as EcsStorage}, Builder, Component, DispatcherBuilder, Entity as EcsEntity, EntityBuilder as EcsEntityBuilder, }; use sphynx; -use std::{collections::HashSet, time::Duration}; +use std::{collections::HashSet, sync::Arc, time::Duration}; use vek::*; /// How much faster should an in-game day be compared to a real day? @@ -57,6 +58,8 @@ impl Changes { /// things like entity components, terrain data, and global state like weather, time of day, etc. pub struct State { ecs: sphynx::World, + // Avoid lifetime annotation by storing a thread pool instead of the whole dispatcher + thread_pool: Arc, changes: Changes, } @@ -65,6 +68,7 @@ impl State { pub fn new() -> Self { Self { ecs: sphynx::World::new(specs::World::new(), Self::setup_sphynx_world), + thread_pool: Arc::new(ThreadPoolBuilder::new().build().unwrap()), changes: Changes::default(), } } @@ -77,6 +81,7 @@ impl State { Self::setup_sphynx_world, state_package, ), + thread_pool: Arc::new(ThreadPoolBuilder::new().build().unwrap()), changes: Changes::default(), } } @@ -197,7 +202,7 @@ impl State { self.ecs.write_resource::().0 = dt.as_secs_f64(); // Create and run dispatcher for ecs systems - let mut dispatch_builder = DispatcherBuilder::new(); + let mut dispatch_builder = DispatcherBuilder::new().with_pool(self.thread_pool.clone()); sys::add_local_systems(&mut dispatch_builder); // This dispatches all the systems in parallel dispatch_builder.build().dispatch(&self.ecs.res); diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 4a71e0eae7..d5271f0ca7 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -102,8 +102,6 @@ widget_ids! { settings_title, settings_r, settings_l, - settings_scrollbar, - controls_text, //Contents button_help, button_help2, @@ -550,12 +548,12 @@ impl Hud { ids, chat, settings_tab: SettingsTab::Interface, - show_help: false, - show_debug: true, + show_help: true, + show_debug: false, bag_open: false, menu_open: false, map_open: false, - mmap_open: false, + mmap_open: true, show_ui: true, inventorytest_button: false, inventory_space: 0, @@ -1008,10 +1006,10 @@ impl Hud { // X-button if Button::image(self.imgs.close_button) - .w_h(28.0, 28.0) + .w_h(4.0 * 4.0, 4.0 * 4.0) .hover_image(self.imgs.close_button_hover) .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.bag_contents, 0.0, 0.0) + .top_right_with_margins_on(self.ids.bag_contents, 4.5, 4.5) .set(self.ids.bag_close, ui_widgets) .was_clicked() { @@ -1081,10 +1079,6 @@ impl Hud { .scroll_kids() .scroll_kids_vertically() .set(self.ids.settings_content, ui_widgets); - Scrollbar::y_axis(self.ids.settings_content) - .thickness(5.0) - .rgba(0.33, 0.33, 0.33, 1.0) - .set(self.ids.settings_scrollbar, ui_widgets); // X-Button if Button::image(self.imgs.close_button) .w_h(28.0, 28.0) @@ -1243,75 +1237,7 @@ impl Hud { { self.settings_tab = SettingsTab::Controls; } - if let SettingsTab::Controls = self.settings_tab { - Text::new( - "Free Cursor: TAB \n\ - Toggle Help Window: F1 \n\ - Toggle Interface: F2 \n\ - Toggle FPS and Debug Info: F3 \n\ - \n\ - \n\ - Move Forward: W \n\ - Move Left : A \n\ - Move Right: S \n\ - Move Backwards: D \n\ - \n\ - Jump: Space \n\ - \n\ - Dodge: ?? \n\ - \n\ - Auto Walk: ?? \n\ - \n\ - Sheathe/Draw Weapons: Y \n\ - \n\ - Put on/Remove Helmet: ?? [Has a Cast time of 0,5s] \n\ - \n\ - \n\ - Basic Attack: L-Click \n\ - Secondary Attack/Block/Aim: R-Click \n\ - \n\ - \n\ - Skillbar Slot 1: 1 \n\ - Skillbar Slot 2: 2 \n\ - Skillbar Slot 3: 3 \n\ - Skillbar Slot 4: 4 \n\ - Skillbar Slot 5: 5 \n\ - Skillbar Slot 6: 6 \n\ - Skillbar Slot 7: 7 \n\ - Skillbar Slot 8: 8 \n\ - Skillbar Slot 9: 9 \n\ - Skillbar Slot 10: 0 \n\ - \n\ - \n\ - Pause Menu: ESC \n\ - Settings: N \n\ - Social: O \n\ - Map: M \n\ - Spellbook: P \n\ - Character: C \n\ - Questlog L \n\ - Bag: B \n\ - \n\ - \n\ - \n\ - Activate Chat & Input/Send Message: Enter \n\ - Scroll Chat: Mousewheel on Chat-Window \n\ - \n\ - \n\ - Chat commands: \n\ - \n\ - /alias [Name] - Change your Chat Name \n\ - /tp [Name] - Teleports you to another player - ") - .color(TEXT_COLOR) - .top_left_with_margins_on(self.ids.settings_content, 5.0, 5.0) - .font_id(self.font_opensans) - .font_size(18) - .set(self.ids.controls_text, ui_widgets); - - - } // 4 Video//////////////////////////////// if Button::image(if let SettingsTab::Video = self.settings_tab { self.imgs.settings_button_pressed @@ -1741,9 +1667,7 @@ impl Hud { .set(self.ids.menu_button_2, ui_widgets) .was_clicked() { - self.menu_open = false; - self.settings_tab = SettingsTab::Controls; - self.open_windows = Windows::Settings; + //self.menu_open = false; }; // Servers if Button::image(self.imgs.button_dark) diff --git a/voxygen/src/hud/mod.rs~settings window b/voxygen/src/hud/mod.rs~settings window new file mode 100644 index 0000000000..7bdb483e45 --- /dev/null +++ b/voxygen/src/hud/mod.rs~settings window @@ -0,0 +1,1899 @@ +mod chat; + +use crate::{ + render::Renderer, + ui::{self, ScaleMode, ToggleButton, Ui}, + window::{Event as WinEvent, Key, Window}, + GlobalState, +}; +use common::{assets, figure::Segment}; + +use conrod_core::{ + color, + image::Id as ImgId, + text::font::Id as FontId, + widget::{Button, Image, Rectangle, Scrollbar, Text}, + widget_ids, Color, Colorable, Labelable, Positionable, Sizeable, Widget, +}; + +widget_ids! { + struct Ids { + // Test + bag_space_add, + inventorytest_button, + inventorytest_button_label, + // Debug + debug_bg, + debug_button, + debug_button_label, + fps_counter, + // Game Version + version, + + // Bag and Inventory + bag, + bag_contents, + bag_close, + bag_map_open, + inv_alignment, + inv_grid_1, + inv_grid_2, + inv_scrollbar, + inv_slot_0, + inv_slot[], + + // Buttons + settings_button, + social_button, + map_button, + spellbook_button, + character_button, + qlog_button, + social_button_bg, + spellbook_button_bg, + character_button_bg, + qlog_button_bg, + bag_text, + mmap_button, + //help + help, + help_bg, + //ESC-Menu + esc_bg, + fireplace, + menu_button_1, + menu_button_2, + menu_button_3, + menu_button_4, + menu_button_5, + //Mini-Map + mmap_frame, + mmap_frame_bg, + mmap_location, + //Action-Bar + xp_bar, + l_click, + r_click, + health_bar, + mana_bar, + sb_grid_l, + sb_grid_r, + sb_grid_bg_l, + sb_grid_bg_r, + xp_bar_progress, + health_bar_color, + mana_bar_color, + // Level Display + level_text, + next_level_text, + //Window Frames + window_frame_0, + window_frame_1, + window_frame_2, + window_frame_3, + window_frame_4, + window_frame_5, + //0 Settings-Window + settings_bg, + settings_content, + settings_icon, + settings_button_mo, + settings_close, + settings_title, + settings_r, + settings_l, + //Contents + button_help, + button_help2, + show_help_label, + interface, + video, + sound, + gameplay, + controls, + rectangle, + //1 Social + social_frame, + social_bg, + social_icon, + social_close, + social_title, + //2 Map + map_frame, + map_bg, + map_icon, + map_close, + map_title, + map_frame_l, + map_frame_r, + map_frame_bl, + map_frame_br, + //3 Spellbook + spellbook_frame, + spellbook_bg, + spellbook_icon, + spellbook_close, + spellbook_title, + //4 Charwindow + charwindow_frame, + charwindow, + charwindow_bg, + charwindow_icon, + charwindow_close, + charwindow_title, + charwindow_tab_bg, + charwindow_tab1, + charwindow_tab1_title, + charwindow_tab1_level, + charwindow_tab1_exp, + charwindow_tab1_stats, + charwindow_tab1_statnames, + charwindow_tab1_stats_numbers, + charwindow_tab1_expbar, + charwindow_rectangle, + charwindow_exp_rectangle, + charwindow_exp_progress_rectangle, + //5 Quest-Log + questlog_frame, + questlog_bg, + questlog_icon, + questlog_close, + questlog_title, + } +} + +// TODO: make macro to mimic widget_ids! for images ids or find another solution to simplify addition of new images. +pub(self) struct Imgs { + // Bag + bag: ImgId, + bag_hover: ImgId, + bag_press: ImgId, + bag_open: ImgId, + bag_open_hover: ImgId, + bag_open_press: ImgId, + bag_contents: ImgId, + inv_grid: ImgId, + inv_slot: ImgId, + + // Buttons + + mmap_closed: ImgId, + mmap_closed_hover: ImgId, + mmap_closed_press: ImgId, + mmap_open: ImgId, + mmap_open_hover: ImgId, + mmap_open_press: ImgId, + + settings: ImgId, + settings_hover: ImgId, + settings_press: ImgId, + + social_button: ImgId, + social_hover: ImgId, + social_press: ImgId, + + map_button: ImgId, + map_hover: ImgId, + map_press: ImgId, + + spellbook_button: ImgId, + spellbook_hover: ImgId, + spellbook_press: ImgId, + + character_button: ImgId, + character_hover: ImgId, + character_press: ImgId, + + qlog_button: ImgId, + qlog_hover: ImgId, + qlog_press: ImgId, + + // Close button + close_button: ImgId, + close_button_hover: ImgId, + close_button_press: ImgId, + + // Menu + esc_bg: ImgId, + fireplace: ImgId, + button_dark: ImgId, + button_dark_hover: ImgId, + button_dark_press: ImgId, + + // MiniMap + mmap_frame: ImgId, + mmap_frame_closed: ImgId, + + // SkillBar Module + sb_grid: ImgId, + sb_grid_bg: ImgId, + l_click: ImgId, + r_click: ImgId, + mana_bar: ImgId, + health_bar: ImgId, + xp_bar: ImgId, + + //Buff Frame(s) + //buff_frame: ImgId, + //buff_frame_bg: ImgId, + //buff_frame_red: ImgId, + //buff_frame_green: ImgId, + + //Missing: Buff Frame Animation + window_frame: ImgId, + window_frame_2: ImgId, + //Settings-Window + settings_frame_r: ImgId, + settings_frame_l: ImgId, + settings_button: ImgId, + settings_button_pressed: ImgId, + settings_button_hover: ImgId, + settings_button_press: ImgId, + settings_bg: ImgId, + settings_icon: ImgId, + settings_button_mo: ImgId, + check: ImgId, + check_mo: ImgId, + check_press: ImgId, + check_checked: ImgId, + check_checked_mo: ImgId, + slider: ImgId, + slider_indicator: ImgId, + button_blank: ImgId, + button_blue_mo: ImgId, + button_blue_press: ImgId, + window_bg: ImgId, + // Social-Window + social_bg: ImgId, + social_icon: ImgId, + // Map-Window + map_bg: ImgId, + map_icon: ImgId, + map_frame_l: ImgId, + map_frame_r: ImgId, + map_frame_bl: ImgId, + map_frame_br: ImgId, + // Spell Book Window + spellbook_bg: ImgId, + spellbook_icon: ImgId, + // Char Window + charwindow: ImgId, + charwindow_icon: ImgId, + charwindow_tab_bg: ImgId, + charwindow_tab: ImgId, + charwindow_expbar: ImgId, + progress_frame: ImgId, + progress: ImgId, + + // Buttons + grid_button: ImgId, + grid_button_hover: ImgId, + grid_button_press: ImgId, + grid_button_open: ImgId, + + // Quest-Log Window + questlog_bg: ImgId, + questlog_icon: ImgId, + //help + // Chat-Arrow + chat_arrow: ImgId, + chat_arrow_mo: ImgId, + chat_arrow_press: ImgId, +} +impl Imgs { + fn new(ui: &mut Ui, renderer: &mut Renderer) -> Imgs { + let mut load_img = |filename, ui: &mut Ui| { + let fullpath: String = ["/voxygen/", filename].concat(); + let image = image::load_from_memory( + assets::load(fullpath.as_str()) + .expect("Error loading Main UI Image") + .as_slice(), + ) + .unwrap(); + ui.new_graphic(ui::Graphic::Image(image)) + }; + let mut load_vox = |filename, ui: &mut Ui| { + let fullpath: String = ["/voxygen/", filename].concat(); + let dot_vox = dot_vox::load_bytes( + assets::load(fullpath.as_str()) + .expect("Error loading Main UI .vox") + .as_slice(), + ) + .unwrap(); + ui.new_graphic(ui::Graphic::Voxel(Segment::from(dot_vox))) + }; + Imgs { + // Bag + bag: load_img("element/buttons/bag/closed.png", ui), + bag_hover: load_img("element/buttons/bag/closed_hover.png", ui), + bag_press: load_img("element/buttons/bag/closed_press.png", ui), + bag_open: load_img("element/buttons/bag/open.png", ui), + bag_open_hover: load_img("element/buttons/bag/open_hover.png", ui), + bag_open_press: load_img("element/buttons/bag/open_press.png", ui), + bag_contents: load_vox("element/frames/bag.vox", ui), + inv_grid: load_vox("element/frames/inv_grid.vox", ui), + inv_slot: load_vox("element/buttons/inv_slot.vox", ui), + + // Buttons + mmap_closed: load_vox("element/buttons/button_mmap_closed.vox", ui), + mmap_closed_hover: load_vox("element/buttons/button_mmap_closed_hover.vox", ui), + mmap_closed_press: load_vox("element/buttons/button_mmap_closed_press.vox", ui), + mmap_open: load_vox("element/buttons/button_mmap_open.vox", ui), + mmap_open_hover: load_vox("element/buttons/button_mmap_open_hover.vox", ui), + mmap_open_press: load_vox("element/buttons/button_mmap_open_press.vox", ui), + + settings: load_vox("element/buttons/settings.vox", ui), + settings_hover: load_vox("element/buttons/settings_hover.vox", ui), + settings_press: load_vox("element/buttons/settings_press.vox", ui), + + social_button: load_vox("element/buttons/social.vox", ui), + social_hover: load_vox("element/buttons/social_hover.vox", ui), + social_press: load_vox("element/buttons/social_press.vox", ui), + + map_button: load_vox("element/buttons/map.vox", ui), + map_hover: load_vox("element/buttons/map_hover.vox", ui), + map_press: load_vox("element/buttons/map_press.vox", ui), + + spellbook_button: load_vox("element/buttons/spellbook.vox", ui), + spellbook_hover: load_vox("element/buttons/spellbook_hover.vox", ui), + spellbook_press: load_vox("element/buttons/spellbook_press.vox", ui), + + character_button: load_vox("element/buttons/character.vox", ui), + character_hover: load_vox("element/buttons/character_hover.vox", ui), + character_press: load_vox("element/buttons/character_press.vox", ui), + + qlog_button: load_vox("element/buttons/qlog.vox", ui), + qlog_hover: load_vox("element/buttons/qlog_hover.vox", ui), + qlog_press: load_vox("element/buttons/qlog_press.vox", ui), + + grid_button: load_img("element/buttons/border.png", ui), + grid_button_hover: load_img("element/buttons/border_mo.png", ui), + grid_button_press: load_img("element/buttons/border_press.png", ui), + grid_button_open: load_img("element/buttons/border_pressed.png", ui), + + // Close button + close_button: load_vox("element/buttons/x.vox", ui), + close_button_hover: load_vox("element/buttons/x_hover.vox", ui), + close_button_press: load_vox("element/buttons/x_press.vox", ui), + + // Esc-Menu + esc_bg: load_img("element/frames/menu.png", ui), + fireplace: load_vox("element/misc_bg/fireplace.vox", ui), + button_dark: load_vox("element/buttons/button_dark.vox", ui), + button_dark_hover: load_img("element/buttons/button_dark_hover.png", ui), + button_dark_press: load_img("element/buttons/button_dark_press.png", ui), + + // MiniMap + mmap_frame: load_vox("element/frames/mmap.vox", ui), + mmap_frame_closed: load_vox("element/frames/mmap_closed.vox", ui), + + // Skillbar Module + sb_grid: load_img("element/skill_bar/sbar_grid.png", ui), + sb_grid_bg: load_img("element/skill_bar/sbar_grid_bg.png", ui), + l_click: load_img("element/skill_bar/l.png", ui), + r_click: load_img("element/skill_bar/r.png", ui), + mana_bar: load_img("element/skill_bar/mana_bar.png", ui), + health_bar: load_img("element/skill_bar/health_bar.png", ui), + xp_bar: load_img("element/skill_bar/xp_bar.png", ui), + + // Missing: Buff Frame Animation (.gif ?!) (we could do animation in ui.maintain(), or in shader?) + window_frame: load_vox("element/frames/window2.vox", ui), + window_frame_2: load_img("element/frames/window_2.png", ui), + + // Settings Window + settings_frame_r: load_vox("element/frames/settings_r.vox", ui), + settings_frame_l: load_vox("element/frames/settings_l.vox", ui), + settings_button: load_vox("element/buttons/settings_button.vox", ui), + settings_button_pressed: load_vox("element/buttons/settings_button_pressed.vox", ui), + settings_button_hover: load_vox("element/buttons/settings_button_hover.vox", ui), + settings_button_press: load_vox("element/buttons/settings_button_press.vox", ui), + settings_bg: load_img("element/frames/settings.png", ui), + settings_icon: load_img("element/icons/settings.png", ui), + settings_button_mo: load_img("element/buttons/blue_mo.png", ui), + check: load_img("element/buttons/check/no.png", ui), + check_mo: load_img("element/buttons/check/no_mo.png", ui), + check_press: load_img("element/buttons/check/press.png", ui), + check_checked: load_img("element/buttons/check/yes.png", ui), + check_checked_mo: load_img("element/buttons/check/yes_mo.png", ui), + slider: load_img("element/slider/track.png", ui), + slider_indicator: load_img("element/slider/indicator.png", ui), + button_blank: ui.new_graphic(ui::Graphic::Blank), + button_blue_mo: load_img("element/buttons/blue_mo.png", ui), + button_blue_press: load_img("element/buttons/blue_press.png", ui), + + // Window BG + window_bg: load_img("element/misc_bg/window_bg.png", ui), + + // Social Window + social_bg: load_img("element/misc_bg/small_bg.png", ui), + social_icon: load_img("element/icons/social.png", ui), + + // Map Window + map_bg: load_img("element/misc_bg/small_bg.png", ui), + map_icon: load_img("element/icons/map.png", ui), + map_frame_l: load_vox("element/frames/map_l.vox", ui), + map_frame_r: load_vox("element/frames/map_r.vox", ui), + map_frame_bl: load_vox("element/frames/map_bl.vox", ui), + map_frame_br: load_vox("element/frames/map_br.vox", ui), + + // Spell Book Window + spellbook_bg: load_img("element/misc_bg/small_bg.png", ui), + spellbook_icon: load_img("element/icons/spellbook.png", ui), + + // Char Window + charwindow: load_img("element/misc_bg/charwindow.png", ui), + charwindow_icon: load_img("element/icons/charwindow.png", ui), + charwindow_tab_bg: load_img("element/frames/tab.png", ui), + charwindow_tab: load_img("element/buttons/tab.png", ui), + charwindow_expbar: load_img("element/misc_bg/small_bg.png", ui), + progress_frame: load_img("element/frames/progress_bar.png", ui), + progress: load_img("element/misc_bg/progress.png", ui), + + // Quest-Log Window + questlog_bg: load_img("element/misc_bg/small_bg.png", ui), + questlog_icon: load_img("element/icons/questlog.png", ui), + + // Chat-Arrows + chat_arrow: load_img("element/buttons/arrow/chat_arrow.png", ui), + chat_arrow_mo: load_img("element/buttons/arrow/chat_arrow_mo.png", ui), + chat_arrow_press: load_img("element/buttons/arrow/chat_arrow_press.png", ui), + } + } +} + +enum SettingsTab { + Interface, + Video, + Sound, + Gameplay, + Controls, +} + +pub enum Event { + SendMessage(String), + Logout, + Quit, +} + +// TODO: are these the possible layouts we want? +// TODO: maybe replace this with bitflags +// map not here because it currently is displayed over the top of other open windows +enum Windows { + Settings, // display settings window + CharacterAnd(Option), // show character window + optionally another + Small(Small), + None, +} +#[derive(Clone, Copy)] +enum Small { + Spellbook, + Social, + Questlog, +} + +pub struct Hud { + ui: Ui, + ids: Ids, + imgs: Imgs, + chat: chat::Chat, + font_metamorph: FontId, + font_opensans: FontId, + show_help: bool, + show_debug: bool, + bag_open: bool, + menu_open: bool, + open_windows: Windows, + map_open: bool, + mmap_open: bool, + show_ui: bool, + inventory_space: u32, + xp_percentage: f64, + hp_percentage: f64, + mana_percentage: f64, + inventorytest_button: bool, + settings_tab: SettingsTab, +} + +//#[inline] +//pub fn rgba_bytes(r: u8, g: u8, b: u8, a: f32) -> Color { +//Color::Rgba(r as f32 / 255.0, g as f32 / 255.0, b as f32 / 255.0, a) +//} + +impl Hud { + pub fn new(window: &mut Window) -> Self { + let mut ui = Ui::new(window).unwrap(); + // TODO: adjust/remove this, right now it is used to demonstrate window scaling functionality + ui.scaling_mode(ScaleMode::RelativeToWindow([1920.0, 1080.0].into())); + // Generate ids + let ids = Ids::new(ui.id_generator()); + // Load images + let imgs = Imgs::new(&mut ui, window.renderer_mut()); + // Load fonts + let load_font = |filename, ui: &mut Ui| { + let fullpath: String = ["/voxygen/font", filename].concat(); + ui.new_font( + conrod_core::text::Font::from_bytes( + assets::load(fullpath.as_str()).expect("Error loading file"), + ) + .unwrap(), + ) + }; + let font_opensans = load_font("/OpenSans-Regular.ttf", &mut ui); + let font_metamorph = load_font("/Metamorphous-Regular.ttf", &mut ui); + // Chat box + let chat = chat::Chat::new(&mut ui); + + Self { + ui, + imgs, + ids, + chat, + settings_tab: SettingsTab::Interface, + show_help: true, + show_debug: false, + bag_open: false, + menu_open: false, + map_open: false, + mmap_open: true, + show_ui: true, + inventorytest_button: false, + inventory_space: 0, + open_windows: Windows::None, + font_metamorph, + font_opensans, + xp_percentage: 0.4, + hp_percentage: 1.0, + mana_percentage: 1.0, + } + } + + fn update_layout(&mut self, tps: f64) -> Vec { + let mut events = Vec::new(); + let ref mut ui_widgets = self.ui.set_widgets(); + let version = env!("CARGO_PKG_VERSION"); + + const TEXT_COLOR: Color = Color::Rgba(1.0, 1.0, 1.0, 1.0); + const HP_COLOR: Color = Color::Rgba(0.33, 0.63, 0.0, 1.0); + const MANA_COLOR: Color = Color::Rgba(0.42, 0.41, 0.66, 1.0); + const XP_COLOR: Color = Color::Rgba(0.59, 0.41, 0.67, 1.0); + + // Don't show anything if the ui is toggled off + if !self.show_ui { + return events; + } + + // Display debug window + if self.show_debug { + // Alpha Version + Text::new(version) + .top_left_with_margins_on(ui_widgets.window, 5.0, 5.0) + .font_size(14) + .font_id(self.font_opensans) + .color(TEXT_COLOR) + .set(self.ids.version, ui_widgets); + Text::new(&format!("FPS: {:.1}", tps)) + .color(TEXT_COLOR) + .down_from(self.ids.version, 5.0) + .font_id(self.font_opensans) + .font_size(14) + .set(self.ids.fps_counter, ui_widgets); + } + + // Add Bag-Space Button + if self.inventorytest_button { + if Button::image(self.imgs.grid_button) + .w_h(100.0, 100.0) + .middle_of(ui_widgets.window) + .label("1 Up!") + .label_font_size(20) + .hover_image(self.imgs.grid_button_hover) + .press_image(self.imgs.grid_button_press) + .set(self.ids.bag_space_add, ui_widgets) + .was_clicked() + { + self.inventory_space = self.inventory_space + 1; + }; + } + + // Chat box + if let Some(msg) = self + .chat + .update_layout(ui_widgets, self.font_opensans, &self.imgs) + { + events.push(Event::SendMessage(msg)); + } + + // Help Text + if self.show_help { + Image::new(self.imgs.window_frame_2) + .top_left_with_margins_on(ui_widgets.window, 3.0, 3.0) + .w_h(300.0, 190.0) + .set(self.ids.help_bg, ui_widgets); + + Text::new( + "Tab = Free Cursor \n\ + Esc = Open/Close Menus \n\ + \n\ + F1 = Toggle this Window \n\ + F2 = Toggle Interface \n\ + \n\ + Enter = Open Chat \n\ + Mouse Wheel = Scroll Chat", + ) + .color(TEXT_COLOR) + .top_left_with_margins_on(self.ids.help_bg, 20.0, 20.0) + .font_id(self.font_opensans) + .font_size(18) + .set(self.ids.help, ui_widgets); + + // X-button + if Button::image(self.imgs.close_button) + .w_h(100.0 * 0.2, 100.0 * 0.2) + .hover_image(self.imgs.close_button_hover) + .press_image(self.imgs.close_button_press) + .top_right_with_margins_on(self.ids.help_bg, 8.0, 3.0) + .set(self.ids.button_help2, ui_widgets) + .was_clicked() + { + self.show_help = false; + }; + } + + // Minimap + + if self.mmap_open { + Image::new(self.imgs.mmap_frame) + .w_h(100.0 * 2.0, 100.0 * 2.0) + .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) + .set(self.ids.mmap_frame, ui_widgets); + + Rectangle::fill_with([92.0 * 2.0, 82.0 * 2.0], color::TRANSPARENT) + .mid_top_with_margin_on(self.ids.mmap_frame, 13.0 * 2.0 + 2.0) + .set(self.ids.mmap_frame_bg, ui_widgets); + } + else { + Image::new(self.imgs.mmap_frame_closed) + .w_h(100.0 * 2.0, 11.0 * 2.0) + .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) + .set(self.ids.mmap_frame, ui_widgets); + }; + + if Button::image(if self.mmap_open {self.imgs.mmap_open} else {self.imgs.mmap_closed}) + .w_h(100.0 * 0.2, 100.0 * 0.2) + .hover_image(if self.mmap_open {self.imgs.mmap_open_hover} else {self.imgs.mmap_closed_hover}) + .press_image(if self.mmap_open {self.imgs.mmap_open_press} else {self.imgs.mmap_closed_press}) + .top_right_with_margins_on(self.ids.mmap_frame, 0.0, 0.0) + .set(self.ids.mmap_button, ui_widgets) + .was_clicked() + { + self.mmap_open = !self.mmap_open; + }; + + // Title + // Make it display the actual location + Text::new("Uncanny Valley") + .mid_top_with_margin_on(self.ids.mmap_frame, 3.0) + .font_size(14) + .color(TEXT_COLOR) + .set(self.ids.mmap_location, ui_widgets); + + // Buttons at Bag + + // 0 Settings + if Button::image(self.imgs.settings) + .w_h(29.0, 25.0) + .bottom_right_with_margins_on(ui_widgets.window, 5.0, 57.0) + .hover_image(self.imgs.settings_hover) + .press_image(self.imgs.settings_press) + .label("N") + .label_font_size(10) + .label_font_id(self.font_metamorph) + .color(TEXT_COLOR) + .label_color(TEXT_COLOR) + .label_y(conrod_core::position::Relative::Scalar(-7.0)) + .label_x(conrod_core::position::Relative::Scalar(10.0)) + .set(self.ids.settings_button, ui_widgets) + .was_clicked() + { + self.open_windows = match self.open_windows { + Windows::Settings => Windows::None, + _ => Windows::Settings, + }; + self.bag_open = false; + }; + + // 2 Map + if Button::image(self.imgs.map_button) + .w_h(22.0, 25.0) + .left_from(self.ids.social_button, 10.0) + .hover_image(self.imgs.map_hover) + .press_image(self.imgs.map_press) + .label("M") + .label_font_size(10) + .label_font_id(self.font_metamorph) + .label_color(TEXT_COLOR) + .label_y(conrod_core::position::Relative::Scalar(-7.0)) + .label_x(conrod_core::position::Relative::Scalar(10.0)) + .set(self.ids.map_button, ui_widgets) + .was_clicked() + { + self.map_open = !self.map_open; + self.bag_open = false; + }; + + // Other Windows can only be accessed, when Settings are closed. + // Opening Settings will close all other Windows including the Bag. + // Opening the Map won't close the windows displayed before. + Image::new(self.imgs.social_button) + .w_h(25.0, 25.0) + .left_from(self.ids.settings_button, 10.0) + .set(self.ids.social_button_bg, ui_widgets); + Image::new(self.imgs.spellbook_button) + .w_h(28.0, 25.0) + .left_from(self.ids.map_button, 10.0) + .set(self.ids.spellbook_button_bg, ui_widgets); + Image::new(self.imgs.character_button) + .w_h(27.0, 25.0) + .left_from(self.ids.spellbook_button, 10.0) + .set(self.ids.character_button_bg, ui_widgets); + Image::new(self.imgs.qlog_button) + .w_h(23.0, 25.0) + .left_from(self.ids.character_button, 10.0) + .set(self.ids.qlog_button_bg, ui_widgets); + + if match self.open_windows { + Windows::Settings => false, + _ => true, + } && self.map_open == false + { + // 1 Social + if Button::image(self.imgs.social_button) + .w_h(25.0, 25.0) + .left_from(self.ids.settings_button, 10.0) + .hover_image(self.imgs.social_hover) + .press_image(self.imgs.social_press) + .label("O") + .label_font_size(10) + .label_font_id(self.font_metamorph) + .label_color(TEXT_COLOR) + .label_y(conrod_core::position::Relative::Scalar(-7.0)) + .label_x(conrod_core::position::Relative::Scalar(10.0)) + .set(self.ids.social_button, ui_widgets) + .was_clicked() + { + self.open_windows = match self.open_windows { + Windows::Small(Small::Social) => Windows::None, + Windows::None | Windows::Small(_) => Windows::Small(Small::Social), + Windows::CharacterAnd(small) => match small { + Some(Small::Social) => Windows::CharacterAnd(None), + _ => Windows::CharacterAnd(Some(Small::Social)), + }, + Windows::Settings => Windows::Settings, + }; + } + + // 3 Spellbook + if Button::image(self.imgs.spellbook_button) + .w_h(28.0, 25.0) + .left_from(self.ids.map_button, 10.0) + .hover_image(self.imgs.spellbook_hover) + .press_image(self.imgs.spellbook_press) + .label("P") + .label_font_size(10) + .label_font_id(self.font_metamorph) + .label_color(TEXT_COLOR) + .label_y(conrod_core::position::Relative::Scalar(-7.0)) + .label_x(conrod_core::position::Relative::Scalar(10.0)) + .set(self.ids.spellbook_button, ui_widgets) + .was_clicked() + { + self.open_windows = match self.open_windows { + Windows::Small(Small::Spellbook) => Windows::None, + Windows::None | Windows::Small(_) => Windows::Small(Small::Spellbook), + Windows::CharacterAnd(small) => match small { + Some(Small::Spellbook) => Windows::CharacterAnd(None), + _ => Windows::CharacterAnd(Some(Small::Spellbook)), + }, + Windows::Settings => Windows::Settings, + }; + } + + // 4 Char-Window + if Button::image(self.imgs.character_button) + .w_h(27.0, 25.0) + .left_from(self.ids.spellbook_button, 10.0) + .hover_image(self.imgs.character_hover) + .press_image(self.imgs.character_press) + .label("C") + .label_font_size(10) + .label_font_id(self.font_metamorph) + .label_color(TEXT_COLOR) + .label_y(conrod_core::position::Relative::Scalar(-7.0)) + .label_x(conrod_core::position::Relative::Scalar(10.0)) + .set(self.ids.character_button, ui_widgets) + .was_clicked() + { + self.open_windows = match self.open_windows { + Windows::CharacterAnd(small) => match small { + Some(small) => Windows::Small(small), + None => Windows::None, + }, + Windows::Small(small) => Windows::CharacterAnd(Some(small)), + Windows::None => Windows::CharacterAnd(None), + Windows::Settings => Windows::Settings, + } + } + + // 5 Quest-Log + if Button::image(self.imgs.qlog_button) + .w_h(23.0, 25.0) + .left_from(self.ids.character_button, 10.0) + .hover_image(self.imgs.qlog_hover) + .press_image(self.imgs.qlog_press) + .label("L") + .label_font_size(10) + .label_font_id(self.font_metamorph) + .label_color(TEXT_COLOR) + .label_y(conrod_core::position::Relative::Scalar(-7.0)) + .label_x(conrod_core::position::Relative::Scalar(10.0)) + .set(self.ids.qlog_button, ui_widgets) + .was_clicked() + { + self.open_windows = match self.open_windows { + Windows::Small(Small::Questlog) => Windows::None, + Windows::None | Windows::Small(_) => Windows::Small(Small::Questlog), + Windows::CharacterAnd(small) => match small { + Some(Small::Questlog) => Windows::CharacterAnd(None), + _ => Windows::CharacterAnd(Some(Small::Questlog)), + }, + Windows::Settings => Windows::Settings, + }; + } + } + + // Skillbar Module + + // Experience-Bar + Image::new(self.imgs.xp_bar) + .w_h(2688.0 / 6.0, 116.0 / 6.0) + .mid_bottom_of(ui_widgets.window) + .set(self.ids.xp_bar, ui_widgets); + + Rectangle::fill_with([406.0 * (self.xp_percentage), 5.0], XP_COLOR) // "W=406*[Exp. %]" + .top_left_with_margins_on(self.ids.xp_bar, 5.0, 21.0) + .set(self.ids.xp_bar_progress, ui_widgets); + + // Left Grid + Image::new(self.imgs.sb_grid) + .w_h(2240.0 / 12.0, 448.0 / 12.0) + .up_from(self.ids.xp_bar, 0.0) + .align_left_of(self.ids.xp_bar) + .set(self.ids.sb_grid_l, ui_widgets); + + Image::new(self.imgs.sb_grid_bg) + .w_h(2240.0 / 12.0, 448.0 / 12.0) + .middle_of(self.ids.sb_grid_l) + .set(self.ids.sb_grid_bg_l, ui_widgets); + + // Right Grid + Image::new(self.imgs.sb_grid) + .w_h(2240.0 / 12.0, 448.0 / 12.0) + .up_from(self.ids.xp_bar, 0.0) + .align_right_of(self.ids.xp_bar) + .set(self.ids.sb_grid_r, ui_widgets); + + Image::new(self.imgs.sb_grid_bg) + .w_h(2240.0 / 12.0, 448.0 / 12.0) + .middle_of(self.ids.sb_grid_r) + .set(self.ids.sb_grid_bg_r, ui_widgets); + + // Right and Left Click + Image::new(self.imgs.l_click) + .w_h(224.0 / 6.0, 320.0 / 6.0) + .right_from(self.ids.sb_grid_bg_l, 0.0) + .align_bottom_of(self.ids.sb_grid_bg_l) + .set(self.ids.l_click, ui_widgets); + + Image::new(self.imgs.r_click) + .w_h(224.0 / 6.0, 320.0 / 6.0) + .left_from(self.ids.sb_grid_bg_r, 0.0) + .align_bottom_of(self.ids.sb_grid_bg_r) + .set(self.ids.r_click, ui_widgets); + + // Health Bar + Image::new(self.imgs.health_bar) + .w_h(1120.0 / 6.0, 96.0 / 6.0) + .left_from(self.ids.l_click, 0.0) + .align_top_of(self.ids.l_click) + .set(self.ids.health_bar, ui_widgets); + + // Filling + Rectangle::fill_with([182.0 * (self.hp_percentage), 6.0], HP_COLOR) // "W=182.0 * [Health. %]" + .top_right_with_margins_on(self.ids.health_bar, 5.0, 0.0) + .set(self.ids.health_bar_color, ui_widgets); + + // Mana Bar + Image::new(self.imgs.mana_bar) + .w_h(1120.0 / 6.0, 96.0 / 6.0) + .right_from(self.ids.r_click, 0.0) + .align_top_of(self.ids.r_click) + .set(self.ids.mana_bar, ui_widgets); + + // Filling + Rectangle::fill_with([182.0 * (self.mana_percentage), 6.0], MANA_COLOR) // "W=182.0 * [Mana. %]" + .top_left_with_margins_on(self.ids.mana_bar, 5.0, 0.0) + .set(self.ids.mana_bar_color, ui_widgets); + + // Buffs/Debuffs + + // Buffs + + // Debuffs + + // Level Display + + // Insert actual Level here + Text::new("1") + .left_from(self.ids.xp_bar, -15.0) + .font_size(10) + .color(TEXT_COLOR) + .set(self.ids.level_text, ui_widgets); + + // Insert next Level here + Text::new("2") + .right_from(self.ids.xp_bar, -15.0) + .font_size(10) + .color(TEXT_COLOR) + .set(self.ids.next_level_text, ui_widgets); + + // Bag contents + if self.bag_open { + // Contents + Image::new(self.imgs.bag_contents) + .w_h(68.0 * 4.0, 123.0 * 4.0) + .bottom_right_with_margins_on(ui_widgets.window, 60.0, 5.0) + .set(self.ids.bag_contents, ui_widgets); + + // Alignment for Grid + Rectangle::fill_with([58.0 * 4.0 - 5.0, 100.0 * 4.0], color::TRANSPARENT) + .top_left_with_margins_on(self.ids.bag_contents, 11.0 * 4.0, 5.0 * 4.0) + .scroll_kids() + .scroll_kids_vertically() + .set(self.ids.inv_alignment, ui_widgets); + // Grid + Image::new(self.imgs.inv_grid) + .w_h(58.0 * 4.0, 111.0 * 4.0) + .mid_top_with_margin_on(self.ids.inv_alignment, 0.0) + .set(self.ids.inv_grid_1, ui_widgets); + Image::new(self.imgs.inv_grid) + .w_h(58.0 * 4.0, 111.0 * 4.0) + .mid_top_with_margin_on(self.ids.inv_alignment, 110.0 * 4.0) + .set(self.ids.inv_grid_2, ui_widgets); + Scrollbar::y_axis(self.ids.inv_alignment) + .thickness(5.0) + .rgba(0.33, 0.33, 0.33, 1.0) + .set(self.ids.inv_scrollbar, ui_widgets); + + // X-button + if Button::image(self.imgs.close_button) + .w_h(4.0 * 4.0, 4.0 * 4.0) + .hover_image(self.imgs.close_button_hover) + .press_image(self.imgs.close_button_press) + .top_right_with_margins_on(self.ids.bag_contents, 4.5, 4.5) + .set(self.ids.bag_close, ui_widgets) + .was_clicked() + { + self.bag_open = false; + } + + if self.inventory_space > 0 { + // First Slot + Button::image(self.imgs.inv_slot) + .top_left_with_margins_on(self.ids.inv_grid_1, 4.0, 4.0) + .w_h(10.0 * 4.0, 10.0 * 4.0) + .set(self.ids.inv_slot_0, ui_widgets); + } + } + + // Bag + if !self.map_open && self.show_ui { + self.bag_open = ToggleButton::new(self.bag_open, self.imgs.bag, self.imgs.bag_open) + .bottom_right_with_margins_on(ui_widgets.window, 5.0, 5.0) + .hover_images(self.imgs.bag_hover, self.imgs.bag_open_hover) + .press_images(self.imgs.bag_press, self.imgs.bag_open_press) + .w_h(420.0 / 10.0, 480.0 / 10.0) + .set(self.ids.bag, ui_widgets); + Text::new("B") + .bottom_right_with_margins_on(self.ids.bag, 0.0, 0.0) + .font_size(10) + .font_id(self.font_metamorph) + .color(TEXT_COLOR) + .set(self.ids.bag_text, ui_widgets); + } else { + Image::new(self.imgs.bag) + .bottom_right_with_margins_on(ui_widgets.window, 5.0, 5.0) + .w_h(420.0 / 10.0, 480.0 / 10.0) + .set(self.ids.bag_map_open, ui_widgets); + Text::new("B") + .bottom_right_with_margins_on(self.ids.bag, 0.0, 0.0) + .font_size(10) + .font_id(self.font_metamorph) + .set(self.ids.bag_text, ui_widgets); + } + + //Windows + + //Char Window will always appear at the left side. Other Windows either appear at the left side, + //or when the Char Window is opened they will appear right from it. + + // 0 Settings + + if let Windows::Settings = self.open_windows { + // Frame Alignment + Rectangle::fill_with([824.0, 488.0], color::TRANSPARENT) + .middle_of(ui_widgets.window) + .set(self.ids.settings_bg, ui_widgets); + // Frame + Image::new(self.imgs.settings_frame_l) + .top_left_with_margins_on(self.ids.settings_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.settings_l, ui_widgets); + Image::new(self.imgs.settings_frame_r) + .right_from(self.ids.settings_l, 0.0) + .parent(self.ids.settings_bg) + .w_h(412.0, 488.0) + .set(self.ids.settings_r, ui_widgets); + // Content Alignment + Rectangle::fill_with([198.0*4.0, 97.0*4.0], color::TRANSPARENT) + .top_right_with_margins_on(self.ids.settings_r, 21.0*4.0, 4.0*4.0) + .scroll_kids() + .scroll_kids_vertically() + .set(self.ids.settings_content, ui_widgets); + // X-Button + if Button::image(self.imgs.close_button) + .w_h(28.0, 28.0) + .hover_image(self.imgs.close_button_hover) + .press_image(self.imgs.close_button_press) + .top_right_with_margins_on(self.ids.settings_r, 0.0, 0.0) + .set(self.ids.settings_close, ui_widgets) + .was_clicked() + { + self.open_windows = Windows::None; + self.settings_tab = SettingsTab::Interface; + } + + // Title + Text::new("Settings") + .mid_top_with_margin_on(self.ids.settings_bg, 5.0) + .font_size(14) + .color(TEXT_COLOR) + .set(self.ids.settings_title, ui_widgets); + // Icon + //Image::new(self.imgs.settings_icon) + //.w_h(224.0 / 3.0, 224.0 / 3.0) + //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) + //.set(self.ids.settings_icon, ui_widgets); + // TODO: Find out if we can remove this + + // 1 Interface//////////////////////////// + if Button::image(if let SettingsTab::Interface = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button + }) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Interface = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Interface = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .top_left_with_margins_on(self.ids.settings_l, 8.0*4.0, 2.0*4.0) + .label("Interface") + .label_font_size(14) + .label_color(TEXT_COLOR) + .set(self.ids.interface, ui_widgets) + .was_clicked() + { + self.settings_tab = SettingsTab::Interface; + } + // Toggle Help + if let SettingsTab::Interface = self.settings_tab { + self.show_help = + ToggleButton::new(self.show_help, self.imgs.check, self.imgs.check_checked) + .w_h(288.0 / 24.0, 288.0 / 24.0) + .top_left_with_margins_on(self.ids.settings_content, 5.0, 5.0) + .hover_images(self.imgs.check_checked_mo, self.imgs.check_mo) + .press_images(self.imgs.check_press, self.imgs.check_press) + .set(self.ids.button_help, ui_widgets); + Text::new("Show Help") + .right_from(self.ids.button_help, 10.0) + .font_size(14) + .font_id(self.font_opensans) + .graphics_for(self.ids.button_help) + .color(TEXT_COLOR) + .set(self.ids.show_help_label, ui_widgets); + + self.inventorytest_button = ToggleButton::new( + self.inventorytest_button, + self.imgs.check, + self.imgs.check_checked, + ) + .w_h(288.0 / 24.0, 288.0 / 24.0) + .down_from(self.ids.button_help, 7.0) + .hover_images(self.imgs.check_checked_mo, self.imgs.check_mo) + .press_images(self.imgs.check_press, self.imgs.check_press) + .set(self.ids.inventorytest_button, ui_widgets); + + Text::new("Show Inventory Test Button") + .right_from(self.ids.inventorytest_button, 10.0) + .font_size(14) + .font_id(self.font_opensans) + .graphics_for(self.ids.inventorytest_button) + .color(TEXT_COLOR) + .set(self.ids.inventorytest_button_label, ui_widgets); + + self.show_debug = + ToggleButton::new(self.show_debug, self.imgs.check, self.imgs.check_checked) + .w_h(288.0 / 24.0, 288.0 / 24.0) + .down_from(self.ids.inventorytest_button, 7.0) + .hover_images(self.imgs.check_checked_mo, self.imgs.check_mo) + .press_images(self.imgs.check_press, self.imgs.check_press) + .set(self.ids.debug_button, ui_widgets); + + Text::new("Show Debug Window") + .right_from(self.ids.debug_button, 10.0) + .font_size(14) + .font_id(self.font_opensans) + .graphics_for(self.ids.debug_button) + .color(TEXT_COLOR) + .set(self.ids.debug_button_label, ui_widgets); + } + + // 2 Gameplay//////////////// + if Button::image(if let SettingsTab::Gameplay = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button + }) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Gameplay = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Gameplay = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .right_from(self.ids.interface, 0.0) + .label("Gameplay") + .label_font_size(14) + .label_color(TEXT_COLOR) + .set(self.ids.gameplay, ui_widgets) + .was_clicked() + { + self.settings_tab = SettingsTab::Gameplay; + } + + // 3 Controls///////////////////// + if Button::image(if let SettingsTab::Controls = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button + }) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Controls = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Controls = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .right_from(self.ids.gameplay, 0.0) + .label("Controls") + .label_font_size(14) + .label_color(TEXT_COLOR) + .set(self.ids.controls, ui_widgets) + .was_clicked() + { + self.settings_tab = SettingsTab::Controls; + } + + // 4 Video//////////////////////////////// + if Button::image(if let SettingsTab::Video = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button + }) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Video = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Video = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .right_from(self.ids.controls, 0.0) + .label("Video") + .parent(self.ids.settings_r) + .label_font_size(14) + .label_color(TEXT_COLOR) + .set(self.ids.video, ui_widgets) + .was_clicked() + { + self.settings_tab = SettingsTab::Video; + } + + // 5 Sound/////////////////////////////// + if Button::image(if let SettingsTab::Sound = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button + }) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Sound = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Sound = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .right_from(self.ids.video, 0.0) + .parent(self.ids.settings_r) + .label("Sound") + .label_font_size(14) + .label_color(TEXT_COLOR) + .set(self.ids.sound, ui_widgets) + .was_clicked() + { + self.settings_tab = SettingsTab::Sound; + } + } + + if let Some((small, char_window_open)) = match self.open_windows { + Windows::Small(small) => Some((small, false)), + Windows::CharacterAnd(Some(small)) => Some((small, true)), + _ => None, + } { + // TODO: there is common code in each match arm, might be able to combine this + match small { + Small::Social => { + //Frame + if char_window_open { + Image::new(self.imgs.window_frame) + .right_from(self.ids.charwindow_frame, 20.0) + .w_h(107.0 * 4.0, 125.0 * 4.0) + .set(self.ids.social_frame, ui_widgets); + } else { + Image::new(self.imgs.window_frame) + .top_left_with_margins_on(ui_widgets.window, 200.0, 10.0) + .w_h(107.0 * 4.0, 125.0 * 4.0) + .set(self.ids.social_frame, ui_widgets); + } + + // Icon + Image::new(self.imgs.social_icon) + .w_h(40.0, 40.0) + .top_left_with_margins_on(self.ids.social_frame, 4.0, 4.0) + .set(self.ids.social_icon, ui_widgets); + + // Content alignment + Rectangle::fill_with([362.0, 418.0], color::TRANSPARENT) + .bottom_right_with_margins_on(self.ids.social_frame, 17.0, 17.0) + .scroll_kids() + .scroll_kids_vertically() + .set(self.ids.social_bg, ui_widgets); + + // X-Button + if Button::image(self.imgs.close_button) + .w_h(28.0, 28.0) + .hover_image(self.imgs.close_button_hover) + .press_image(self.imgs.close_button_press) + .top_right_with_margins_on(self.ids.social_frame, 12.0, 0.0) + .set(self.ids.social_close, ui_widgets) + .was_clicked() + { + self.open_windows = match self.open_windows { + Windows::Small(_) => Windows::None, + Windows::CharacterAnd(_) => Windows::CharacterAnd(None), + _ => Windows::Settings, + } + } + // Title + Text::new("Social") + .mid_top_with_margin_on(self.ids.social_frame, 17.0) + .font_id(self.font_metamorph) + .font_size(14) + .color(TEXT_COLOR) + .set(self.ids.social_title, ui_widgets); + } + Small::Spellbook => { + // Frame + if char_window_open { + Image::new(self.imgs.window_frame) + .right_from(self.ids.charwindow_frame, 20.0) + .w_h(107.0 * 4.0, 125.0 * 4.0) + .set(self.ids.spellbook_frame, ui_widgets); + } else { + Image::new(self.imgs.window_frame) + .top_left_with_margins_on(ui_widgets.window, 200.0, 10.0) + .w_h(107.0 * 4.0, 125.0 * 4.0) + .set(self.ids.spellbook_frame, ui_widgets); + } + + // Icon + Image::new(self.imgs.spellbook_icon) + .w_h(40.0, 40.0) + .top_left_with_margins_on(self.ids.spellbook_frame, 4.0, 4.0) + .set(self.ids.spellbook_icon, ui_widgets); + + // Content alignment + Rectangle::fill_with([362.0, 418.0], color::TRANSPARENT) + .bottom_right_with_margins_on(self.ids.spellbook_frame, 17.0, 17.0) + .scroll_kids() + .scroll_kids_vertically() + .set(self.ids.spellbook_bg, ui_widgets); + + // X-Button + if Button::image(self.imgs.close_button) + .w_h(14.0, 14.0) + .hover_image(self.imgs.close_button_hover) + .press_image(self.imgs.close_button_press) + .top_right_with_margins_on(self.ids.spellbook_frame, 12.0, 0.0) + .set(self.ids.spellbook_close, ui_widgets) + .was_clicked() + { + self.open_windows = match self.open_windows { + Windows::Small(_) => Windows::None, + Windows::CharacterAnd(_) => Windows::CharacterAnd(None), + _ => Windows::Settings, + } + } + // Title + Text::new("Spellbook") + .mid_top_with_margin_on(self.ids.spellbook_frame, 17.0) + .font_size(14) + .color(TEXT_COLOR) + .set(self.ids.spellbook_title, ui_widgets); + } + Small::Questlog => { + // Frame + if char_window_open { + Image::new(self.imgs.window_frame) + .right_from(self.ids.charwindow_frame, 20.0) + .w_h(107.0 * 4.0, 125.0 * 4.0) + .set(self.ids.questlog_frame, ui_widgets); + } else { + Image::new(self.imgs.window_frame) + .top_left_with_margins_on(ui_widgets.window, 200.0, 10.0) + .w_h(107.0 * 4.0, 125.0 * 4.0) + .set(self.ids.questlog_frame, ui_widgets); + } + + // Icon + Image::new(self.imgs.questlog_icon) + .w_h(40.0, 40.0) + .top_left_with_margins_on(self.ids.questlog_frame, 4.0, 4.0) + .set(self.ids.questlog_icon, ui_widgets); + + // Content alignment + Rectangle::fill_with([362.0, 418.0], color::TRANSPARENT) + .bottom_right_with_margins_on(self.ids.questlog_frame, 17.0, 17.0) + .scroll_kids() + .scroll_kids_vertically() + .set(self.ids.questlog_bg, ui_widgets); + + // X-Button + if Button::image(self.imgs.close_button) + .w_h(20.0, 20.0) + .press_image(self.imgs.close_button_press) + .top_right_with_margins_on(self.ids.questlog_frame, 17.0, 5.0) + .set(self.ids.questlog_close, ui_widgets) + .was_clicked() + { + self.open_windows = match self.open_windows { + Windows::Small(_) => Windows::None, + Windows::CharacterAnd(_) => Windows::CharacterAnd(None), + _ => Windows::Settings, + } + } + // Title + Text::new("Quest-Log") + .mid_top_with_margin_on(self.ids.questlog_frame, 17.0) + .color(TEXT_COLOR) + .font_size(14) + .set(self.ids.questlog_title, ui_widgets); + } + } + } + + // 4 Char-Window + if let Windows::CharacterAnd(small) = self.open_windows { + // Frame + Image::new(self.imgs.window_frame) + .top_left_with_margins_on(ui_widgets.window, 200.0, 215.0) + .w_h(1648.0 / 4.0, 1952.0 / 4.0) + .set(self.ids.charwindow_frame, ui_widgets); + + // BG + //Image::new(self.imgs.window_bg) + //.w_h(348.0, 404.0) + //.mid_top_with_margin_on(self.ids.charwindow_frame, 48.0) + //.set(self.ids.charwindow_bg, ui_widgets); + + // Overlay + //Image::new(self.imgs.charwindow) + //.middle_of(self.ids.charwindow_bg) + //.set(self.ids.charwindow, ui_widgets); + + // Icon + //Image::new(self.imgs.charwindow_icon) + //.w_h(224.0 / 3.0, 224.0 / 3.0) + //.top_left_with_margins_on(self.ids.charwindow_frame, -10.0, -10.0) + //.set(self.ids.charwindow_icon, ui_widgets); + + // X-Button + if Button::image(self.imgs.close_button) + .w_h(244.0 * 0.22 / 4.0, 244.0 * 0.22 / 4.0) + .hover_image(self.imgs.close_button_hover) + .press_image(self.imgs.close_button_press) + .top_right_with_margins_on(self.ids.charwindow_frame, 4.0, 4.0) + .set(self.ids.charwindow_close, ui_widgets) + .was_clicked() + { + self.open_windows = match small { + Some(small) => Windows::Small(small), + None => Windows::None, + } + } + + // Title + Text::new("Character Name") //Add in actual Character Name + .mid_top_with_margin_on(self.ids.charwindow_frame, 7.0) + .color(TEXT_COLOR) + .set(self.ids.charwindow_title, ui_widgets); + // Tab BG + Image::new(self.imgs.charwindow_tab_bg) + .w_h(205.0, 412.0) + .mid_left_with_margin_on(self.ids.charwindow_frame, -205.0) + .set(self.ids.charwindow_tab_bg, ui_widgets); + // Tab Rectangle + Rectangle::fill_with([192.0, 371.0], color::rgba(0.0, 0.0, 0.0, 0.8)) + .top_right_with_margins_on(self.ids.charwindow_tab_bg, 20.0, 0.0) + .set(self.ids.charwindow_rectangle, ui_widgets); + // Tab Button + Button::image(self.imgs.charwindow_tab) + .w_h(65.0, 23.0) + .top_left_with_margins_on(self.ids.charwindow_tab_bg, -18.0, 2.0) + .label("Stats") + .label_color(TEXT_COLOR) + .label_font_id(self.font_opensans) + .label_font_size(14) + .set(self.ids.charwindow_tab1, ui_widgets); + Text::new("1") //Add in actual Character Level + .mid_top_with_margin_on(self.ids.charwindow_rectangle, 10.0) + .font_id(self.font_opensans) + .font_size(30) + .color(TEXT_COLOR) + .set(self.ids.charwindow_tab1_level, ui_widgets); + // Exp-Bar Background + Rectangle::fill_with([170.0, 10.0], color::BLACK) + .mid_top_with_margin_on(self.ids.charwindow_rectangle, 50.0) + .set(self.ids.charwindow_exp_rectangle, ui_widgets); + // Exp-Bar Progress + Rectangle::fill_with([170.0 * (self.xp_percentage), 6.0], XP_COLOR) // 0.8 = Experience percantage + .mid_left_with_margin_on(self.ids.charwindow_tab1_expbar, 1.0) + .set(self.ids.charwindow_exp_progress_rectangle, ui_widgets); + // Exp-Bar Foreground Frame + Image::new(self.imgs.progress_frame) + .w_h(170.0, 10.0) + .middle_of(self.ids.charwindow_exp_rectangle) + .set(self.ids.charwindow_tab1_expbar, ui_widgets); + // Exp-Text + Text::new("120/170") // Shows the Exp / Exp to reach the next level + .mid_top_with_margin_on(self.ids.charwindow_tab1_expbar, 10.0) + .font_id(self.font_opensans) + .font_size(15) + .color(TEXT_COLOR) + .set(self.ids.charwindow_tab1_exp, ui_widgets); + + // Stats + Text::new( + "Stamina\n\ + \n\ + Strength\n\ + \n\ + Dexterity\n\ + \n\ + Intelligence", + ) + .top_left_with_margins_on(self.ids.charwindow_rectangle, 100.0, 20.0) + .font_id(self.font_opensans) + .font_size(16) + .color(TEXT_COLOR) + .set(self.ids.charwindow_tab1_statnames, ui_widgets); + + Text::new( + "1234\n\ + \n\ + 12312\n\ + \n\ + 12414\n\ + \n\ + 124124", + ) + .right_from(self.ids.charwindow_tab1_statnames, 10.0) + .font_id(self.font_opensans) + .font_size(16) + .color(TEXT_COLOR) + .set(self.ids.charwindow_tab1_stats, ui_widgets); + } + + // 2 Map + if self.map_open { + // BG + Rectangle::fill_with([824.0, 976.0], color::TRANSPARENT) + .mid_top_with_margin_on(ui_widgets.window, 15.0) + .scroll_kids() + .scroll_kids_vertically() + .set(self.ids.map_bg, ui_widgets); + // Frame + Image::new(self.imgs.map_frame_l) + .top_left_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_l, ui_widgets); + Image::new(self.imgs.map_frame_r) + .right_from(self.ids.map_frame_l, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_r, ui_widgets); + Image::new(self.imgs.map_frame_br) + .down_from(self.ids.map_frame_r, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_br, ui_widgets); + Image::new(self.imgs.map_frame_bl) + .down_from(self.ids.map_frame_l, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_bl, ui_widgets); + + + // Icon + Image::new(self.imgs.map_icon) + .w_h(224.0 / 3.0, 224.0 / 3.0) + .top_left_with_margins_on(self.ids.map_frame, -10.0, -10.0) + .set(self.ids.map_icon, ui_widgets); + + // X-Button + if Button::image(self.imgs.close_button) + .w_h(28.0, 28.0) + .hover_image(self.imgs.close_button_hover) + .press_image(self.imgs.close_button_press) + .top_right_with_margins_on(self.ids.map_frame_r, 0.0, 0.0) + .set(self.ids.map_close, ui_widgets) + .was_clicked() + { + self.map_open = false; + } + // Title + //Text::new("Map") + //.mid_top_with_margin_on(self.ids.map_bg, -7.0) + //.font_size(14) + //.color(TEXT_COLOR) + //.set(self.ids.map_title, ui_widgets); + } + + // ESC-MENU + // Background + if self.menu_open { + Image::new(self.imgs.esc_bg) + .w_h(228.0, 450.0) + .middle_of(ui_widgets.window) + .set(self.ids.esc_bg, ui_widgets); + + Image::new(self.imgs.fireplace) + .w_h(180.0, 60.0) + .mid_top_with_margin_on(self.ids.esc_bg, 50.0) + .set(self.ids.fireplace, ui_widgets); + + // Settings + if Button::image(self.imgs.button_dark) + .mid_top_with_margin_on(self.ids.esc_bg, 115.0) + .w_h(170.0, 50.0) + .hover_image(self.imgs.button_dark_hover) + .press_image(self.imgs.button_dark_press) + .label("Settings") + .label_y(conrod_core::position::Relative::Scalar(2.0)) + .label_color(TEXT_COLOR) + .label_font_size(17) + .set(self.ids.menu_button_1, ui_widgets) + .was_clicked() + { + self.menu_open = false; + self.open_windows = Windows::Settings; + }; + // Controls + if Button::image(self.imgs.button_dark) + .mid_top_with_margin_on(self.ids.esc_bg, 175.0) + .w_h(170.0, 50.0) + .hover_image(self.imgs.button_dark_hover) + .press_image(self.imgs.button_dark_press) + .label("Controls") + .label_y(conrod_core::position::Relative::Scalar(2.0)) + .label_color(TEXT_COLOR) + .label_font_size(17) + .set(self.ids.menu_button_2, ui_widgets) + .was_clicked() + { + //self.menu_open = false; + }; + // Servers + if Button::image(self.imgs.button_dark) + .mid_top_with_margin_on(self.ids.esc_bg, 235.0) + .w_h(170.0, 50.0) + .hover_image(self.imgs.button_dark_hover) + .press_image(self.imgs.button_dark_press) + .label("Servers") + .label_y(conrod_core::position::Relative::Scalar(2.0)) + .label_color(TEXT_COLOR) + .label_font_size(17) + .set(self.ids.menu_button_3, ui_widgets) + .was_clicked() + { + //self.menu_open = false; + }; + // Logout + if Button::image(self.imgs.button_dark) + .mid_top_with_margin_on(self.ids.esc_bg, 295.0) + .w_h(170.0, 50.0) + .hover_image(self.imgs.button_dark_hover) + .press_image(self.imgs.button_dark_press) + .label("Logout") + .label_y(conrod_core::position::Relative::Scalar(2.0)) + .label_color(TEXT_COLOR) + .label_font_size(17) + .set(self.ids.menu_button_4, ui_widgets) + .was_clicked() + { + events.push(Event::Logout); + }; + // Quit + if Button::image(self.imgs.button_dark) + .mid_top_with_margin_on(self.ids.esc_bg, 355.0) + .w_h(170.0, 50.0) + .hover_image(self.imgs.button_dark_hover) + .press_image(self.imgs.button_dark_press) + .label("Quit") + .label_y(conrod_core::position::Relative::Scalar(2.0)) + .label_color(TEXT_COLOR) + .label_font_size(17) + .set(self.ids.menu_button_5, ui_widgets) + .was_clicked() + { + events.push(Event::Quit); + }; + } + + events + } + + pub fn new_message(&mut self, msg: String) { + self.chat.new_message(msg); + } + + fn toggle_menu(&mut self) { + self.menu_open = !self.menu_open; + } + fn toggle_bag(&mut self) { + self.bag_open = !self.bag_open + } + fn toggle_map(&mut self) { + self.map_open = !self.map_open; + self.bag_open = false; + } + fn toggle_questlog(&mut self) { + self.open_windows = match self.open_windows { + Windows::Small(Small::Questlog) => Windows::None, + Windows::None | Windows::Small(_) => Windows::Small(Small::Questlog), + Windows::CharacterAnd(small) => match small { + Some(Small::Questlog) => Windows::CharacterAnd(None), + _ => Windows::CharacterAnd(Some(Small::Questlog)), + }, + Windows::Settings => Windows::Settings, + }; + } + fn toggle_charwindow(&mut self) { + self.open_windows = match self.open_windows { + Windows::CharacterAnd(small) => match small { + Some(small) => Windows::Small(small), + None => Windows::None, + }, + Windows::Small(small) => Windows::CharacterAnd(Some(small)), + Windows::None => Windows::CharacterAnd(None), + Windows::Settings => Windows::Settings, + } + } + fn toggle_social(&mut self) { + self.open_windows = match self.open_windows { + Windows::Small(Small::Social) => Windows::None, + Windows::None | Windows::Small(_) => Windows::Small(Small::Social), + Windows::CharacterAnd(small) => match small { + Some(Small::Social) => Windows::CharacterAnd(None), + _ => Windows::CharacterAnd(Some(Small::Social)), + }, + Windows::Settings => Windows::Settings, + }; + } + fn toggle_spellbook(&mut self) { + self.open_windows = match self.open_windows { + Windows::Small(Small::Spellbook) => Windows::None, + Windows::None | Windows::Small(_) => Windows::Small(Small::Spellbook), + Windows::CharacterAnd(small) => match small { + Some(Small::Spellbook) => Windows::CharacterAnd(None), + _ => Windows::CharacterAnd(Some(Small::Spellbook)), + }, + Windows::Settings => Windows::Settings, + }; + } + fn toggle_settings(&mut self) { + self.open_windows = match self.open_windows { + Windows::Settings => Windows::None, + _ => Windows::Settings, + }; + self.bag_open = false; + } + fn toggle_help(&mut self) { + self.show_help = !self.show_help + } + fn toggle_ui(&mut self) { + self.show_ui = !self.show_ui; + } + + fn toggle_windows(&mut self, global_state: &mut GlobalState) { + if self.bag_open + || self.menu_open + || self.map_open + || match self.open_windows { + Windows::None => false, + _ => true, + } + { + self.bag_open = false; + self.menu_open = false; + self.map_open = false; + self.open_windows = Windows::None; + global_state.window.grab_cursor(true); + } else { + self.menu_open = true; + global_state.window.grab_cursor(false); + } + } + + fn typing(&self) -> bool { + match self.ui.widget_capturing_keyboard() { + Some(id) if id == self.chat.input_box_id() => true, + _ => false, + } + } + + pub fn handle_event(&mut self, event: WinEvent, global_state: &mut GlobalState) -> bool { + let cursor_grabbed = global_state.window.is_cursor_grabbed(); + match event { + WinEvent::Ui(event) => { + if (self.typing() && event.is_keyboard() && self.show_ui) + || !(cursor_grabbed && event.is_keyboard_or_mouse()) + { + self.ui.handle_event(event); + } + true + } + WinEvent::KeyDown(Key::ToggleInterface) => { + self.toggle_ui(); + true + } + _ if !self.show_ui => false, + WinEvent::Zoom(_) => !cursor_grabbed && !self.ui.no_widget_capturing_mouse(), + WinEvent::KeyDown(Key::Enter) => { + self.ui.focus_widget(if self.typing() { + None + } else { + Some(self.chat.input_box_id()) + }); + true + } + WinEvent::KeyDown(Key::Escape) => { + if self.typing() { + self.ui.focus_widget(None); + } else { + // Close windows on esc + self.toggle_windows(global_state); + } + true + } + WinEvent::KeyDown(key) if !self.typing() => match key { + Key::Map => { + self.toggle_map(); + true + } + Key::Bag => { + self.toggle_bag(); + true + } + Key::QuestLog => { + self.toggle_questlog(); + true + } + Key::CharacterWindow => { + self.toggle_charwindow(); + true + } + Key::Social => { + self.toggle_social(); + true + } + Key::Spellbook => { + self.toggle_spellbook(); + true + } + Key::Settings => { + self.toggle_settings(); + true + } + Key::Help => { + self.toggle_help(); + true + } + _ => false, + }, + WinEvent::KeyDown(key) | WinEvent::KeyUp(key) => match key { + Key::ToggleCursor => false, + _ => self.typing(), + }, + WinEvent::Char(_) => self.typing(), + _ => false, + } + } + + pub fn maintain(&mut self, renderer: &mut Renderer, tps: f64) -> Vec { + let events = self.update_layout(tps); + self.ui.maintain(renderer); + events + } + + pub fn render(&self, renderer: &mut Renderer) { + self.ui.render(renderer); + } +} diff --git a/voxygen/src/scene/figure.rs b/voxygen/src/scene/figure.rs index 43fb2a5c0c..2a4fbda412 100644 --- a/voxygen/src/scene/figure.rs +++ b/voxygen/src/scene/figure.rs @@ -116,7 +116,7 @@ impl FigureCache { match head { Head::DefaultHead => "head.vox", }, - Vec3::new(-7.5, -8.0, 0.0), + Vec3::new(-5.5, -7.0, -6.0), ) } From 7339b8e31682b9a090a8b8280aee1d1dd54ade74 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Thu, 2 May 2019 14:44:51 +0200 Subject: [PATCH 19/45] rebase Former-commit-id: d40850ca70c5c833f17cba6a9f16de8c63bb5717 --- Cargo.lock | 2 +- voxygen/src/hud/mod.rs | 88 +- voxygen/src/hud/mod.rs~settings window | 1899 ------------------------ voxygen/src/scene/figure.rs | 2 +- 4 files changed, 84 insertions(+), 1907 deletions(-) delete mode 100644 voxygen/src/hud/mod.rs~settings window diff --git a/Cargo.lock b/Cargo.lock index 3e40057f2e..e572ded28b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2289,9 +2289,9 @@ dependencies = [ "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", "mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)", - "shred 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "specs 0.14.3 (registry+https://github.com/rust-lang/crates.io-index)", "sphynx 0.1.0 (git+https://gitlab.com/veloren/sphynx.git)", "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index d5271f0ca7..4a71e0eae7 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -102,6 +102,8 @@ widget_ids! { settings_title, settings_r, settings_l, + settings_scrollbar, + controls_text, //Contents button_help, button_help2, @@ -548,12 +550,12 @@ impl Hud { ids, chat, settings_tab: SettingsTab::Interface, - show_help: true, - show_debug: false, + show_help: false, + show_debug: true, bag_open: false, menu_open: false, map_open: false, - mmap_open: true, + mmap_open: false, show_ui: true, inventorytest_button: false, inventory_space: 0, @@ -1006,10 +1008,10 @@ impl Hud { // X-button if Button::image(self.imgs.close_button) - .w_h(4.0 * 4.0, 4.0 * 4.0) + .w_h(28.0, 28.0) .hover_image(self.imgs.close_button_hover) .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.bag_contents, 4.5, 4.5) + .top_right_with_margins_on(self.ids.bag_contents, 0.0, 0.0) .set(self.ids.bag_close, ui_widgets) .was_clicked() { @@ -1079,6 +1081,10 @@ impl Hud { .scroll_kids() .scroll_kids_vertically() .set(self.ids.settings_content, ui_widgets); + Scrollbar::y_axis(self.ids.settings_content) + .thickness(5.0) + .rgba(0.33, 0.33, 0.33, 1.0) + .set(self.ids.settings_scrollbar, ui_widgets); // X-Button if Button::image(self.imgs.close_button) .w_h(28.0, 28.0) @@ -1237,7 +1243,75 @@ impl Hud { { self.settings_tab = SettingsTab::Controls; } + if let SettingsTab::Controls = self.settings_tab { + Text::new( + "Free Cursor: TAB \n\ + Toggle Help Window: F1 \n\ + Toggle Interface: F2 \n\ + Toggle FPS and Debug Info: F3 \n\ + \n\ + \n\ + Move Forward: W \n\ + Move Left : A \n\ + Move Right: S \n\ + Move Backwards: D \n\ + \n\ + Jump: Space \n\ + \n\ + Dodge: ?? \n\ + \n\ + Auto Walk: ?? \n\ + \n\ + Sheathe/Draw Weapons: Y \n\ + \n\ + Put on/Remove Helmet: ?? [Has a Cast time of 0,5s] \n\ + \n\ + \n\ + Basic Attack: L-Click \n\ + Secondary Attack/Block/Aim: R-Click \n\ + \n\ + \n\ + Skillbar Slot 1: 1 \n\ + Skillbar Slot 2: 2 \n\ + Skillbar Slot 3: 3 \n\ + Skillbar Slot 4: 4 \n\ + Skillbar Slot 5: 5 \n\ + Skillbar Slot 6: 6 \n\ + Skillbar Slot 7: 7 \n\ + Skillbar Slot 8: 8 \n\ + Skillbar Slot 9: 9 \n\ + Skillbar Slot 10: 0 \n\ + \n\ + \n\ + Pause Menu: ESC \n\ + Settings: N \n\ + Social: O \n\ + Map: M \n\ + Spellbook: P \n\ + Character: C \n\ + Questlog L \n\ + Bag: B \n\ + \n\ + \n\ + \n\ + Activate Chat & Input/Send Message: Enter \n\ + Scroll Chat: Mousewheel on Chat-Window \n\ + \n\ + \n\ + Chat commands: \n\ + \n\ + /alias [Name] - Change your Chat Name \n\ + /tp [Name] - Teleports you to another player + ") + .color(TEXT_COLOR) + .top_left_with_margins_on(self.ids.settings_content, 5.0, 5.0) + .font_id(self.font_opensans) + .font_size(18) + .set(self.ids.controls_text, ui_widgets); + + + } // 4 Video//////////////////////////////// if Button::image(if let SettingsTab::Video = self.settings_tab { self.imgs.settings_button_pressed @@ -1667,7 +1741,9 @@ impl Hud { .set(self.ids.menu_button_2, ui_widgets) .was_clicked() { - //self.menu_open = false; + self.menu_open = false; + self.settings_tab = SettingsTab::Controls; + self.open_windows = Windows::Settings; }; // Servers if Button::image(self.imgs.button_dark) diff --git a/voxygen/src/hud/mod.rs~settings window b/voxygen/src/hud/mod.rs~settings window deleted file mode 100644 index 7bdb483e45..0000000000 --- a/voxygen/src/hud/mod.rs~settings window +++ /dev/null @@ -1,1899 +0,0 @@ -mod chat; - -use crate::{ - render::Renderer, - ui::{self, ScaleMode, ToggleButton, Ui}, - window::{Event as WinEvent, Key, Window}, - GlobalState, -}; -use common::{assets, figure::Segment}; - -use conrod_core::{ - color, - image::Id as ImgId, - text::font::Id as FontId, - widget::{Button, Image, Rectangle, Scrollbar, Text}, - widget_ids, Color, Colorable, Labelable, Positionable, Sizeable, Widget, -}; - -widget_ids! { - struct Ids { - // Test - bag_space_add, - inventorytest_button, - inventorytest_button_label, - // Debug - debug_bg, - debug_button, - debug_button_label, - fps_counter, - // Game Version - version, - - // Bag and Inventory - bag, - bag_contents, - bag_close, - bag_map_open, - inv_alignment, - inv_grid_1, - inv_grid_2, - inv_scrollbar, - inv_slot_0, - inv_slot[], - - // Buttons - settings_button, - social_button, - map_button, - spellbook_button, - character_button, - qlog_button, - social_button_bg, - spellbook_button_bg, - character_button_bg, - qlog_button_bg, - bag_text, - mmap_button, - //help - help, - help_bg, - //ESC-Menu - esc_bg, - fireplace, - menu_button_1, - menu_button_2, - menu_button_3, - menu_button_4, - menu_button_5, - //Mini-Map - mmap_frame, - mmap_frame_bg, - mmap_location, - //Action-Bar - xp_bar, - l_click, - r_click, - health_bar, - mana_bar, - sb_grid_l, - sb_grid_r, - sb_grid_bg_l, - sb_grid_bg_r, - xp_bar_progress, - health_bar_color, - mana_bar_color, - // Level Display - level_text, - next_level_text, - //Window Frames - window_frame_0, - window_frame_1, - window_frame_2, - window_frame_3, - window_frame_4, - window_frame_5, - //0 Settings-Window - settings_bg, - settings_content, - settings_icon, - settings_button_mo, - settings_close, - settings_title, - settings_r, - settings_l, - //Contents - button_help, - button_help2, - show_help_label, - interface, - video, - sound, - gameplay, - controls, - rectangle, - //1 Social - social_frame, - social_bg, - social_icon, - social_close, - social_title, - //2 Map - map_frame, - map_bg, - map_icon, - map_close, - map_title, - map_frame_l, - map_frame_r, - map_frame_bl, - map_frame_br, - //3 Spellbook - spellbook_frame, - spellbook_bg, - spellbook_icon, - spellbook_close, - spellbook_title, - //4 Charwindow - charwindow_frame, - charwindow, - charwindow_bg, - charwindow_icon, - charwindow_close, - charwindow_title, - charwindow_tab_bg, - charwindow_tab1, - charwindow_tab1_title, - charwindow_tab1_level, - charwindow_tab1_exp, - charwindow_tab1_stats, - charwindow_tab1_statnames, - charwindow_tab1_stats_numbers, - charwindow_tab1_expbar, - charwindow_rectangle, - charwindow_exp_rectangle, - charwindow_exp_progress_rectangle, - //5 Quest-Log - questlog_frame, - questlog_bg, - questlog_icon, - questlog_close, - questlog_title, - } -} - -// TODO: make macro to mimic widget_ids! for images ids or find another solution to simplify addition of new images. -pub(self) struct Imgs { - // Bag - bag: ImgId, - bag_hover: ImgId, - bag_press: ImgId, - bag_open: ImgId, - bag_open_hover: ImgId, - bag_open_press: ImgId, - bag_contents: ImgId, - inv_grid: ImgId, - inv_slot: ImgId, - - // Buttons - - mmap_closed: ImgId, - mmap_closed_hover: ImgId, - mmap_closed_press: ImgId, - mmap_open: ImgId, - mmap_open_hover: ImgId, - mmap_open_press: ImgId, - - settings: ImgId, - settings_hover: ImgId, - settings_press: ImgId, - - social_button: ImgId, - social_hover: ImgId, - social_press: ImgId, - - map_button: ImgId, - map_hover: ImgId, - map_press: ImgId, - - spellbook_button: ImgId, - spellbook_hover: ImgId, - spellbook_press: ImgId, - - character_button: ImgId, - character_hover: ImgId, - character_press: ImgId, - - qlog_button: ImgId, - qlog_hover: ImgId, - qlog_press: ImgId, - - // Close button - close_button: ImgId, - close_button_hover: ImgId, - close_button_press: ImgId, - - // Menu - esc_bg: ImgId, - fireplace: ImgId, - button_dark: ImgId, - button_dark_hover: ImgId, - button_dark_press: ImgId, - - // MiniMap - mmap_frame: ImgId, - mmap_frame_closed: ImgId, - - // SkillBar Module - sb_grid: ImgId, - sb_grid_bg: ImgId, - l_click: ImgId, - r_click: ImgId, - mana_bar: ImgId, - health_bar: ImgId, - xp_bar: ImgId, - - //Buff Frame(s) - //buff_frame: ImgId, - //buff_frame_bg: ImgId, - //buff_frame_red: ImgId, - //buff_frame_green: ImgId, - - //Missing: Buff Frame Animation - window_frame: ImgId, - window_frame_2: ImgId, - //Settings-Window - settings_frame_r: ImgId, - settings_frame_l: ImgId, - settings_button: ImgId, - settings_button_pressed: ImgId, - settings_button_hover: ImgId, - settings_button_press: ImgId, - settings_bg: ImgId, - settings_icon: ImgId, - settings_button_mo: ImgId, - check: ImgId, - check_mo: ImgId, - check_press: ImgId, - check_checked: ImgId, - check_checked_mo: ImgId, - slider: ImgId, - slider_indicator: ImgId, - button_blank: ImgId, - button_blue_mo: ImgId, - button_blue_press: ImgId, - window_bg: ImgId, - // Social-Window - social_bg: ImgId, - social_icon: ImgId, - // Map-Window - map_bg: ImgId, - map_icon: ImgId, - map_frame_l: ImgId, - map_frame_r: ImgId, - map_frame_bl: ImgId, - map_frame_br: ImgId, - // Spell Book Window - spellbook_bg: ImgId, - spellbook_icon: ImgId, - // Char Window - charwindow: ImgId, - charwindow_icon: ImgId, - charwindow_tab_bg: ImgId, - charwindow_tab: ImgId, - charwindow_expbar: ImgId, - progress_frame: ImgId, - progress: ImgId, - - // Buttons - grid_button: ImgId, - grid_button_hover: ImgId, - grid_button_press: ImgId, - grid_button_open: ImgId, - - // Quest-Log Window - questlog_bg: ImgId, - questlog_icon: ImgId, - //help - // Chat-Arrow - chat_arrow: ImgId, - chat_arrow_mo: ImgId, - chat_arrow_press: ImgId, -} -impl Imgs { - fn new(ui: &mut Ui, renderer: &mut Renderer) -> Imgs { - let mut load_img = |filename, ui: &mut Ui| { - let fullpath: String = ["/voxygen/", filename].concat(); - let image = image::load_from_memory( - assets::load(fullpath.as_str()) - .expect("Error loading Main UI Image") - .as_slice(), - ) - .unwrap(); - ui.new_graphic(ui::Graphic::Image(image)) - }; - let mut load_vox = |filename, ui: &mut Ui| { - let fullpath: String = ["/voxygen/", filename].concat(); - let dot_vox = dot_vox::load_bytes( - assets::load(fullpath.as_str()) - .expect("Error loading Main UI .vox") - .as_slice(), - ) - .unwrap(); - ui.new_graphic(ui::Graphic::Voxel(Segment::from(dot_vox))) - }; - Imgs { - // Bag - bag: load_img("element/buttons/bag/closed.png", ui), - bag_hover: load_img("element/buttons/bag/closed_hover.png", ui), - bag_press: load_img("element/buttons/bag/closed_press.png", ui), - bag_open: load_img("element/buttons/bag/open.png", ui), - bag_open_hover: load_img("element/buttons/bag/open_hover.png", ui), - bag_open_press: load_img("element/buttons/bag/open_press.png", ui), - bag_contents: load_vox("element/frames/bag.vox", ui), - inv_grid: load_vox("element/frames/inv_grid.vox", ui), - inv_slot: load_vox("element/buttons/inv_slot.vox", ui), - - // Buttons - mmap_closed: load_vox("element/buttons/button_mmap_closed.vox", ui), - mmap_closed_hover: load_vox("element/buttons/button_mmap_closed_hover.vox", ui), - mmap_closed_press: load_vox("element/buttons/button_mmap_closed_press.vox", ui), - mmap_open: load_vox("element/buttons/button_mmap_open.vox", ui), - mmap_open_hover: load_vox("element/buttons/button_mmap_open_hover.vox", ui), - mmap_open_press: load_vox("element/buttons/button_mmap_open_press.vox", ui), - - settings: load_vox("element/buttons/settings.vox", ui), - settings_hover: load_vox("element/buttons/settings_hover.vox", ui), - settings_press: load_vox("element/buttons/settings_press.vox", ui), - - social_button: load_vox("element/buttons/social.vox", ui), - social_hover: load_vox("element/buttons/social_hover.vox", ui), - social_press: load_vox("element/buttons/social_press.vox", ui), - - map_button: load_vox("element/buttons/map.vox", ui), - map_hover: load_vox("element/buttons/map_hover.vox", ui), - map_press: load_vox("element/buttons/map_press.vox", ui), - - spellbook_button: load_vox("element/buttons/spellbook.vox", ui), - spellbook_hover: load_vox("element/buttons/spellbook_hover.vox", ui), - spellbook_press: load_vox("element/buttons/spellbook_press.vox", ui), - - character_button: load_vox("element/buttons/character.vox", ui), - character_hover: load_vox("element/buttons/character_hover.vox", ui), - character_press: load_vox("element/buttons/character_press.vox", ui), - - qlog_button: load_vox("element/buttons/qlog.vox", ui), - qlog_hover: load_vox("element/buttons/qlog_hover.vox", ui), - qlog_press: load_vox("element/buttons/qlog_press.vox", ui), - - grid_button: load_img("element/buttons/border.png", ui), - grid_button_hover: load_img("element/buttons/border_mo.png", ui), - grid_button_press: load_img("element/buttons/border_press.png", ui), - grid_button_open: load_img("element/buttons/border_pressed.png", ui), - - // Close button - close_button: load_vox("element/buttons/x.vox", ui), - close_button_hover: load_vox("element/buttons/x_hover.vox", ui), - close_button_press: load_vox("element/buttons/x_press.vox", ui), - - // Esc-Menu - esc_bg: load_img("element/frames/menu.png", ui), - fireplace: load_vox("element/misc_bg/fireplace.vox", ui), - button_dark: load_vox("element/buttons/button_dark.vox", ui), - button_dark_hover: load_img("element/buttons/button_dark_hover.png", ui), - button_dark_press: load_img("element/buttons/button_dark_press.png", ui), - - // MiniMap - mmap_frame: load_vox("element/frames/mmap.vox", ui), - mmap_frame_closed: load_vox("element/frames/mmap_closed.vox", ui), - - // Skillbar Module - sb_grid: load_img("element/skill_bar/sbar_grid.png", ui), - sb_grid_bg: load_img("element/skill_bar/sbar_grid_bg.png", ui), - l_click: load_img("element/skill_bar/l.png", ui), - r_click: load_img("element/skill_bar/r.png", ui), - mana_bar: load_img("element/skill_bar/mana_bar.png", ui), - health_bar: load_img("element/skill_bar/health_bar.png", ui), - xp_bar: load_img("element/skill_bar/xp_bar.png", ui), - - // Missing: Buff Frame Animation (.gif ?!) (we could do animation in ui.maintain(), or in shader?) - window_frame: load_vox("element/frames/window2.vox", ui), - window_frame_2: load_img("element/frames/window_2.png", ui), - - // Settings Window - settings_frame_r: load_vox("element/frames/settings_r.vox", ui), - settings_frame_l: load_vox("element/frames/settings_l.vox", ui), - settings_button: load_vox("element/buttons/settings_button.vox", ui), - settings_button_pressed: load_vox("element/buttons/settings_button_pressed.vox", ui), - settings_button_hover: load_vox("element/buttons/settings_button_hover.vox", ui), - settings_button_press: load_vox("element/buttons/settings_button_press.vox", ui), - settings_bg: load_img("element/frames/settings.png", ui), - settings_icon: load_img("element/icons/settings.png", ui), - settings_button_mo: load_img("element/buttons/blue_mo.png", ui), - check: load_img("element/buttons/check/no.png", ui), - check_mo: load_img("element/buttons/check/no_mo.png", ui), - check_press: load_img("element/buttons/check/press.png", ui), - check_checked: load_img("element/buttons/check/yes.png", ui), - check_checked_mo: load_img("element/buttons/check/yes_mo.png", ui), - slider: load_img("element/slider/track.png", ui), - slider_indicator: load_img("element/slider/indicator.png", ui), - button_blank: ui.new_graphic(ui::Graphic::Blank), - button_blue_mo: load_img("element/buttons/blue_mo.png", ui), - button_blue_press: load_img("element/buttons/blue_press.png", ui), - - // Window BG - window_bg: load_img("element/misc_bg/window_bg.png", ui), - - // Social Window - social_bg: load_img("element/misc_bg/small_bg.png", ui), - social_icon: load_img("element/icons/social.png", ui), - - // Map Window - map_bg: load_img("element/misc_bg/small_bg.png", ui), - map_icon: load_img("element/icons/map.png", ui), - map_frame_l: load_vox("element/frames/map_l.vox", ui), - map_frame_r: load_vox("element/frames/map_r.vox", ui), - map_frame_bl: load_vox("element/frames/map_bl.vox", ui), - map_frame_br: load_vox("element/frames/map_br.vox", ui), - - // Spell Book Window - spellbook_bg: load_img("element/misc_bg/small_bg.png", ui), - spellbook_icon: load_img("element/icons/spellbook.png", ui), - - // Char Window - charwindow: load_img("element/misc_bg/charwindow.png", ui), - charwindow_icon: load_img("element/icons/charwindow.png", ui), - charwindow_tab_bg: load_img("element/frames/tab.png", ui), - charwindow_tab: load_img("element/buttons/tab.png", ui), - charwindow_expbar: load_img("element/misc_bg/small_bg.png", ui), - progress_frame: load_img("element/frames/progress_bar.png", ui), - progress: load_img("element/misc_bg/progress.png", ui), - - // Quest-Log Window - questlog_bg: load_img("element/misc_bg/small_bg.png", ui), - questlog_icon: load_img("element/icons/questlog.png", ui), - - // Chat-Arrows - chat_arrow: load_img("element/buttons/arrow/chat_arrow.png", ui), - chat_arrow_mo: load_img("element/buttons/arrow/chat_arrow_mo.png", ui), - chat_arrow_press: load_img("element/buttons/arrow/chat_arrow_press.png", ui), - } - } -} - -enum SettingsTab { - Interface, - Video, - Sound, - Gameplay, - Controls, -} - -pub enum Event { - SendMessage(String), - Logout, - Quit, -} - -// TODO: are these the possible layouts we want? -// TODO: maybe replace this with bitflags -// map not here because it currently is displayed over the top of other open windows -enum Windows { - Settings, // display settings window - CharacterAnd(Option), // show character window + optionally another - Small(Small), - None, -} -#[derive(Clone, Copy)] -enum Small { - Spellbook, - Social, - Questlog, -} - -pub struct Hud { - ui: Ui, - ids: Ids, - imgs: Imgs, - chat: chat::Chat, - font_metamorph: FontId, - font_opensans: FontId, - show_help: bool, - show_debug: bool, - bag_open: bool, - menu_open: bool, - open_windows: Windows, - map_open: bool, - mmap_open: bool, - show_ui: bool, - inventory_space: u32, - xp_percentage: f64, - hp_percentage: f64, - mana_percentage: f64, - inventorytest_button: bool, - settings_tab: SettingsTab, -} - -//#[inline] -//pub fn rgba_bytes(r: u8, g: u8, b: u8, a: f32) -> Color { -//Color::Rgba(r as f32 / 255.0, g as f32 / 255.0, b as f32 / 255.0, a) -//} - -impl Hud { - pub fn new(window: &mut Window) -> Self { - let mut ui = Ui::new(window).unwrap(); - // TODO: adjust/remove this, right now it is used to demonstrate window scaling functionality - ui.scaling_mode(ScaleMode::RelativeToWindow([1920.0, 1080.0].into())); - // Generate ids - let ids = Ids::new(ui.id_generator()); - // Load images - let imgs = Imgs::new(&mut ui, window.renderer_mut()); - // Load fonts - let load_font = |filename, ui: &mut Ui| { - let fullpath: String = ["/voxygen/font", filename].concat(); - ui.new_font( - conrod_core::text::Font::from_bytes( - assets::load(fullpath.as_str()).expect("Error loading file"), - ) - .unwrap(), - ) - }; - let font_opensans = load_font("/OpenSans-Regular.ttf", &mut ui); - let font_metamorph = load_font("/Metamorphous-Regular.ttf", &mut ui); - // Chat box - let chat = chat::Chat::new(&mut ui); - - Self { - ui, - imgs, - ids, - chat, - settings_tab: SettingsTab::Interface, - show_help: true, - show_debug: false, - bag_open: false, - menu_open: false, - map_open: false, - mmap_open: true, - show_ui: true, - inventorytest_button: false, - inventory_space: 0, - open_windows: Windows::None, - font_metamorph, - font_opensans, - xp_percentage: 0.4, - hp_percentage: 1.0, - mana_percentage: 1.0, - } - } - - fn update_layout(&mut self, tps: f64) -> Vec { - let mut events = Vec::new(); - let ref mut ui_widgets = self.ui.set_widgets(); - let version = env!("CARGO_PKG_VERSION"); - - const TEXT_COLOR: Color = Color::Rgba(1.0, 1.0, 1.0, 1.0); - const HP_COLOR: Color = Color::Rgba(0.33, 0.63, 0.0, 1.0); - const MANA_COLOR: Color = Color::Rgba(0.42, 0.41, 0.66, 1.0); - const XP_COLOR: Color = Color::Rgba(0.59, 0.41, 0.67, 1.0); - - // Don't show anything if the ui is toggled off - if !self.show_ui { - return events; - } - - // Display debug window - if self.show_debug { - // Alpha Version - Text::new(version) - .top_left_with_margins_on(ui_widgets.window, 5.0, 5.0) - .font_size(14) - .font_id(self.font_opensans) - .color(TEXT_COLOR) - .set(self.ids.version, ui_widgets); - Text::new(&format!("FPS: {:.1}", tps)) - .color(TEXT_COLOR) - .down_from(self.ids.version, 5.0) - .font_id(self.font_opensans) - .font_size(14) - .set(self.ids.fps_counter, ui_widgets); - } - - // Add Bag-Space Button - if self.inventorytest_button { - if Button::image(self.imgs.grid_button) - .w_h(100.0, 100.0) - .middle_of(ui_widgets.window) - .label("1 Up!") - .label_font_size(20) - .hover_image(self.imgs.grid_button_hover) - .press_image(self.imgs.grid_button_press) - .set(self.ids.bag_space_add, ui_widgets) - .was_clicked() - { - self.inventory_space = self.inventory_space + 1; - }; - } - - // Chat box - if let Some(msg) = self - .chat - .update_layout(ui_widgets, self.font_opensans, &self.imgs) - { - events.push(Event::SendMessage(msg)); - } - - // Help Text - if self.show_help { - Image::new(self.imgs.window_frame_2) - .top_left_with_margins_on(ui_widgets.window, 3.0, 3.0) - .w_h(300.0, 190.0) - .set(self.ids.help_bg, ui_widgets); - - Text::new( - "Tab = Free Cursor \n\ - Esc = Open/Close Menus \n\ - \n\ - F1 = Toggle this Window \n\ - F2 = Toggle Interface \n\ - \n\ - Enter = Open Chat \n\ - Mouse Wheel = Scroll Chat", - ) - .color(TEXT_COLOR) - .top_left_with_margins_on(self.ids.help_bg, 20.0, 20.0) - .font_id(self.font_opensans) - .font_size(18) - .set(self.ids.help, ui_widgets); - - // X-button - if Button::image(self.imgs.close_button) - .w_h(100.0 * 0.2, 100.0 * 0.2) - .hover_image(self.imgs.close_button_hover) - .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.help_bg, 8.0, 3.0) - .set(self.ids.button_help2, ui_widgets) - .was_clicked() - { - self.show_help = false; - }; - } - - // Minimap - - if self.mmap_open { - Image::new(self.imgs.mmap_frame) - .w_h(100.0 * 2.0, 100.0 * 2.0) - .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) - .set(self.ids.mmap_frame, ui_widgets); - - Rectangle::fill_with([92.0 * 2.0, 82.0 * 2.0], color::TRANSPARENT) - .mid_top_with_margin_on(self.ids.mmap_frame, 13.0 * 2.0 + 2.0) - .set(self.ids.mmap_frame_bg, ui_widgets); - } - else { - Image::new(self.imgs.mmap_frame_closed) - .w_h(100.0 * 2.0, 11.0 * 2.0) - .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) - .set(self.ids.mmap_frame, ui_widgets); - }; - - if Button::image(if self.mmap_open {self.imgs.mmap_open} else {self.imgs.mmap_closed}) - .w_h(100.0 * 0.2, 100.0 * 0.2) - .hover_image(if self.mmap_open {self.imgs.mmap_open_hover} else {self.imgs.mmap_closed_hover}) - .press_image(if self.mmap_open {self.imgs.mmap_open_press} else {self.imgs.mmap_closed_press}) - .top_right_with_margins_on(self.ids.mmap_frame, 0.0, 0.0) - .set(self.ids.mmap_button, ui_widgets) - .was_clicked() - { - self.mmap_open = !self.mmap_open; - }; - - // Title - // Make it display the actual location - Text::new("Uncanny Valley") - .mid_top_with_margin_on(self.ids.mmap_frame, 3.0) - .font_size(14) - .color(TEXT_COLOR) - .set(self.ids.mmap_location, ui_widgets); - - // Buttons at Bag - - // 0 Settings - if Button::image(self.imgs.settings) - .w_h(29.0, 25.0) - .bottom_right_with_margins_on(ui_widgets.window, 5.0, 57.0) - .hover_image(self.imgs.settings_hover) - .press_image(self.imgs.settings_press) - .label("N") - .label_font_size(10) - .label_font_id(self.font_metamorph) - .color(TEXT_COLOR) - .label_color(TEXT_COLOR) - .label_y(conrod_core::position::Relative::Scalar(-7.0)) - .label_x(conrod_core::position::Relative::Scalar(10.0)) - .set(self.ids.settings_button, ui_widgets) - .was_clicked() - { - self.open_windows = match self.open_windows { - Windows::Settings => Windows::None, - _ => Windows::Settings, - }; - self.bag_open = false; - }; - - // 2 Map - if Button::image(self.imgs.map_button) - .w_h(22.0, 25.0) - .left_from(self.ids.social_button, 10.0) - .hover_image(self.imgs.map_hover) - .press_image(self.imgs.map_press) - .label("M") - .label_font_size(10) - .label_font_id(self.font_metamorph) - .label_color(TEXT_COLOR) - .label_y(conrod_core::position::Relative::Scalar(-7.0)) - .label_x(conrod_core::position::Relative::Scalar(10.0)) - .set(self.ids.map_button, ui_widgets) - .was_clicked() - { - self.map_open = !self.map_open; - self.bag_open = false; - }; - - // Other Windows can only be accessed, when Settings are closed. - // Opening Settings will close all other Windows including the Bag. - // Opening the Map won't close the windows displayed before. - Image::new(self.imgs.social_button) - .w_h(25.0, 25.0) - .left_from(self.ids.settings_button, 10.0) - .set(self.ids.social_button_bg, ui_widgets); - Image::new(self.imgs.spellbook_button) - .w_h(28.0, 25.0) - .left_from(self.ids.map_button, 10.0) - .set(self.ids.spellbook_button_bg, ui_widgets); - Image::new(self.imgs.character_button) - .w_h(27.0, 25.0) - .left_from(self.ids.spellbook_button, 10.0) - .set(self.ids.character_button_bg, ui_widgets); - Image::new(self.imgs.qlog_button) - .w_h(23.0, 25.0) - .left_from(self.ids.character_button, 10.0) - .set(self.ids.qlog_button_bg, ui_widgets); - - if match self.open_windows { - Windows::Settings => false, - _ => true, - } && self.map_open == false - { - // 1 Social - if Button::image(self.imgs.social_button) - .w_h(25.0, 25.0) - .left_from(self.ids.settings_button, 10.0) - .hover_image(self.imgs.social_hover) - .press_image(self.imgs.social_press) - .label("O") - .label_font_size(10) - .label_font_id(self.font_metamorph) - .label_color(TEXT_COLOR) - .label_y(conrod_core::position::Relative::Scalar(-7.0)) - .label_x(conrod_core::position::Relative::Scalar(10.0)) - .set(self.ids.social_button, ui_widgets) - .was_clicked() - { - self.open_windows = match self.open_windows { - Windows::Small(Small::Social) => Windows::None, - Windows::None | Windows::Small(_) => Windows::Small(Small::Social), - Windows::CharacterAnd(small) => match small { - Some(Small::Social) => Windows::CharacterAnd(None), - _ => Windows::CharacterAnd(Some(Small::Social)), - }, - Windows::Settings => Windows::Settings, - }; - } - - // 3 Spellbook - if Button::image(self.imgs.spellbook_button) - .w_h(28.0, 25.0) - .left_from(self.ids.map_button, 10.0) - .hover_image(self.imgs.spellbook_hover) - .press_image(self.imgs.spellbook_press) - .label("P") - .label_font_size(10) - .label_font_id(self.font_metamorph) - .label_color(TEXT_COLOR) - .label_y(conrod_core::position::Relative::Scalar(-7.0)) - .label_x(conrod_core::position::Relative::Scalar(10.0)) - .set(self.ids.spellbook_button, ui_widgets) - .was_clicked() - { - self.open_windows = match self.open_windows { - Windows::Small(Small::Spellbook) => Windows::None, - Windows::None | Windows::Small(_) => Windows::Small(Small::Spellbook), - Windows::CharacterAnd(small) => match small { - Some(Small::Spellbook) => Windows::CharacterAnd(None), - _ => Windows::CharacterAnd(Some(Small::Spellbook)), - }, - Windows::Settings => Windows::Settings, - }; - } - - // 4 Char-Window - if Button::image(self.imgs.character_button) - .w_h(27.0, 25.0) - .left_from(self.ids.spellbook_button, 10.0) - .hover_image(self.imgs.character_hover) - .press_image(self.imgs.character_press) - .label("C") - .label_font_size(10) - .label_font_id(self.font_metamorph) - .label_color(TEXT_COLOR) - .label_y(conrod_core::position::Relative::Scalar(-7.0)) - .label_x(conrod_core::position::Relative::Scalar(10.0)) - .set(self.ids.character_button, ui_widgets) - .was_clicked() - { - self.open_windows = match self.open_windows { - Windows::CharacterAnd(small) => match small { - Some(small) => Windows::Small(small), - None => Windows::None, - }, - Windows::Small(small) => Windows::CharacterAnd(Some(small)), - Windows::None => Windows::CharacterAnd(None), - Windows::Settings => Windows::Settings, - } - } - - // 5 Quest-Log - if Button::image(self.imgs.qlog_button) - .w_h(23.0, 25.0) - .left_from(self.ids.character_button, 10.0) - .hover_image(self.imgs.qlog_hover) - .press_image(self.imgs.qlog_press) - .label("L") - .label_font_size(10) - .label_font_id(self.font_metamorph) - .label_color(TEXT_COLOR) - .label_y(conrod_core::position::Relative::Scalar(-7.0)) - .label_x(conrod_core::position::Relative::Scalar(10.0)) - .set(self.ids.qlog_button, ui_widgets) - .was_clicked() - { - self.open_windows = match self.open_windows { - Windows::Small(Small::Questlog) => Windows::None, - Windows::None | Windows::Small(_) => Windows::Small(Small::Questlog), - Windows::CharacterAnd(small) => match small { - Some(Small::Questlog) => Windows::CharacterAnd(None), - _ => Windows::CharacterAnd(Some(Small::Questlog)), - }, - Windows::Settings => Windows::Settings, - }; - } - } - - // Skillbar Module - - // Experience-Bar - Image::new(self.imgs.xp_bar) - .w_h(2688.0 / 6.0, 116.0 / 6.0) - .mid_bottom_of(ui_widgets.window) - .set(self.ids.xp_bar, ui_widgets); - - Rectangle::fill_with([406.0 * (self.xp_percentage), 5.0], XP_COLOR) // "W=406*[Exp. %]" - .top_left_with_margins_on(self.ids.xp_bar, 5.0, 21.0) - .set(self.ids.xp_bar_progress, ui_widgets); - - // Left Grid - Image::new(self.imgs.sb_grid) - .w_h(2240.0 / 12.0, 448.0 / 12.0) - .up_from(self.ids.xp_bar, 0.0) - .align_left_of(self.ids.xp_bar) - .set(self.ids.sb_grid_l, ui_widgets); - - Image::new(self.imgs.sb_grid_bg) - .w_h(2240.0 / 12.0, 448.0 / 12.0) - .middle_of(self.ids.sb_grid_l) - .set(self.ids.sb_grid_bg_l, ui_widgets); - - // Right Grid - Image::new(self.imgs.sb_grid) - .w_h(2240.0 / 12.0, 448.0 / 12.0) - .up_from(self.ids.xp_bar, 0.0) - .align_right_of(self.ids.xp_bar) - .set(self.ids.sb_grid_r, ui_widgets); - - Image::new(self.imgs.sb_grid_bg) - .w_h(2240.0 / 12.0, 448.0 / 12.0) - .middle_of(self.ids.sb_grid_r) - .set(self.ids.sb_grid_bg_r, ui_widgets); - - // Right and Left Click - Image::new(self.imgs.l_click) - .w_h(224.0 / 6.0, 320.0 / 6.0) - .right_from(self.ids.sb_grid_bg_l, 0.0) - .align_bottom_of(self.ids.sb_grid_bg_l) - .set(self.ids.l_click, ui_widgets); - - Image::new(self.imgs.r_click) - .w_h(224.0 / 6.0, 320.0 / 6.0) - .left_from(self.ids.sb_grid_bg_r, 0.0) - .align_bottom_of(self.ids.sb_grid_bg_r) - .set(self.ids.r_click, ui_widgets); - - // Health Bar - Image::new(self.imgs.health_bar) - .w_h(1120.0 / 6.0, 96.0 / 6.0) - .left_from(self.ids.l_click, 0.0) - .align_top_of(self.ids.l_click) - .set(self.ids.health_bar, ui_widgets); - - // Filling - Rectangle::fill_with([182.0 * (self.hp_percentage), 6.0], HP_COLOR) // "W=182.0 * [Health. %]" - .top_right_with_margins_on(self.ids.health_bar, 5.0, 0.0) - .set(self.ids.health_bar_color, ui_widgets); - - // Mana Bar - Image::new(self.imgs.mana_bar) - .w_h(1120.0 / 6.0, 96.0 / 6.0) - .right_from(self.ids.r_click, 0.0) - .align_top_of(self.ids.r_click) - .set(self.ids.mana_bar, ui_widgets); - - // Filling - Rectangle::fill_with([182.0 * (self.mana_percentage), 6.0], MANA_COLOR) // "W=182.0 * [Mana. %]" - .top_left_with_margins_on(self.ids.mana_bar, 5.0, 0.0) - .set(self.ids.mana_bar_color, ui_widgets); - - // Buffs/Debuffs - - // Buffs - - // Debuffs - - // Level Display - - // Insert actual Level here - Text::new("1") - .left_from(self.ids.xp_bar, -15.0) - .font_size(10) - .color(TEXT_COLOR) - .set(self.ids.level_text, ui_widgets); - - // Insert next Level here - Text::new("2") - .right_from(self.ids.xp_bar, -15.0) - .font_size(10) - .color(TEXT_COLOR) - .set(self.ids.next_level_text, ui_widgets); - - // Bag contents - if self.bag_open { - // Contents - Image::new(self.imgs.bag_contents) - .w_h(68.0 * 4.0, 123.0 * 4.0) - .bottom_right_with_margins_on(ui_widgets.window, 60.0, 5.0) - .set(self.ids.bag_contents, ui_widgets); - - // Alignment for Grid - Rectangle::fill_with([58.0 * 4.0 - 5.0, 100.0 * 4.0], color::TRANSPARENT) - .top_left_with_margins_on(self.ids.bag_contents, 11.0 * 4.0, 5.0 * 4.0) - .scroll_kids() - .scroll_kids_vertically() - .set(self.ids.inv_alignment, ui_widgets); - // Grid - Image::new(self.imgs.inv_grid) - .w_h(58.0 * 4.0, 111.0 * 4.0) - .mid_top_with_margin_on(self.ids.inv_alignment, 0.0) - .set(self.ids.inv_grid_1, ui_widgets); - Image::new(self.imgs.inv_grid) - .w_h(58.0 * 4.0, 111.0 * 4.0) - .mid_top_with_margin_on(self.ids.inv_alignment, 110.0 * 4.0) - .set(self.ids.inv_grid_2, ui_widgets); - Scrollbar::y_axis(self.ids.inv_alignment) - .thickness(5.0) - .rgba(0.33, 0.33, 0.33, 1.0) - .set(self.ids.inv_scrollbar, ui_widgets); - - // X-button - if Button::image(self.imgs.close_button) - .w_h(4.0 * 4.0, 4.0 * 4.0) - .hover_image(self.imgs.close_button_hover) - .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.bag_contents, 4.5, 4.5) - .set(self.ids.bag_close, ui_widgets) - .was_clicked() - { - self.bag_open = false; - } - - if self.inventory_space > 0 { - // First Slot - Button::image(self.imgs.inv_slot) - .top_left_with_margins_on(self.ids.inv_grid_1, 4.0, 4.0) - .w_h(10.0 * 4.0, 10.0 * 4.0) - .set(self.ids.inv_slot_0, ui_widgets); - } - } - - // Bag - if !self.map_open && self.show_ui { - self.bag_open = ToggleButton::new(self.bag_open, self.imgs.bag, self.imgs.bag_open) - .bottom_right_with_margins_on(ui_widgets.window, 5.0, 5.0) - .hover_images(self.imgs.bag_hover, self.imgs.bag_open_hover) - .press_images(self.imgs.bag_press, self.imgs.bag_open_press) - .w_h(420.0 / 10.0, 480.0 / 10.0) - .set(self.ids.bag, ui_widgets); - Text::new("B") - .bottom_right_with_margins_on(self.ids.bag, 0.0, 0.0) - .font_size(10) - .font_id(self.font_metamorph) - .color(TEXT_COLOR) - .set(self.ids.bag_text, ui_widgets); - } else { - Image::new(self.imgs.bag) - .bottom_right_with_margins_on(ui_widgets.window, 5.0, 5.0) - .w_h(420.0 / 10.0, 480.0 / 10.0) - .set(self.ids.bag_map_open, ui_widgets); - Text::new("B") - .bottom_right_with_margins_on(self.ids.bag, 0.0, 0.0) - .font_size(10) - .font_id(self.font_metamorph) - .set(self.ids.bag_text, ui_widgets); - } - - //Windows - - //Char Window will always appear at the left side. Other Windows either appear at the left side, - //or when the Char Window is opened they will appear right from it. - - // 0 Settings - - if let Windows::Settings = self.open_windows { - // Frame Alignment - Rectangle::fill_with([824.0, 488.0], color::TRANSPARENT) - .middle_of(ui_widgets.window) - .set(self.ids.settings_bg, ui_widgets); - // Frame - Image::new(self.imgs.settings_frame_l) - .top_left_with_margins_on(self.ids.settings_bg, 0.0, 0.0) - .w_h(412.0, 488.0) - .set(self.ids.settings_l, ui_widgets); - Image::new(self.imgs.settings_frame_r) - .right_from(self.ids.settings_l, 0.0) - .parent(self.ids.settings_bg) - .w_h(412.0, 488.0) - .set(self.ids.settings_r, ui_widgets); - // Content Alignment - Rectangle::fill_with([198.0*4.0, 97.0*4.0], color::TRANSPARENT) - .top_right_with_margins_on(self.ids.settings_r, 21.0*4.0, 4.0*4.0) - .scroll_kids() - .scroll_kids_vertically() - .set(self.ids.settings_content, ui_widgets); - // X-Button - if Button::image(self.imgs.close_button) - .w_h(28.0, 28.0) - .hover_image(self.imgs.close_button_hover) - .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.settings_r, 0.0, 0.0) - .set(self.ids.settings_close, ui_widgets) - .was_clicked() - { - self.open_windows = Windows::None; - self.settings_tab = SettingsTab::Interface; - } - - // Title - Text::new("Settings") - .mid_top_with_margin_on(self.ids.settings_bg, 5.0) - .font_size(14) - .color(TEXT_COLOR) - .set(self.ids.settings_title, ui_widgets); - // Icon - //Image::new(self.imgs.settings_icon) - //.w_h(224.0 / 3.0, 224.0 / 3.0) - //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) - //.set(self.ids.settings_icon, ui_widgets); - // TODO: Find out if we can remove this - - // 1 Interface//////////////////////////// - if Button::image(if let SettingsTab::Interface = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button - }) - .w_h(31.0*4.0, 12.0*4.0) - .hover_image(if let SettingsTab::Interface = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_hover - }) - .press_image(if let SettingsTab::Interface = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_press - }) - .top_left_with_margins_on(self.ids.settings_l, 8.0*4.0, 2.0*4.0) - .label("Interface") - .label_font_size(14) - .label_color(TEXT_COLOR) - .set(self.ids.interface, ui_widgets) - .was_clicked() - { - self.settings_tab = SettingsTab::Interface; - } - // Toggle Help - if let SettingsTab::Interface = self.settings_tab { - self.show_help = - ToggleButton::new(self.show_help, self.imgs.check, self.imgs.check_checked) - .w_h(288.0 / 24.0, 288.0 / 24.0) - .top_left_with_margins_on(self.ids.settings_content, 5.0, 5.0) - .hover_images(self.imgs.check_checked_mo, self.imgs.check_mo) - .press_images(self.imgs.check_press, self.imgs.check_press) - .set(self.ids.button_help, ui_widgets); - Text::new("Show Help") - .right_from(self.ids.button_help, 10.0) - .font_size(14) - .font_id(self.font_opensans) - .graphics_for(self.ids.button_help) - .color(TEXT_COLOR) - .set(self.ids.show_help_label, ui_widgets); - - self.inventorytest_button = ToggleButton::new( - self.inventorytest_button, - self.imgs.check, - self.imgs.check_checked, - ) - .w_h(288.0 / 24.0, 288.0 / 24.0) - .down_from(self.ids.button_help, 7.0) - .hover_images(self.imgs.check_checked_mo, self.imgs.check_mo) - .press_images(self.imgs.check_press, self.imgs.check_press) - .set(self.ids.inventorytest_button, ui_widgets); - - Text::new("Show Inventory Test Button") - .right_from(self.ids.inventorytest_button, 10.0) - .font_size(14) - .font_id(self.font_opensans) - .graphics_for(self.ids.inventorytest_button) - .color(TEXT_COLOR) - .set(self.ids.inventorytest_button_label, ui_widgets); - - self.show_debug = - ToggleButton::new(self.show_debug, self.imgs.check, self.imgs.check_checked) - .w_h(288.0 / 24.0, 288.0 / 24.0) - .down_from(self.ids.inventorytest_button, 7.0) - .hover_images(self.imgs.check_checked_mo, self.imgs.check_mo) - .press_images(self.imgs.check_press, self.imgs.check_press) - .set(self.ids.debug_button, ui_widgets); - - Text::new("Show Debug Window") - .right_from(self.ids.debug_button, 10.0) - .font_size(14) - .font_id(self.font_opensans) - .graphics_for(self.ids.debug_button) - .color(TEXT_COLOR) - .set(self.ids.debug_button_label, ui_widgets); - } - - // 2 Gameplay//////////////// - if Button::image(if let SettingsTab::Gameplay = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button - }) - .w_h(31.0*4.0, 12.0*4.0) - .hover_image(if let SettingsTab::Gameplay = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_hover - }) - .press_image(if let SettingsTab::Gameplay = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_press - }) - .right_from(self.ids.interface, 0.0) - .label("Gameplay") - .label_font_size(14) - .label_color(TEXT_COLOR) - .set(self.ids.gameplay, ui_widgets) - .was_clicked() - { - self.settings_tab = SettingsTab::Gameplay; - } - - // 3 Controls///////////////////// - if Button::image(if let SettingsTab::Controls = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button - }) - .w_h(31.0*4.0, 12.0*4.0) - .hover_image(if let SettingsTab::Controls = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_hover - }) - .press_image(if let SettingsTab::Controls = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_press - }) - .right_from(self.ids.gameplay, 0.0) - .label("Controls") - .label_font_size(14) - .label_color(TEXT_COLOR) - .set(self.ids.controls, ui_widgets) - .was_clicked() - { - self.settings_tab = SettingsTab::Controls; - } - - // 4 Video//////////////////////////////// - if Button::image(if let SettingsTab::Video = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button - }) - .w_h(31.0*4.0, 12.0*4.0) - .hover_image(if let SettingsTab::Video = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_hover - }) - .press_image(if let SettingsTab::Video = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_press - }) - .right_from(self.ids.controls, 0.0) - .label("Video") - .parent(self.ids.settings_r) - .label_font_size(14) - .label_color(TEXT_COLOR) - .set(self.ids.video, ui_widgets) - .was_clicked() - { - self.settings_tab = SettingsTab::Video; - } - - // 5 Sound/////////////////////////////// - if Button::image(if let SettingsTab::Sound = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button - }) - .w_h(31.0*4.0, 12.0*4.0) - .hover_image(if let SettingsTab::Sound = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_hover - }) - .press_image(if let SettingsTab::Sound = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_press - }) - .right_from(self.ids.video, 0.0) - .parent(self.ids.settings_r) - .label("Sound") - .label_font_size(14) - .label_color(TEXT_COLOR) - .set(self.ids.sound, ui_widgets) - .was_clicked() - { - self.settings_tab = SettingsTab::Sound; - } - } - - if let Some((small, char_window_open)) = match self.open_windows { - Windows::Small(small) => Some((small, false)), - Windows::CharacterAnd(Some(small)) => Some((small, true)), - _ => None, - } { - // TODO: there is common code in each match arm, might be able to combine this - match small { - Small::Social => { - //Frame - if char_window_open { - Image::new(self.imgs.window_frame) - .right_from(self.ids.charwindow_frame, 20.0) - .w_h(107.0 * 4.0, 125.0 * 4.0) - .set(self.ids.social_frame, ui_widgets); - } else { - Image::new(self.imgs.window_frame) - .top_left_with_margins_on(ui_widgets.window, 200.0, 10.0) - .w_h(107.0 * 4.0, 125.0 * 4.0) - .set(self.ids.social_frame, ui_widgets); - } - - // Icon - Image::new(self.imgs.social_icon) - .w_h(40.0, 40.0) - .top_left_with_margins_on(self.ids.social_frame, 4.0, 4.0) - .set(self.ids.social_icon, ui_widgets); - - // Content alignment - Rectangle::fill_with([362.0, 418.0], color::TRANSPARENT) - .bottom_right_with_margins_on(self.ids.social_frame, 17.0, 17.0) - .scroll_kids() - .scroll_kids_vertically() - .set(self.ids.social_bg, ui_widgets); - - // X-Button - if Button::image(self.imgs.close_button) - .w_h(28.0, 28.0) - .hover_image(self.imgs.close_button_hover) - .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.social_frame, 12.0, 0.0) - .set(self.ids.social_close, ui_widgets) - .was_clicked() - { - self.open_windows = match self.open_windows { - Windows::Small(_) => Windows::None, - Windows::CharacterAnd(_) => Windows::CharacterAnd(None), - _ => Windows::Settings, - } - } - // Title - Text::new("Social") - .mid_top_with_margin_on(self.ids.social_frame, 17.0) - .font_id(self.font_metamorph) - .font_size(14) - .color(TEXT_COLOR) - .set(self.ids.social_title, ui_widgets); - } - Small::Spellbook => { - // Frame - if char_window_open { - Image::new(self.imgs.window_frame) - .right_from(self.ids.charwindow_frame, 20.0) - .w_h(107.0 * 4.0, 125.0 * 4.0) - .set(self.ids.spellbook_frame, ui_widgets); - } else { - Image::new(self.imgs.window_frame) - .top_left_with_margins_on(ui_widgets.window, 200.0, 10.0) - .w_h(107.0 * 4.0, 125.0 * 4.0) - .set(self.ids.spellbook_frame, ui_widgets); - } - - // Icon - Image::new(self.imgs.spellbook_icon) - .w_h(40.0, 40.0) - .top_left_with_margins_on(self.ids.spellbook_frame, 4.0, 4.0) - .set(self.ids.spellbook_icon, ui_widgets); - - // Content alignment - Rectangle::fill_with([362.0, 418.0], color::TRANSPARENT) - .bottom_right_with_margins_on(self.ids.spellbook_frame, 17.0, 17.0) - .scroll_kids() - .scroll_kids_vertically() - .set(self.ids.spellbook_bg, ui_widgets); - - // X-Button - if Button::image(self.imgs.close_button) - .w_h(14.0, 14.0) - .hover_image(self.imgs.close_button_hover) - .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.spellbook_frame, 12.0, 0.0) - .set(self.ids.spellbook_close, ui_widgets) - .was_clicked() - { - self.open_windows = match self.open_windows { - Windows::Small(_) => Windows::None, - Windows::CharacterAnd(_) => Windows::CharacterAnd(None), - _ => Windows::Settings, - } - } - // Title - Text::new("Spellbook") - .mid_top_with_margin_on(self.ids.spellbook_frame, 17.0) - .font_size(14) - .color(TEXT_COLOR) - .set(self.ids.spellbook_title, ui_widgets); - } - Small::Questlog => { - // Frame - if char_window_open { - Image::new(self.imgs.window_frame) - .right_from(self.ids.charwindow_frame, 20.0) - .w_h(107.0 * 4.0, 125.0 * 4.0) - .set(self.ids.questlog_frame, ui_widgets); - } else { - Image::new(self.imgs.window_frame) - .top_left_with_margins_on(ui_widgets.window, 200.0, 10.0) - .w_h(107.0 * 4.0, 125.0 * 4.0) - .set(self.ids.questlog_frame, ui_widgets); - } - - // Icon - Image::new(self.imgs.questlog_icon) - .w_h(40.0, 40.0) - .top_left_with_margins_on(self.ids.questlog_frame, 4.0, 4.0) - .set(self.ids.questlog_icon, ui_widgets); - - // Content alignment - Rectangle::fill_with([362.0, 418.0], color::TRANSPARENT) - .bottom_right_with_margins_on(self.ids.questlog_frame, 17.0, 17.0) - .scroll_kids() - .scroll_kids_vertically() - .set(self.ids.questlog_bg, ui_widgets); - - // X-Button - if Button::image(self.imgs.close_button) - .w_h(20.0, 20.0) - .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.questlog_frame, 17.0, 5.0) - .set(self.ids.questlog_close, ui_widgets) - .was_clicked() - { - self.open_windows = match self.open_windows { - Windows::Small(_) => Windows::None, - Windows::CharacterAnd(_) => Windows::CharacterAnd(None), - _ => Windows::Settings, - } - } - // Title - Text::new("Quest-Log") - .mid_top_with_margin_on(self.ids.questlog_frame, 17.0) - .color(TEXT_COLOR) - .font_size(14) - .set(self.ids.questlog_title, ui_widgets); - } - } - } - - // 4 Char-Window - if let Windows::CharacterAnd(small) = self.open_windows { - // Frame - Image::new(self.imgs.window_frame) - .top_left_with_margins_on(ui_widgets.window, 200.0, 215.0) - .w_h(1648.0 / 4.0, 1952.0 / 4.0) - .set(self.ids.charwindow_frame, ui_widgets); - - // BG - //Image::new(self.imgs.window_bg) - //.w_h(348.0, 404.0) - //.mid_top_with_margin_on(self.ids.charwindow_frame, 48.0) - //.set(self.ids.charwindow_bg, ui_widgets); - - // Overlay - //Image::new(self.imgs.charwindow) - //.middle_of(self.ids.charwindow_bg) - //.set(self.ids.charwindow, ui_widgets); - - // Icon - //Image::new(self.imgs.charwindow_icon) - //.w_h(224.0 / 3.0, 224.0 / 3.0) - //.top_left_with_margins_on(self.ids.charwindow_frame, -10.0, -10.0) - //.set(self.ids.charwindow_icon, ui_widgets); - - // X-Button - if Button::image(self.imgs.close_button) - .w_h(244.0 * 0.22 / 4.0, 244.0 * 0.22 / 4.0) - .hover_image(self.imgs.close_button_hover) - .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.charwindow_frame, 4.0, 4.0) - .set(self.ids.charwindow_close, ui_widgets) - .was_clicked() - { - self.open_windows = match small { - Some(small) => Windows::Small(small), - None => Windows::None, - } - } - - // Title - Text::new("Character Name") //Add in actual Character Name - .mid_top_with_margin_on(self.ids.charwindow_frame, 7.0) - .color(TEXT_COLOR) - .set(self.ids.charwindow_title, ui_widgets); - // Tab BG - Image::new(self.imgs.charwindow_tab_bg) - .w_h(205.0, 412.0) - .mid_left_with_margin_on(self.ids.charwindow_frame, -205.0) - .set(self.ids.charwindow_tab_bg, ui_widgets); - // Tab Rectangle - Rectangle::fill_with([192.0, 371.0], color::rgba(0.0, 0.0, 0.0, 0.8)) - .top_right_with_margins_on(self.ids.charwindow_tab_bg, 20.0, 0.0) - .set(self.ids.charwindow_rectangle, ui_widgets); - // Tab Button - Button::image(self.imgs.charwindow_tab) - .w_h(65.0, 23.0) - .top_left_with_margins_on(self.ids.charwindow_tab_bg, -18.0, 2.0) - .label("Stats") - .label_color(TEXT_COLOR) - .label_font_id(self.font_opensans) - .label_font_size(14) - .set(self.ids.charwindow_tab1, ui_widgets); - Text::new("1") //Add in actual Character Level - .mid_top_with_margin_on(self.ids.charwindow_rectangle, 10.0) - .font_id(self.font_opensans) - .font_size(30) - .color(TEXT_COLOR) - .set(self.ids.charwindow_tab1_level, ui_widgets); - // Exp-Bar Background - Rectangle::fill_with([170.0, 10.0], color::BLACK) - .mid_top_with_margin_on(self.ids.charwindow_rectangle, 50.0) - .set(self.ids.charwindow_exp_rectangle, ui_widgets); - // Exp-Bar Progress - Rectangle::fill_with([170.0 * (self.xp_percentage), 6.0], XP_COLOR) // 0.8 = Experience percantage - .mid_left_with_margin_on(self.ids.charwindow_tab1_expbar, 1.0) - .set(self.ids.charwindow_exp_progress_rectangle, ui_widgets); - // Exp-Bar Foreground Frame - Image::new(self.imgs.progress_frame) - .w_h(170.0, 10.0) - .middle_of(self.ids.charwindow_exp_rectangle) - .set(self.ids.charwindow_tab1_expbar, ui_widgets); - // Exp-Text - Text::new("120/170") // Shows the Exp / Exp to reach the next level - .mid_top_with_margin_on(self.ids.charwindow_tab1_expbar, 10.0) - .font_id(self.font_opensans) - .font_size(15) - .color(TEXT_COLOR) - .set(self.ids.charwindow_tab1_exp, ui_widgets); - - // Stats - Text::new( - "Stamina\n\ - \n\ - Strength\n\ - \n\ - Dexterity\n\ - \n\ - Intelligence", - ) - .top_left_with_margins_on(self.ids.charwindow_rectangle, 100.0, 20.0) - .font_id(self.font_opensans) - .font_size(16) - .color(TEXT_COLOR) - .set(self.ids.charwindow_tab1_statnames, ui_widgets); - - Text::new( - "1234\n\ - \n\ - 12312\n\ - \n\ - 12414\n\ - \n\ - 124124", - ) - .right_from(self.ids.charwindow_tab1_statnames, 10.0) - .font_id(self.font_opensans) - .font_size(16) - .color(TEXT_COLOR) - .set(self.ids.charwindow_tab1_stats, ui_widgets); - } - - // 2 Map - if self.map_open { - // BG - Rectangle::fill_with([824.0, 976.0], color::TRANSPARENT) - .mid_top_with_margin_on(ui_widgets.window, 15.0) - .scroll_kids() - .scroll_kids_vertically() - .set(self.ids.map_bg, ui_widgets); - // Frame - Image::new(self.imgs.map_frame_l) - .top_left_with_margins_on(self.ids.map_bg, 0.0, 0.0) - .w_h(412.0, 488.0) - .set(self.ids.map_frame_l, ui_widgets); - Image::new(self.imgs.map_frame_r) - .right_from(self.ids.map_frame_l, 0.0) - .w_h(412.0, 488.0) - .set(self.ids.map_frame_r, ui_widgets); - Image::new(self.imgs.map_frame_br) - .down_from(self.ids.map_frame_r, 0.0) - .w_h(412.0, 488.0) - .set(self.ids.map_frame_br, ui_widgets); - Image::new(self.imgs.map_frame_bl) - .down_from(self.ids.map_frame_l, 0.0) - .w_h(412.0, 488.0) - .set(self.ids.map_frame_bl, ui_widgets); - - - // Icon - Image::new(self.imgs.map_icon) - .w_h(224.0 / 3.0, 224.0 / 3.0) - .top_left_with_margins_on(self.ids.map_frame, -10.0, -10.0) - .set(self.ids.map_icon, ui_widgets); - - // X-Button - if Button::image(self.imgs.close_button) - .w_h(28.0, 28.0) - .hover_image(self.imgs.close_button_hover) - .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.map_frame_r, 0.0, 0.0) - .set(self.ids.map_close, ui_widgets) - .was_clicked() - { - self.map_open = false; - } - // Title - //Text::new("Map") - //.mid_top_with_margin_on(self.ids.map_bg, -7.0) - //.font_size(14) - //.color(TEXT_COLOR) - //.set(self.ids.map_title, ui_widgets); - } - - // ESC-MENU - // Background - if self.menu_open { - Image::new(self.imgs.esc_bg) - .w_h(228.0, 450.0) - .middle_of(ui_widgets.window) - .set(self.ids.esc_bg, ui_widgets); - - Image::new(self.imgs.fireplace) - .w_h(180.0, 60.0) - .mid_top_with_margin_on(self.ids.esc_bg, 50.0) - .set(self.ids.fireplace, ui_widgets); - - // Settings - if Button::image(self.imgs.button_dark) - .mid_top_with_margin_on(self.ids.esc_bg, 115.0) - .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) - .label("Settings") - .label_y(conrod_core::position::Relative::Scalar(2.0)) - .label_color(TEXT_COLOR) - .label_font_size(17) - .set(self.ids.menu_button_1, ui_widgets) - .was_clicked() - { - self.menu_open = false; - self.open_windows = Windows::Settings; - }; - // Controls - if Button::image(self.imgs.button_dark) - .mid_top_with_margin_on(self.ids.esc_bg, 175.0) - .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) - .label("Controls") - .label_y(conrod_core::position::Relative::Scalar(2.0)) - .label_color(TEXT_COLOR) - .label_font_size(17) - .set(self.ids.menu_button_2, ui_widgets) - .was_clicked() - { - //self.menu_open = false; - }; - // Servers - if Button::image(self.imgs.button_dark) - .mid_top_with_margin_on(self.ids.esc_bg, 235.0) - .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) - .label("Servers") - .label_y(conrod_core::position::Relative::Scalar(2.0)) - .label_color(TEXT_COLOR) - .label_font_size(17) - .set(self.ids.menu_button_3, ui_widgets) - .was_clicked() - { - //self.menu_open = false; - }; - // Logout - if Button::image(self.imgs.button_dark) - .mid_top_with_margin_on(self.ids.esc_bg, 295.0) - .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) - .label("Logout") - .label_y(conrod_core::position::Relative::Scalar(2.0)) - .label_color(TEXT_COLOR) - .label_font_size(17) - .set(self.ids.menu_button_4, ui_widgets) - .was_clicked() - { - events.push(Event::Logout); - }; - // Quit - if Button::image(self.imgs.button_dark) - .mid_top_with_margin_on(self.ids.esc_bg, 355.0) - .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) - .label("Quit") - .label_y(conrod_core::position::Relative::Scalar(2.0)) - .label_color(TEXT_COLOR) - .label_font_size(17) - .set(self.ids.menu_button_5, ui_widgets) - .was_clicked() - { - events.push(Event::Quit); - }; - } - - events - } - - pub fn new_message(&mut self, msg: String) { - self.chat.new_message(msg); - } - - fn toggle_menu(&mut self) { - self.menu_open = !self.menu_open; - } - fn toggle_bag(&mut self) { - self.bag_open = !self.bag_open - } - fn toggle_map(&mut self) { - self.map_open = !self.map_open; - self.bag_open = false; - } - fn toggle_questlog(&mut self) { - self.open_windows = match self.open_windows { - Windows::Small(Small::Questlog) => Windows::None, - Windows::None | Windows::Small(_) => Windows::Small(Small::Questlog), - Windows::CharacterAnd(small) => match small { - Some(Small::Questlog) => Windows::CharacterAnd(None), - _ => Windows::CharacterAnd(Some(Small::Questlog)), - }, - Windows::Settings => Windows::Settings, - }; - } - fn toggle_charwindow(&mut self) { - self.open_windows = match self.open_windows { - Windows::CharacterAnd(small) => match small { - Some(small) => Windows::Small(small), - None => Windows::None, - }, - Windows::Small(small) => Windows::CharacterAnd(Some(small)), - Windows::None => Windows::CharacterAnd(None), - Windows::Settings => Windows::Settings, - } - } - fn toggle_social(&mut self) { - self.open_windows = match self.open_windows { - Windows::Small(Small::Social) => Windows::None, - Windows::None | Windows::Small(_) => Windows::Small(Small::Social), - Windows::CharacterAnd(small) => match small { - Some(Small::Social) => Windows::CharacterAnd(None), - _ => Windows::CharacterAnd(Some(Small::Social)), - }, - Windows::Settings => Windows::Settings, - }; - } - fn toggle_spellbook(&mut self) { - self.open_windows = match self.open_windows { - Windows::Small(Small::Spellbook) => Windows::None, - Windows::None | Windows::Small(_) => Windows::Small(Small::Spellbook), - Windows::CharacterAnd(small) => match small { - Some(Small::Spellbook) => Windows::CharacterAnd(None), - _ => Windows::CharacterAnd(Some(Small::Spellbook)), - }, - Windows::Settings => Windows::Settings, - }; - } - fn toggle_settings(&mut self) { - self.open_windows = match self.open_windows { - Windows::Settings => Windows::None, - _ => Windows::Settings, - }; - self.bag_open = false; - } - fn toggle_help(&mut self) { - self.show_help = !self.show_help - } - fn toggle_ui(&mut self) { - self.show_ui = !self.show_ui; - } - - fn toggle_windows(&mut self, global_state: &mut GlobalState) { - if self.bag_open - || self.menu_open - || self.map_open - || match self.open_windows { - Windows::None => false, - _ => true, - } - { - self.bag_open = false; - self.menu_open = false; - self.map_open = false; - self.open_windows = Windows::None; - global_state.window.grab_cursor(true); - } else { - self.menu_open = true; - global_state.window.grab_cursor(false); - } - } - - fn typing(&self) -> bool { - match self.ui.widget_capturing_keyboard() { - Some(id) if id == self.chat.input_box_id() => true, - _ => false, - } - } - - pub fn handle_event(&mut self, event: WinEvent, global_state: &mut GlobalState) -> bool { - let cursor_grabbed = global_state.window.is_cursor_grabbed(); - match event { - WinEvent::Ui(event) => { - if (self.typing() && event.is_keyboard() && self.show_ui) - || !(cursor_grabbed && event.is_keyboard_or_mouse()) - { - self.ui.handle_event(event); - } - true - } - WinEvent::KeyDown(Key::ToggleInterface) => { - self.toggle_ui(); - true - } - _ if !self.show_ui => false, - WinEvent::Zoom(_) => !cursor_grabbed && !self.ui.no_widget_capturing_mouse(), - WinEvent::KeyDown(Key::Enter) => { - self.ui.focus_widget(if self.typing() { - None - } else { - Some(self.chat.input_box_id()) - }); - true - } - WinEvent::KeyDown(Key::Escape) => { - if self.typing() { - self.ui.focus_widget(None); - } else { - // Close windows on esc - self.toggle_windows(global_state); - } - true - } - WinEvent::KeyDown(key) if !self.typing() => match key { - Key::Map => { - self.toggle_map(); - true - } - Key::Bag => { - self.toggle_bag(); - true - } - Key::QuestLog => { - self.toggle_questlog(); - true - } - Key::CharacterWindow => { - self.toggle_charwindow(); - true - } - Key::Social => { - self.toggle_social(); - true - } - Key::Spellbook => { - self.toggle_spellbook(); - true - } - Key::Settings => { - self.toggle_settings(); - true - } - Key::Help => { - self.toggle_help(); - true - } - _ => false, - }, - WinEvent::KeyDown(key) | WinEvent::KeyUp(key) => match key { - Key::ToggleCursor => false, - _ => self.typing(), - }, - WinEvent::Char(_) => self.typing(), - _ => false, - } - } - - pub fn maintain(&mut self, renderer: &mut Renderer, tps: f64) -> Vec { - let events = self.update_layout(tps); - self.ui.maintain(renderer); - events - } - - pub fn render(&self, renderer: &mut Renderer) { - self.ui.render(renderer); - } -} diff --git a/voxygen/src/scene/figure.rs b/voxygen/src/scene/figure.rs index 2a4fbda412..43fb2a5c0c 100644 --- a/voxygen/src/scene/figure.rs +++ b/voxygen/src/scene/figure.rs @@ -116,7 +116,7 @@ impl FigureCache { match head { Head::DefaultHead => "head.vox", }, - Vec3::new(-5.5, -7.0, -6.0), + Vec3::new(-7.5, -8.0, 0.0), ) } From 5cb623a8f62cec6c644ecfae5e523898a00fee8f Mon Sep 17 00:00:00 2001 From: Pfauenauge90 <44173739+Pfauenauge90@users.noreply.github.com> Date: Thu, 2 May 2019 17:28:18 +0200 Subject: [PATCH 20/45] asset update Former-commit-id: 687c9275806bf150c9c26d02035a9f0216faf121 --- assets/voxygen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/voxygen b/assets/voxygen index 62d68110b9..7ebb1a9205 160000 --- a/assets/voxygen +++ b/assets/voxygen @@ -1 +1 @@ -Subproject commit 62d68110b97d750a0c4b15bc58dbcb6a4595b9c2 +Subproject commit 7ebb1a92057e6c0b9d989ffb7a5fe321599ddd6e From 83561d70115132699c90f09243ca2f517a814928 Mon Sep 17 00:00:00 2001 From: Pfauenauge90 <44173739+Pfauenauge90@users.noreply.github.com> Date: Thu, 2 May 2019 17:55:12 +0200 Subject: [PATCH 21/45] asset update Former-commit-id: 7c0933fb27a83849461e3cbd181a0959344e0871 --- assets/voxygen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/voxygen b/assets/voxygen index 7ebb1a9205..2cafcdccc3 160000 --- a/assets/voxygen +++ b/assets/voxygen @@ -1 +1 @@ -Subproject commit 7ebb1a92057e6c0b9d989ffb7a5fe321599ddd6e +Subproject commit 2cafcdccc302a41ef6bacd0d55bd7bc89400f657 From 516874917928881cea145076df0e235e4852074f Mon Sep 17 00:00:00 2001 From: Pfauenauge90 <44173739+Pfauenauge90@users.noreply.github.com> Date: Thu, 2 May 2019 20:06:23 +0200 Subject: [PATCH 22/45] Controls Window Former-commit-id: e6e83aaa0eb5606b59581c3005b30e969123bb56 --- voxygen/src/hud/chat.rs | 4 +- voxygen/src/hud/mod.rs | 177 +++++++++++++++++++++++++++------------- 2 files changed, 123 insertions(+), 58 deletions(-) diff --git a/voxygen/src/hud/chat.rs b/voxygen/src/hud/chat.rs index 8a7b82135f..9b7e08b147 100644 --- a/voxygen/src/hud/chat.rs +++ b/voxygen/src/hud/chat.rs @@ -157,10 +157,10 @@ impl Chat { // Chat Arrow if !self.scrolled_to_bottom(ui_widgets) { if Button::image(imgs.chat_arrow) - .w_h(22.0, 22.0) + .w_h(20.0, 20.0) .hover_image(imgs.chat_arrow_mo) .press_image(imgs.chat_arrow_press) - .bottom_right_with_margins_on(self.ids.message_box_bg, 2.0, 2.0) + .bottom_right_with_margins_on(self.ids.message_box_bg, 0.0, -22.0) .set(self.ids.chat_arrow, ui_widgets) .was_clicked() { diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 4a71e0eae7..88c763b062 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -104,6 +104,7 @@ widget_ids! { settings_l, settings_scrollbar, controls_text, + controls_controls, //Contents button_help, button_help2, @@ -411,13 +412,13 @@ impl Imgs { settings_bg: load_img("element/frames/settings.png", ui), settings_icon: load_img("element/icons/settings.png", ui), settings_button_mo: load_img("element/buttons/blue_mo.png", ui), - check: load_img("element/buttons/check/no.png", ui), - check_mo: load_img("element/buttons/check/no_mo.png", ui), - check_press: load_img("element/buttons/check/press.png", ui), - check_checked: load_img("element/buttons/check/yes.png", ui), - check_checked_mo: load_img("element/buttons/check/yes_mo.png", ui), - slider: load_img("element/slider/track.png", ui), - slider_indicator: load_img("element/slider/indicator.png", ui), + check: load_vox("element/buttons/check/no.vox", ui), + check_mo: load_vox("element/buttons/check/no_mo.vox", ui), + check_press: load_vox("element/buttons/check/press.vox", ui), + check_checked: load_vox("element/buttons/check/yes.vox", ui), + check_checked_mo: load_vox("element/buttons/check/yes_mo.vox", ui), + slider: load_vox("element/slider/track.vox", ui), + slider_indicator: load_vox("element/slider/indicator.vox", ui), button_blank: ui.new_graphic(ui::Graphic::Blank), button_blue_mo: load_img("element/buttons/blue_mo.png", ui), button_blue_press: load_img("element/buttons/blue_press.png", ui), @@ -455,9 +456,9 @@ impl Imgs { questlog_icon: load_img("element/icons/questlog.png", ui), // Chat-Arrows - chat_arrow: load_img("element/buttons/arrow/chat_arrow.png", ui), - chat_arrow_mo: load_img("element/buttons/arrow/chat_arrow_mo.png", ui), - chat_arrow_press: load_img("element/buttons/arrow/chat_arrow_press.png", ui), + chat_arrow: load_vox("element/buttons/arrow_down.vox", ui), + chat_arrow_mo: load_vox("element/buttons/arrow_down_hover.vox", ui), + chat_arrow_press: load_vox("element/buttons/arrow_down_press.vox", ui), } } } @@ -1083,7 +1084,7 @@ impl Hud { .set(self.ids.settings_content, ui_widgets); Scrollbar::y_axis(self.ids.settings_content) .thickness(5.0) - .rgba(0.33, 0.33, 0.33, 1.0) + .rgba(0.33, 0.33, 0.33, 1.0) .set(self.ids.settings_scrollbar, ui_widgets); // X-Button if Button::image(self.imgs.close_button) @@ -1244,73 +1245,137 @@ impl Hud { self.settings_tab = SettingsTab::Controls; } if let SettingsTab::Controls = self.settings_tab { - - Text::new( - "Free Cursor: TAB \n\ - Toggle Help Window: F1 \n\ - Toggle Interface: F2 \n\ - Toggle FPS and Debug Info: F3 \n\ + Text::new( + "Free Cursor\n\ + Toggle Help Window\n\ + Toggle Interface\n\ + Toggle FPS and Debug Info\n\ \n\ \n\ - Move Forward: W \n\ - Move Left : A \n\ - Move Right: S \n\ - Move Backwards: D \n\ + Move Forward\n\ + Move Left\n\ + Move Right\n\ + Move Backwards\n\ \n\ - Jump: Space \n\ + Jump\n\ \n\ - Dodge: ?? \n\ + Dodge\n\ \n\ - Auto Walk: ?? \n\ + Auto Walk\n\ \n\ - Sheathe/Draw Weapons: Y \n\ + Sheathe/Draw Weapons\n\ \n\ - Put on/Remove Helmet: ?? [Has a Cast time of 0,5s] \n\ + Put on/Remove Helmet\n\ \n\ \n\ - Basic Attack: L-Click \n\ - Secondary Attack/Block/Aim: R-Click \n\ + Basic Attack\n\ + Secondary Attack/Block/Aim\n\ \n\ \n\ - Skillbar Slot 1: 1 \n\ - Skillbar Slot 2: 2 \n\ - Skillbar Slot 3: 3 \n\ - Skillbar Slot 4: 4 \n\ - Skillbar Slot 5: 5 \n\ - Skillbar Slot 6: 6 \n\ - Skillbar Slot 7: 7 \n\ - Skillbar Slot 8: 8 \n\ - Skillbar Slot 9: 9 \n\ - Skillbar Slot 10: 0 \n\ + Skillbar Slot 1\n\ + Skillbar Slot 2\n\ + Skillbar Slot 3\n\ + Skillbar Slot 4\n\ + Skillbar Slot 5\n\ + Skillbar Slot 6\n\ + Skillbar Slot 7\n\ + Skillbar Slot 8\n\ + Skillbar Slot 9\n\ + Skillbar Slot 10\n\ \n\ \n\ - Pause Menu: ESC \n\ - Settings: N \n\ - Social: O \n\ - Map: M \n\ - Spellbook: P \n\ - Character: C \n\ - Questlog L \n\ - Bag: B \n\ + Pause Menu\n\ + Settings\n\ + Social\n\ + Map\n\ + Spellbook\n\ + Character\n\ + Questlog\n\ + Bag\n\ \n\ \n\ \n\ - Activate Chat & Input/Send Message: Enter \n\ - Scroll Chat: Mousewheel on Chat-Window \n\ + Send Chat Message\n\ + Scroll Chat\n\ \n\ \n\ Chat commands: \n\ \n\ /alias [Name] - Change your Chat Name \n\ /tp [Name] - Teleports you to another player - ") - .color(TEXT_COLOR) - .top_left_with_margins_on(self.ids.settings_content, 5.0, 5.0) - .font_id(self.font_opensans) - .font_size(18) - .set(self.ids.controls_text, ui_widgets); - - + ", + ) + .color(TEXT_COLOR) + .top_left_with_margins_on(self.ids.settings_content, 5.0, 5.0) + .font_id(self.font_opensans) + .font_size(18) + .set(self.ids.controls_text, ui_widgets); + // TODO + Text::new( + "TAB\n\ + F1\n\ + F2\n\ + F3\n\ + \n\ + \n\ + W\n\ + A\n\ + S\n\ + D\n\ + \n\ + SPACE\n\ + \n\ + ??\n\ + \n\ + ??\n\ + \n\ + ??\n\ + \n\ + ??\n\ + \n\ + \n\ + L-Click\n\ + R-Click\n\ + \n\ + \n\ + 1\n\ + 2\n\ + 3\n\ + 4\n\ + 5\n\ + 6\n\ + 7\n\ + 8\n\ + 9\n\ + 0\n\ + \n\ + \n\ + ESC\n\ + N\n\ + O\n\ + M\n\ + P\n\ + C\n\ + L\n\ + B\n\ + \n\ + \n\ + \n\ + ENTER\n\ + Mousewheel\n\ + \n\ + \n\ + \n\ + \n\ + \n\ + \n\ + ", + ) + .color(TEXT_COLOR) + .right_from(self.ids.controls_text, 0.0) + .font_id(self.font_opensans) + .font_size(18) + .set(self.ids.controls_controls, ui_widgets); } // 4 Video//////////////////////////////// if Button::image(if let SettingsTab::Video = self.settings_tab { From 684fd21f677656bf668249308fdafe34523ed946 Mon Sep 17 00:00:00 2001 From: Pfauenauge90 <44173739+Pfauenauge90@users.noreply.github.com> Date: Thu, 2 May 2019 20:07:13 +0200 Subject: [PATCH 23/45] control window Former-commit-id: 2a777c24dc113a3a04beafc63c427fba5324b640 --- assets/voxygen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/voxygen b/assets/voxygen index 2cafcdccc3..d4cffdf694 160000 --- a/assets/voxygen +++ b/assets/voxygen @@ -1 +1 @@ -Subproject commit 2cafcdccc302a41ef6bacd0d55bd7bc89400f657 +Subproject commit d4cffdf6946cdbc44b6c28e9ab4abf82b8ee6442 From 0ec907f636ef6e9c9ca28a31a1e2d1355c5c7148 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Fri, 3 May 2019 13:02:03 +0200 Subject: [PATCH 24/45] New Buttons and Input Frame Former-commit-id: 140b27f9d41de04eb7018d1bbe65012af889a271 --- assets/voxygen | 2 +- voxygen/src/hud/mod.rs | 44 +++++++++---------- voxygen/src/menu/char_selection/ui.rs | 6 ++- voxygen/src/menu/main/ui.rs | 63 ++++++++++++++------------- 4 files changed, 60 insertions(+), 55 deletions(-) diff --git a/assets/voxygen b/assets/voxygen index d4cffdf694..d887de6c9b 160000 --- a/assets/voxygen +++ b/assets/voxygen @@ -1 +1 @@ -Subproject commit d4cffdf6946cdbc44b6c28e9ab4abf82b8ee6442 +Subproject commit d887de6c9bbe1a770be06a1a4abb6be5fa35f3d2 diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 88c763b062..d5c983514a 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -218,9 +218,9 @@ pub(self) struct Imgs { // Menu esc_bg: ImgId, fireplace: ImgId, - button_dark: ImgId, - button_dark_hover: ImgId, - button_dark_press: ImgId, + button: ImgId, + button_hover: ImgId, + button_press: ImgId, // MiniMap mmap_frame: ImgId, @@ -381,9 +381,9 @@ impl Imgs { // Esc-Menu esc_bg: load_img("element/frames/menu.png", ui), fireplace: load_vox("element/misc_bg/fireplace.vox", ui), - button_dark: load_vox("element/buttons/button_dark.vox", ui), - button_dark_hover: load_img("element/buttons/button_dark_hover.png", ui), - button_dark_press: load_img("element/buttons/button_dark_press.png", ui), + button: load_vox("element/buttons/button.vox", ui), + button_hover: load_img("element/buttons/button_hover.png", ui), + button_press: load_img("element/buttons/button_press.png", ui), // MiniMap mmap_frame: load_vox("element/frames/mmap.vox", ui), @@ -1310,7 +1310,7 @@ impl Hud { .font_id(self.font_opensans) .font_size(18) .set(self.ids.controls_text, ui_widgets); - // TODO + // TODO: Replace with buttons that show the actual keybind and allow the user to change it. Text::new( "TAB\n\ F1\n\ @@ -1778,11 +1778,11 @@ impl Hud { .set(self.ids.fireplace, ui_widgets); // Settings - if Button::image(self.imgs.button_dark) + if Button::image(self.imgs.button) .mid_top_with_margin_on(self.ids.esc_bg, 115.0) .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) + .hover_image(self.imgs.button_hover) + .press_image(self.imgs.button_press) .label("Settings") .label_y(conrod_core::position::Relative::Scalar(2.0)) .label_color(TEXT_COLOR) @@ -1794,11 +1794,11 @@ impl Hud { self.open_windows = Windows::Settings; }; // Controls - if Button::image(self.imgs.button_dark) + if Button::image(self.imgs.button) .mid_top_with_margin_on(self.ids.esc_bg, 175.0) .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) + .hover_image(self.imgs.button_hover) + .press_image(self.imgs.button_press) .label("Controls") .label_y(conrod_core::position::Relative::Scalar(2.0)) .label_color(TEXT_COLOR) @@ -1811,11 +1811,11 @@ impl Hud { self.open_windows = Windows::Settings; }; // Servers - if Button::image(self.imgs.button_dark) + if Button::image(self.imgs.button) .mid_top_with_margin_on(self.ids.esc_bg, 235.0) .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) + .hover_image(self.imgs.button_hover) + .press_image(self.imgs.button_press) .label("Servers") .label_y(conrod_core::position::Relative::Scalar(2.0)) .label_color(TEXT_COLOR) @@ -1826,11 +1826,11 @@ impl Hud { //self.menu_open = false; }; // Logout - if Button::image(self.imgs.button_dark) + if Button::image(self.imgs.button) .mid_top_with_margin_on(self.ids.esc_bg, 295.0) .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) + .hover_image(self.imgs.button_hover) + .press_image(self.imgs.button_press) .label("Logout") .label_y(conrod_core::position::Relative::Scalar(2.0)) .label_color(TEXT_COLOR) @@ -1841,11 +1841,11 @@ impl Hud { events.push(Event::Logout); }; // Quit - if Button::image(self.imgs.button_dark) + if Button::image(self.imgs.button) .mid_top_with_margin_on(self.ids.esc_bg, 355.0) .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) + .hover_image(self.imgs.button_hover) + .press_image(self.imgs.button_press) .label("Quit") .label_y(conrod_core::position::Relative::Scalar(2.0)) .label_color(TEXT_COLOR) diff --git a/voxygen/src/menu/char_selection/ui.rs b/voxygen/src/menu/char_selection/ui.rs index 75047685b9..f23e169a2d 100644 --- a/voxygen/src/menu/char_selection/ui.rs +++ b/voxygen/src/menu/char_selection/ui.rs @@ -52,6 +52,7 @@ widget_ids! { undead_skin_bg, elf_skin_bg, danari_skin_bg, + name_input_bg, // Buttons @@ -577,9 +578,12 @@ impl CharSelectionUi { self.character_creation = false; } // Character Name Input + Rectangle::fill_with([320.0, 50.0], color::rgba(0.0, 0.0, 0.0, 0.99)) + .mid_bottom_with_margin_on(self.ids.bg_creation, 20.0) + .set(self.ids.name_input_bg, ui_widgets); Button::image(self.imgs.name_input) .w_h(337.0, 67.0) - .mid_bottom_with_margin_on(self.ids.bg_creation, 10.0) + .middle_of(self.ids.name_input_bg) .set(self.ids.name_input, ui_widgets); for event in TextBox::new(&self.character_name) .w_h(300.0, 60.0) diff --git a/voxygen/src/menu/main/ui.rs b/voxygen/src/menu/main/ui.rs index 7cf2b4d632..1ffd13d461 100644 --- a/voxygen/src/menu/main/ui.rs +++ b/voxygen/src/menu/main/ui.rs @@ -34,6 +34,8 @@ widget_ids! { username_field, singleplayer_button, singleplayer_text, + usrnm_bg, + srvr_bg, // Serverlist servers_button, servers_frame, @@ -56,9 +58,6 @@ struct Imgs { input_bg: ImgId, error_frame: ImgId, - button_dark: ImgId, - button_dark_hover: ImgId, - button_dark_press: ImgId, button: ImgId, button_hover: ImgId, button_press: ImgId, @@ -93,9 +92,6 @@ impl Imgs { input_bg: load_vox("element/misc_bg/textbox.vox", ui), error_frame: load_img("element/frames/window_2.png", ui), - button_dark: load_vox("element/buttons/button_dark.vox", ui), - button_dark_hover: load_vox("element/buttons/button_dark_hover.vox", ui), - button_dark_press: load_vox("element/buttons/button_dark_press.vox", ui), button: load_vox("element/buttons/button.vox", ui), button_hover: load_vox("element/buttons/button_hover.vox", ui), button_press: load_vox("element/buttons/button_press.vox", ui), @@ -208,16 +204,18 @@ impl MainMenuUi { } const TEXT_COLOR: Color = Color::Rgba(1.0, 1.0, 1.0, 1.0); - // Username - // TODO: get a lower resolution and cleaner input_bg.png + // Username + Rectangle::fill_with([320.0, 50.0], color::rgba(0.0, 0.0, 0.0, 0.99)) + .middle_of(ui_widgets.window) + .set(self.ids.usrnm_bg, ui_widgets); Image::new(self.imgs.input_bg) .w_h(337.0, 67.0) - .middle_of(ui_widgets.window) + .middle_of(self.ids.usrnm_bg) .set(self.ids.username_bg, ui_widgets); for event in TextBox::new(&self.username) - .w_h(580.0 / 2.0, 60.0 / 2.0) + .w_h(290.0, 30.0) .mid_bottom_with_margin_on(self.ids.username_bg, 44.0 / 2.0) - .font_size(20) + .font_size(22) .font_id(self.font_opensans) .text_color(TEXT_COLOR) // transparent background @@ -252,11 +250,11 @@ impl MainMenuUi { .set(self.ids.error_frame, ui_widgets); text.mid_top_with_margin_on(self.ids.error_frame, 10.0) .set(self.ids.login_error, ui_widgets); - if Button::image(self.imgs.button_dark) + if Button::image(self.imgs.button) .w_h(100.0, 30.0) .mid_bottom_with_margin_on(self.ids.login_error_bg, 5.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) + .hover_image(self.imgs.button_hover) + .press_image(self.imgs.button_press) .label_y(Relative::Scalar(2.0)) .label("Okay") .label_font_size(10) @@ -294,11 +292,11 @@ impl MainMenuUi { if item .set( - Button::image(self.imgs.button_dark) + Button::image(self.imgs.button) .w_h(100.0, 53.0) .mid_bottom_with_margin_on(self.ids.servers_frame, 5.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) + .hover_image(self.imgs.button_hover) + .press_image(self.imgs.button_press) .label_y(Relative::Scalar(2.0)) .label(&text) .label_font_size(20) @@ -312,11 +310,11 @@ impl MainMenuUi { } } - if Button::image(self.imgs.button_dark) + if Button::image(self.imgs.button) .w_h(200.0, 53.0) .mid_bottom_with_margin_on(self.ids.servers_frame, 5.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) + .hover_image(self.imgs.button_hover) + .press_image(self.imgs.button_press) .label_y(Relative::Scalar(2.0)) .label("Close") .label_font_size(20) @@ -328,14 +326,17 @@ impl MainMenuUi { }; } // Server address + Rectangle::fill_with([320.0, 50.0], color::rgba(0.0, 0.0, 0.0, 0.98)) + .down_from(self.ids.usrnm_bg, 30.0) + .set(self.ids.srvr_bg, ui_widgets); Image::new(self.imgs.input_bg) .w_h(337.0, 67.0) - .down_from(self.ids.username_bg, 10.0) + .middle_of(self.ids.srvr_bg) .set(self.ids.address_bg, ui_widgets); for event in TextBox::new(&self.server_address) - .w_h(580.0 / 2.0, 60.0 / 2.0) + .w_h(290.0, 30.0) .mid_bottom_with_margin_on(self.ids.address_bg, 44.0 / 2.0) - .font_size(20) + .font_size(22) .font_id(self.font_opensans) .text_color(TEXT_COLOR) // transparent background @@ -356,7 +357,7 @@ impl MainMenuUi { // Change button text and remove hover/press images if a connection is in progress if let Some(start) = self.connecting { Button::image(self.imgs.button) - .w_h(258.0, 68.0) + .w_h(258.0, 55.0) .down_from(self.ids.address_bg, 20.0) .align_middle_x_of(self.ids.address_bg) .label("Connecting...") @@ -369,14 +370,14 @@ impl MainMenuUi { pulse / 4.0 + 0.75, ) }) - .label_font_size(24) + .label_font_size(22) .label_y(Relative::Scalar(5.0)) .set(self.ids.login_button, ui_widgets); } else { if Button::image(self.imgs.button) .hover_image(self.imgs.button_hover) .press_image(self.imgs.button_press) - .w_h(258.0, 68.0) + .w_h(258.0, 55.0) .down_from(self.ids.address_bg, 20.0) .align_middle_x_of(self.ids.address_bg) .label("Login") @@ -394,12 +395,12 @@ impl MainMenuUi { if Button::image(self.imgs.button) .hover_image(self.imgs.button_hover) .press_image(self.imgs.button_press) - .w_h(258.0, 68.0) + .w_h(258.0, 55.0) .down_from(self.ids.login_button, 20.0) .align_middle_x_of(self.ids.address_bg) .label("Singleplayer") .label_color(TEXT_COLOR) - .label_font_size(24) + .label_font_size(22) .label_y(Relative::Scalar(5.0)) .label_x(Relative::Scalar(2.0)) .set(self.ids.singleplayer_button, ui_widgets) @@ -409,7 +410,7 @@ impl MainMenuUi { } // Quit if Button::image(self.imgs.button) - .w_h(203.0, 53.0) + .w_h(190.0, 40.0) .bottom_left_with_margins_on(ui_widgets.window, 60.0, 30.0) .hover_image(self.imgs.button_hover) .press_image(self.imgs.button_press) @@ -424,7 +425,7 @@ impl MainMenuUi { }; // Settings if Button::image(self.imgs.button) - .w_h(203.0, 53.0) + .w_h(190.0, 40.0) .up_from(self.ids.quit_button, 8.0) .hover_image(self.imgs.button_hover) .press_image(self.imgs.button_press) @@ -437,7 +438,7 @@ impl MainMenuUi { {}; // Servers if Button::image(self.imgs.button) - .w_h(203.0, 53.0) + .w_h(190.0, 40.0) .up_from(self.ids.settings_button, 8.0) .hover_image(self.imgs.button_hover) .press_image(self.imgs.button_press) From 5bfd805c12dbdb28edc6c0be8f3ed8fee4a81226 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Fri, 3 May 2019 13:21:44 +0200 Subject: [PATCH 25/45] textbox visuals Former-commit-id: 8a929c46ebffea8c781817bd4535bf638e605fcb --- assets/voxygen | 2 +- voxygen/src/menu/main/ui.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/voxygen b/assets/voxygen index d887de6c9b..225805da11 160000 --- a/assets/voxygen +++ b/assets/voxygen @@ -1 +1 @@ -Subproject commit d887de6c9bbe1a770be06a1a4abb6be5fa35f3d2 +Subproject commit 225805da11d330f759c0767695d03b81f0c850ae diff --git a/voxygen/src/menu/main/ui.rs b/voxygen/src/menu/main/ui.rs index 1ffd13d461..ee58b1aea3 100644 --- a/voxygen/src/menu/main/ui.rs +++ b/voxygen/src/menu/main/ui.rs @@ -205,7 +205,7 @@ impl MainMenuUi { const TEXT_COLOR: Color = Color::Rgba(1.0, 1.0, 1.0, 1.0); // Username - Rectangle::fill_with([320.0, 50.0], color::rgba(0.0, 0.0, 0.0, 0.99)) + Rectangle::fill_with([320.0, 50.0], color::rgba(0.0, 0.0, 0.0, 0.97)) .middle_of(ui_widgets.window) .set(self.ids.usrnm_bg, ui_widgets); Image::new(self.imgs.input_bg) @@ -326,7 +326,7 @@ impl MainMenuUi { }; } // Server address - Rectangle::fill_with([320.0, 50.0], color::rgba(0.0, 0.0, 0.0, 0.98)) + Rectangle::fill_with([320.0, 50.0], color::rgba(0.0, 0.0, 0.0, 0.97)) .down_from(self.ids.usrnm_bg, 30.0) .set(self.ids.srvr_bg, ui_widgets); Image::new(self.imgs.input_bg) From 1f1cba30f4397448df1814622d65ce9d86d1554e Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Fri, 3 May 2019 13:25:58 +0200 Subject: [PATCH 26/45] asset update Former-commit-id: 41f7c22d846a50791899519ceea63bdd41ad4c57 --- assets/voxygen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/voxygen b/assets/voxygen index 225805da11..bcf9a93d20 160000 --- a/assets/voxygen +++ b/assets/voxygen @@ -1 +1 @@ -Subproject commit 225805da11d330f759c0767695d03b81f0c850ae +Subproject commit bcf9a93d2061c981fa9ecb13e2f8a8d51524d045 From 1c7fecf19e7439086fb94e4c5dd361518e26749c Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Mon, 29 Apr 2019 00:01:57 +0200 Subject: [PATCH 27/45] Map Window, Settings Window Former-commit-id: a94f57941d95cc271a5642e54af7e6ddf373cd18 --- voxygen/src/hud/mod.rs | 38 +++++++++++++------------------------- 1 file changed, 13 insertions(+), 25 deletions(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index d5271f0ca7..1c9b2934de 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -673,31 +673,19 @@ impl Hud { Image::new(self.imgs.mmap_frame_closed) .w_h(100.0 * 2.0, 11.0 * 2.0) .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) - .set(self.ids.mmap_frame, ui_widgets); - }; - - if Button::image(if self.mmap_open { - self.imgs.mmap_open - } else { - self.imgs.mmap_closed - }) - .w_h(100.0 * 0.2, 100.0 * 0.2) - .hover_image(if self.mmap_open { - self.imgs.mmap_open_hover - } else { - self.imgs.mmap_closed_hover - }) - .press_image(if self.mmap_open { - self.imgs.mmap_open_press - } else { - self.imgs.mmap_closed_press - }) - .top_right_with_margins_on(self.ids.mmap_frame, 0.0, 0.0) - .set(self.ids.mmap_button, ui_widgets) - .was_clicked() - { - self.mmap_open = !self.mmap_open; - }; + .set(self.ids.mmap_frame, ui_widgets); + }; + + if Button::image(if self.mmap_open {self.imgs.mmap_open} else {self.imgs.mmap_closed}) + .w_h(100.0 * 0.2, 100.0 * 0.2) + .hover_image(if self.mmap_open {self.imgs.mmap_open_hover} else {self.imgs.mmap_closed_hover}) + .press_image(if self.mmap_open {self.imgs.mmap_open_press} else {self.imgs.mmap_closed_press}) + .top_right_with_margins_on(self.ids.mmap_frame, 0.0, 0.0) + .set(self.ids.mmap_button, ui_widgets) + .was_clicked() + { + self.mmap_open = !self.mmap_open; + }; // Title // Make it display the actual location From 85242858483fd70621d28655d391799f14ecc16a Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Mon, 29 Apr 2019 00:01:57 +0200 Subject: [PATCH 28/45] Map Window, Settings Window Former-commit-id: e01861cab1a42540a8b92db46debf95ede3978aa --- voxygen/src/hud/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 1c9b2934de..1491e6b959 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -1047,9 +1047,11 @@ impl Hud { // 0 Settings if let Windows::Settings = self.open_windows { - // Frame Alignment + // Alignment Rectangle::fill_with([824.0, 488.0], color::TRANSPARENT) .middle_of(ui_widgets.window) + .scroll_kids() + .scroll_kids_vertically() .set(self.ids.settings_bg, ui_widgets); // Frame Image::new(self.imgs.settings_frame_l) From dc2f32d434fd02e0c09f43d84f5bf6dc5f108039 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Mon, 29 Apr 2019 20:13:22 +0200 Subject: [PATCH 29/45] settings window Former-commit-id: 41d85bdc41507bb8c26e5cda2db3135200db7be5 --- voxygen/src/hud/mod.rs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 1491e6b959..82d21fe9cf 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -1047,18 +1047,20 @@ impl Hud { // 0 Settings if let Windows::Settings = self.open_windows { - // Alignment + // Frame Alignment Rectangle::fill_with([824.0, 488.0], color::TRANSPARENT) - .middle_of(ui_widgets.window) - .scroll_kids() - .scroll_kids_vertically() + .middle_of(ui_widgets.window) .set(self.ids.settings_bg, ui_widgets); // Frame Image::new(self.imgs.settings_frame_l) .top_left_with_margins_on(self.ids.settings_bg, 0.0, 0.0) .w_h(412.0, 488.0) .set(self.ids.settings_l, ui_widgets); +<<<<<<< HEAD Image::new(self.imgs.settings_frame_r) +======= + Image::new(self.imgs.settings_frame_r) +>>>>>>> settings window .right_from(self.ids.settings_l, 0.0) .parent(self.ids.settings_bg) .w_h(412.0, 488.0) From cfba22c005fc4639d249bed0b080773adea1b881 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Mon, 29 Apr 2019 00:01:57 +0200 Subject: [PATCH 30/45] Map Window, Settings Window Former-commit-id: 337f21010b8c4250a1eaa7ddfbe8d5f2ea1ac412 --- voxygen/src/hud/mod.rs | 45 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 43 insertions(+), 2 deletions(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 82d21fe9cf..f42f0d1b9d 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -1047,15 +1047,18 @@ impl Hud { // 0 Settings if let Windows::Settings = self.open_windows { - // Frame Alignment + // Alignment Rectangle::fill_with([824.0, 488.0], color::TRANSPARENT) - .middle_of(ui_widgets.window) + .middle_of(ui_widgets.window) + .scroll_kids() + .scroll_kids_vertically() .set(self.ids.settings_bg, ui_widgets); // Frame Image::new(self.imgs.settings_frame_l) .top_left_with_margins_on(self.ids.settings_bg, 0.0, 0.0) .w_h(412.0, 488.0) .set(self.ids.settings_l, ui_widgets); +<<<<<<< HEAD <<<<<<< HEAD Image::new(self.imgs.settings_frame_r) ======= @@ -1071,6 +1074,12 @@ impl Hud { .scroll_kids() .scroll_kids_vertically() .set(self.ids.settings_content, ui_widgets); +======= + Image::new(self.imgs.settings_frame_r) + .top_right_with_margins_on(self.ids.settings_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.settings_r, ui_widgets); +>>>>>>> Map Window, Settings Window // X-Button if Button::image(self.imgs.close_button) .w_h(28.0, 28.0) @@ -1092,9 +1101,15 @@ impl Hud { .set(self.ids.settings_title, ui_widgets); // Icon //Image::new(self.imgs.settings_icon) +<<<<<<< HEAD //.w_h(224.0 / 3.0, 224.0 / 3.0) //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) //.set(self.ids.settings_icon, ui_widgets); +======= + //.w_h(224.0 / 3.0, 224.0 / 3.0) + //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) + //.set(self.ids.settings_icon, ui_widgets); +>>>>>>> Map Window, Settings Window // TODO: Find out if we can remove this // 1 Interface//////////////////////////// @@ -1568,7 +1583,11 @@ impl Hud { // 2 Map if self.map_open { +<<<<<<< HEAD // BG +======= + // BG +>>>>>>> Map Window, Settings Window Rectangle::fill_with([824.0, 976.0], color::TRANSPARENT) .mid_top_with_margin_on(ui_widgets.window, 15.0) .scroll_kids() @@ -1580,6 +1599,7 @@ impl Hud { .w_h(412.0, 488.0) .set(self.ids.map_frame_l, ui_widgets); Image::new(self.imgs.map_frame_r) +<<<<<<< HEAD .right_from(self.ids.map_frame_l, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_r, ui_widgets); @@ -1591,6 +1611,20 @@ impl Hud { .down_from(self.ids.map_frame_l, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_bl, ui_widgets); +======= + .top_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_r, ui_widgets); + Image::new(self.imgs.map_frame_br) + .bottom_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_br, ui_widgets); + Image::new(self.imgs.map_frame_bl) + .bottom_left_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_bl, ui_widgets); + +>>>>>>> Map Window, Settings Window // Icon Image::new(self.imgs.map_icon) @@ -1611,10 +1645,17 @@ impl Hud { } // Title //Text::new("Map") +<<<<<<< HEAD //.mid_top_with_margin_on(self.ids.map_bg, -7.0) //.font_size(14) //.color(TEXT_COLOR) //.set(self.ids.map_title, ui_widgets); +======= + //.mid_top_with_margin_on(self.ids.map_bg, -7.0) + //.font_size(14) + //.color(TEXT_COLOR) + //.set(self.ids.map_title, ui_widgets); +>>>>>>> Map Window, Settings Window } // ESC-MENU From c97e446ba42d8940faca731fe2b8a0cec4576d34 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Mon, 29 Apr 2019 20:13:22 +0200 Subject: [PATCH 31/45] settings window Former-commit-id: a7a72ab6b1db411fcfcf3e03d1db4fce56370af3 --- voxygen/src/hud/mod.rs | 101 ++++++++++++++++++++++++++++++++++++++--- 1 file changed, 94 insertions(+), 7 deletions(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index f42f0d1b9d..22fee0f05b 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -1047,11 +1047,9 @@ impl Hud { // 0 Settings if let Windows::Settings = self.open_windows { - // Alignment + // Frame Alignment Rectangle::fill_with([824.0, 488.0], color::TRANSPARENT) - .middle_of(ui_widgets.window) - .scroll_kids() - .scroll_kids_vertically() + .middle_of(ui_widgets.window) .set(self.ids.settings_bg, ui_widgets); // Frame Image::new(self.imgs.settings_frame_l) @@ -1076,10 +1074,20 @@ impl Hud { .set(self.ids.settings_content, ui_widgets); ======= Image::new(self.imgs.settings_frame_r) - .top_right_with_margins_on(self.ids.settings_bg, 0.0, 0.0) + .right_from(self.ids.settings_l, 0.0) + .parent(self.ids.settings_bg) .w_h(412.0, 488.0) .set(self.ids.settings_r, ui_widgets); +<<<<<<< HEAD >>>>>>> Map Window, Settings Window +======= + // Content Alignment + Rectangle::fill_with([189.0*4.0, 97.0*4.0], color::TRANSPARENT) + .top_right_with_margins_on(self.ids.settings_r, 21.0*4.0, 4.0*4.0) + .scroll_kids() + .scroll_kids_vertically() + .set(self.ids.settings_content, ui_widgets); +>>>>>>> settings window // X-Button if Button::image(self.imgs.close_button) .w_h(28.0, 28.0) @@ -1115,6 +1123,7 @@ impl Hud { // 1 Interface//////////////////////////// if Button::image(if let SettingsTab::Interface = self.settings_tab { self.imgs.settings_button_pressed +<<<<<<< HEAD } else { self.imgs.settings_button }) @@ -1130,6 +1139,23 @@ impl Hud { self.imgs.settings_button_press }) .top_left_with_margins_on(self.ids.settings_l, 8.0 * 4.0, 2.0 * 4.0) +======= + } else { + self.imgs.settings_button + }) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Interface = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Interface = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .top_left_with_margins_on(self.ids.settings_l, 8.0*4.0, 2.0*4.0) +>>>>>>> settings window .label("Interface") .label_font_size(14) .label_color(TEXT_COLOR) @@ -1192,11 +1218,16 @@ impl Hud { } // 2 Gameplay//////////////// +<<<<<<< HEAD if Button::image(if let SettingsTab::Gameplay = self.settings_tab { +======= + if Button::image(if let SettingsTab::Gameplay = self.settings_tab { +>>>>>>> settings window self.imgs.settings_button_pressed } else { self.imgs.settings_button }) +<<<<<<< HEAD .w_h(31.0 * 4.0, 12.0 * 4.0) .hover_image(if let SettingsTab::Gameplay = self.settings_tab { self.imgs.settings_button_pressed @@ -1208,6 +1239,19 @@ impl Hud { } else { self.imgs.settings_button_press }) +======= + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Gameplay = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Gameplay = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) +>>>>>>> settings window .right_from(self.ids.interface, 0.0) .label("Gameplay") .label_font_size(14) @@ -1224,7 +1268,11 @@ impl Hud { } else { self.imgs.settings_button }) +<<<<<<< HEAD .w_h(31.0 * 4.0, 12.0 * 4.0) +======= + .w_h(31.0*4.0, 12.0*4.0) +>>>>>>> settings window .hover_image(if let SettingsTab::Controls = self.settings_tab { self.imgs.settings_button_pressed } else { @@ -1246,11 +1294,16 @@ impl Hud { } // 4 Video//////////////////////////////// +<<<<<<< HEAD if Button::image(if let SettingsTab::Video = self.settings_tab { +======= + if Button::image(if let SettingsTab::Video = self.settings_tab { +>>>>>>> settings window self.imgs.settings_button_pressed } else { self.imgs.settings_button }) +<<<<<<< HEAD .w_h(31.0 * 4.0, 12.0 * 4.0) .hover_image(if let SettingsTab::Video = self.settings_tab { self.imgs.settings_button_pressed @@ -1262,6 +1315,19 @@ impl Hud { } else { self.imgs.settings_button_press }) +======= + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Video = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Video = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) +>>>>>>> settings window .right_from(self.ids.controls, 0.0) .label("Video") .parent(self.ids.settings_r) @@ -1276,6 +1342,7 @@ impl Hud { // 5 Sound/////////////////////////////// if Button::image(if let SettingsTab::Sound = self.settings_tab { self.imgs.settings_button_pressed +<<<<<<< HEAD } else { self.imgs.settings_button }) @@ -1290,6 +1357,22 @@ impl Hud { } else { self.imgs.settings_button_press }) +======= + } else { + self.imgs.settings_button + }) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Sound = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Sound = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) +>>>>>>> settings window .right_from(self.ids.video, 0.0) .parent(self.ids.settings_r) .label("Sound") @@ -1599,6 +1682,7 @@ impl Hud { .w_h(412.0, 488.0) .set(self.ids.map_frame_l, ui_widgets); Image::new(self.imgs.map_frame_r) +<<<<<<< HEAD <<<<<<< HEAD .right_from(self.ids.map_frame_l, 0.0) .w_h(412.0, 488.0) @@ -1613,14 +1697,17 @@ impl Hud { .set(self.ids.map_frame_bl, ui_widgets); ======= .top_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) +======= + .right_from(self.ids.map_frame_l, 0.0) +>>>>>>> settings window .w_h(412.0, 488.0) .set(self.ids.map_frame_r, ui_widgets); Image::new(self.imgs.map_frame_br) - .bottom_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .down_from(self.ids.map_frame_r, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_br, ui_widgets); Image::new(self.imgs.map_frame_bl) - .bottom_left_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .down_from(self.ids.map_frame_l, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_bl, ui_widgets); From 8eb8a6701be7c0b4e22504466030050ba445e5b1 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Mon, 29 Apr 2019 20:51:26 +0200 Subject: [PATCH 32/45] settings window Former-commit-id: 3cefa7cc816206fd777f4a94a9b9a1689ed9aa03 --- voxygen/src/hud/mod.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 22fee0f05b..cd9f7e32db 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -1082,7 +1082,7 @@ impl Hud { >>>>>>> Map Window, Settings Window ======= // Content Alignment - Rectangle::fill_with([189.0*4.0, 97.0*4.0], color::TRANSPARENT) + Rectangle::fill_with([198.0*4.0, 97.0*4.0], color::TRANSPARENT) .top_right_with_margins_on(self.ids.settings_r, 21.0*4.0, 4.0*4.0) .scroll_kids() .scroll_kids_vertically() @@ -1117,8 +1117,12 @@ impl Hud { //.w_h(224.0 / 3.0, 224.0 / 3.0) //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) //.set(self.ids.settings_icon, ui_widgets); +<<<<<<< HEAD >>>>>>> Map Window, Settings Window // TODO: Find out if we can remove this +======= + // TODO: Find out if we can remove this +>>>>>>> settings window // 1 Interface//////////////////////////// if Button::image(if let SettingsTab::Interface = self.settings_tab { From 799f31a92d2f5bf39d5454a07c747372c65c003d Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Tue, 30 Apr 2019 13:49:29 +0200 Subject: [PATCH 33/45] rebase Former-commit-id: f44030800c380054af2fef4532bbe93731f128e4 --- voxygen/src/hud/mod.rs | 163 ++++------------------------------------- 1 file changed, 15 insertions(+), 148 deletions(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index cd9f7e32db..7bdb483e45 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -176,6 +176,7 @@ pub(self) struct Imgs { inv_slot: ImgId, // Buttons + mmap_closed: ImgId, mmap_closed_hover: ImgId, mmap_closed_press: ImgId, @@ -220,7 +221,7 @@ pub(self) struct Imgs { button_dark_press: ImgId, // MiniMap - mmap_frame: ImgId, + mmap_frame: ImgId, mmap_frame_closed: ImgId, // SkillBar Module @@ -340,7 +341,7 @@ impl Imgs { mmap_open: load_vox("element/buttons/button_mmap_open.vox", ui), mmap_open_hover: load_vox("element/buttons/button_mmap_open_hover.vox", ui), mmap_open_press: load_vox("element/buttons/button_mmap_open_press.vox", ui), - + settings: load_vox("element/buttons/settings.vox", ui), settings_hover: load_vox("element/buttons/settings_hover.vox", ui), settings_press: load_vox("element/buttons/settings_press.vox", ui), @@ -383,7 +384,7 @@ impl Imgs { button_dark_press: load_img("element/buttons/button_dark_press.png", ui), // MiniMap - mmap_frame: load_vox("element/frames/mmap.vox", ui), + mmap_frame: load_vox("element/frames/mmap.vox", ui), mmap_frame_closed: load_vox("element/frames/mmap_closed.vox", ui), // Skillbar Module @@ -658,19 +659,20 @@ impl Hud { }; } - // Minimap + // Minimap - if self.mmap_open { + if self.mmap_open { Image::new(self.imgs.mmap_frame) - .w_h(100.0 * 2.0, 100.0 * 2.0) - .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) - .set(self.ids.mmap_frame, ui_widgets); + .w_h(100.0 * 2.0, 100.0 * 2.0) + .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) + .set(self.ids.mmap_frame, ui_widgets); - Rectangle::fill_with([92.0 * 2.0, 82.0 * 2.0], color::TRANSPARENT) - .mid_top_with_margin_on(self.ids.mmap_frame, 13.0 * 2.0 + 2.0) - .set(self.ids.mmap_frame_bg, ui_widgets); - } else { - Image::new(self.imgs.mmap_frame_closed) + Rectangle::fill_with([92.0 * 2.0, 82.0 * 2.0], color::TRANSPARENT) + .mid_top_with_margin_on(self.ids.mmap_frame, 13.0 * 2.0 + 2.0) + .set(self.ids.mmap_frame_bg, ui_widgets); + } + else { + Image::new(self.imgs.mmap_frame_closed) .w_h(100.0 * 2.0, 11.0 * 2.0) .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) .set(self.ids.mmap_frame, ui_widgets); @@ -1056,38 +1058,17 @@ impl Hud { .top_left_with_margins_on(self.ids.settings_bg, 0.0, 0.0) .w_h(412.0, 488.0) .set(self.ids.settings_l, ui_widgets); -<<<<<<< HEAD -<<<<<<< HEAD - Image::new(self.imgs.settings_frame_r) -======= - Image::new(self.imgs.settings_frame_r) ->>>>>>> settings window - .right_from(self.ids.settings_l, 0.0) - .parent(self.ids.settings_bg) - .w_h(412.0, 488.0) - .set(self.ids.settings_r, ui_widgets); - // Content Alignment - Rectangle::fill_with([198.0 * 4.0, 97.0 * 4.0], color::TRANSPARENT) - .top_right_with_margins_on(self.ids.settings_r, 21.0 * 4.0, 4.0 * 4.0) - .scroll_kids() - .scroll_kids_vertically() - .set(self.ids.settings_content, ui_widgets); -======= Image::new(self.imgs.settings_frame_r) .right_from(self.ids.settings_l, 0.0) .parent(self.ids.settings_bg) .w_h(412.0, 488.0) .set(self.ids.settings_r, ui_widgets); -<<<<<<< HEAD ->>>>>>> Map Window, Settings Window -======= // Content Alignment Rectangle::fill_with([198.0*4.0, 97.0*4.0], color::TRANSPARENT) .top_right_with_margins_on(self.ids.settings_r, 21.0*4.0, 4.0*4.0) .scroll_kids() .scroll_kids_vertically() .set(self.ids.settings_content, ui_widgets); ->>>>>>> settings window // X-Button if Button::image(self.imgs.close_button) .w_h(28.0, 28.0) @@ -1109,41 +1090,14 @@ impl Hud { .set(self.ids.settings_title, ui_widgets); // Icon //Image::new(self.imgs.settings_icon) -<<<<<<< HEAD - //.w_h(224.0 / 3.0, 224.0 / 3.0) - //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) - //.set(self.ids.settings_icon, ui_widgets); -======= //.w_h(224.0 / 3.0, 224.0 / 3.0) //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) //.set(self.ids.settings_icon, ui_widgets); -<<<<<<< HEAD ->>>>>>> Map Window, Settings Window - // TODO: Find out if we can remove this -======= // TODO: Find out if we can remove this ->>>>>>> settings window // 1 Interface//////////////////////////// if Button::image(if let SettingsTab::Interface = self.settings_tab { self.imgs.settings_button_pressed -<<<<<<< HEAD - } else { - self.imgs.settings_button - }) - .w_h(31.0 * 4.0, 12.0 * 4.0) - .hover_image(if let SettingsTab::Interface = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_hover - }) - .press_image(if let SettingsTab::Interface = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_press - }) - .top_left_with_margins_on(self.ids.settings_l, 8.0 * 4.0, 2.0 * 4.0) -======= } else { self.imgs.settings_button }) @@ -1159,7 +1113,6 @@ impl Hud { self.imgs.settings_button_press }) .top_left_with_margins_on(self.ids.settings_l, 8.0*4.0, 2.0*4.0) ->>>>>>> settings window .label("Interface") .label_font_size(14) .label_color(TEXT_COLOR) @@ -1222,28 +1175,11 @@ impl Hud { } // 2 Gameplay//////////////// -<<<<<<< HEAD - if Button::image(if let SettingsTab::Gameplay = self.settings_tab { -======= if Button::image(if let SettingsTab::Gameplay = self.settings_tab { ->>>>>>> settings window self.imgs.settings_button_pressed } else { self.imgs.settings_button }) -<<<<<<< HEAD - .w_h(31.0 * 4.0, 12.0 * 4.0) - .hover_image(if let SettingsTab::Gameplay = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_hover - }) - .press_image(if let SettingsTab::Gameplay = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_press - }) -======= .w_h(31.0*4.0, 12.0*4.0) .hover_image(if let SettingsTab::Gameplay = self.settings_tab { self.imgs.settings_button_pressed @@ -1255,7 +1191,6 @@ impl Hud { } else { self.imgs.settings_button_press }) ->>>>>>> settings window .right_from(self.ids.interface, 0.0) .label("Gameplay") .label_font_size(14) @@ -1272,11 +1207,7 @@ impl Hud { } else { self.imgs.settings_button }) -<<<<<<< HEAD - .w_h(31.0 * 4.0, 12.0 * 4.0) -======= .w_h(31.0*4.0, 12.0*4.0) ->>>>>>> settings window .hover_image(if let SettingsTab::Controls = self.settings_tab { self.imgs.settings_button_pressed } else { @@ -1298,28 +1229,11 @@ impl Hud { } // 4 Video//////////////////////////////// -<<<<<<< HEAD - if Button::image(if let SettingsTab::Video = self.settings_tab { -======= if Button::image(if let SettingsTab::Video = self.settings_tab { ->>>>>>> settings window self.imgs.settings_button_pressed } else { self.imgs.settings_button }) -<<<<<<< HEAD - .w_h(31.0 * 4.0, 12.0 * 4.0) - .hover_image(if let SettingsTab::Video = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_hover - }) - .press_image(if let SettingsTab::Video = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_press - }) -======= .w_h(31.0*4.0, 12.0*4.0) .hover_image(if let SettingsTab::Video = self.settings_tab { self.imgs.settings_button_pressed @@ -1331,7 +1245,6 @@ impl Hud { } else { self.imgs.settings_button_press }) ->>>>>>> settings window .right_from(self.ids.controls, 0.0) .label("Video") .parent(self.ids.settings_r) @@ -1346,22 +1259,6 @@ impl Hud { // 5 Sound/////////////////////////////// if Button::image(if let SettingsTab::Sound = self.settings_tab { self.imgs.settings_button_pressed -<<<<<<< HEAD - } else { - self.imgs.settings_button - }) - .w_h(31.0 * 4.0, 12.0 * 4.0) - .hover_image(if let SettingsTab::Sound = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_hover - }) - .press_image(if let SettingsTab::Sound = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_press - }) -======= } else { self.imgs.settings_button }) @@ -1376,7 +1273,6 @@ impl Hud { } else { self.imgs.settings_button_press }) ->>>>>>> settings window .right_from(self.ids.video, 0.0) .parent(self.ids.settings_r) .label("Sound") @@ -1670,11 +1566,7 @@ impl Hud { // 2 Map if self.map_open { -<<<<<<< HEAD - // BG -======= // BG ->>>>>>> Map Window, Settings Window Rectangle::fill_with([824.0, 976.0], color::TRANSPARENT) .mid_top_with_margin_on(ui_widgets.window, 15.0) .scroll_kids() @@ -1686,8 +1578,6 @@ impl Hud { .w_h(412.0, 488.0) .set(self.ids.map_frame_l, ui_widgets); Image::new(self.imgs.map_frame_r) -<<<<<<< HEAD -<<<<<<< HEAD .right_from(self.ids.map_frame_l, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_r, ui_widgets); @@ -1695,27 +1585,11 @@ impl Hud { .down_from(self.ids.map_frame_r, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_br, ui_widgets); - Image::new(self.imgs.map_frame_bl) - .down_from(self.ids.map_frame_l, 0.0) - .w_h(412.0, 488.0) - .set(self.ids.map_frame_bl, ui_widgets); -======= - .top_right_with_margins_on(self.ids.map_bg, 0.0, 0.0) -======= - .right_from(self.ids.map_frame_l, 0.0) ->>>>>>> settings window - .w_h(412.0, 488.0) - .set(self.ids.map_frame_r, ui_widgets); - Image::new(self.imgs.map_frame_br) - .down_from(self.ids.map_frame_r, 0.0) - .w_h(412.0, 488.0) - .set(self.ids.map_frame_br, ui_widgets); Image::new(self.imgs.map_frame_bl) .down_from(self.ids.map_frame_l, 0.0) .w_h(412.0, 488.0) .set(self.ids.map_frame_bl, ui_widgets); ->>>>>>> Map Window, Settings Window // Icon Image::new(self.imgs.map_icon) @@ -1736,17 +1610,10 @@ impl Hud { } // Title //Text::new("Map") -<<<<<<< HEAD - //.mid_top_with_margin_on(self.ids.map_bg, -7.0) - //.font_size(14) - //.color(TEXT_COLOR) - //.set(self.ids.map_title, ui_widgets); -======= //.mid_top_with_margin_on(self.ids.map_bg, -7.0) //.font_size(14) //.color(TEXT_COLOR) //.set(self.ids.map_title, ui_widgets); ->>>>>>> Map Window, Settings Window } // ESC-MENU From 4898521e1bb83d32a9964305b202d1bc5a7213dc Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Wed, 1 May 2019 15:50:41 +0200 Subject: [PATCH 34/45] Controls Window Text Former-commit-id: 7f33117748c84644e9f6d7833b5ff44e035e7d76 --- voxygen/src/hud/mod.rs | 78 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 77 insertions(+), 1 deletion(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 7bdb483e45..9c4b6ac149 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -102,6 +102,8 @@ widget_ids! { settings_title, settings_r, settings_l, + settings_scrollbar, + controls_text, //Contents button_help, button_help2, @@ -1069,6 +1071,10 @@ impl Hud { .scroll_kids() .scroll_kids_vertically() .set(self.ids.settings_content, ui_widgets); + Scrollbar::y_axis(self.ids.settings_content) + .thickness(5.0) + .rgba(0.33, 0.33, 0.33, 1.0) + .set(self.ids.settings_scrollbar, ui_widgets); // X-Button if Button::image(self.imgs.close_button) .w_h(28.0, 28.0) @@ -1227,7 +1233,75 @@ impl Hud { { self.settings_tab = SettingsTab::Controls; } + if let SettingsTab::Controls = self.settings_tab { + Text::new( + "Free Cursor: TAB \n\ + Toggle Help Window: F1 \n\ + Toggle Interface: F2 \n\ + Toggle FPS and Debug Info: F3 \n\ + \n\ + \n\ + Move Forward: W \n\ + Move Left : A \n\ + Move Right: S \n\ + Move Backwards: D \n\ + \n\ + Jump: Space \n\ + \n\ + Dodge: ?? \n\ + \n\ + Auto Walk: ?? \n\ + \n\ + Sheathe/Draw Weapons: Y \n\ + \n\ + Put on/Remove Helmet: ?? [Has a Cast time of 0,5s] \n\ + \n\ + \n\ + Basic Attack: L-Click \n\ + Secondary Attack/Block/Aim: R-Click \n\ + \n\ + \n\ + Skillbar Slot 1: 1 \n\ + Skillbar Slot 2: 2 \n\ + Skillbar Slot 3: 3 \n\ + Skillbar Slot 4: 4 \n\ + Skillbar Slot 5: 5 \n\ + Skillbar Slot 6: 6 \n\ + Skillbar Slot 7: 7 \n\ + Skillbar Slot 8: 8 \n\ + Skillbar Slot 9: 9 \n\ + Skillbar Slot 10: 0 \n\ + \n\ + \n\ + Pause Menu: ESC \n\ + Settings: N \n\ + Social: O \n\ + Map: M \n\ + Spellbook: P \n\ + Character: C \n\ + Questlog L \n\ + Bag: B \n\ + \n\ + \n\ + \n\ + Activate Chat & Input/Send Message: Enter \n\ + Scroll Chat: Mousewheel on Chat-Window \n\ + \n\ + \n\ + Chat commands: \n\ + \n\ + /alias [Name] - Change your Chat Name \n\ + /tp [Name] - Teleports you to another player + ") + .color(TEXT_COLOR) + .top_left_with_margins_on(self.ids.settings_content, 5.0, 5.0) + .font_id(self.font_opensans) + .font_size(18) + .set(self.ids.controls_text, ui_widgets); + + + } // 4 Video//////////////////////////////// if Button::image(if let SettingsTab::Video = self.settings_tab { self.imgs.settings_button_pressed @@ -1658,7 +1732,9 @@ impl Hud { .set(self.ids.menu_button_2, ui_widgets) .was_clicked() { - //self.menu_open = false; + self.menu_open = false; + self.settings_tab = SettingsTab::Controls; + self.open_windows = Windows::Settings; }; // Servers if Button::image(self.imgs.button_dark) From 4ffde7209799be9341714352664cccd7a75851a8 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Wed, 1 May 2019 23:20:31 +0200 Subject: [PATCH 35/45] Controls Window Contents Former-commit-id: f3317475e6a06c63ae0a648b29168474b9cf7544 --- voxygen/src/hud/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 9c4b6ac149..7309a55cd7 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -998,10 +998,10 @@ impl Hud { // X-button if Button::image(self.imgs.close_button) - .w_h(4.0 * 4.0, 4.0 * 4.0) + .w_h(28.0, 28.0) .hover_image(self.imgs.close_button_hover) .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.bag_contents, 4.5, 4.5) + .top_right_with_margins_on(self.ids.bag_contents, 0.0, 0.0) .set(self.ids.bag_close, ui_widgets) .was_clicked() { From aa253376632ec32c0599a7405e21ac0187c763c6 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Wed, 1 May 2019 23:47:09 +0200 Subject: [PATCH 36/45] rebase Former-commit-id: 214203f0d1ccb4e6457395e84b01e4d41467ecdb --- voxygen/src/hud/mod.rs | 82 +- voxygen/src/hud/mod.rs~settings window | 1899 ++++++++++++++++++++++++ 2 files changed, 1902 insertions(+), 79 deletions(-) create mode 100644 voxygen/src/hud/mod.rs~settings window diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 7309a55cd7..7bdb483e45 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -102,8 +102,6 @@ widget_ids! { settings_title, settings_r, settings_l, - settings_scrollbar, - controls_text, //Contents button_help, button_help2, @@ -998,10 +996,10 @@ impl Hud { // X-button if Button::image(self.imgs.close_button) - .w_h(28.0, 28.0) + .w_h(4.0 * 4.0, 4.0 * 4.0) .hover_image(self.imgs.close_button_hover) .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.bag_contents, 0.0, 0.0) + .top_right_with_margins_on(self.ids.bag_contents, 4.5, 4.5) .set(self.ids.bag_close, ui_widgets) .was_clicked() { @@ -1071,10 +1069,6 @@ impl Hud { .scroll_kids() .scroll_kids_vertically() .set(self.ids.settings_content, ui_widgets); - Scrollbar::y_axis(self.ids.settings_content) - .thickness(5.0) - .rgba(0.33, 0.33, 0.33, 1.0) - .set(self.ids.settings_scrollbar, ui_widgets); // X-Button if Button::image(self.imgs.close_button) .w_h(28.0, 28.0) @@ -1233,75 +1227,7 @@ impl Hud { { self.settings_tab = SettingsTab::Controls; } - if let SettingsTab::Controls = self.settings_tab { - Text::new( - "Free Cursor: TAB \n\ - Toggle Help Window: F1 \n\ - Toggle Interface: F2 \n\ - Toggle FPS and Debug Info: F3 \n\ - \n\ - \n\ - Move Forward: W \n\ - Move Left : A \n\ - Move Right: S \n\ - Move Backwards: D \n\ - \n\ - Jump: Space \n\ - \n\ - Dodge: ?? \n\ - \n\ - Auto Walk: ?? \n\ - \n\ - Sheathe/Draw Weapons: Y \n\ - \n\ - Put on/Remove Helmet: ?? [Has a Cast time of 0,5s] \n\ - \n\ - \n\ - Basic Attack: L-Click \n\ - Secondary Attack/Block/Aim: R-Click \n\ - \n\ - \n\ - Skillbar Slot 1: 1 \n\ - Skillbar Slot 2: 2 \n\ - Skillbar Slot 3: 3 \n\ - Skillbar Slot 4: 4 \n\ - Skillbar Slot 5: 5 \n\ - Skillbar Slot 6: 6 \n\ - Skillbar Slot 7: 7 \n\ - Skillbar Slot 8: 8 \n\ - Skillbar Slot 9: 9 \n\ - Skillbar Slot 10: 0 \n\ - \n\ - \n\ - Pause Menu: ESC \n\ - Settings: N \n\ - Social: O \n\ - Map: M \n\ - Spellbook: P \n\ - Character: C \n\ - Questlog L \n\ - Bag: B \n\ - \n\ - \n\ - \n\ - Activate Chat & Input/Send Message: Enter \n\ - Scroll Chat: Mousewheel on Chat-Window \n\ - \n\ - \n\ - Chat commands: \n\ - \n\ - /alias [Name] - Change your Chat Name \n\ - /tp [Name] - Teleports you to another player - ") - .color(TEXT_COLOR) - .top_left_with_margins_on(self.ids.settings_content, 5.0, 5.0) - .font_id(self.font_opensans) - .font_size(18) - .set(self.ids.controls_text, ui_widgets); - - - } // 4 Video//////////////////////////////// if Button::image(if let SettingsTab::Video = self.settings_tab { self.imgs.settings_button_pressed @@ -1732,9 +1658,7 @@ impl Hud { .set(self.ids.menu_button_2, ui_widgets) .was_clicked() { - self.menu_open = false; - self.settings_tab = SettingsTab::Controls; - self.open_windows = Windows::Settings; + //self.menu_open = false; }; // Servers if Button::image(self.imgs.button_dark) diff --git a/voxygen/src/hud/mod.rs~settings window b/voxygen/src/hud/mod.rs~settings window new file mode 100644 index 0000000000..7bdb483e45 --- /dev/null +++ b/voxygen/src/hud/mod.rs~settings window @@ -0,0 +1,1899 @@ +mod chat; + +use crate::{ + render::Renderer, + ui::{self, ScaleMode, ToggleButton, Ui}, + window::{Event as WinEvent, Key, Window}, + GlobalState, +}; +use common::{assets, figure::Segment}; + +use conrod_core::{ + color, + image::Id as ImgId, + text::font::Id as FontId, + widget::{Button, Image, Rectangle, Scrollbar, Text}, + widget_ids, Color, Colorable, Labelable, Positionable, Sizeable, Widget, +}; + +widget_ids! { + struct Ids { + // Test + bag_space_add, + inventorytest_button, + inventorytest_button_label, + // Debug + debug_bg, + debug_button, + debug_button_label, + fps_counter, + // Game Version + version, + + // Bag and Inventory + bag, + bag_contents, + bag_close, + bag_map_open, + inv_alignment, + inv_grid_1, + inv_grid_2, + inv_scrollbar, + inv_slot_0, + inv_slot[], + + // Buttons + settings_button, + social_button, + map_button, + spellbook_button, + character_button, + qlog_button, + social_button_bg, + spellbook_button_bg, + character_button_bg, + qlog_button_bg, + bag_text, + mmap_button, + //help + help, + help_bg, + //ESC-Menu + esc_bg, + fireplace, + menu_button_1, + menu_button_2, + menu_button_3, + menu_button_4, + menu_button_5, + //Mini-Map + mmap_frame, + mmap_frame_bg, + mmap_location, + //Action-Bar + xp_bar, + l_click, + r_click, + health_bar, + mana_bar, + sb_grid_l, + sb_grid_r, + sb_grid_bg_l, + sb_grid_bg_r, + xp_bar_progress, + health_bar_color, + mana_bar_color, + // Level Display + level_text, + next_level_text, + //Window Frames + window_frame_0, + window_frame_1, + window_frame_2, + window_frame_3, + window_frame_4, + window_frame_5, + //0 Settings-Window + settings_bg, + settings_content, + settings_icon, + settings_button_mo, + settings_close, + settings_title, + settings_r, + settings_l, + //Contents + button_help, + button_help2, + show_help_label, + interface, + video, + sound, + gameplay, + controls, + rectangle, + //1 Social + social_frame, + social_bg, + social_icon, + social_close, + social_title, + //2 Map + map_frame, + map_bg, + map_icon, + map_close, + map_title, + map_frame_l, + map_frame_r, + map_frame_bl, + map_frame_br, + //3 Spellbook + spellbook_frame, + spellbook_bg, + spellbook_icon, + spellbook_close, + spellbook_title, + //4 Charwindow + charwindow_frame, + charwindow, + charwindow_bg, + charwindow_icon, + charwindow_close, + charwindow_title, + charwindow_tab_bg, + charwindow_tab1, + charwindow_tab1_title, + charwindow_tab1_level, + charwindow_tab1_exp, + charwindow_tab1_stats, + charwindow_tab1_statnames, + charwindow_tab1_stats_numbers, + charwindow_tab1_expbar, + charwindow_rectangle, + charwindow_exp_rectangle, + charwindow_exp_progress_rectangle, + //5 Quest-Log + questlog_frame, + questlog_bg, + questlog_icon, + questlog_close, + questlog_title, + } +} + +// TODO: make macro to mimic widget_ids! for images ids or find another solution to simplify addition of new images. +pub(self) struct Imgs { + // Bag + bag: ImgId, + bag_hover: ImgId, + bag_press: ImgId, + bag_open: ImgId, + bag_open_hover: ImgId, + bag_open_press: ImgId, + bag_contents: ImgId, + inv_grid: ImgId, + inv_slot: ImgId, + + // Buttons + + mmap_closed: ImgId, + mmap_closed_hover: ImgId, + mmap_closed_press: ImgId, + mmap_open: ImgId, + mmap_open_hover: ImgId, + mmap_open_press: ImgId, + + settings: ImgId, + settings_hover: ImgId, + settings_press: ImgId, + + social_button: ImgId, + social_hover: ImgId, + social_press: ImgId, + + map_button: ImgId, + map_hover: ImgId, + map_press: ImgId, + + spellbook_button: ImgId, + spellbook_hover: ImgId, + spellbook_press: ImgId, + + character_button: ImgId, + character_hover: ImgId, + character_press: ImgId, + + qlog_button: ImgId, + qlog_hover: ImgId, + qlog_press: ImgId, + + // Close button + close_button: ImgId, + close_button_hover: ImgId, + close_button_press: ImgId, + + // Menu + esc_bg: ImgId, + fireplace: ImgId, + button_dark: ImgId, + button_dark_hover: ImgId, + button_dark_press: ImgId, + + // MiniMap + mmap_frame: ImgId, + mmap_frame_closed: ImgId, + + // SkillBar Module + sb_grid: ImgId, + sb_grid_bg: ImgId, + l_click: ImgId, + r_click: ImgId, + mana_bar: ImgId, + health_bar: ImgId, + xp_bar: ImgId, + + //Buff Frame(s) + //buff_frame: ImgId, + //buff_frame_bg: ImgId, + //buff_frame_red: ImgId, + //buff_frame_green: ImgId, + + //Missing: Buff Frame Animation + window_frame: ImgId, + window_frame_2: ImgId, + //Settings-Window + settings_frame_r: ImgId, + settings_frame_l: ImgId, + settings_button: ImgId, + settings_button_pressed: ImgId, + settings_button_hover: ImgId, + settings_button_press: ImgId, + settings_bg: ImgId, + settings_icon: ImgId, + settings_button_mo: ImgId, + check: ImgId, + check_mo: ImgId, + check_press: ImgId, + check_checked: ImgId, + check_checked_mo: ImgId, + slider: ImgId, + slider_indicator: ImgId, + button_blank: ImgId, + button_blue_mo: ImgId, + button_blue_press: ImgId, + window_bg: ImgId, + // Social-Window + social_bg: ImgId, + social_icon: ImgId, + // Map-Window + map_bg: ImgId, + map_icon: ImgId, + map_frame_l: ImgId, + map_frame_r: ImgId, + map_frame_bl: ImgId, + map_frame_br: ImgId, + // Spell Book Window + spellbook_bg: ImgId, + spellbook_icon: ImgId, + // Char Window + charwindow: ImgId, + charwindow_icon: ImgId, + charwindow_tab_bg: ImgId, + charwindow_tab: ImgId, + charwindow_expbar: ImgId, + progress_frame: ImgId, + progress: ImgId, + + // Buttons + grid_button: ImgId, + grid_button_hover: ImgId, + grid_button_press: ImgId, + grid_button_open: ImgId, + + // Quest-Log Window + questlog_bg: ImgId, + questlog_icon: ImgId, + //help + // Chat-Arrow + chat_arrow: ImgId, + chat_arrow_mo: ImgId, + chat_arrow_press: ImgId, +} +impl Imgs { + fn new(ui: &mut Ui, renderer: &mut Renderer) -> Imgs { + let mut load_img = |filename, ui: &mut Ui| { + let fullpath: String = ["/voxygen/", filename].concat(); + let image = image::load_from_memory( + assets::load(fullpath.as_str()) + .expect("Error loading Main UI Image") + .as_slice(), + ) + .unwrap(); + ui.new_graphic(ui::Graphic::Image(image)) + }; + let mut load_vox = |filename, ui: &mut Ui| { + let fullpath: String = ["/voxygen/", filename].concat(); + let dot_vox = dot_vox::load_bytes( + assets::load(fullpath.as_str()) + .expect("Error loading Main UI .vox") + .as_slice(), + ) + .unwrap(); + ui.new_graphic(ui::Graphic::Voxel(Segment::from(dot_vox))) + }; + Imgs { + // Bag + bag: load_img("element/buttons/bag/closed.png", ui), + bag_hover: load_img("element/buttons/bag/closed_hover.png", ui), + bag_press: load_img("element/buttons/bag/closed_press.png", ui), + bag_open: load_img("element/buttons/bag/open.png", ui), + bag_open_hover: load_img("element/buttons/bag/open_hover.png", ui), + bag_open_press: load_img("element/buttons/bag/open_press.png", ui), + bag_contents: load_vox("element/frames/bag.vox", ui), + inv_grid: load_vox("element/frames/inv_grid.vox", ui), + inv_slot: load_vox("element/buttons/inv_slot.vox", ui), + + // Buttons + mmap_closed: load_vox("element/buttons/button_mmap_closed.vox", ui), + mmap_closed_hover: load_vox("element/buttons/button_mmap_closed_hover.vox", ui), + mmap_closed_press: load_vox("element/buttons/button_mmap_closed_press.vox", ui), + mmap_open: load_vox("element/buttons/button_mmap_open.vox", ui), + mmap_open_hover: load_vox("element/buttons/button_mmap_open_hover.vox", ui), + mmap_open_press: load_vox("element/buttons/button_mmap_open_press.vox", ui), + + settings: load_vox("element/buttons/settings.vox", ui), + settings_hover: load_vox("element/buttons/settings_hover.vox", ui), + settings_press: load_vox("element/buttons/settings_press.vox", ui), + + social_button: load_vox("element/buttons/social.vox", ui), + social_hover: load_vox("element/buttons/social_hover.vox", ui), + social_press: load_vox("element/buttons/social_press.vox", ui), + + map_button: load_vox("element/buttons/map.vox", ui), + map_hover: load_vox("element/buttons/map_hover.vox", ui), + map_press: load_vox("element/buttons/map_press.vox", ui), + + spellbook_button: load_vox("element/buttons/spellbook.vox", ui), + spellbook_hover: load_vox("element/buttons/spellbook_hover.vox", ui), + spellbook_press: load_vox("element/buttons/spellbook_press.vox", ui), + + character_button: load_vox("element/buttons/character.vox", ui), + character_hover: load_vox("element/buttons/character_hover.vox", ui), + character_press: load_vox("element/buttons/character_press.vox", ui), + + qlog_button: load_vox("element/buttons/qlog.vox", ui), + qlog_hover: load_vox("element/buttons/qlog_hover.vox", ui), + qlog_press: load_vox("element/buttons/qlog_press.vox", ui), + + grid_button: load_img("element/buttons/border.png", ui), + grid_button_hover: load_img("element/buttons/border_mo.png", ui), + grid_button_press: load_img("element/buttons/border_press.png", ui), + grid_button_open: load_img("element/buttons/border_pressed.png", ui), + + // Close button + close_button: load_vox("element/buttons/x.vox", ui), + close_button_hover: load_vox("element/buttons/x_hover.vox", ui), + close_button_press: load_vox("element/buttons/x_press.vox", ui), + + // Esc-Menu + esc_bg: load_img("element/frames/menu.png", ui), + fireplace: load_vox("element/misc_bg/fireplace.vox", ui), + button_dark: load_vox("element/buttons/button_dark.vox", ui), + button_dark_hover: load_img("element/buttons/button_dark_hover.png", ui), + button_dark_press: load_img("element/buttons/button_dark_press.png", ui), + + // MiniMap + mmap_frame: load_vox("element/frames/mmap.vox", ui), + mmap_frame_closed: load_vox("element/frames/mmap_closed.vox", ui), + + // Skillbar Module + sb_grid: load_img("element/skill_bar/sbar_grid.png", ui), + sb_grid_bg: load_img("element/skill_bar/sbar_grid_bg.png", ui), + l_click: load_img("element/skill_bar/l.png", ui), + r_click: load_img("element/skill_bar/r.png", ui), + mana_bar: load_img("element/skill_bar/mana_bar.png", ui), + health_bar: load_img("element/skill_bar/health_bar.png", ui), + xp_bar: load_img("element/skill_bar/xp_bar.png", ui), + + // Missing: Buff Frame Animation (.gif ?!) (we could do animation in ui.maintain(), or in shader?) + window_frame: load_vox("element/frames/window2.vox", ui), + window_frame_2: load_img("element/frames/window_2.png", ui), + + // Settings Window + settings_frame_r: load_vox("element/frames/settings_r.vox", ui), + settings_frame_l: load_vox("element/frames/settings_l.vox", ui), + settings_button: load_vox("element/buttons/settings_button.vox", ui), + settings_button_pressed: load_vox("element/buttons/settings_button_pressed.vox", ui), + settings_button_hover: load_vox("element/buttons/settings_button_hover.vox", ui), + settings_button_press: load_vox("element/buttons/settings_button_press.vox", ui), + settings_bg: load_img("element/frames/settings.png", ui), + settings_icon: load_img("element/icons/settings.png", ui), + settings_button_mo: load_img("element/buttons/blue_mo.png", ui), + check: load_img("element/buttons/check/no.png", ui), + check_mo: load_img("element/buttons/check/no_mo.png", ui), + check_press: load_img("element/buttons/check/press.png", ui), + check_checked: load_img("element/buttons/check/yes.png", ui), + check_checked_mo: load_img("element/buttons/check/yes_mo.png", ui), + slider: load_img("element/slider/track.png", ui), + slider_indicator: load_img("element/slider/indicator.png", ui), + button_blank: ui.new_graphic(ui::Graphic::Blank), + button_blue_mo: load_img("element/buttons/blue_mo.png", ui), + button_blue_press: load_img("element/buttons/blue_press.png", ui), + + // Window BG + window_bg: load_img("element/misc_bg/window_bg.png", ui), + + // Social Window + social_bg: load_img("element/misc_bg/small_bg.png", ui), + social_icon: load_img("element/icons/social.png", ui), + + // Map Window + map_bg: load_img("element/misc_bg/small_bg.png", ui), + map_icon: load_img("element/icons/map.png", ui), + map_frame_l: load_vox("element/frames/map_l.vox", ui), + map_frame_r: load_vox("element/frames/map_r.vox", ui), + map_frame_bl: load_vox("element/frames/map_bl.vox", ui), + map_frame_br: load_vox("element/frames/map_br.vox", ui), + + // Spell Book Window + spellbook_bg: load_img("element/misc_bg/small_bg.png", ui), + spellbook_icon: load_img("element/icons/spellbook.png", ui), + + // Char Window + charwindow: load_img("element/misc_bg/charwindow.png", ui), + charwindow_icon: load_img("element/icons/charwindow.png", ui), + charwindow_tab_bg: load_img("element/frames/tab.png", ui), + charwindow_tab: load_img("element/buttons/tab.png", ui), + charwindow_expbar: load_img("element/misc_bg/small_bg.png", ui), + progress_frame: load_img("element/frames/progress_bar.png", ui), + progress: load_img("element/misc_bg/progress.png", ui), + + // Quest-Log Window + questlog_bg: load_img("element/misc_bg/small_bg.png", ui), + questlog_icon: load_img("element/icons/questlog.png", ui), + + // Chat-Arrows + chat_arrow: load_img("element/buttons/arrow/chat_arrow.png", ui), + chat_arrow_mo: load_img("element/buttons/arrow/chat_arrow_mo.png", ui), + chat_arrow_press: load_img("element/buttons/arrow/chat_arrow_press.png", ui), + } + } +} + +enum SettingsTab { + Interface, + Video, + Sound, + Gameplay, + Controls, +} + +pub enum Event { + SendMessage(String), + Logout, + Quit, +} + +// TODO: are these the possible layouts we want? +// TODO: maybe replace this with bitflags +// map not here because it currently is displayed over the top of other open windows +enum Windows { + Settings, // display settings window + CharacterAnd(Option), // show character window + optionally another + Small(Small), + None, +} +#[derive(Clone, Copy)] +enum Small { + Spellbook, + Social, + Questlog, +} + +pub struct Hud { + ui: Ui, + ids: Ids, + imgs: Imgs, + chat: chat::Chat, + font_metamorph: FontId, + font_opensans: FontId, + show_help: bool, + show_debug: bool, + bag_open: bool, + menu_open: bool, + open_windows: Windows, + map_open: bool, + mmap_open: bool, + show_ui: bool, + inventory_space: u32, + xp_percentage: f64, + hp_percentage: f64, + mana_percentage: f64, + inventorytest_button: bool, + settings_tab: SettingsTab, +} + +//#[inline] +//pub fn rgba_bytes(r: u8, g: u8, b: u8, a: f32) -> Color { +//Color::Rgba(r as f32 / 255.0, g as f32 / 255.0, b as f32 / 255.0, a) +//} + +impl Hud { + pub fn new(window: &mut Window) -> Self { + let mut ui = Ui::new(window).unwrap(); + // TODO: adjust/remove this, right now it is used to demonstrate window scaling functionality + ui.scaling_mode(ScaleMode::RelativeToWindow([1920.0, 1080.0].into())); + // Generate ids + let ids = Ids::new(ui.id_generator()); + // Load images + let imgs = Imgs::new(&mut ui, window.renderer_mut()); + // Load fonts + let load_font = |filename, ui: &mut Ui| { + let fullpath: String = ["/voxygen/font", filename].concat(); + ui.new_font( + conrod_core::text::Font::from_bytes( + assets::load(fullpath.as_str()).expect("Error loading file"), + ) + .unwrap(), + ) + }; + let font_opensans = load_font("/OpenSans-Regular.ttf", &mut ui); + let font_metamorph = load_font("/Metamorphous-Regular.ttf", &mut ui); + // Chat box + let chat = chat::Chat::new(&mut ui); + + Self { + ui, + imgs, + ids, + chat, + settings_tab: SettingsTab::Interface, + show_help: true, + show_debug: false, + bag_open: false, + menu_open: false, + map_open: false, + mmap_open: true, + show_ui: true, + inventorytest_button: false, + inventory_space: 0, + open_windows: Windows::None, + font_metamorph, + font_opensans, + xp_percentage: 0.4, + hp_percentage: 1.0, + mana_percentage: 1.0, + } + } + + fn update_layout(&mut self, tps: f64) -> Vec { + let mut events = Vec::new(); + let ref mut ui_widgets = self.ui.set_widgets(); + let version = env!("CARGO_PKG_VERSION"); + + const TEXT_COLOR: Color = Color::Rgba(1.0, 1.0, 1.0, 1.0); + const HP_COLOR: Color = Color::Rgba(0.33, 0.63, 0.0, 1.0); + const MANA_COLOR: Color = Color::Rgba(0.42, 0.41, 0.66, 1.0); + const XP_COLOR: Color = Color::Rgba(0.59, 0.41, 0.67, 1.0); + + // Don't show anything if the ui is toggled off + if !self.show_ui { + return events; + } + + // Display debug window + if self.show_debug { + // Alpha Version + Text::new(version) + .top_left_with_margins_on(ui_widgets.window, 5.0, 5.0) + .font_size(14) + .font_id(self.font_opensans) + .color(TEXT_COLOR) + .set(self.ids.version, ui_widgets); + Text::new(&format!("FPS: {:.1}", tps)) + .color(TEXT_COLOR) + .down_from(self.ids.version, 5.0) + .font_id(self.font_opensans) + .font_size(14) + .set(self.ids.fps_counter, ui_widgets); + } + + // Add Bag-Space Button + if self.inventorytest_button { + if Button::image(self.imgs.grid_button) + .w_h(100.0, 100.0) + .middle_of(ui_widgets.window) + .label("1 Up!") + .label_font_size(20) + .hover_image(self.imgs.grid_button_hover) + .press_image(self.imgs.grid_button_press) + .set(self.ids.bag_space_add, ui_widgets) + .was_clicked() + { + self.inventory_space = self.inventory_space + 1; + }; + } + + // Chat box + if let Some(msg) = self + .chat + .update_layout(ui_widgets, self.font_opensans, &self.imgs) + { + events.push(Event::SendMessage(msg)); + } + + // Help Text + if self.show_help { + Image::new(self.imgs.window_frame_2) + .top_left_with_margins_on(ui_widgets.window, 3.0, 3.0) + .w_h(300.0, 190.0) + .set(self.ids.help_bg, ui_widgets); + + Text::new( + "Tab = Free Cursor \n\ + Esc = Open/Close Menus \n\ + \n\ + F1 = Toggle this Window \n\ + F2 = Toggle Interface \n\ + \n\ + Enter = Open Chat \n\ + Mouse Wheel = Scroll Chat", + ) + .color(TEXT_COLOR) + .top_left_with_margins_on(self.ids.help_bg, 20.0, 20.0) + .font_id(self.font_opensans) + .font_size(18) + .set(self.ids.help, ui_widgets); + + // X-button + if Button::image(self.imgs.close_button) + .w_h(100.0 * 0.2, 100.0 * 0.2) + .hover_image(self.imgs.close_button_hover) + .press_image(self.imgs.close_button_press) + .top_right_with_margins_on(self.ids.help_bg, 8.0, 3.0) + .set(self.ids.button_help2, ui_widgets) + .was_clicked() + { + self.show_help = false; + }; + } + + // Minimap + + if self.mmap_open { + Image::new(self.imgs.mmap_frame) + .w_h(100.0 * 2.0, 100.0 * 2.0) + .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) + .set(self.ids.mmap_frame, ui_widgets); + + Rectangle::fill_with([92.0 * 2.0, 82.0 * 2.0], color::TRANSPARENT) + .mid_top_with_margin_on(self.ids.mmap_frame, 13.0 * 2.0 + 2.0) + .set(self.ids.mmap_frame_bg, ui_widgets); + } + else { + Image::new(self.imgs.mmap_frame_closed) + .w_h(100.0 * 2.0, 11.0 * 2.0) + .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) + .set(self.ids.mmap_frame, ui_widgets); + }; + + if Button::image(if self.mmap_open {self.imgs.mmap_open} else {self.imgs.mmap_closed}) + .w_h(100.0 * 0.2, 100.0 * 0.2) + .hover_image(if self.mmap_open {self.imgs.mmap_open_hover} else {self.imgs.mmap_closed_hover}) + .press_image(if self.mmap_open {self.imgs.mmap_open_press} else {self.imgs.mmap_closed_press}) + .top_right_with_margins_on(self.ids.mmap_frame, 0.0, 0.0) + .set(self.ids.mmap_button, ui_widgets) + .was_clicked() + { + self.mmap_open = !self.mmap_open; + }; + + // Title + // Make it display the actual location + Text::new("Uncanny Valley") + .mid_top_with_margin_on(self.ids.mmap_frame, 3.0) + .font_size(14) + .color(TEXT_COLOR) + .set(self.ids.mmap_location, ui_widgets); + + // Buttons at Bag + + // 0 Settings + if Button::image(self.imgs.settings) + .w_h(29.0, 25.0) + .bottom_right_with_margins_on(ui_widgets.window, 5.0, 57.0) + .hover_image(self.imgs.settings_hover) + .press_image(self.imgs.settings_press) + .label("N") + .label_font_size(10) + .label_font_id(self.font_metamorph) + .color(TEXT_COLOR) + .label_color(TEXT_COLOR) + .label_y(conrod_core::position::Relative::Scalar(-7.0)) + .label_x(conrod_core::position::Relative::Scalar(10.0)) + .set(self.ids.settings_button, ui_widgets) + .was_clicked() + { + self.open_windows = match self.open_windows { + Windows::Settings => Windows::None, + _ => Windows::Settings, + }; + self.bag_open = false; + }; + + // 2 Map + if Button::image(self.imgs.map_button) + .w_h(22.0, 25.0) + .left_from(self.ids.social_button, 10.0) + .hover_image(self.imgs.map_hover) + .press_image(self.imgs.map_press) + .label("M") + .label_font_size(10) + .label_font_id(self.font_metamorph) + .label_color(TEXT_COLOR) + .label_y(conrod_core::position::Relative::Scalar(-7.0)) + .label_x(conrod_core::position::Relative::Scalar(10.0)) + .set(self.ids.map_button, ui_widgets) + .was_clicked() + { + self.map_open = !self.map_open; + self.bag_open = false; + }; + + // Other Windows can only be accessed, when Settings are closed. + // Opening Settings will close all other Windows including the Bag. + // Opening the Map won't close the windows displayed before. + Image::new(self.imgs.social_button) + .w_h(25.0, 25.0) + .left_from(self.ids.settings_button, 10.0) + .set(self.ids.social_button_bg, ui_widgets); + Image::new(self.imgs.spellbook_button) + .w_h(28.0, 25.0) + .left_from(self.ids.map_button, 10.0) + .set(self.ids.spellbook_button_bg, ui_widgets); + Image::new(self.imgs.character_button) + .w_h(27.0, 25.0) + .left_from(self.ids.spellbook_button, 10.0) + .set(self.ids.character_button_bg, ui_widgets); + Image::new(self.imgs.qlog_button) + .w_h(23.0, 25.0) + .left_from(self.ids.character_button, 10.0) + .set(self.ids.qlog_button_bg, ui_widgets); + + if match self.open_windows { + Windows::Settings => false, + _ => true, + } && self.map_open == false + { + // 1 Social + if Button::image(self.imgs.social_button) + .w_h(25.0, 25.0) + .left_from(self.ids.settings_button, 10.0) + .hover_image(self.imgs.social_hover) + .press_image(self.imgs.social_press) + .label("O") + .label_font_size(10) + .label_font_id(self.font_metamorph) + .label_color(TEXT_COLOR) + .label_y(conrod_core::position::Relative::Scalar(-7.0)) + .label_x(conrod_core::position::Relative::Scalar(10.0)) + .set(self.ids.social_button, ui_widgets) + .was_clicked() + { + self.open_windows = match self.open_windows { + Windows::Small(Small::Social) => Windows::None, + Windows::None | Windows::Small(_) => Windows::Small(Small::Social), + Windows::CharacterAnd(small) => match small { + Some(Small::Social) => Windows::CharacterAnd(None), + _ => Windows::CharacterAnd(Some(Small::Social)), + }, + Windows::Settings => Windows::Settings, + }; + } + + // 3 Spellbook + if Button::image(self.imgs.spellbook_button) + .w_h(28.0, 25.0) + .left_from(self.ids.map_button, 10.0) + .hover_image(self.imgs.spellbook_hover) + .press_image(self.imgs.spellbook_press) + .label("P") + .label_font_size(10) + .label_font_id(self.font_metamorph) + .label_color(TEXT_COLOR) + .label_y(conrod_core::position::Relative::Scalar(-7.0)) + .label_x(conrod_core::position::Relative::Scalar(10.0)) + .set(self.ids.spellbook_button, ui_widgets) + .was_clicked() + { + self.open_windows = match self.open_windows { + Windows::Small(Small::Spellbook) => Windows::None, + Windows::None | Windows::Small(_) => Windows::Small(Small::Spellbook), + Windows::CharacterAnd(small) => match small { + Some(Small::Spellbook) => Windows::CharacterAnd(None), + _ => Windows::CharacterAnd(Some(Small::Spellbook)), + }, + Windows::Settings => Windows::Settings, + }; + } + + // 4 Char-Window + if Button::image(self.imgs.character_button) + .w_h(27.0, 25.0) + .left_from(self.ids.spellbook_button, 10.0) + .hover_image(self.imgs.character_hover) + .press_image(self.imgs.character_press) + .label("C") + .label_font_size(10) + .label_font_id(self.font_metamorph) + .label_color(TEXT_COLOR) + .label_y(conrod_core::position::Relative::Scalar(-7.0)) + .label_x(conrod_core::position::Relative::Scalar(10.0)) + .set(self.ids.character_button, ui_widgets) + .was_clicked() + { + self.open_windows = match self.open_windows { + Windows::CharacterAnd(small) => match small { + Some(small) => Windows::Small(small), + None => Windows::None, + }, + Windows::Small(small) => Windows::CharacterAnd(Some(small)), + Windows::None => Windows::CharacterAnd(None), + Windows::Settings => Windows::Settings, + } + } + + // 5 Quest-Log + if Button::image(self.imgs.qlog_button) + .w_h(23.0, 25.0) + .left_from(self.ids.character_button, 10.0) + .hover_image(self.imgs.qlog_hover) + .press_image(self.imgs.qlog_press) + .label("L") + .label_font_size(10) + .label_font_id(self.font_metamorph) + .label_color(TEXT_COLOR) + .label_y(conrod_core::position::Relative::Scalar(-7.0)) + .label_x(conrod_core::position::Relative::Scalar(10.0)) + .set(self.ids.qlog_button, ui_widgets) + .was_clicked() + { + self.open_windows = match self.open_windows { + Windows::Small(Small::Questlog) => Windows::None, + Windows::None | Windows::Small(_) => Windows::Small(Small::Questlog), + Windows::CharacterAnd(small) => match small { + Some(Small::Questlog) => Windows::CharacterAnd(None), + _ => Windows::CharacterAnd(Some(Small::Questlog)), + }, + Windows::Settings => Windows::Settings, + }; + } + } + + // Skillbar Module + + // Experience-Bar + Image::new(self.imgs.xp_bar) + .w_h(2688.0 / 6.0, 116.0 / 6.0) + .mid_bottom_of(ui_widgets.window) + .set(self.ids.xp_bar, ui_widgets); + + Rectangle::fill_with([406.0 * (self.xp_percentage), 5.0], XP_COLOR) // "W=406*[Exp. %]" + .top_left_with_margins_on(self.ids.xp_bar, 5.0, 21.0) + .set(self.ids.xp_bar_progress, ui_widgets); + + // Left Grid + Image::new(self.imgs.sb_grid) + .w_h(2240.0 / 12.0, 448.0 / 12.0) + .up_from(self.ids.xp_bar, 0.0) + .align_left_of(self.ids.xp_bar) + .set(self.ids.sb_grid_l, ui_widgets); + + Image::new(self.imgs.sb_grid_bg) + .w_h(2240.0 / 12.0, 448.0 / 12.0) + .middle_of(self.ids.sb_grid_l) + .set(self.ids.sb_grid_bg_l, ui_widgets); + + // Right Grid + Image::new(self.imgs.sb_grid) + .w_h(2240.0 / 12.0, 448.0 / 12.0) + .up_from(self.ids.xp_bar, 0.0) + .align_right_of(self.ids.xp_bar) + .set(self.ids.sb_grid_r, ui_widgets); + + Image::new(self.imgs.sb_grid_bg) + .w_h(2240.0 / 12.0, 448.0 / 12.0) + .middle_of(self.ids.sb_grid_r) + .set(self.ids.sb_grid_bg_r, ui_widgets); + + // Right and Left Click + Image::new(self.imgs.l_click) + .w_h(224.0 / 6.0, 320.0 / 6.0) + .right_from(self.ids.sb_grid_bg_l, 0.0) + .align_bottom_of(self.ids.sb_grid_bg_l) + .set(self.ids.l_click, ui_widgets); + + Image::new(self.imgs.r_click) + .w_h(224.0 / 6.0, 320.0 / 6.0) + .left_from(self.ids.sb_grid_bg_r, 0.0) + .align_bottom_of(self.ids.sb_grid_bg_r) + .set(self.ids.r_click, ui_widgets); + + // Health Bar + Image::new(self.imgs.health_bar) + .w_h(1120.0 / 6.0, 96.0 / 6.0) + .left_from(self.ids.l_click, 0.0) + .align_top_of(self.ids.l_click) + .set(self.ids.health_bar, ui_widgets); + + // Filling + Rectangle::fill_with([182.0 * (self.hp_percentage), 6.0], HP_COLOR) // "W=182.0 * [Health. %]" + .top_right_with_margins_on(self.ids.health_bar, 5.0, 0.0) + .set(self.ids.health_bar_color, ui_widgets); + + // Mana Bar + Image::new(self.imgs.mana_bar) + .w_h(1120.0 / 6.0, 96.0 / 6.0) + .right_from(self.ids.r_click, 0.0) + .align_top_of(self.ids.r_click) + .set(self.ids.mana_bar, ui_widgets); + + // Filling + Rectangle::fill_with([182.0 * (self.mana_percentage), 6.0], MANA_COLOR) // "W=182.0 * [Mana. %]" + .top_left_with_margins_on(self.ids.mana_bar, 5.0, 0.0) + .set(self.ids.mana_bar_color, ui_widgets); + + // Buffs/Debuffs + + // Buffs + + // Debuffs + + // Level Display + + // Insert actual Level here + Text::new("1") + .left_from(self.ids.xp_bar, -15.0) + .font_size(10) + .color(TEXT_COLOR) + .set(self.ids.level_text, ui_widgets); + + // Insert next Level here + Text::new("2") + .right_from(self.ids.xp_bar, -15.0) + .font_size(10) + .color(TEXT_COLOR) + .set(self.ids.next_level_text, ui_widgets); + + // Bag contents + if self.bag_open { + // Contents + Image::new(self.imgs.bag_contents) + .w_h(68.0 * 4.0, 123.0 * 4.0) + .bottom_right_with_margins_on(ui_widgets.window, 60.0, 5.0) + .set(self.ids.bag_contents, ui_widgets); + + // Alignment for Grid + Rectangle::fill_with([58.0 * 4.0 - 5.0, 100.0 * 4.0], color::TRANSPARENT) + .top_left_with_margins_on(self.ids.bag_contents, 11.0 * 4.0, 5.0 * 4.0) + .scroll_kids() + .scroll_kids_vertically() + .set(self.ids.inv_alignment, ui_widgets); + // Grid + Image::new(self.imgs.inv_grid) + .w_h(58.0 * 4.0, 111.0 * 4.0) + .mid_top_with_margin_on(self.ids.inv_alignment, 0.0) + .set(self.ids.inv_grid_1, ui_widgets); + Image::new(self.imgs.inv_grid) + .w_h(58.0 * 4.0, 111.0 * 4.0) + .mid_top_with_margin_on(self.ids.inv_alignment, 110.0 * 4.0) + .set(self.ids.inv_grid_2, ui_widgets); + Scrollbar::y_axis(self.ids.inv_alignment) + .thickness(5.0) + .rgba(0.33, 0.33, 0.33, 1.0) + .set(self.ids.inv_scrollbar, ui_widgets); + + // X-button + if Button::image(self.imgs.close_button) + .w_h(4.0 * 4.0, 4.0 * 4.0) + .hover_image(self.imgs.close_button_hover) + .press_image(self.imgs.close_button_press) + .top_right_with_margins_on(self.ids.bag_contents, 4.5, 4.5) + .set(self.ids.bag_close, ui_widgets) + .was_clicked() + { + self.bag_open = false; + } + + if self.inventory_space > 0 { + // First Slot + Button::image(self.imgs.inv_slot) + .top_left_with_margins_on(self.ids.inv_grid_1, 4.0, 4.0) + .w_h(10.0 * 4.0, 10.0 * 4.0) + .set(self.ids.inv_slot_0, ui_widgets); + } + } + + // Bag + if !self.map_open && self.show_ui { + self.bag_open = ToggleButton::new(self.bag_open, self.imgs.bag, self.imgs.bag_open) + .bottom_right_with_margins_on(ui_widgets.window, 5.0, 5.0) + .hover_images(self.imgs.bag_hover, self.imgs.bag_open_hover) + .press_images(self.imgs.bag_press, self.imgs.bag_open_press) + .w_h(420.0 / 10.0, 480.0 / 10.0) + .set(self.ids.bag, ui_widgets); + Text::new("B") + .bottom_right_with_margins_on(self.ids.bag, 0.0, 0.0) + .font_size(10) + .font_id(self.font_metamorph) + .color(TEXT_COLOR) + .set(self.ids.bag_text, ui_widgets); + } else { + Image::new(self.imgs.bag) + .bottom_right_with_margins_on(ui_widgets.window, 5.0, 5.0) + .w_h(420.0 / 10.0, 480.0 / 10.0) + .set(self.ids.bag_map_open, ui_widgets); + Text::new("B") + .bottom_right_with_margins_on(self.ids.bag, 0.0, 0.0) + .font_size(10) + .font_id(self.font_metamorph) + .set(self.ids.bag_text, ui_widgets); + } + + //Windows + + //Char Window will always appear at the left side. Other Windows either appear at the left side, + //or when the Char Window is opened they will appear right from it. + + // 0 Settings + + if let Windows::Settings = self.open_windows { + // Frame Alignment + Rectangle::fill_with([824.0, 488.0], color::TRANSPARENT) + .middle_of(ui_widgets.window) + .set(self.ids.settings_bg, ui_widgets); + // Frame + Image::new(self.imgs.settings_frame_l) + .top_left_with_margins_on(self.ids.settings_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.settings_l, ui_widgets); + Image::new(self.imgs.settings_frame_r) + .right_from(self.ids.settings_l, 0.0) + .parent(self.ids.settings_bg) + .w_h(412.0, 488.0) + .set(self.ids.settings_r, ui_widgets); + // Content Alignment + Rectangle::fill_with([198.0*4.0, 97.0*4.0], color::TRANSPARENT) + .top_right_with_margins_on(self.ids.settings_r, 21.0*4.0, 4.0*4.0) + .scroll_kids() + .scroll_kids_vertically() + .set(self.ids.settings_content, ui_widgets); + // X-Button + if Button::image(self.imgs.close_button) + .w_h(28.0, 28.0) + .hover_image(self.imgs.close_button_hover) + .press_image(self.imgs.close_button_press) + .top_right_with_margins_on(self.ids.settings_r, 0.0, 0.0) + .set(self.ids.settings_close, ui_widgets) + .was_clicked() + { + self.open_windows = Windows::None; + self.settings_tab = SettingsTab::Interface; + } + + // Title + Text::new("Settings") + .mid_top_with_margin_on(self.ids.settings_bg, 5.0) + .font_size(14) + .color(TEXT_COLOR) + .set(self.ids.settings_title, ui_widgets); + // Icon + //Image::new(self.imgs.settings_icon) + //.w_h(224.0 / 3.0, 224.0 / 3.0) + //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) + //.set(self.ids.settings_icon, ui_widgets); + // TODO: Find out if we can remove this + + // 1 Interface//////////////////////////// + if Button::image(if let SettingsTab::Interface = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button + }) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Interface = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Interface = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .top_left_with_margins_on(self.ids.settings_l, 8.0*4.0, 2.0*4.0) + .label("Interface") + .label_font_size(14) + .label_color(TEXT_COLOR) + .set(self.ids.interface, ui_widgets) + .was_clicked() + { + self.settings_tab = SettingsTab::Interface; + } + // Toggle Help + if let SettingsTab::Interface = self.settings_tab { + self.show_help = + ToggleButton::new(self.show_help, self.imgs.check, self.imgs.check_checked) + .w_h(288.0 / 24.0, 288.0 / 24.0) + .top_left_with_margins_on(self.ids.settings_content, 5.0, 5.0) + .hover_images(self.imgs.check_checked_mo, self.imgs.check_mo) + .press_images(self.imgs.check_press, self.imgs.check_press) + .set(self.ids.button_help, ui_widgets); + Text::new("Show Help") + .right_from(self.ids.button_help, 10.0) + .font_size(14) + .font_id(self.font_opensans) + .graphics_for(self.ids.button_help) + .color(TEXT_COLOR) + .set(self.ids.show_help_label, ui_widgets); + + self.inventorytest_button = ToggleButton::new( + self.inventorytest_button, + self.imgs.check, + self.imgs.check_checked, + ) + .w_h(288.0 / 24.0, 288.0 / 24.0) + .down_from(self.ids.button_help, 7.0) + .hover_images(self.imgs.check_checked_mo, self.imgs.check_mo) + .press_images(self.imgs.check_press, self.imgs.check_press) + .set(self.ids.inventorytest_button, ui_widgets); + + Text::new("Show Inventory Test Button") + .right_from(self.ids.inventorytest_button, 10.0) + .font_size(14) + .font_id(self.font_opensans) + .graphics_for(self.ids.inventorytest_button) + .color(TEXT_COLOR) + .set(self.ids.inventorytest_button_label, ui_widgets); + + self.show_debug = + ToggleButton::new(self.show_debug, self.imgs.check, self.imgs.check_checked) + .w_h(288.0 / 24.0, 288.0 / 24.0) + .down_from(self.ids.inventorytest_button, 7.0) + .hover_images(self.imgs.check_checked_mo, self.imgs.check_mo) + .press_images(self.imgs.check_press, self.imgs.check_press) + .set(self.ids.debug_button, ui_widgets); + + Text::new("Show Debug Window") + .right_from(self.ids.debug_button, 10.0) + .font_size(14) + .font_id(self.font_opensans) + .graphics_for(self.ids.debug_button) + .color(TEXT_COLOR) + .set(self.ids.debug_button_label, ui_widgets); + } + + // 2 Gameplay//////////////// + if Button::image(if let SettingsTab::Gameplay = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button + }) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Gameplay = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Gameplay = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .right_from(self.ids.interface, 0.0) + .label("Gameplay") + .label_font_size(14) + .label_color(TEXT_COLOR) + .set(self.ids.gameplay, ui_widgets) + .was_clicked() + { + self.settings_tab = SettingsTab::Gameplay; + } + + // 3 Controls///////////////////// + if Button::image(if let SettingsTab::Controls = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button + }) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Controls = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Controls = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .right_from(self.ids.gameplay, 0.0) + .label("Controls") + .label_font_size(14) + .label_color(TEXT_COLOR) + .set(self.ids.controls, ui_widgets) + .was_clicked() + { + self.settings_tab = SettingsTab::Controls; + } + + // 4 Video//////////////////////////////// + if Button::image(if let SettingsTab::Video = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button + }) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Video = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Video = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .right_from(self.ids.controls, 0.0) + .label("Video") + .parent(self.ids.settings_r) + .label_font_size(14) + .label_color(TEXT_COLOR) + .set(self.ids.video, ui_widgets) + .was_clicked() + { + self.settings_tab = SettingsTab::Video; + } + + // 5 Sound/////////////////////////////// + if Button::image(if let SettingsTab::Sound = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button + }) + .w_h(31.0*4.0, 12.0*4.0) + .hover_image(if let SettingsTab::Sound = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_hover + }) + .press_image(if let SettingsTab::Sound = self.settings_tab { + self.imgs.settings_button_pressed + } else { + self.imgs.settings_button_press + }) + .right_from(self.ids.video, 0.0) + .parent(self.ids.settings_r) + .label("Sound") + .label_font_size(14) + .label_color(TEXT_COLOR) + .set(self.ids.sound, ui_widgets) + .was_clicked() + { + self.settings_tab = SettingsTab::Sound; + } + } + + if let Some((small, char_window_open)) = match self.open_windows { + Windows::Small(small) => Some((small, false)), + Windows::CharacterAnd(Some(small)) => Some((small, true)), + _ => None, + } { + // TODO: there is common code in each match arm, might be able to combine this + match small { + Small::Social => { + //Frame + if char_window_open { + Image::new(self.imgs.window_frame) + .right_from(self.ids.charwindow_frame, 20.0) + .w_h(107.0 * 4.0, 125.0 * 4.0) + .set(self.ids.social_frame, ui_widgets); + } else { + Image::new(self.imgs.window_frame) + .top_left_with_margins_on(ui_widgets.window, 200.0, 10.0) + .w_h(107.0 * 4.0, 125.0 * 4.0) + .set(self.ids.social_frame, ui_widgets); + } + + // Icon + Image::new(self.imgs.social_icon) + .w_h(40.0, 40.0) + .top_left_with_margins_on(self.ids.social_frame, 4.0, 4.0) + .set(self.ids.social_icon, ui_widgets); + + // Content alignment + Rectangle::fill_with([362.0, 418.0], color::TRANSPARENT) + .bottom_right_with_margins_on(self.ids.social_frame, 17.0, 17.0) + .scroll_kids() + .scroll_kids_vertically() + .set(self.ids.social_bg, ui_widgets); + + // X-Button + if Button::image(self.imgs.close_button) + .w_h(28.0, 28.0) + .hover_image(self.imgs.close_button_hover) + .press_image(self.imgs.close_button_press) + .top_right_with_margins_on(self.ids.social_frame, 12.0, 0.0) + .set(self.ids.social_close, ui_widgets) + .was_clicked() + { + self.open_windows = match self.open_windows { + Windows::Small(_) => Windows::None, + Windows::CharacterAnd(_) => Windows::CharacterAnd(None), + _ => Windows::Settings, + } + } + // Title + Text::new("Social") + .mid_top_with_margin_on(self.ids.social_frame, 17.0) + .font_id(self.font_metamorph) + .font_size(14) + .color(TEXT_COLOR) + .set(self.ids.social_title, ui_widgets); + } + Small::Spellbook => { + // Frame + if char_window_open { + Image::new(self.imgs.window_frame) + .right_from(self.ids.charwindow_frame, 20.0) + .w_h(107.0 * 4.0, 125.0 * 4.0) + .set(self.ids.spellbook_frame, ui_widgets); + } else { + Image::new(self.imgs.window_frame) + .top_left_with_margins_on(ui_widgets.window, 200.0, 10.0) + .w_h(107.0 * 4.0, 125.0 * 4.0) + .set(self.ids.spellbook_frame, ui_widgets); + } + + // Icon + Image::new(self.imgs.spellbook_icon) + .w_h(40.0, 40.0) + .top_left_with_margins_on(self.ids.spellbook_frame, 4.0, 4.0) + .set(self.ids.spellbook_icon, ui_widgets); + + // Content alignment + Rectangle::fill_with([362.0, 418.0], color::TRANSPARENT) + .bottom_right_with_margins_on(self.ids.spellbook_frame, 17.0, 17.0) + .scroll_kids() + .scroll_kids_vertically() + .set(self.ids.spellbook_bg, ui_widgets); + + // X-Button + if Button::image(self.imgs.close_button) + .w_h(14.0, 14.0) + .hover_image(self.imgs.close_button_hover) + .press_image(self.imgs.close_button_press) + .top_right_with_margins_on(self.ids.spellbook_frame, 12.0, 0.0) + .set(self.ids.spellbook_close, ui_widgets) + .was_clicked() + { + self.open_windows = match self.open_windows { + Windows::Small(_) => Windows::None, + Windows::CharacterAnd(_) => Windows::CharacterAnd(None), + _ => Windows::Settings, + } + } + // Title + Text::new("Spellbook") + .mid_top_with_margin_on(self.ids.spellbook_frame, 17.0) + .font_size(14) + .color(TEXT_COLOR) + .set(self.ids.spellbook_title, ui_widgets); + } + Small::Questlog => { + // Frame + if char_window_open { + Image::new(self.imgs.window_frame) + .right_from(self.ids.charwindow_frame, 20.0) + .w_h(107.0 * 4.0, 125.0 * 4.0) + .set(self.ids.questlog_frame, ui_widgets); + } else { + Image::new(self.imgs.window_frame) + .top_left_with_margins_on(ui_widgets.window, 200.0, 10.0) + .w_h(107.0 * 4.0, 125.0 * 4.0) + .set(self.ids.questlog_frame, ui_widgets); + } + + // Icon + Image::new(self.imgs.questlog_icon) + .w_h(40.0, 40.0) + .top_left_with_margins_on(self.ids.questlog_frame, 4.0, 4.0) + .set(self.ids.questlog_icon, ui_widgets); + + // Content alignment + Rectangle::fill_with([362.0, 418.0], color::TRANSPARENT) + .bottom_right_with_margins_on(self.ids.questlog_frame, 17.0, 17.0) + .scroll_kids() + .scroll_kids_vertically() + .set(self.ids.questlog_bg, ui_widgets); + + // X-Button + if Button::image(self.imgs.close_button) + .w_h(20.0, 20.0) + .press_image(self.imgs.close_button_press) + .top_right_with_margins_on(self.ids.questlog_frame, 17.0, 5.0) + .set(self.ids.questlog_close, ui_widgets) + .was_clicked() + { + self.open_windows = match self.open_windows { + Windows::Small(_) => Windows::None, + Windows::CharacterAnd(_) => Windows::CharacterAnd(None), + _ => Windows::Settings, + } + } + // Title + Text::new("Quest-Log") + .mid_top_with_margin_on(self.ids.questlog_frame, 17.0) + .color(TEXT_COLOR) + .font_size(14) + .set(self.ids.questlog_title, ui_widgets); + } + } + } + + // 4 Char-Window + if let Windows::CharacterAnd(small) = self.open_windows { + // Frame + Image::new(self.imgs.window_frame) + .top_left_with_margins_on(ui_widgets.window, 200.0, 215.0) + .w_h(1648.0 / 4.0, 1952.0 / 4.0) + .set(self.ids.charwindow_frame, ui_widgets); + + // BG + //Image::new(self.imgs.window_bg) + //.w_h(348.0, 404.0) + //.mid_top_with_margin_on(self.ids.charwindow_frame, 48.0) + //.set(self.ids.charwindow_bg, ui_widgets); + + // Overlay + //Image::new(self.imgs.charwindow) + //.middle_of(self.ids.charwindow_bg) + //.set(self.ids.charwindow, ui_widgets); + + // Icon + //Image::new(self.imgs.charwindow_icon) + //.w_h(224.0 / 3.0, 224.0 / 3.0) + //.top_left_with_margins_on(self.ids.charwindow_frame, -10.0, -10.0) + //.set(self.ids.charwindow_icon, ui_widgets); + + // X-Button + if Button::image(self.imgs.close_button) + .w_h(244.0 * 0.22 / 4.0, 244.0 * 0.22 / 4.0) + .hover_image(self.imgs.close_button_hover) + .press_image(self.imgs.close_button_press) + .top_right_with_margins_on(self.ids.charwindow_frame, 4.0, 4.0) + .set(self.ids.charwindow_close, ui_widgets) + .was_clicked() + { + self.open_windows = match small { + Some(small) => Windows::Small(small), + None => Windows::None, + } + } + + // Title + Text::new("Character Name") //Add in actual Character Name + .mid_top_with_margin_on(self.ids.charwindow_frame, 7.0) + .color(TEXT_COLOR) + .set(self.ids.charwindow_title, ui_widgets); + // Tab BG + Image::new(self.imgs.charwindow_tab_bg) + .w_h(205.0, 412.0) + .mid_left_with_margin_on(self.ids.charwindow_frame, -205.0) + .set(self.ids.charwindow_tab_bg, ui_widgets); + // Tab Rectangle + Rectangle::fill_with([192.0, 371.0], color::rgba(0.0, 0.0, 0.0, 0.8)) + .top_right_with_margins_on(self.ids.charwindow_tab_bg, 20.0, 0.0) + .set(self.ids.charwindow_rectangle, ui_widgets); + // Tab Button + Button::image(self.imgs.charwindow_tab) + .w_h(65.0, 23.0) + .top_left_with_margins_on(self.ids.charwindow_tab_bg, -18.0, 2.0) + .label("Stats") + .label_color(TEXT_COLOR) + .label_font_id(self.font_opensans) + .label_font_size(14) + .set(self.ids.charwindow_tab1, ui_widgets); + Text::new("1") //Add in actual Character Level + .mid_top_with_margin_on(self.ids.charwindow_rectangle, 10.0) + .font_id(self.font_opensans) + .font_size(30) + .color(TEXT_COLOR) + .set(self.ids.charwindow_tab1_level, ui_widgets); + // Exp-Bar Background + Rectangle::fill_with([170.0, 10.0], color::BLACK) + .mid_top_with_margin_on(self.ids.charwindow_rectangle, 50.0) + .set(self.ids.charwindow_exp_rectangle, ui_widgets); + // Exp-Bar Progress + Rectangle::fill_with([170.0 * (self.xp_percentage), 6.0], XP_COLOR) // 0.8 = Experience percantage + .mid_left_with_margin_on(self.ids.charwindow_tab1_expbar, 1.0) + .set(self.ids.charwindow_exp_progress_rectangle, ui_widgets); + // Exp-Bar Foreground Frame + Image::new(self.imgs.progress_frame) + .w_h(170.0, 10.0) + .middle_of(self.ids.charwindow_exp_rectangle) + .set(self.ids.charwindow_tab1_expbar, ui_widgets); + // Exp-Text + Text::new("120/170") // Shows the Exp / Exp to reach the next level + .mid_top_with_margin_on(self.ids.charwindow_tab1_expbar, 10.0) + .font_id(self.font_opensans) + .font_size(15) + .color(TEXT_COLOR) + .set(self.ids.charwindow_tab1_exp, ui_widgets); + + // Stats + Text::new( + "Stamina\n\ + \n\ + Strength\n\ + \n\ + Dexterity\n\ + \n\ + Intelligence", + ) + .top_left_with_margins_on(self.ids.charwindow_rectangle, 100.0, 20.0) + .font_id(self.font_opensans) + .font_size(16) + .color(TEXT_COLOR) + .set(self.ids.charwindow_tab1_statnames, ui_widgets); + + Text::new( + "1234\n\ + \n\ + 12312\n\ + \n\ + 12414\n\ + \n\ + 124124", + ) + .right_from(self.ids.charwindow_tab1_statnames, 10.0) + .font_id(self.font_opensans) + .font_size(16) + .color(TEXT_COLOR) + .set(self.ids.charwindow_tab1_stats, ui_widgets); + } + + // 2 Map + if self.map_open { + // BG + Rectangle::fill_with([824.0, 976.0], color::TRANSPARENT) + .mid_top_with_margin_on(ui_widgets.window, 15.0) + .scroll_kids() + .scroll_kids_vertically() + .set(self.ids.map_bg, ui_widgets); + // Frame + Image::new(self.imgs.map_frame_l) + .top_left_with_margins_on(self.ids.map_bg, 0.0, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_l, ui_widgets); + Image::new(self.imgs.map_frame_r) + .right_from(self.ids.map_frame_l, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_r, ui_widgets); + Image::new(self.imgs.map_frame_br) + .down_from(self.ids.map_frame_r, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_br, ui_widgets); + Image::new(self.imgs.map_frame_bl) + .down_from(self.ids.map_frame_l, 0.0) + .w_h(412.0, 488.0) + .set(self.ids.map_frame_bl, ui_widgets); + + + // Icon + Image::new(self.imgs.map_icon) + .w_h(224.0 / 3.0, 224.0 / 3.0) + .top_left_with_margins_on(self.ids.map_frame, -10.0, -10.0) + .set(self.ids.map_icon, ui_widgets); + + // X-Button + if Button::image(self.imgs.close_button) + .w_h(28.0, 28.0) + .hover_image(self.imgs.close_button_hover) + .press_image(self.imgs.close_button_press) + .top_right_with_margins_on(self.ids.map_frame_r, 0.0, 0.0) + .set(self.ids.map_close, ui_widgets) + .was_clicked() + { + self.map_open = false; + } + // Title + //Text::new("Map") + //.mid_top_with_margin_on(self.ids.map_bg, -7.0) + //.font_size(14) + //.color(TEXT_COLOR) + //.set(self.ids.map_title, ui_widgets); + } + + // ESC-MENU + // Background + if self.menu_open { + Image::new(self.imgs.esc_bg) + .w_h(228.0, 450.0) + .middle_of(ui_widgets.window) + .set(self.ids.esc_bg, ui_widgets); + + Image::new(self.imgs.fireplace) + .w_h(180.0, 60.0) + .mid_top_with_margin_on(self.ids.esc_bg, 50.0) + .set(self.ids.fireplace, ui_widgets); + + // Settings + if Button::image(self.imgs.button_dark) + .mid_top_with_margin_on(self.ids.esc_bg, 115.0) + .w_h(170.0, 50.0) + .hover_image(self.imgs.button_dark_hover) + .press_image(self.imgs.button_dark_press) + .label("Settings") + .label_y(conrod_core::position::Relative::Scalar(2.0)) + .label_color(TEXT_COLOR) + .label_font_size(17) + .set(self.ids.menu_button_1, ui_widgets) + .was_clicked() + { + self.menu_open = false; + self.open_windows = Windows::Settings; + }; + // Controls + if Button::image(self.imgs.button_dark) + .mid_top_with_margin_on(self.ids.esc_bg, 175.0) + .w_h(170.0, 50.0) + .hover_image(self.imgs.button_dark_hover) + .press_image(self.imgs.button_dark_press) + .label("Controls") + .label_y(conrod_core::position::Relative::Scalar(2.0)) + .label_color(TEXT_COLOR) + .label_font_size(17) + .set(self.ids.menu_button_2, ui_widgets) + .was_clicked() + { + //self.menu_open = false; + }; + // Servers + if Button::image(self.imgs.button_dark) + .mid_top_with_margin_on(self.ids.esc_bg, 235.0) + .w_h(170.0, 50.0) + .hover_image(self.imgs.button_dark_hover) + .press_image(self.imgs.button_dark_press) + .label("Servers") + .label_y(conrod_core::position::Relative::Scalar(2.0)) + .label_color(TEXT_COLOR) + .label_font_size(17) + .set(self.ids.menu_button_3, ui_widgets) + .was_clicked() + { + //self.menu_open = false; + }; + // Logout + if Button::image(self.imgs.button_dark) + .mid_top_with_margin_on(self.ids.esc_bg, 295.0) + .w_h(170.0, 50.0) + .hover_image(self.imgs.button_dark_hover) + .press_image(self.imgs.button_dark_press) + .label("Logout") + .label_y(conrod_core::position::Relative::Scalar(2.0)) + .label_color(TEXT_COLOR) + .label_font_size(17) + .set(self.ids.menu_button_4, ui_widgets) + .was_clicked() + { + events.push(Event::Logout); + }; + // Quit + if Button::image(self.imgs.button_dark) + .mid_top_with_margin_on(self.ids.esc_bg, 355.0) + .w_h(170.0, 50.0) + .hover_image(self.imgs.button_dark_hover) + .press_image(self.imgs.button_dark_press) + .label("Quit") + .label_y(conrod_core::position::Relative::Scalar(2.0)) + .label_color(TEXT_COLOR) + .label_font_size(17) + .set(self.ids.menu_button_5, ui_widgets) + .was_clicked() + { + events.push(Event::Quit); + }; + } + + events + } + + pub fn new_message(&mut self, msg: String) { + self.chat.new_message(msg); + } + + fn toggle_menu(&mut self) { + self.menu_open = !self.menu_open; + } + fn toggle_bag(&mut self) { + self.bag_open = !self.bag_open + } + fn toggle_map(&mut self) { + self.map_open = !self.map_open; + self.bag_open = false; + } + fn toggle_questlog(&mut self) { + self.open_windows = match self.open_windows { + Windows::Small(Small::Questlog) => Windows::None, + Windows::None | Windows::Small(_) => Windows::Small(Small::Questlog), + Windows::CharacterAnd(small) => match small { + Some(Small::Questlog) => Windows::CharacterAnd(None), + _ => Windows::CharacterAnd(Some(Small::Questlog)), + }, + Windows::Settings => Windows::Settings, + }; + } + fn toggle_charwindow(&mut self) { + self.open_windows = match self.open_windows { + Windows::CharacterAnd(small) => match small { + Some(small) => Windows::Small(small), + None => Windows::None, + }, + Windows::Small(small) => Windows::CharacterAnd(Some(small)), + Windows::None => Windows::CharacterAnd(None), + Windows::Settings => Windows::Settings, + } + } + fn toggle_social(&mut self) { + self.open_windows = match self.open_windows { + Windows::Small(Small::Social) => Windows::None, + Windows::None | Windows::Small(_) => Windows::Small(Small::Social), + Windows::CharacterAnd(small) => match small { + Some(Small::Social) => Windows::CharacterAnd(None), + _ => Windows::CharacterAnd(Some(Small::Social)), + }, + Windows::Settings => Windows::Settings, + }; + } + fn toggle_spellbook(&mut self) { + self.open_windows = match self.open_windows { + Windows::Small(Small::Spellbook) => Windows::None, + Windows::None | Windows::Small(_) => Windows::Small(Small::Spellbook), + Windows::CharacterAnd(small) => match small { + Some(Small::Spellbook) => Windows::CharacterAnd(None), + _ => Windows::CharacterAnd(Some(Small::Spellbook)), + }, + Windows::Settings => Windows::Settings, + }; + } + fn toggle_settings(&mut self) { + self.open_windows = match self.open_windows { + Windows::Settings => Windows::None, + _ => Windows::Settings, + }; + self.bag_open = false; + } + fn toggle_help(&mut self) { + self.show_help = !self.show_help + } + fn toggle_ui(&mut self) { + self.show_ui = !self.show_ui; + } + + fn toggle_windows(&mut self, global_state: &mut GlobalState) { + if self.bag_open + || self.menu_open + || self.map_open + || match self.open_windows { + Windows::None => false, + _ => true, + } + { + self.bag_open = false; + self.menu_open = false; + self.map_open = false; + self.open_windows = Windows::None; + global_state.window.grab_cursor(true); + } else { + self.menu_open = true; + global_state.window.grab_cursor(false); + } + } + + fn typing(&self) -> bool { + match self.ui.widget_capturing_keyboard() { + Some(id) if id == self.chat.input_box_id() => true, + _ => false, + } + } + + pub fn handle_event(&mut self, event: WinEvent, global_state: &mut GlobalState) -> bool { + let cursor_grabbed = global_state.window.is_cursor_grabbed(); + match event { + WinEvent::Ui(event) => { + if (self.typing() && event.is_keyboard() && self.show_ui) + || !(cursor_grabbed && event.is_keyboard_or_mouse()) + { + self.ui.handle_event(event); + } + true + } + WinEvent::KeyDown(Key::ToggleInterface) => { + self.toggle_ui(); + true + } + _ if !self.show_ui => false, + WinEvent::Zoom(_) => !cursor_grabbed && !self.ui.no_widget_capturing_mouse(), + WinEvent::KeyDown(Key::Enter) => { + self.ui.focus_widget(if self.typing() { + None + } else { + Some(self.chat.input_box_id()) + }); + true + } + WinEvent::KeyDown(Key::Escape) => { + if self.typing() { + self.ui.focus_widget(None); + } else { + // Close windows on esc + self.toggle_windows(global_state); + } + true + } + WinEvent::KeyDown(key) if !self.typing() => match key { + Key::Map => { + self.toggle_map(); + true + } + Key::Bag => { + self.toggle_bag(); + true + } + Key::QuestLog => { + self.toggle_questlog(); + true + } + Key::CharacterWindow => { + self.toggle_charwindow(); + true + } + Key::Social => { + self.toggle_social(); + true + } + Key::Spellbook => { + self.toggle_spellbook(); + true + } + Key::Settings => { + self.toggle_settings(); + true + } + Key::Help => { + self.toggle_help(); + true + } + _ => false, + }, + WinEvent::KeyDown(key) | WinEvent::KeyUp(key) => match key { + Key::ToggleCursor => false, + _ => self.typing(), + }, + WinEvent::Char(_) => self.typing(), + _ => false, + } + } + + pub fn maintain(&mut self, renderer: &mut Renderer, tps: f64) -> Vec { + let events = self.update_layout(tps); + self.ui.maintain(renderer); + events + } + + pub fn render(&self, renderer: &mut Renderer) { + self.ui.render(renderer); + } +} From 6e143065cc5ac95f5a6a86624fbcc131dd4fedd3 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Thu, 2 May 2019 14:44:51 +0200 Subject: [PATCH 37/45] rebase Former-commit-id: 9c50e08fc7c4e8afa06f1f995ea1aebd386764c2 --- voxygen/src/hud/mod.rs | 88 +- voxygen/src/hud/mod.rs~settings window | 1899 ------------------------ voxygen/src/scene/figure.rs | 2 +- 3 files changed, 83 insertions(+), 1906 deletions(-) delete mode 100644 voxygen/src/hud/mod.rs~settings window diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 7bdb483e45..5515bc56cb 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -102,6 +102,8 @@ widget_ids! { settings_title, settings_r, settings_l, + settings_scrollbar, + controls_text, //Contents button_help, button_help2, @@ -549,12 +551,12 @@ impl Hud { ids, chat, settings_tab: SettingsTab::Interface, - show_help: true, - show_debug: false, + show_help: false, + show_debug: true, bag_open: false, menu_open: false, map_open: false, - mmap_open: true, + mmap_open: false, show_ui: true, inventorytest_button: false, inventory_space: 0, @@ -996,10 +998,10 @@ impl Hud { // X-button if Button::image(self.imgs.close_button) - .w_h(4.0 * 4.0, 4.0 * 4.0) + .w_h(28.0, 28.0) .hover_image(self.imgs.close_button_hover) .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.bag_contents, 4.5, 4.5) + .top_right_with_margins_on(self.ids.bag_contents, 0.0, 0.0) .set(self.ids.bag_close, ui_widgets) .was_clicked() { @@ -1069,6 +1071,10 @@ impl Hud { .scroll_kids() .scroll_kids_vertically() .set(self.ids.settings_content, ui_widgets); + Scrollbar::y_axis(self.ids.settings_content) + .thickness(5.0) + .rgba(0.33, 0.33, 0.33, 1.0) + .set(self.ids.settings_scrollbar, ui_widgets); // X-Button if Button::image(self.imgs.close_button) .w_h(28.0, 28.0) @@ -1227,7 +1233,75 @@ impl Hud { { self.settings_tab = SettingsTab::Controls; } + if let SettingsTab::Controls = self.settings_tab { + Text::new( + "Free Cursor: TAB \n\ + Toggle Help Window: F1 \n\ + Toggle Interface: F2 \n\ + Toggle FPS and Debug Info: F3 \n\ + \n\ + \n\ + Move Forward: W \n\ + Move Left : A \n\ + Move Right: S \n\ + Move Backwards: D \n\ + \n\ + Jump: Space \n\ + \n\ + Dodge: ?? \n\ + \n\ + Auto Walk: ?? \n\ + \n\ + Sheathe/Draw Weapons: Y \n\ + \n\ + Put on/Remove Helmet: ?? [Has a Cast time of 0,5s] \n\ + \n\ + \n\ + Basic Attack: L-Click \n\ + Secondary Attack/Block/Aim: R-Click \n\ + \n\ + \n\ + Skillbar Slot 1: 1 \n\ + Skillbar Slot 2: 2 \n\ + Skillbar Slot 3: 3 \n\ + Skillbar Slot 4: 4 \n\ + Skillbar Slot 5: 5 \n\ + Skillbar Slot 6: 6 \n\ + Skillbar Slot 7: 7 \n\ + Skillbar Slot 8: 8 \n\ + Skillbar Slot 9: 9 \n\ + Skillbar Slot 10: 0 \n\ + \n\ + \n\ + Pause Menu: ESC \n\ + Settings: N \n\ + Social: O \n\ + Map: M \n\ + Spellbook: P \n\ + Character: C \n\ + Questlog L \n\ + Bag: B \n\ + \n\ + \n\ + \n\ + Activate Chat & Input/Send Message: Enter \n\ + Scroll Chat: Mousewheel on Chat-Window \n\ + \n\ + \n\ + Chat commands: \n\ + \n\ + /alias [Name] - Change your Chat Name \n\ + /tp [Name] - Teleports you to another player + ") + .color(TEXT_COLOR) + .top_left_with_margins_on(self.ids.settings_content, 5.0, 5.0) + .font_id(self.font_opensans) + .font_size(18) + .set(self.ids.controls_text, ui_widgets); + + + } // 4 Video//////////////////////////////// if Button::image(if let SettingsTab::Video = self.settings_tab { self.imgs.settings_button_pressed @@ -1658,7 +1732,9 @@ impl Hud { .set(self.ids.menu_button_2, ui_widgets) .was_clicked() { - //self.menu_open = false; + self.menu_open = false; + self.settings_tab = SettingsTab::Controls; + self.open_windows = Windows::Settings; }; // Servers if Button::image(self.imgs.button_dark) diff --git a/voxygen/src/hud/mod.rs~settings window b/voxygen/src/hud/mod.rs~settings window deleted file mode 100644 index 7bdb483e45..0000000000 --- a/voxygen/src/hud/mod.rs~settings window +++ /dev/null @@ -1,1899 +0,0 @@ -mod chat; - -use crate::{ - render::Renderer, - ui::{self, ScaleMode, ToggleButton, Ui}, - window::{Event as WinEvent, Key, Window}, - GlobalState, -}; -use common::{assets, figure::Segment}; - -use conrod_core::{ - color, - image::Id as ImgId, - text::font::Id as FontId, - widget::{Button, Image, Rectangle, Scrollbar, Text}, - widget_ids, Color, Colorable, Labelable, Positionable, Sizeable, Widget, -}; - -widget_ids! { - struct Ids { - // Test - bag_space_add, - inventorytest_button, - inventorytest_button_label, - // Debug - debug_bg, - debug_button, - debug_button_label, - fps_counter, - // Game Version - version, - - // Bag and Inventory - bag, - bag_contents, - bag_close, - bag_map_open, - inv_alignment, - inv_grid_1, - inv_grid_2, - inv_scrollbar, - inv_slot_0, - inv_slot[], - - // Buttons - settings_button, - social_button, - map_button, - spellbook_button, - character_button, - qlog_button, - social_button_bg, - spellbook_button_bg, - character_button_bg, - qlog_button_bg, - bag_text, - mmap_button, - //help - help, - help_bg, - //ESC-Menu - esc_bg, - fireplace, - menu_button_1, - menu_button_2, - menu_button_3, - menu_button_4, - menu_button_5, - //Mini-Map - mmap_frame, - mmap_frame_bg, - mmap_location, - //Action-Bar - xp_bar, - l_click, - r_click, - health_bar, - mana_bar, - sb_grid_l, - sb_grid_r, - sb_grid_bg_l, - sb_grid_bg_r, - xp_bar_progress, - health_bar_color, - mana_bar_color, - // Level Display - level_text, - next_level_text, - //Window Frames - window_frame_0, - window_frame_1, - window_frame_2, - window_frame_3, - window_frame_4, - window_frame_5, - //0 Settings-Window - settings_bg, - settings_content, - settings_icon, - settings_button_mo, - settings_close, - settings_title, - settings_r, - settings_l, - //Contents - button_help, - button_help2, - show_help_label, - interface, - video, - sound, - gameplay, - controls, - rectangle, - //1 Social - social_frame, - social_bg, - social_icon, - social_close, - social_title, - //2 Map - map_frame, - map_bg, - map_icon, - map_close, - map_title, - map_frame_l, - map_frame_r, - map_frame_bl, - map_frame_br, - //3 Spellbook - spellbook_frame, - spellbook_bg, - spellbook_icon, - spellbook_close, - spellbook_title, - //4 Charwindow - charwindow_frame, - charwindow, - charwindow_bg, - charwindow_icon, - charwindow_close, - charwindow_title, - charwindow_tab_bg, - charwindow_tab1, - charwindow_tab1_title, - charwindow_tab1_level, - charwindow_tab1_exp, - charwindow_tab1_stats, - charwindow_tab1_statnames, - charwindow_tab1_stats_numbers, - charwindow_tab1_expbar, - charwindow_rectangle, - charwindow_exp_rectangle, - charwindow_exp_progress_rectangle, - //5 Quest-Log - questlog_frame, - questlog_bg, - questlog_icon, - questlog_close, - questlog_title, - } -} - -// TODO: make macro to mimic widget_ids! for images ids or find another solution to simplify addition of new images. -pub(self) struct Imgs { - // Bag - bag: ImgId, - bag_hover: ImgId, - bag_press: ImgId, - bag_open: ImgId, - bag_open_hover: ImgId, - bag_open_press: ImgId, - bag_contents: ImgId, - inv_grid: ImgId, - inv_slot: ImgId, - - // Buttons - - mmap_closed: ImgId, - mmap_closed_hover: ImgId, - mmap_closed_press: ImgId, - mmap_open: ImgId, - mmap_open_hover: ImgId, - mmap_open_press: ImgId, - - settings: ImgId, - settings_hover: ImgId, - settings_press: ImgId, - - social_button: ImgId, - social_hover: ImgId, - social_press: ImgId, - - map_button: ImgId, - map_hover: ImgId, - map_press: ImgId, - - spellbook_button: ImgId, - spellbook_hover: ImgId, - spellbook_press: ImgId, - - character_button: ImgId, - character_hover: ImgId, - character_press: ImgId, - - qlog_button: ImgId, - qlog_hover: ImgId, - qlog_press: ImgId, - - // Close button - close_button: ImgId, - close_button_hover: ImgId, - close_button_press: ImgId, - - // Menu - esc_bg: ImgId, - fireplace: ImgId, - button_dark: ImgId, - button_dark_hover: ImgId, - button_dark_press: ImgId, - - // MiniMap - mmap_frame: ImgId, - mmap_frame_closed: ImgId, - - // SkillBar Module - sb_grid: ImgId, - sb_grid_bg: ImgId, - l_click: ImgId, - r_click: ImgId, - mana_bar: ImgId, - health_bar: ImgId, - xp_bar: ImgId, - - //Buff Frame(s) - //buff_frame: ImgId, - //buff_frame_bg: ImgId, - //buff_frame_red: ImgId, - //buff_frame_green: ImgId, - - //Missing: Buff Frame Animation - window_frame: ImgId, - window_frame_2: ImgId, - //Settings-Window - settings_frame_r: ImgId, - settings_frame_l: ImgId, - settings_button: ImgId, - settings_button_pressed: ImgId, - settings_button_hover: ImgId, - settings_button_press: ImgId, - settings_bg: ImgId, - settings_icon: ImgId, - settings_button_mo: ImgId, - check: ImgId, - check_mo: ImgId, - check_press: ImgId, - check_checked: ImgId, - check_checked_mo: ImgId, - slider: ImgId, - slider_indicator: ImgId, - button_blank: ImgId, - button_blue_mo: ImgId, - button_blue_press: ImgId, - window_bg: ImgId, - // Social-Window - social_bg: ImgId, - social_icon: ImgId, - // Map-Window - map_bg: ImgId, - map_icon: ImgId, - map_frame_l: ImgId, - map_frame_r: ImgId, - map_frame_bl: ImgId, - map_frame_br: ImgId, - // Spell Book Window - spellbook_bg: ImgId, - spellbook_icon: ImgId, - // Char Window - charwindow: ImgId, - charwindow_icon: ImgId, - charwindow_tab_bg: ImgId, - charwindow_tab: ImgId, - charwindow_expbar: ImgId, - progress_frame: ImgId, - progress: ImgId, - - // Buttons - grid_button: ImgId, - grid_button_hover: ImgId, - grid_button_press: ImgId, - grid_button_open: ImgId, - - // Quest-Log Window - questlog_bg: ImgId, - questlog_icon: ImgId, - //help - // Chat-Arrow - chat_arrow: ImgId, - chat_arrow_mo: ImgId, - chat_arrow_press: ImgId, -} -impl Imgs { - fn new(ui: &mut Ui, renderer: &mut Renderer) -> Imgs { - let mut load_img = |filename, ui: &mut Ui| { - let fullpath: String = ["/voxygen/", filename].concat(); - let image = image::load_from_memory( - assets::load(fullpath.as_str()) - .expect("Error loading Main UI Image") - .as_slice(), - ) - .unwrap(); - ui.new_graphic(ui::Graphic::Image(image)) - }; - let mut load_vox = |filename, ui: &mut Ui| { - let fullpath: String = ["/voxygen/", filename].concat(); - let dot_vox = dot_vox::load_bytes( - assets::load(fullpath.as_str()) - .expect("Error loading Main UI .vox") - .as_slice(), - ) - .unwrap(); - ui.new_graphic(ui::Graphic::Voxel(Segment::from(dot_vox))) - }; - Imgs { - // Bag - bag: load_img("element/buttons/bag/closed.png", ui), - bag_hover: load_img("element/buttons/bag/closed_hover.png", ui), - bag_press: load_img("element/buttons/bag/closed_press.png", ui), - bag_open: load_img("element/buttons/bag/open.png", ui), - bag_open_hover: load_img("element/buttons/bag/open_hover.png", ui), - bag_open_press: load_img("element/buttons/bag/open_press.png", ui), - bag_contents: load_vox("element/frames/bag.vox", ui), - inv_grid: load_vox("element/frames/inv_grid.vox", ui), - inv_slot: load_vox("element/buttons/inv_slot.vox", ui), - - // Buttons - mmap_closed: load_vox("element/buttons/button_mmap_closed.vox", ui), - mmap_closed_hover: load_vox("element/buttons/button_mmap_closed_hover.vox", ui), - mmap_closed_press: load_vox("element/buttons/button_mmap_closed_press.vox", ui), - mmap_open: load_vox("element/buttons/button_mmap_open.vox", ui), - mmap_open_hover: load_vox("element/buttons/button_mmap_open_hover.vox", ui), - mmap_open_press: load_vox("element/buttons/button_mmap_open_press.vox", ui), - - settings: load_vox("element/buttons/settings.vox", ui), - settings_hover: load_vox("element/buttons/settings_hover.vox", ui), - settings_press: load_vox("element/buttons/settings_press.vox", ui), - - social_button: load_vox("element/buttons/social.vox", ui), - social_hover: load_vox("element/buttons/social_hover.vox", ui), - social_press: load_vox("element/buttons/social_press.vox", ui), - - map_button: load_vox("element/buttons/map.vox", ui), - map_hover: load_vox("element/buttons/map_hover.vox", ui), - map_press: load_vox("element/buttons/map_press.vox", ui), - - spellbook_button: load_vox("element/buttons/spellbook.vox", ui), - spellbook_hover: load_vox("element/buttons/spellbook_hover.vox", ui), - spellbook_press: load_vox("element/buttons/spellbook_press.vox", ui), - - character_button: load_vox("element/buttons/character.vox", ui), - character_hover: load_vox("element/buttons/character_hover.vox", ui), - character_press: load_vox("element/buttons/character_press.vox", ui), - - qlog_button: load_vox("element/buttons/qlog.vox", ui), - qlog_hover: load_vox("element/buttons/qlog_hover.vox", ui), - qlog_press: load_vox("element/buttons/qlog_press.vox", ui), - - grid_button: load_img("element/buttons/border.png", ui), - grid_button_hover: load_img("element/buttons/border_mo.png", ui), - grid_button_press: load_img("element/buttons/border_press.png", ui), - grid_button_open: load_img("element/buttons/border_pressed.png", ui), - - // Close button - close_button: load_vox("element/buttons/x.vox", ui), - close_button_hover: load_vox("element/buttons/x_hover.vox", ui), - close_button_press: load_vox("element/buttons/x_press.vox", ui), - - // Esc-Menu - esc_bg: load_img("element/frames/menu.png", ui), - fireplace: load_vox("element/misc_bg/fireplace.vox", ui), - button_dark: load_vox("element/buttons/button_dark.vox", ui), - button_dark_hover: load_img("element/buttons/button_dark_hover.png", ui), - button_dark_press: load_img("element/buttons/button_dark_press.png", ui), - - // MiniMap - mmap_frame: load_vox("element/frames/mmap.vox", ui), - mmap_frame_closed: load_vox("element/frames/mmap_closed.vox", ui), - - // Skillbar Module - sb_grid: load_img("element/skill_bar/sbar_grid.png", ui), - sb_grid_bg: load_img("element/skill_bar/sbar_grid_bg.png", ui), - l_click: load_img("element/skill_bar/l.png", ui), - r_click: load_img("element/skill_bar/r.png", ui), - mana_bar: load_img("element/skill_bar/mana_bar.png", ui), - health_bar: load_img("element/skill_bar/health_bar.png", ui), - xp_bar: load_img("element/skill_bar/xp_bar.png", ui), - - // Missing: Buff Frame Animation (.gif ?!) (we could do animation in ui.maintain(), or in shader?) - window_frame: load_vox("element/frames/window2.vox", ui), - window_frame_2: load_img("element/frames/window_2.png", ui), - - // Settings Window - settings_frame_r: load_vox("element/frames/settings_r.vox", ui), - settings_frame_l: load_vox("element/frames/settings_l.vox", ui), - settings_button: load_vox("element/buttons/settings_button.vox", ui), - settings_button_pressed: load_vox("element/buttons/settings_button_pressed.vox", ui), - settings_button_hover: load_vox("element/buttons/settings_button_hover.vox", ui), - settings_button_press: load_vox("element/buttons/settings_button_press.vox", ui), - settings_bg: load_img("element/frames/settings.png", ui), - settings_icon: load_img("element/icons/settings.png", ui), - settings_button_mo: load_img("element/buttons/blue_mo.png", ui), - check: load_img("element/buttons/check/no.png", ui), - check_mo: load_img("element/buttons/check/no_mo.png", ui), - check_press: load_img("element/buttons/check/press.png", ui), - check_checked: load_img("element/buttons/check/yes.png", ui), - check_checked_mo: load_img("element/buttons/check/yes_mo.png", ui), - slider: load_img("element/slider/track.png", ui), - slider_indicator: load_img("element/slider/indicator.png", ui), - button_blank: ui.new_graphic(ui::Graphic::Blank), - button_blue_mo: load_img("element/buttons/blue_mo.png", ui), - button_blue_press: load_img("element/buttons/blue_press.png", ui), - - // Window BG - window_bg: load_img("element/misc_bg/window_bg.png", ui), - - // Social Window - social_bg: load_img("element/misc_bg/small_bg.png", ui), - social_icon: load_img("element/icons/social.png", ui), - - // Map Window - map_bg: load_img("element/misc_bg/small_bg.png", ui), - map_icon: load_img("element/icons/map.png", ui), - map_frame_l: load_vox("element/frames/map_l.vox", ui), - map_frame_r: load_vox("element/frames/map_r.vox", ui), - map_frame_bl: load_vox("element/frames/map_bl.vox", ui), - map_frame_br: load_vox("element/frames/map_br.vox", ui), - - // Spell Book Window - spellbook_bg: load_img("element/misc_bg/small_bg.png", ui), - spellbook_icon: load_img("element/icons/spellbook.png", ui), - - // Char Window - charwindow: load_img("element/misc_bg/charwindow.png", ui), - charwindow_icon: load_img("element/icons/charwindow.png", ui), - charwindow_tab_bg: load_img("element/frames/tab.png", ui), - charwindow_tab: load_img("element/buttons/tab.png", ui), - charwindow_expbar: load_img("element/misc_bg/small_bg.png", ui), - progress_frame: load_img("element/frames/progress_bar.png", ui), - progress: load_img("element/misc_bg/progress.png", ui), - - // Quest-Log Window - questlog_bg: load_img("element/misc_bg/small_bg.png", ui), - questlog_icon: load_img("element/icons/questlog.png", ui), - - // Chat-Arrows - chat_arrow: load_img("element/buttons/arrow/chat_arrow.png", ui), - chat_arrow_mo: load_img("element/buttons/arrow/chat_arrow_mo.png", ui), - chat_arrow_press: load_img("element/buttons/arrow/chat_arrow_press.png", ui), - } - } -} - -enum SettingsTab { - Interface, - Video, - Sound, - Gameplay, - Controls, -} - -pub enum Event { - SendMessage(String), - Logout, - Quit, -} - -// TODO: are these the possible layouts we want? -// TODO: maybe replace this with bitflags -// map not here because it currently is displayed over the top of other open windows -enum Windows { - Settings, // display settings window - CharacterAnd(Option), // show character window + optionally another - Small(Small), - None, -} -#[derive(Clone, Copy)] -enum Small { - Spellbook, - Social, - Questlog, -} - -pub struct Hud { - ui: Ui, - ids: Ids, - imgs: Imgs, - chat: chat::Chat, - font_metamorph: FontId, - font_opensans: FontId, - show_help: bool, - show_debug: bool, - bag_open: bool, - menu_open: bool, - open_windows: Windows, - map_open: bool, - mmap_open: bool, - show_ui: bool, - inventory_space: u32, - xp_percentage: f64, - hp_percentage: f64, - mana_percentage: f64, - inventorytest_button: bool, - settings_tab: SettingsTab, -} - -//#[inline] -//pub fn rgba_bytes(r: u8, g: u8, b: u8, a: f32) -> Color { -//Color::Rgba(r as f32 / 255.0, g as f32 / 255.0, b as f32 / 255.0, a) -//} - -impl Hud { - pub fn new(window: &mut Window) -> Self { - let mut ui = Ui::new(window).unwrap(); - // TODO: adjust/remove this, right now it is used to demonstrate window scaling functionality - ui.scaling_mode(ScaleMode::RelativeToWindow([1920.0, 1080.0].into())); - // Generate ids - let ids = Ids::new(ui.id_generator()); - // Load images - let imgs = Imgs::new(&mut ui, window.renderer_mut()); - // Load fonts - let load_font = |filename, ui: &mut Ui| { - let fullpath: String = ["/voxygen/font", filename].concat(); - ui.new_font( - conrod_core::text::Font::from_bytes( - assets::load(fullpath.as_str()).expect("Error loading file"), - ) - .unwrap(), - ) - }; - let font_opensans = load_font("/OpenSans-Regular.ttf", &mut ui); - let font_metamorph = load_font("/Metamorphous-Regular.ttf", &mut ui); - // Chat box - let chat = chat::Chat::new(&mut ui); - - Self { - ui, - imgs, - ids, - chat, - settings_tab: SettingsTab::Interface, - show_help: true, - show_debug: false, - bag_open: false, - menu_open: false, - map_open: false, - mmap_open: true, - show_ui: true, - inventorytest_button: false, - inventory_space: 0, - open_windows: Windows::None, - font_metamorph, - font_opensans, - xp_percentage: 0.4, - hp_percentage: 1.0, - mana_percentage: 1.0, - } - } - - fn update_layout(&mut self, tps: f64) -> Vec { - let mut events = Vec::new(); - let ref mut ui_widgets = self.ui.set_widgets(); - let version = env!("CARGO_PKG_VERSION"); - - const TEXT_COLOR: Color = Color::Rgba(1.0, 1.0, 1.0, 1.0); - const HP_COLOR: Color = Color::Rgba(0.33, 0.63, 0.0, 1.0); - const MANA_COLOR: Color = Color::Rgba(0.42, 0.41, 0.66, 1.0); - const XP_COLOR: Color = Color::Rgba(0.59, 0.41, 0.67, 1.0); - - // Don't show anything if the ui is toggled off - if !self.show_ui { - return events; - } - - // Display debug window - if self.show_debug { - // Alpha Version - Text::new(version) - .top_left_with_margins_on(ui_widgets.window, 5.0, 5.0) - .font_size(14) - .font_id(self.font_opensans) - .color(TEXT_COLOR) - .set(self.ids.version, ui_widgets); - Text::new(&format!("FPS: {:.1}", tps)) - .color(TEXT_COLOR) - .down_from(self.ids.version, 5.0) - .font_id(self.font_opensans) - .font_size(14) - .set(self.ids.fps_counter, ui_widgets); - } - - // Add Bag-Space Button - if self.inventorytest_button { - if Button::image(self.imgs.grid_button) - .w_h(100.0, 100.0) - .middle_of(ui_widgets.window) - .label("1 Up!") - .label_font_size(20) - .hover_image(self.imgs.grid_button_hover) - .press_image(self.imgs.grid_button_press) - .set(self.ids.bag_space_add, ui_widgets) - .was_clicked() - { - self.inventory_space = self.inventory_space + 1; - }; - } - - // Chat box - if let Some(msg) = self - .chat - .update_layout(ui_widgets, self.font_opensans, &self.imgs) - { - events.push(Event::SendMessage(msg)); - } - - // Help Text - if self.show_help { - Image::new(self.imgs.window_frame_2) - .top_left_with_margins_on(ui_widgets.window, 3.0, 3.0) - .w_h(300.0, 190.0) - .set(self.ids.help_bg, ui_widgets); - - Text::new( - "Tab = Free Cursor \n\ - Esc = Open/Close Menus \n\ - \n\ - F1 = Toggle this Window \n\ - F2 = Toggle Interface \n\ - \n\ - Enter = Open Chat \n\ - Mouse Wheel = Scroll Chat", - ) - .color(TEXT_COLOR) - .top_left_with_margins_on(self.ids.help_bg, 20.0, 20.0) - .font_id(self.font_opensans) - .font_size(18) - .set(self.ids.help, ui_widgets); - - // X-button - if Button::image(self.imgs.close_button) - .w_h(100.0 * 0.2, 100.0 * 0.2) - .hover_image(self.imgs.close_button_hover) - .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.help_bg, 8.0, 3.0) - .set(self.ids.button_help2, ui_widgets) - .was_clicked() - { - self.show_help = false; - }; - } - - // Minimap - - if self.mmap_open { - Image::new(self.imgs.mmap_frame) - .w_h(100.0 * 2.0, 100.0 * 2.0) - .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) - .set(self.ids.mmap_frame, ui_widgets); - - Rectangle::fill_with([92.0 * 2.0, 82.0 * 2.0], color::TRANSPARENT) - .mid_top_with_margin_on(self.ids.mmap_frame, 13.0 * 2.0 + 2.0) - .set(self.ids.mmap_frame_bg, ui_widgets); - } - else { - Image::new(self.imgs.mmap_frame_closed) - .w_h(100.0 * 2.0, 11.0 * 2.0) - .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) - .set(self.ids.mmap_frame, ui_widgets); - }; - - if Button::image(if self.mmap_open {self.imgs.mmap_open} else {self.imgs.mmap_closed}) - .w_h(100.0 * 0.2, 100.0 * 0.2) - .hover_image(if self.mmap_open {self.imgs.mmap_open_hover} else {self.imgs.mmap_closed_hover}) - .press_image(if self.mmap_open {self.imgs.mmap_open_press} else {self.imgs.mmap_closed_press}) - .top_right_with_margins_on(self.ids.mmap_frame, 0.0, 0.0) - .set(self.ids.mmap_button, ui_widgets) - .was_clicked() - { - self.mmap_open = !self.mmap_open; - }; - - // Title - // Make it display the actual location - Text::new("Uncanny Valley") - .mid_top_with_margin_on(self.ids.mmap_frame, 3.0) - .font_size(14) - .color(TEXT_COLOR) - .set(self.ids.mmap_location, ui_widgets); - - // Buttons at Bag - - // 0 Settings - if Button::image(self.imgs.settings) - .w_h(29.0, 25.0) - .bottom_right_with_margins_on(ui_widgets.window, 5.0, 57.0) - .hover_image(self.imgs.settings_hover) - .press_image(self.imgs.settings_press) - .label("N") - .label_font_size(10) - .label_font_id(self.font_metamorph) - .color(TEXT_COLOR) - .label_color(TEXT_COLOR) - .label_y(conrod_core::position::Relative::Scalar(-7.0)) - .label_x(conrod_core::position::Relative::Scalar(10.0)) - .set(self.ids.settings_button, ui_widgets) - .was_clicked() - { - self.open_windows = match self.open_windows { - Windows::Settings => Windows::None, - _ => Windows::Settings, - }; - self.bag_open = false; - }; - - // 2 Map - if Button::image(self.imgs.map_button) - .w_h(22.0, 25.0) - .left_from(self.ids.social_button, 10.0) - .hover_image(self.imgs.map_hover) - .press_image(self.imgs.map_press) - .label("M") - .label_font_size(10) - .label_font_id(self.font_metamorph) - .label_color(TEXT_COLOR) - .label_y(conrod_core::position::Relative::Scalar(-7.0)) - .label_x(conrod_core::position::Relative::Scalar(10.0)) - .set(self.ids.map_button, ui_widgets) - .was_clicked() - { - self.map_open = !self.map_open; - self.bag_open = false; - }; - - // Other Windows can only be accessed, when Settings are closed. - // Opening Settings will close all other Windows including the Bag. - // Opening the Map won't close the windows displayed before. - Image::new(self.imgs.social_button) - .w_h(25.0, 25.0) - .left_from(self.ids.settings_button, 10.0) - .set(self.ids.social_button_bg, ui_widgets); - Image::new(self.imgs.spellbook_button) - .w_h(28.0, 25.0) - .left_from(self.ids.map_button, 10.0) - .set(self.ids.spellbook_button_bg, ui_widgets); - Image::new(self.imgs.character_button) - .w_h(27.0, 25.0) - .left_from(self.ids.spellbook_button, 10.0) - .set(self.ids.character_button_bg, ui_widgets); - Image::new(self.imgs.qlog_button) - .w_h(23.0, 25.0) - .left_from(self.ids.character_button, 10.0) - .set(self.ids.qlog_button_bg, ui_widgets); - - if match self.open_windows { - Windows::Settings => false, - _ => true, - } && self.map_open == false - { - // 1 Social - if Button::image(self.imgs.social_button) - .w_h(25.0, 25.0) - .left_from(self.ids.settings_button, 10.0) - .hover_image(self.imgs.social_hover) - .press_image(self.imgs.social_press) - .label("O") - .label_font_size(10) - .label_font_id(self.font_metamorph) - .label_color(TEXT_COLOR) - .label_y(conrod_core::position::Relative::Scalar(-7.0)) - .label_x(conrod_core::position::Relative::Scalar(10.0)) - .set(self.ids.social_button, ui_widgets) - .was_clicked() - { - self.open_windows = match self.open_windows { - Windows::Small(Small::Social) => Windows::None, - Windows::None | Windows::Small(_) => Windows::Small(Small::Social), - Windows::CharacterAnd(small) => match small { - Some(Small::Social) => Windows::CharacterAnd(None), - _ => Windows::CharacterAnd(Some(Small::Social)), - }, - Windows::Settings => Windows::Settings, - }; - } - - // 3 Spellbook - if Button::image(self.imgs.spellbook_button) - .w_h(28.0, 25.0) - .left_from(self.ids.map_button, 10.0) - .hover_image(self.imgs.spellbook_hover) - .press_image(self.imgs.spellbook_press) - .label("P") - .label_font_size(10) - .label_font_id(self.font_metamorph) - .label_color(TEXT_COLOR) - .label_y(conrod_core::position::Relative::Scalar(-7.0)) - .label_x(conrod_core::position::Relative::Scalar(10.0)) - .set(self.ids.spellbook_button, ui_widgets) - .was_clicked() - { - self.open_windows = match self.open_windows { - Windows::Small(Small::Spellbook) => Windows::None, - Windows::None | Windows::Small(_) => Windows::Small(Small::Spellbook), - Windows::CharacterAnd(small) => match small { - Some(Small::Spellbook) => Windows::CharacterAnd(None), - _ => Windows::CharacterAnd(Some(Small::Spellbook)), - }, - Windows::Settings => Windows::Settings, - }; - } - - // 4 Char-Window - if Button::image(self.imgs.character_button) - .w_h(27.0, 25.0) - .left_from(self.ids.spellbook_button, 10.0) - .hover_image(self.imgs.character_hover) - .press_image(self.imgs.character_press) - .label("C") - .label_font_size(10) - .label_font_id(self.font_metamorph) - .label_color(TEXT_COLOR) - .label_y(conrod_core::position::Relative::Scalar(-7.0)) - .label_x(conrod_core::position::Relative::Scalar(10.0)) - .set(self.ids.character_button, ui_widgets) - .was_clicked() - { - self.open_windows = match self.open_windows { - Windows::CharacterAnd(small) => match small { - Some(small) => Windows::Small(small), - None => Windows::None, - }, - Windows::Small(small) => Windows::CharacterAnd(Some(small)), - Windows::None => Windows::CharacterAnd(None), - Windows::Settings => Windows::Settings, - } - } - - // 5 Quest-Log - if Button::image(self.imgs.qlog_button) - .w_h(23.0, 25.0) - .left_from(self.ids.character_button, 10.0) - .hover_image(self.imgs.qlog_hover) - .press_image(self.imgs.qlog_press) - .label("L") - .label_font_size(10) - .label_font_id(self.font_metamorph) - .label_color(TEXT_COLOR) - .label_y(conrod_core::position::Relative::Scalar(-7.0)) - .label_x(conrod_core::position::Relative::Scalar(10.0)) - .set(self.ids.qlog_button, ui_widgets) - .was_clicked() - { - self.open_windows = match self.open_windows { - Windows::Small(Small::Questlog) => Windows::None, - Windows::None | Windows::Small(_) => Windows::Small(Small::Questlog), - Windows::CharacterAnd(small) => match small { - Some(Small::Questlog) => Windows::CharacterAnd(None), - _ => Windows::CharacterAnd(Some(Small::Questlog)), - }, - Windows::Settings => Windows::Settings, - }; - } - } - - // Skillbar Module - - // Experience-Bar - Image::new(self.imgs.xp_bar) - .w_h(2688.0 / 6.0, 116.0 / 6.0) - .mid_bottom_of(ui_widgets.window) - .set(self.ids.xp_bar, ui_widgets); - - Rectangle::fill_with([406.0 * (self.xp_percentage), 5.0], XP_COLOR) // "W=406*[Exp. %]" - .top_left_with_margins_on(self.ids.xp_bar, 5.0, 21.0) - .set(self.ids.xp_bar_progress, ui_widgets); - - // Left Grid - Image::new(self.imgs.sb_grid) - .w_h(2240.0 / 12.0, 448.0 / 12.0) - .up_from(self.ids.xp_bar, 0.0) - .align_left_of(self.ids.xp_bar) - .set(self.ids.sb_grid_l, ui_widgets); - - Image::new(self.imgs.sb_grid_bg) - .w_h(2240.0 / 12.0, 448.0 / 12.0) - .middle_of(self.ids.sb_grid_l) - .set(self.ids.sb_grid_bg_l, ui_widgets); - - // Right Grid - Image::new(self.imgs.sb_grid) - .w_h(2240.0 / 12.0, 448.0 / 12.0) - .up_from(self.ids.xp_bar, 0.0) - .align_right_of(self.ids.xp_bar) - .set(self.ids.sb_grid_r, ui_widgets); - - Image::new(self.imgs.sb_grid_bg) - .w_h(2240.0 / 12.0, 448.0 / 12.0) - .middle_of(self.ids.sb_grid_r) - .set(self.ids.sb_grid_bg_r, ui_widgets); - - // Right and Left Click - Image::new(self.imgs.l_click) - .w_h(224.0 / 6.0, 320.0 / 6.0) - .right_from(self.ids.sb_grid_bg_l, 0.0) - .align_bottom_of(self.ids.sb_grid_bg_l) - .set(self.ids.l_click, ui_widgets); - - Image::new(self.imgs.r_click) - .w_h(224.0 / 6.0, 320.0 / 6.0) - .left_from(self.ids.sb_grid_bg_r, 0.0) - .align_bottom_of(self.ids.sb_grid_bg_r) - .set(self.ids.r_click, ui_widgets); - - // Health Bar - Image::new(self.imgs.health_bar) - .w_h(1120.0 / 6.0, 96.0 / 6.0) - .left_from(self.ids.l_click, 0.0) - .align_top_of(self.ids.l_click) - .set(self.ids.health_bar, ui_widgets); - - // Filling - Rectangle::fill_with([182.0 * (self.hp_percentage), 6.0], HP_COLOR) // "W=182.0 * [Health. %]" - .top_right_with_margins_on(self.ids.health_bar, 5.0, 0.0) - .set(self.ids.health_bar_color, ui_widgets); - - // Mana Bar - Image::new(self.imgs.mana_bar) - .w_h(1120.0 / 6.0, 96.0 / 6.0) - .right_from(self.ids.r_click, 0.0) - .align_top_of(self.ids.r_click) - .set(self.ids.mana_bar, ui_widgets); - - // Filling - Rectangle::fill_with([182.0 * (self.mana_percentage), 6.0], MANA_COLOR) // "W=182.0 * [Mana. %]" - .top_left_with_margins_on(self.ids.mana_bar, 5.0, 0.0) - .set(self.ids.mana_bar_color, ui_widgets); - - // Buffs/Debuffs - - // Buffs - - // Debuffs - - // Level Display - - // Insert actual Level here - Text::new("1") - .left_from(self.ids.xp_bar, -15.0) - .font_size(10) - .color(TEXT_COLOR) - .set(self.ids.level_text, ui_widgets); - - // Insert next Level here - Text::new("2") - .right_from(self.ids.xp_bar, -15.0) - .font_size(10) - .color(TEXT_COLOR) - .set(self.ids.next_level_text, ui_widgets); - - // Bag contents - if self.bag_open { - // Contents - Image::new(self.imgs.bag_contents) - .w_h(68.0 * 4.0, 123.0 * 4.0) - .bottom_right_with_margins_on(ui_widgets.window, 60.0, 5.0) - .set(self.ids.bag_contents, ui_widgets); - - // Alignment for Grid - Rectangle::fill_with([58.0 * 4.0 - 5.0, 100.0 * 4.0], color::TRANSPARENT) - .top_left_with_margins_on(self.ids.bag_contents, 11.0 * 4.0, 5.0 * 4.0) - .scroll_kids() - .scroll_kids_vertically() - .set(self.ids.inv_alignment, ui_widgets); - // Grid - Image::new(self.imgs.inv_grid) - .w_h(58.0 * 4.0, 111.0 * 4.0) - .mid_top_with_margin_on(self.ids.inv_alignment, 0.0) - .set(self.ids.inv_grid_1, ui_widgets); - Image::new(self.imgs.inv_grid) - .w_h(58.0 * 4.0, 111.0 * 4.0) - .mid_top_with_margin_on(self.ids.inv_alignment, 110.0 * 4.0) - .set(self.ids.inv_grid_2, ui_widgets); - Scrollbar::y_axis(self.ids.inv_alignment) - .thickness(5.0) - .rgba(0.33, 0.33, 0.33, 1.0) - .set(self.ids.inv_scrollbar, ui_widgets); - - // X-button - if Button::image(self.imgs.close_button) - .w_h(4.0 * 4.0, 4.0 * 4.0) - .hover_image(self.imgs.close_button_hover) - .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.bag_contents, 4.5, 4.5) - .set(self.ids.bag_close, ui_widgets) - .was_clicked() - { - self.bag_open = false; - } - - if self.inventory_space > 0 { - // First Slot - Button::image(self.imgs.inv_slot) - .top_left_with_margins_on(self.ids.inv_grid_1, 4.0, 4.0) - .w_h(10.0 * 4.0, 10.0 * 4.0) - .set(self.ids.inv_slot_0, ui_widgets); - } - } - - // Bag - if !self.map_open && self.show_ui { - self.bag_open = ToggleButton::new(self.bag_open, self.imgs.bag, self.imgs.bag_open) - .bottom_right_with_margins_on(ui_widgets.window, 5.0, 5.0) - .hover_images(self.imgs.bag_hover, self.imgs.bag_open_hover) - .press_images(self.imgs.bag_press, self.imgs.bag_open_press) - .w_h(420.0 / 10.0, 480.0 / 10.0) - .set(self.ids.bag, ui_widgets); - Text::new("B") - .bottom_right_with_margins_on(self.ids.bag, 0.0, 0.0) - .font_size(10) - .font_id(self.font_metamorph) - .color(TEXT_COLOR) - .set(self.ids.bag_text, ui_widgets); - } else { - Image::new(self.imgs.bag) - .bottom_right_with_margins_on(ui_widgets.window, 5.0, 5.0) - .w_h(420.0 / 10.0, 480.0 / 10.0) - .set(self.ids.bag_map_open, ui_widgets); - Text::new("B") - .bottom_right_with_margins_on(self.ids.bag, 0.0, 0.0) - .font_size(10) - .font_id(self.font_metamorph) - .set(self.ids.bag_text, ui_widgets); - } - - //Windows - - //Char Window will always appear at the left side. Other Windows either appear at the left side, - //or when the Char Window is opened they will appear right from it. - - // 0 Settings - - if let Windows::Settings = self.open_windows { - // Frame Alignment - Rectangle::fill_with([824.0, 488.0], color::TRANSPARENT) - .middle_of(ui_widgets.window) - .set(self.ids.settings_bg, ui_widgets); - // Frame - Image::new(self.imgs.settings_frame_l) - .top_left_with_margins_on(self.ids.settings_bg, 0.0, 0.0) - .w_h(412.0, 488.0) - .set(self.ids.settings_l, ui_widgets); - Image::new(self.imgs.settings_frame_r) - .right_from(self.ids.settings_l, 0.0) - .parent(self.ids.settings_bg) - .w_h(412.0, 488.0) - .set(self.ids.settings_r, ui_widgets); - // Content Alignment - Rectangle::fill_with([198.0*4.0, 97.0*4.0], color::TRANSPARENT) - .top_right_with_margins_on(self.ids.settings_r, 21.0*4.0, 4.0*4.0) - .scroll_kids() - .scroll_kids_vertically() - .set(self.ids.settings_content, ui_widgets); - // X-Button - if Button::image(self.imgs.close_button) - .w_h(28.0, 28.0) - .hover_image(self.imgs.close_button_hover) - .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.settings_r, 0.0, 0.0) - .set(self.ids.settings_close, ui_widgets) - .was_clicked() - { - self.open_windows = Windows::None; - self.settings_tab = SettingsTab::Interface; - } - - // Title - Text::new("Settings") - .mid_top_with_margin_on(self.ids.settings_bg, 5.0) - .font_size(14) - .color(TEXT_COLOR) - .set(self.ids.settings_title, ui_widgets); - // Icon - //Image::new(self.imgs.settings_icon) - //.w_h(224.0 / 3.0, 224.0 / 3.0) - //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) - //.set(self.ids.settings_icon, ui_widgets); - // TODO: Find out if we can remove this - - // 1 Interface//////////////////////////// - if Button::image(if let SettingsTab::Interface = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button - }) - .w_h(31.0*4.0, 12.0*4.0) - .hover_image(if let SettingsTab::Interface = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_hover - }) - .press_image(if let SettingsTab::Interface = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_press - }) - .top_left_with_margins_on(self.ids.settings_l, 8.0*4.0, 2.0*4.0) - .label("Interface") - .label_font_size(14) - .label_color(TEXT_COLOR) - .set(self.ids.interface, ui_widgets) - .was_clicked() - { - self.settings_tab = SettingsTab::Interface; - } - // Toggle Help - if let SettingsTab::Interface = self.settings_tab { - self.show_help = - ToggleButton::new(self.show_help, self.imgs.check, self.imgs.check_checked) - .w_h(288.0 / 24.0, 288.0 / 24.0) - .top_left_with_margins_on(self.ids.settings_content, 5.0, 5.0) - .hover_images(self.imgs.check_checked_mo, self.imgs.check_mo) - .press_images(self.imgs.check_press, self.imgs.check_press) - .set(self.ids.button_help, ui_widgets); - Text::new("Show Help") - .right_from(self.ids.button_help, 10.0) - .font_size(14) - .font_id(self.font_opensans) - .graphics_for(self.ids.button_help) - .color(TEXT_COLOR) - .set(self.ids.show_help_label, ui_widgets); - - self.inventorytest_button = ToggleButton::new( - self.inventorytest_button, - self.imgs.check, - self.imgs.check_checked, - ) - .w_h(288.0 / 24.0, 288.0 / 24.0) - .down_from(self.ids.button_help, 7.0) - .hover_images(self.imgs.check_checked_mo, self.imgs.check_mo) - .press_images(self.imgs.check_press, self.imgs.check_press) - .set(self.ids.inventorytest_button, ui_widgets); - - Text::new("Show Inventory Test Button") - .right_from(self.ids.inventorytest_button, 10.0) - .font_size(14) - .font_id(self.font_opensans) - .graphics_for(self.ids.inventorytest_button) - .color(TEXT_COLOR) - .set(self.ids.inventorytest_button_label, ui_widgets); - - self.show_debug = - ToggleButton::new(self.show_debug, self.imgs.check, self.imgs.check_checked) - .w_h(288.0 / 24.0, 288.0 / 24.0) - .down_from(self.ids.inventorytest_button, 7.0) - .hover_images(self.imgs.check_checked_mo, self.imgs.check_mo) - .press_images(self.imgs.check_press, self.imgs.check_press) - .set(self.ids.debug_button, ui_widgets); - - Text::new("Show Debug Window") - .right_from(self.ids.debug_button, 10.0) - .font_size(14) - .font_id(self.font_opensans) - .graphics_for(self.ids.debug_button) - .color(TEXT_COLOR) - .set(self.ids.debug_button_label, ui_widgets); - } - - // 2 Gameplay//////////////// - if Button::image(if let SettingsTab::Gameplay = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button - }) - .w_h(31.0*4.0, 12.0*4.0) - .hover_image(if let SettingsTab::Gameplay = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_hover - }) - .press_image(if let SettingsTab::Gameplay = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_press - }) - .right_from(self.ids.interface, 0.0) - .label("Gameplay") - .label_font_size(14) - .label_color(TEXT_COLOR) - .set(self.ids.gameplay, ui_widgets) - .was_clicked() - { - self.settings_tab = SettingsTab::Gameplay; - } - - // 3 Controls///////////////////// - if Button::image(if let SettingsTab::Controls = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button - }) - .w_h(31.0*4.0, 12.0*4.0) - .hover_image(if let SettingsTab::Controls = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_hover - }) - .press_image(if let SettingsTab::Controls = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_press - }) - .right_from(self.ids.gameplay, 0.0) - .label("Controls") - .label_font_size(14) - .label_color(TEXT_COLOR) - .set(self.ids.controls, ui_widgets) - .was_clicked() - { - self.settings_tab = SettingsTab::Controls; - } - - // 4 Video//////////////////////////////// - if Button::image(if let SettingsTab::Video = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button - }) - .w_h(31.0*4.0, 12.0*4.0) - .hover_image(if let SettingsTab::Video = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_hover - }) - .press_image(if let SettingsTab::Video = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_press - }) - .right_from(self.ids.controls, 0.0) - .label("Video") - .parent(self.ids.settings_r) - .label_font_size(14) - .label_color(TEXT_COLOR) - .set(self.ids.video, ui_widgets) - .was_clicked() - { - self.settings_tab = SettingsTab::Video; - } - - // 5 Sound/////////////////////////////// - if Button::image(if let SettingsTab::Sound = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button - }) - .w_h(31.0*4.0, 12.0*4.0) - .hover_image(if let SettingsTab::Sound = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_hover - }) - .press_image(if let SettingsTab::Sound = self.settings_tab { - self.imgs.settings_button_pressed - } else { - self.imgs.settings_button_press - }) - .right_from(self.ids.video, 0.0) - .parent(self.ids.settings_r) - .label("Sound") - .label_font_size(14) - .label_color(TEXT_COLOR) - .set(self.ids.sound, ui_widgets) - .was_clicked() - { - self.settings_tab = SettingsTab::Sound; - } - } - - if let Some((small, char_window_open)) = match self.open_windows { - Windows::Small(small) => Some((small, false)), - Windows::CharacterAnd(Some(small)) => Some((small, true)), - _ => None, - } { - // TODO: there is common code in each match arm, might be able to combine this - match small { - Small::Social => { - //Frame - if char_window_open { - Image::new(self.imgs.window_frame) - .right_from(self.ids.charwindow_frame, 20.0) - .w_h(107.0 * 4.0, 125.0 * 4.0) - .set(self.ids.social_frame, ui_widgets); - } else { - Image::new(self.imgs.window_frame) - .top_left_with_margins_on(ui_widgets.window, 200.0, 10.0) - .w_h(107.0 * 4.0, 125.0 * 4.0) - .set(self.ids.social_frame, ui_widgets); - } - - // Icon - Image::new(self.imgs.social_icon) - .w_h(40.0, 40.0) - .top_left_with_margins_on(self.ids.social_frame, 4.0, 4.0) - .set(self.ids.social_icon, ui_widgets); - - // Content alignment - Rectangle::fill_with([362.0, 418.0], color::TRANSPARENT) - .bottom_right_with_margins_on(self.ids.social_frame, 17.0, 17.0) - .scroll_kids() - .scroll_kids_vertically() - .set(self.ids.social_bg, ui_widgets); - - // X-Button - if Button::image(self.imgs.close_button) - .w_h(28.0, 28.0) - .hover_image(self.imgs.close_button_hover) - .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.social_frame, 12.0, 0.0) - .set(self.ids.social_close, ui_widgets) - .was_clicked() - { - self.open_windows = match self.open_windows { - Windows::Small(_) => Windows::None, - Windows::CharacterAnd(_) => Windows::CharacterAnd(None), - _ => Windows::Settings, - } - } - // Title - Text::new("Social") - .mid_top_with_margin_on(self.ids.social_frame, 17.0) - .font_id(self.font_metamorph) - .font_size(14) - .color(TEXT_COLOR) - .set(self.ids.social_title, ui_widgets); - } - Small::Spellbook => { - // Frame - if char_window_open { - Image::new(self.imgs.window_frame) - .right_from(self.ids.charwindow_frame, 20.0) - .w_h(107.0 * 4.0, 125.0 * 4.0) - .set(self.ids.spellbook_frame, ui_widgets); - } else { - Image::new(self.imgs.window_frame) - .top_left_with_margins_on(ui_widgets.window, 200.0, 10.0) - .w_h(107.0 * 4.0, 125.0 * 4.0) - .set(self.ids.spellbook_frame, ui_widgets); - } - - // Icon - Image::new(self.imgs.spellbook_icon) - .w_h(40.0, 40.0) - .top_left_with_margins_on(self.ids.spellbook_frame, 4.0, 4.0) - .set(self.ids.spellbook_icon, ui_widgets); - - // Content alignment - Rectangle::fill_with([362.0, 418.0], color::TRANSPARENT) - .bottom_right_with_margins_on(self.ids.spellbook_frame, 17.0, 17.0) - .scroll_kids() - .scroll_kids_vertically() - .set(self.ids.spellbook_bg, ui_widgets); - - // X-Button - if Button::image(self.imgs.close_button) - .w_h(14.0, 14.0) - .hover_image(self.imgs.close_button_hover) - .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.spellbook_frame, 12.0, 0.0) - .set(self.ids.spellbook_close, ui_widgets) - .was_clicked() - { - self.open_windows = match self.open_windows { - Windows::Small(_) => Windows::None, - Windows::CharacterAnd(_) => Windows::CharacterAnd(None), - _ => Windows::Settings, - } - } - // Title - Text::new("Spellbook") - .mid_top_with_margin_on(self.ids.spellbook_frame, 17.0) - .font_size(14) - .color(TEXT_COLOR) - .set(self.ids.spellbook_title, ui_widgets); - } - Small::Questlog => { - // Frame - if char_window_open { - Image::new(self.imgs.window_frame) - .right_from(self.ids.charwindow_frame, 20.0) - .w_h(107.0 * 4.0, 125.0 * 4.0) - .set(self.ids.questlog_frame, ui_widgets); - } else { - Image::new(self.imgs.window_frame) - .top_left_with_margins_on(ui_widgets.window, 200.0, 10.0) - .w_h(107.0 * 4.0, 125.0 * 4.0) - .set(self.ids.questlog_frame, ui_widgets); - } - - // Icon - Image::new(self.imgs.questlog_icon) - .w_h(40.0, 40.0) - .top_left_with_margins_on(self.ids.questlog_frame, 4.0, 4.0) - .set(self.ids.questlog_icon, ui_widgets); - - // Content alignment - Rectangle::fill_with([362.0, 418.0], color::TRANSPARENT) - .bottom_right_with_margins_on(self.ids.questlog_frame, 17.0, 17.0) - .scroll_kids() - .scroll_kids_vertically() - .set(self.ids.questlog_bg, ui_widgets); - - // X-Button - if Button::image(self.imgs.close_button) - .w_h(20.0, 20.0) - .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.questlog_frame, 17.0, 5.0) - .set(self.ids.questlog_close, ui_widgets) - .was_clicked() - { - self.open_windows = match self.open_windows { - Windows::Small(_) => Windows::None, - Windows::CharacterAnd(_) => Windows::CharacterAnd(None), - _ => Windows::Settings, - } - } - // Title - Text::new("Quest-Log") - .mid_top_with_margin_on(self.ids.questlog_frame, 17.0) - .color(TEXT_COLOR) - .font_size(14) - .set(self.ids.questlog_title, ui_widgets); - } - } - } - - // 4 Char-Window - if let Windows::CharacterAnd(small) = self.open_windows { - // Frame - Image::new(self.imgs.window_frame) - .top_left_with_margins_on(ui_widgets.window, 200.0, 215.0) - .w_h(1648.0 / 4.0, 1952.0 / 4.0) - .set(self.ids.charwindow_frame, ui_widgets); - - // BG - //Image::new(self.imgs.window_bg) - //.w_h(348.0, 404.0) - //.mid_top_with_margin_on(self.ids.charwindow_frame, 48.0) - //.set(self.ids.charwindow_bg, ui_widgets); - - // Overlay - //Image::new(self.imgs.charwindow) - //.middle_of(self.ids.charwindow_bg) - //.set(self.ids.charwindow, ui_widgets); - - // Icon - //Image::new(self.imgs.charwindow_icon) - //.w_h(224.0 / 3.0, 224.0 / 3.0) - //.top_left_with_margins_on(self.ids.charwindow_frame, -10.0, -10.0) - //.set(self.ids.charwindow_icon, ui_widgets); - - // X-Button - if Button::image(self.imgs.close_button) - .w_h(244.0 * 0.22 / 4.0, 244.0 * 0.22 / 4.0) - .hover_image(self.imgs.close_button_hover) - .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.charwindow_frame, 4.0, 4.0) - .set(self.ids.charwindow_close, ui_widgets) - .was_clicked() - { - self.open_windows = match small { - Some(small) => Windows::Small(small), - None => Windows::None, - } - } - - // Title - Text::new("Character Name") //Add in actual Character Name - .mid_top_with_margin_on(self.ids.charwindow_frame, 7.0) - .color(TEXT_COLOR) - .set(self.ids.charwindow_title, ui_widgets); - // Tab BG - Image::new(self.imgs.charwindow_tab_bg) - .w_h(205.0, 412.0) - .mid_left_with_margin_on(self.ids.charwindow_frame, -205.0) - .set(self.ids.charwindow_tab_bg, ui_widgets); - // Tab Rectangle - Rectangle::fill_with([192.0, 371.0], color::rgba(0.0, 0.0, 0.0, 0.8)) - .top_right_with_margins_on(self.ids.charwindow_tab_bg, 20.0, 0.0) - .set(self.ids.charwindow_rectangle, ui_widgets); - // Tab Button - Button::image(self.imgs.charwindow_tab) - .w_h(65.0, 23.0) - .top_left_with_margins_on(self.ids.charwindow_tab_bg, -18.0, 2.0) - .label("Stats") - .label_color(TEXT_COLOR) - .label_font_id(self.font_opensans) - .label_font_size(14) - .set(self.ids.charwindow_tab1, ui_widgets); - Text::new("1") //Add in actual Character Level - .mid_top_with_margin_on(self.ids.charwindow_rectangle, 10.0) - .font_id(self.font_opensans) - .font_size(30) - .color(TEXT_COLOR) - .set(self.ids.charwindow_tab1_level, ui_widgets); - // Exp-Bar Background - Rectangle::fill_with([170.0, 10.0], color::BLACK) - .mid_top_with_margin_on(self.ids.charwindow_rectangle, 50.0) - .set(self.ids.charwindow_exp_rectangle, ui_widgets); - // Exp-Bar Progress - Rectangle::fill_with([170.0 * (self.xp_percentage), 6.0], XP_COLOR) // 0.8 = Experience percantage - .mid_left_with_margin_on(self.ids.charwindow_tab1_expbar, 1.0) - .set(self.ids.charwindow_exp_progress_rectangle, ui_widgets); - // Exp-Bar Foreground Frame - Image::new(self.imgs.progress_frame) - .w_h(170.0, 10.0) - .middle_of(self.ids.charwindow_exp_rectangle) - .set(self.ids.charwindow_tab1_expbar, ui_widgets); - // Exp-Text - Text::new("120/170") // Shows the Exp / Exp to reach the next level - .mid_top_with_margin_on(self.ids.charwindow_tab1_expbar, 10.0) - .font_id(self.font_opensans) - .font_size(15) - .color(TEXT_COLOR) - .set(self.ids.charwindow_tab1_exp, ui_widgets); - - // Stats - Text::new( - "Stamina\n\ - \n\ - Strength\n\ - \n\ - Dexterity\n\ - \n\ - Intelligence", - ) - .top_left_with_margins_on(self.ids.charwindow_rectangle, 100.0, 20.0) - .font_id(self.font_opensans) - .font_size(16) - .color(TEXT_COLOR) - .set(self.ids.charwindow_tab1_statnames, ui_widgets); - - Text::new( - "1234\n\ - \n\ - 12312\n\ - \n\ - 12414\n\ - \n\ - 124124", - ) - .right_from(self.ids.charwindow_tab1_statnames, 10.0) - .font_id(self.font_opensans) - .font_size(16) - .color(TEXT_COLOR) - .set(self.ids.charwindow_tab1_stats, ui_widgets); - } - - // 2 Map - if self.map_open { - // BG - Rectangle::fill_with([824.0, 976.0], color::TRANSPARENT) - .mid_top_with_margin_on(ui_widgets.window, 15.0) - .scroll_kids() - .scroll_kids_vertically() - .set(self.ids.map_bg, ui_widgets); - // Frame - Image::new(self.imgs.map_frame_l) - .top_left_with_margins_on(self.ids.map_bg, 0.0, 0.0) - .w_h(412.0, 488.0) - .set(self.ids.map_frame_l, ui_widgets); - Image::new(self.imgs.map_frame_r) - .right_from(self.ids.map_frame_l, 0.0) - .w_h(412.0, 488.0) - .set(self.ids.map_frame_r, ui_widgets); - Image::new(self.imgs.map_frame_br) - .down_from(self.ids.map_frame_r, 0.0) - .w_h(412.0, 488.0) - .set(self.ids.map_frame_br, ui_widgets); - Image::new(self.imgs.map_frame_bl) - .down_from(self.ids.map_frame_l, 0.0) - .w_h(412.0, 488.0) - .set(self.ids.map_frame_bl, ui_widgets); - - - // Icon - Image::new(self.imgs.map_icon) - .w_h(224.0 / 3.0, 224.0 / 3.0) - .top_left_with_margins_on(self.ids.map_frame, -10.0, -10.0) - .set(self.ids.map_icon, ui_widgets); - - // X-Button - if Button::image(self.imgs.close_button) - .w_h(28.0, 28.0) - .hover_image(self.imgs.close_button_hover) - .press_image(self.imgs.close_button_press) - .top_right_with_margins_on(self.ids.map_frame_r, 0.0, 0.0) - .set(self.ids.map_close, ui_widgets) - .was_clicked() - { - self.map_open = false; - } - // Title - //Text::new("Map") - //.mid_top_with_margin_on(self.ids.map_bg, -7.0) - //.font_size(14) - //.color(TEXT_COLOR) - //.set(self.ids.map_title, ui_widgets); - } - - // ESC-MENU - // Background - if self.menu_open { - Image::new(self.imgs.esc_bg) - .w_h(228.0, 450.0) - .middle_of(ui_widgets.window) - .set(self.ids.esc_bg, ui_widgets); - - Image::new(self.imgs.fireplace) - .w_h(180.0, 60.0) - .mid_top_with_margin_on(self.ids.esc_bg, 50.0) - .set(self.ids.fireplace, ui_widgets); - - // Settings - if Button::image(self.imgs.button_dark) - .mid_top_with_margin_on(self.ids.esc_bg, 115.0) - .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) - .label("Settings") - .label_y(conrod_core::position::Relative::Scalar(2.0)) - .label_color(TEXT_COLOR) - .label_font_size(17) - .set(self.ids.menu_button_1, ui_widgets) - .was_clicked() - { - self.menu_open = false; - self.open_windows = Windows::Settings; - }; - // Controls - if Button::image(self.imgs.button_dark) - .mid_top_with_margin_on(self.ids.esc_bg, 175.0) - .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) - .label("Controls") - .label_y(conrod_core::position::Relative::Scalar(2.0)) - .label_color(TEXT_COLOR) - .label_font_size(17) - .set(self.ids.menu_button_2, ui_widgets) - .was_clicked() - { - //self.menu_open = false; - }; - // Servers - if Button::image(self.imgs.button_dark) - .mid_top_with_margin_on(self.ids.esc_bg, 235.0) - .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) - .label("Servers") - .label_y(conrod_core::position::Relative::Scalar(2.0)) - .label_color(TEXT_COLOR) - .label_font_size(17) - .set(self.ids.menu_button_3, ui_widgets) - .was_clicked() - { - //self.menu_open = false; - }; - // Logout - if Button::image(self.imgs.button_dark) - .mid_top_with_margin_on(self.ids.esc_bg, 295.0) - .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) - .label("Logout") - .label_y(conrod_core::position::Relative::Scalar(2.0)) - .label_color(TEXT_COLOR) - .label_font_size(17) - .set(self.ids.menu_button_4, ui_widgets) - .was_clicked() - { - events.push(Event::Logout); - }; - // Quit - if Button::image(self.imgs.button_dark) - .mid_top_with_margin_on(self.ids.esc_bg, 355.0) - .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) - .label("Quit") - .label_y(conrod_core::position::Relative::Scalar(2.0)) - .label_color(TEXT_COLOR) - .label_font_size(17) - .set(self.ids.menu_button_5, ui_widgets) - .was_clicked() - { - events.push(Event::Quit); - }; - } - - events - } - - pub fn new_message(&mut self, msg: String) { - self.chat.new_message(msg); - } - - fn toggle_menu(&mut self) { - self.menu_open = !self.menu_open; - } - fn toggle_bag(&mut self) { - self.bag_open = !self.bag_open - } - fn toggle_map(&mut self) { - self.map_open = !self.map_open; - self.bag_open = false; - } - fn toggle_questlog(&mut self) { - self.open_windows = match self.open_windows { - Windows::Small(Small::Questlog) => Windows::None, - Windows::None | Windows::Small(_) => Windows::Small(Small::Questlog), - Windows::CharacterAnd(small) => match small { - Some(Small::Questlog) => Windows::CharacterAnd(None), - _ => Windows::CharacterAnd(Some(Small::Questlog)), - }, - Windows::Settings => Windows::Settings, - }; - } - fn toggle_charwindow(&mut self) { - self.open_windows = match self.open_windows { - Windows::CharacterAnd(small) => match small { - Some(small) => Windows::Small(small), - None => Windows::None, - }, - Windows::Small(small) => Windows::CharacterAnd(Some(small)), - Windows::None => Windows::CharacterAnd(None), - Windows::Settings => Windows::Settings, - } - } - fn toggle_social(&mut self) { - self.open_windows = match self.open_windows { - Windows::Small(Small::Social) => Windows::None, - Windows::None | Windows::Small(_) => Windows::Small(Small::Social), - Windows::CharacterAnd(small) => match small { - Some(Small::Social) => Windows::CharacterAnd(None), - _ => Windows::CharacterAnd(Some(Small::Social)), - }, - Windows::Settings => Windows::Settings, - }; - } - fn toggle_spellbook(&mut self) { - self.open_windows = match self.open_windows { - Windows::Small(Small::Spellbook) => Windows::None, - Windows::None | Windows::Small(_) => Windows::Small(Small::Spellbook), - Windows::CharacterAnd(small) => match small { - Some(Small::Spellbook) => Windows::CharacterAnd(None), - _ => Windows::CharacterAnd(Some(Small::Spellbook)), - }, - Windows::Settings => Windows::Settings, - }; - } - fn toggle_settings(&mut self) { - self.open_windows = match self.open_windows { - Windows::Settings => Windows::None, - _ => Windows::Settings, - }; - self.bag_open = false; - } - fn toggle_help(&mut self) { - self.show_help = !self.show_help - } - fn toggle_ui(&mut self) { - self.show_ui = !self.show_ui; - } - - fn toggle_windows(&mut self, global_state: &mut GlobalState) { - if self.bag_open - || self.menu_open - || self.map_open - || match self.open_windows { - Windows::None => false, - _ => true, - } - { - self.bag_open = false; - self.menu_open = false; - self.map_open = false; - self.open_windows = Windows::None; - global_state.window.grab_cursor(true); - } else { - self.menu_open = true; - global_state.window.grab_cursor(false); - } - } - - fn typing(&self) -> bool { - match self.ui.widget_capturing_keyboard() { - Some(id) if id == self.chat.input_box_id() => true, - _ => false, - } - } - - pub fn handle_event(&mut self, event: WinEvent, global_state: &mut GlobalState) -> bool { - let cursor_grabbed = global_state.window.is_cursor_grabbed(); - match event { - WinEvent::Ui(event) => { - if (self.typing() && event.is_keyboard() && self.show_ui) - || !(cursor_grabbed && event.is_keyboard_or_mouse()) - { - self.ui.handle_event(event); - } - true - } - WinEvent::KeyDown(Key::ToggleInterface) => { - self.toggle_ui(); - true - } - _ if !self.show_ui => false, - WinEvent::Zoom(_) => !cursor_grabbed && !self.ui.no_widget_capturing_mouse(), - WinEvent::KeyDown(Key::Enter) => { - self.ui.focus_widget(if self.typing() { - None - } else { - Some(self.chat.input_box_id()) - }); - true - } - WinEvent::KeyDown(Key::Escape) => { - if self.typing() { - self.ui.focus_widget(None); - } else { - // Close windows on esc - self.toggle_windows(global_state); - } - true - } - WinEvent::KeyDown(key) if !self.typing() => match key { - Key::Map => { - self.toggle_map(); - true - } - Key::Bag => { - self.toggle_bag(); - true - } - Key::QuestLog => { - self.toggle_questlog(); - true - } - Key::CharacterWindow => { - self.toggle_charwindow(); - true - } - Key::Social => { - self.toggle_social(); - true - } - Key::Spellbook => { - self.toggle_spellbook(); - true - } - Key::Settings => { - self.toggle_settings(); - true - } - Key::Help => { - self.toggle_help(); - true - } - _ => false, - }, - WinEvent::KeyDown(key) | WinEvent::KeyUp(key) => match key { - Key::ToggleCursor => false, - _ => self.typing(), - }, - WinEvent::Char(_) => self.typing(), - _ => false, - } - } - - pub fn maintain(&mut self, renderer: &mut Renderer, tps: f64) -> Vec { - let events = self.update_layout(tps); - self.ui.maintain(renderer); - events - } - - pub fn render(&self, renderer: &mut Renderer) { - self.ui.render(renderer); - } -} diff --git a/voxygen/src/scene/figure.rs b/voxygen/src/scene/figure.rs index 2a4fbda412..43fb2a5c0c 100644 --- a/voxygen/src/scene/figure.rs +++ b/voxygen/src/scene/figure.rs @@ -116,7 +116,7 @@ impl FigureCache { match head { Head::DefaultHead => "head.vox", }, - Vec3::new(-5.5, -7.0, -6.0), + Vec3::new(-7.5, -8.0, 0.0), ) } From 49361aaa3b23a538d27ecc2013c909ec092a31b8 Mon Sep 17 00:00:00 2001 From: Pfauenauge90 <44173739+Pfauenauge90@users.noreply.github.com> Date: Thu, 2 May 2019 17:55:12 +0200 Subject: [PATCH 38/45] asset update Former-commit-id: 79d7f652f2ae7a150b66cc0612fb6a19b1bfcc79 --- assets/voxygen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/voxygen b/assets/voxygen index 7ebb1a9205..2cafcdccc3 160000 --- a/assets/voxygen +++ b/assets/voxygen @@ -1 +1 @@ -Subproject commit 7ebb1a92057e6c0b9d989ffb7a5fe321599ddd6e +Subproject commit 2cafcdccc302a41ef6bacd0d55bd7bc89400f657 From 4466ef7526d5f357aa118ea3214d69eaf2a3ff7e Mon Sep 17 00:00:00 2001 From: Pfauenauge90 <44173739+Pfauenauge90@users.noreply.github.com> Date: Thu, 2 May 2019 20:06:23 +0200 Subject: [PATCH 39/45] Controls Window Former-commit-id: 785b039f9241da2f0ba66e7e2db2a14a9b8b54c9 --- voxygen/src/hud/chat.rs | 4 +- voxygen/src/hud/mod.rs | 177 +++++++++++++++++++++++++++------------- 2 files changed, 123 insertions(+), 58 deletions(-) diff --git a/voxygen/src/hud/chat.rs b/voxygen/src/hud/chat.rs index 8a7b82135f..9b7e08b147 100644 --- a/voxygen/src/hud/chat.rs +++ b/voxygen/src/hud/chat.rs @@ -157,10 +157,10 @@ impl Chat { // Chat Arrow if !self.scrolled_to_bottom(ui_widgets) { if Button::image(imgs.chat_arrow) - .w_h(22.0, 22.0) + .w_h(20.0, 20.0) .hover_image(imgs.chat_arrow_mo) .press_image(imgs.chat_arrow_press) - .bottom_right_with_margins_on(self.ids.message_box_bg, 2.0, 2.0) + .bottom_right_with_margins_on(self.ids.message_box_bg, 0.0, -22.0) .set(self.ids.chat_arrow, ui_widgets) .was_clicked() { diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 5515bc56cb..d77e7488c4 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -104,6 +104,7 @@ widget_ids! { settings_l, settings_scrollbar, controls_text, + controls_controls, //Contents button_help, button_help2, @@ -412,13 +413,13 @@ impl Imgs { settings_bg: load_img("element/frames/settings.png", ui), settings_icon: load_img("element/icons/settings.png", ui), settings_button_mo: load_img("element/buttons/blue_mo.png", ui), - check: load_img("element/buttons/check/no.png", ui), - check_mo: load_img("element/buttons/check/no_mo.png", ui), - check_press: load_img("element/buttons/check/press.png", ui), - check_checked: load_img("element/buttons/check/yes.png", ui), - check_checked_mo: load_img("element/buttons/check/yes_mo.png", ui), - slider: load_img("element/slider/track.png", ui), - slider_indicator: load_img("element/slider/indicator.png", ui), + check: load_vox("element/buttons/check/no.vox", ui), + check_mo: load_vox("element/buttons/check/no_mo.vox", ui), + check_press: load_vox("element/buttons/check/press.vox", ui), + check_checked: load_vox("element/buttons/check/yes.vox", ui), + check_checked_mo: load_vox("element/buttons/check/yes_mo.vox", ui), + slider: load_vox("element/slider/track.vox", ui), + slider_indicator: load_vox("element/slider/indicator.vox", ui), button_blank: ui.new_graphic(ui::Graphic::Blank), button_blue_mo: load_img("element/buttons/blue_mo.png", ui), button_blue_press: load_img("element/buttons/blue_press.png", ui), @@ -456,9 +457,9 @@ impl Imgs { questlog_icon: load_img("element/icons/questlog.png", ui), // Chat-Arrows - chat_arrow: load_img("element/buttons/arrow/chat_arrow.png", ui), - chat_arrow_mo: load_img("element/buttons/arrow/chat_arrow_mo.png", ui), - chat_arrow_press: load_img("element/buttons/arrow/chat_arrow_press.png", ui), + chat_arrow: load_vox("element/buttons/arrow_down.vox", ui), + chat_arrow_mo: load_vox("element/buttons/arrow_down_hover.vox", ui), + chat_arrow_press: load_vox("element/buttons/arrow_down_press.vox", ui), } } } @@ -1073,7 +1074,7 @@ impl Hud { .set(self.ids.settings_content, ui_widgets); Scrollbar::y_axis(self.ids.settings_content) .thickness(5.0) - .rgba(0.33, 0.33, 0.33, 1.0) + .rgba(0.33, 0.33, 0.33, 1.0) .set(self.ids.settings_scrollbar, ui_widgets); // X-Button if Button::image(self.imgs.close_button) @@ -1234,73 +1235,137 @@ impl Hud { self.settings_tab = SettingsTab::Controls; } if let SettingsTab::Controls = self.settings_tab { - - Text::new( - "Free Cursor: TAB \n\ - Toggle Help Window: F1 \n\ - Toggle Interface: F2 \n\ - Toggle FPS and Debug Info: F3 \n\ + Text::new( + "Free Cursor\n\ + Toggle Help Window\n\ + Toggle Interface\n\ + Toggle FPS and Debug Info\n\ \n\ \n\ - Move Forward: W \n\ - Move Left : A \n\ - Move Right: S \n\ - Move Backwards: D \n\ + Move Forward\n\ + Move Left\n\ + Move Right\n\ + Move Backwards\n\ \n\ - Jump: Space \n\ + Jump\n\ \n\ - Dodge: ?? \n\ + Dodge\n\ \n\ - Auto Walk: ?? \n\ + Auto Walk\n\ \n\ - Sheathe/Draw Weapons: Y \n\ + Sheathe/Draw Weapons\n\ \n\ - Put on/Remove Helmet: ?? [Has a Cast time of 0,5s] \n\ + Put on/Remove Helmet\n\ \n\ \n\ - Basic Attack: L-Click \n\ - Secondary Attack/Block/Aim: R-Click \n\ + Basic Attack\n\ + Secondary Attack/Block/Aim\n\ \n\ \n\ - Skillbar Slot 1: 1 \n\ - Skillbar Slot 2: 2 \n\ - Skillbar Slot 3: 3 \n\ - Skillbar Slot 4: 4 \n\ - Skillbar Slot 5: 5 \n\ - Skillbar Slot 6: 6 \n\ - Skillbar Slot 7: 7 \n\ - Skillbar Slot 8: 8 \n\ - Skillbar Slot 9: 9 \n\ - Skillbar Slot 10: 0 \n\ + Skillbar Slot 1\n\ + Skillbar Slot 2\n\ + Skillbar Slot 3\n\ + Skillbar Slot 4\n\ + Skillbar Slot 5\n\ + Skillbar Slot 6\n\ + Skillbar Slot 7\n\ + Skillbar Slot 8\n\ + Skillbar Slot 9\n\ + Skillbar Slot 10\n\ \n\ \n\ - Pause Menu: ESC \n\ - Settings: N \n\ - Social: O \n\ - Map: M \n\ - Spellbook: P \n\ - Character: C \n\ - Questlog L \n\ - Bag: B \n\ + Pause Menu\n\ + Settings\n\ + Social\n\ + Map\n\ + Spellbook\n\ + Character\n\ + Questlog\n\ + Bag\n\ \n\ \n\ \n\ - Activate Chat & Input/Send Message: Enter \n\ - Scroll Chat: Mousewheel on Chat-Window \n\ + Send Chat Message\n\ + Scroll Chat\n\ \n\ \n\ Chat commands: \n\ \n\ /alias [Name] - Change your Chat Name \n\ /tp [Name] - Teleports you to another player - ") - .color(TEXT_COLOR) - .top_left_with_margins_on(self.ids.settings_content, 5.0, 5.0) - .font_id(self.font_opensans) - .font_size(18) - .set(self.ids.controls_text, ui_widgets); - - + ", + ) + .color(TEXT_COLOR) + .top_left_with_margins_on(self.ids.settings_content, 5.0, 5.0) + .font_id(self.font_opensans) + .font_size(18) + .set(self.ids.controls_text, ui_widgets); + // TODO + Text::new( + "TAB\n\ + F1\n\ + F2\n\ + F3\n\ + \n\ + \n\ + W\n\ + A\n\ + S\n\ + D\n\ + \n\ + SPACE\n\ + \n\ + ??\n\ + \n\ + ??\n\ + \n\ + ??\n\ + \n\ + ??\n\ + \n\ + \n\ + L-Click\n\ + R-Click\n\ + \n\ + \n\ + 1\n\ + 2\n\ + 3\n\ + 4\n\ + 5\n\ + 6\n\ + 7\n\ + 8\n\ + 9\n\ + 0\n\ + \n\ + \n\ + ESC\n\ + N\n\ + O\n\ + M\n\ + P\n\ + C\n\ + L\n\ + B\n\ + \n\ + \n\ + \n\ + ENTER\n\ + Mousewheel\n\ + \n\ + \n\ + \n\ + \n\ + \n\ + \n\ + ", + ) + .color(TEXT_COLOR) + .right_from(self.ids.controls_text, 0.0) + .font_id(self.font_opensans) + .font_size(18) + .set(self.ids.controls_controls, ui_widgets); } // 4 Video//////////////////////////////// if Button::image(if let SettingsTab::Video = self.settings_tab { From 9327add4fa19b2f9b4066c4c510c33389c246f44 Mon Sep 17 00:00:00 2001 From: Pfauenauge90 <44173739+Pfauenauge90@users.noreply.github.com> Date: Thu, 2 May 2019 20:07:13 +0200 Subject: [PATCH 40/45] control window Former-commit-id: 478826a92ed7c86dfa926cc82da0afde96d44b63 --- assets/voxygen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/voxygen b/assets/voxygen index 2cafcdccc3..d4cffdf694 160000 --- a/assets/voxygen +++ b/assets/voxygen @@ -1 +1 @@ -Subproject commit 2cafcdccc302a41ef6bacd0d55bd7bc89400f657 +Subproject commit d4cffdf6946cdbc44b6c28e9ab4abf82b8ee6442 From 0096947eae154441fb34ec6aa782f3ff633fc642 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Fri, 3 May 2019 13:02:03 +0200 Subject: [PATCH 41/45] New Buttons and Input Frame Former-commit-id: cf05992eca9e6a75cedda8c873ef268e4bbaade8 --- assets/voxygen | 2 +- voxygen/src/hud/mod.rs | 44 +++++++++---------- voxygen/src/menu/char_selection/ui.rs | 6 ++- voxygen/src/menu/main/ui.rs | 63 ++++++++++++++------------- 4 files changed, 60 insertions(+), 55 deletions(-) diff --git a/assets/voxygen b/assets/voxygen index d4cffdf694..d887de6c9b 160000 --- a/assets/voxygen +++ b/assets/voxygen @@ -1 +1 @@ -Subproject commit d4cffdf6946cdbc44b6c28e9ab4abf82b8ee6442 +Subproject commit d887de6c9bbe1a770be06a1a4abb6be5fa35f3d2 diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index d77e7488c4..5e389d99b4 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -219,9 +219,9 @@ pub(self) struct Imgs { // Menu esc_bg: ImgId, fireplace: ImgId, - button_dark: ImgId, - button_dark_hover: ImgId, - button_dark_press: ImgId, + button: ImgId, + button_hover: ImgId, + button_press: ImgId, // MiniMap mmap_frame: ImgId, @@ -382,9 +382,9 @@ impl Imgs { // Esc-Menu esc_bg: load_img("element/frames/menu.png", ui), fireplace: load_vox("element/misc_bg/fireplace.vox", ui), - button_dark: load_vox("element/buttons/button_dark.vox", ui), - button_dark_hover: load_img("element/buttons/button_dark_hover.png", ui), - button_dark_press: load_img("element/buttons/button_dark_press.png", ui), + button: load_vox("element/buttons/button.vox", ui), + button_hover: load_img("element/buttons/button_hover.png", ui), + button_press: load_img("element/buttons/button_press.png", ui), // MiniMap mmap_frame: load_vox("element/frames/mmap.vox", ui), @@ -1300,7 +1300,7 @@ impl Hud { .font_id(self.font_opensans) .font_size(18) .set(self.ids.controls_text, ui_widgets); - // TODO + // TODO: Replace with buttons that show the actual keybind and allow the user to change it. Text::new( "TAB\n\ F1\n\ @@ -1769,11 +1769,11 @@ impl Hud { .set(self.ids.fireplace, ui_widgets); // Settings - if Button::image(self.imgs.button_dark) + if Button::image(self.imgs.button) .mid_top_with_margin_on(self.ids.esc_bg, 115.0) .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) + .hover_image(self.imgs.button_hover) + .press_image(self.imgs.button_press) .label("Settings") .label_y(conrod_core::position::Relative::Scalar(2.0)) .label_color(TEXT_COLOR) @@ -1785,11 +1785,11 @@ impl Hud { self.open_windows = Windows::Settings; }; // Controls - if Button::image(self.imgs.button_dark) + if Button::image(self.imgs.button) .mid_top_with_margin_on(self.ids.esc_bg, 175.0) .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) + .hover_image(self.imgs.button_hover) + .press_image(self.imgs.button_press) .label("Controls") .label_y(conrod_core::position::Relative::Scalar(2.0)) .label_color(TEXT_COLOR) @@ -1802,11 +1802,11 @@ impl Hud { self.open_windows = Windows::Settings; }; // Servers - if Button::image(self.imgs.button_dark) + if Button::image(self.imgs.button) .mid_top_with_margin_on(self.ids.esc_bg, 235.0) .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) + .hover_image(self.imgs.button_hover) + .press_image(self.imgs.button_press) .label("Servers") .label_y(conrod_core::position::Relative::Scalar(2.0)) .label_color(TEXT_COLOR) @@ -1817,11 +1817,11 @@ impl Hud { //self.menu_open = false; }; // Logout - if Button::image(self.imgs.button_dark) + if Button::image(self.imgs.button) .mid_top_with_margin_on(self.ids.esc_bg, 295.0) .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) + .hover_image(self.imgs.button_hover) + .press_image(self.imgs.button_press) .label("Logout") .label_y(conrod_core::position::Relative::Scalar(2.0)) .label_color(TEXT_COLOR) @@ -1832,11 +1832,11 @@ impl Hud { events.push(Event::Logout); }; // Quit - if Button::image(self.imgs.button_dark) + if Button::image(self.imgs.button) .mid_top_with_margin_on(self.ids.esc_bg, 355.0) .w_h(170.0, 50.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) + .hover_image(self.imgs.button_hover) + .press_image(self.imgs.button_press) .label("Quit") .label_y(conrod_core::position::Relative::Scalar(2.0)) .label_color(TEXT_COLOR) diff --git a/voxygen/src/menu/char_selection/ui.rs b/voxygen/src/menu/char_selection/ui.rs index 75047685b9..f23e169a2d 100644 --- a/voxygen/src/menu/char_selection/ui.rs +++ b/voxygen/src/menu/char_selection/ui.rs @@ -52,6 +52,7 @@ widget_ids! { undead_skin_bg, elf_skin_bg, danari_skin_bg, + name_input_bg, // Buttons @@ -577,9 +578,12 @@ impl CharSelectionUi { self.character_creation = false; } // Character Name Input + Rectangle::fill_with([320.0, 50.0], color::rgba(0.0, 0.0, 0.0, 0.99)) + .mid_bottom_with_margin_on(self.ids.bg_creation, 20.0) + .set(self.ids.name_input_bg, ui_widgets); Button::image(self.imgs.name_input) .w_h(337.0, 67.0) - .mid_bottom_with_margin_on(self.ids.bg_creation, 10.0) + .middle_of(self.ids.name_input_bg) .set(self.ids.name_input, ui_widgets); for event in TextBox::new(&self.character_name) .w_h(300.0, 60.0) diff --git a/voxygen/src/menu/main/ui.rs b/voxygen/src/menu/main/ui.rs index 7cf2b4d632..1ffd13d461 100644 --- a/voxygen/src/menu/main/ui.rs +++ b/voxygen/src/menu/main/ui.rs @@ -34,6 +34,8 @@ widget_ids! { username_field, singleplayer_button, singleplayer_text, + usrnm_bg, + srvr_bg, // Serverlist servers_button, servers_frame, @@ -56,9 +58,6 @@ struct Imgs { input_bg: ImgId, error_frame: ImgId, - button_dark: ImgId, - button_dark_hover: ImgId, - button_dark_press: ImgId, button: ImgId, button_hover: ImgId, button_press: ImgId, @@ -93,9 +92,6 @@ impl Imgs { input_bg: load_vox("element/misc_bg/textbox.vox", ui), error_frame: load_img("element/frames/window_2.png", ui), - button_dark: load_vox("element/buttons/button_dark.vox", ui), - button_dark_hover: load_vox("element/buttons/button_dark_hover.vox", ui), - button_dark_press: load_vox("element/buttons/button_dark_press.vox", ui), button: load_vox("element/buttons/button.vox", ui), button_hover: load_vox("element/buttons/button_hover.vox", ui), button_press: load_vox("element/buttons/button_press.vox", ui), @@ -208,16 +204,18 @@ impl MainMenuUi { } const TEXT_COLOR: Color = Color::Rgba(1.0, 1.0, 1.0, 1.0); - // Username - // TODO: get a lower resolution and cleaner input_bg.png + // Username + Rectangle::fill_with([320.0, 50.0], color::rgba(0.0, 0.0, 0.0, 0.99)) + .middle_of(ui_widgets.window) + .set(self.ids.usrnm_bg, ui_widgets); Image::new(self.imgs.input_bg) .w_h(337.0, 67.0) - .middle_of(ui_widgets.window) + .middle_of(self.ids.usrnm_bg) .set(self.ids.username_bg, ui_widgets); for event in TextBox::new(&self.username) - .w_h(580.0 / 2.0, 60.0 / 2.0) + .w_h(290.0, 30.0) .mid_bottom_with_margin_on(self.ids.username_bg, 44.0 / 2.0) - .font_size(20) + .font_size(22) .font_id(self.font_opensans) .text_color(TEXT_COLOR) // transparent background @@ -252,11 +250,11 @@ impl MainMenuUi { .set(self.ids.error_frame, ui_widgets); text.mid_top_with_margin_on(self.ids.error_frame, 10.0) .set(self.ids.login_error, ui_widgets); - if Button::image(self.imgs.button_dark) + if Button::image(self.imgs.button) .w_h(100.0, 30.0) .mid_bottom_with_margin_on(self.ids.login_error_bg, 5.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) + .hover_image(self.imgs.button_hover) + .press_image(self.imgs.button_press) .label_y(Relative::Scalar(2.0)) .label("Okay") .label_font_size(10) @@ -294,11 +292,11 @@ impl MainMenuUi { if item .set( - Button::image(self.imgs.button_dark) + Button::image(self.imgs.button) .w_h(100.0, 53.0) .mid_bottom_with_margin_on(self.ids.servers_frame, 5.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) + .hover_image(self.imgs.button_hover) + .press_image(self.imgs.button_press) .label_y(Relative::Scalar(2.0)) .label(&text) .label_font_size(20) @@ -312,11 +310,11 @@ impl MainMenuUi { } } - if Button::image(self.imgs.button_dark) + if Button::image(self.imgs.button) .w_h(200.0, 53.0) .mid_bottom_with_margin_on(self.ids.servers_frame, 5.0) - .hover_image(self.imgs.button_dark_hover) - .press_image(self.imgs.button_dark_press) + .hover_image(self.imgs.button_hover) + .press_image(self.imgs.button_press) .label_y(Relative::Scalar(2.0)) .label("Close") .label_font_size(20) @@ -328,14 +326,17 @@ impl MainMenuUi { }; } // Server address + Rectangle::fill_with([320.0, 50.0], color::rgba(0.0, 0.0, 0.0, 0.98)) + .down_from(self.ids.usrnm_bg, 30.0) + .set(self.ids.srvr_bg, ui_widgets); Image::new(self.imgs.input_bg) .w_h(337.0, 67.0) - .down_from(self.ids.username_bg, 10.0) + .middle_of(self.ids.srvr_bg) .set(self.ids.address_bg, ui_widgets); for event in TextBox::new(&self.server_address) - .w_h(580.0 / 2.0, 60.0 / 2.0) + .w_h(290.0, 30.0) .mid_bottom_with_margin_on(self.ids.address_bg, 44.0 / 2.0) - .font_size(20) + .font_size(22) .font_id(self.font_opensans) .text_color(TEXT_COLOR) // transparent background @@ -356,7 +357,7 @@ impl MainMenuUi { // Change button text and remove hover/press images if a connection is in progress if let Some(start) = self.connecting { Button::image(self.imgs.button) - .w_h(258.0, 68.0) + .w_h(258.0, 55.0) .down_from(self.ids.address_bg, 20.0) .align_middle_x_of(self.ids.address_bg) .label("Connecting...") @@ -369,14 +370,14 @@ impl MainMenuUi { pulse / 4.0 + 0.75, ) }) - .label_font_size(24) + .label_font_size(22) .label_y(Relative::Scalar(5.0)) .set(self.ids.login_button, ui_widgets); } else { if Button::image(self.imgs.button) .hover_image(self.imgs.button_hover) .press_image(self.imgs.button_press) - .w_h(258.0, 68.0) + .w_h(258.0, 55.0) .down_from(self.ids.address_bg, 20.0) .align_middle_x_of(self.ids.address_bg) .label("Login") @@ -394,12 +395,12 @@ impl MainMenuUi { if Button::image(self.imgs.button) .hover_image(self.imgs.button_hover) .press_image(self.imgs.button_press) - .w_h(258.0, 68.0) + .w_h(258.0, 55.0) .down_from(self.ids.login_button, 20.0) .align_middle_x_of(self.ids.address_bg) .label("Singleplayer") .label_color(TEXT_COLOR) - .label_font_size(24) + .label_font_size(22) .label_y(Relative::Scalar(5.0)) .label_x(Relative::Scalar(2.0)) .set(self.ids.singleplayer_button, ui_widgets) @@ -409,7 +410,7 @@ impl MainMenuUi { } // Quit if Button::image(self.imgs.button) - .w_h(203.0, 53.0) + .w_h(190.0, 40.0) .bottom_left_with_margins_on(ui_widgets.window, 60.0, 30.0) .hover_image(self.imgs.button_hover) .press_image(self.imgs.button_press) @@ -424,7 +425,7 @@ impl MainMenuUi { }; // Settings if Button::image(self.imgs.button) - .w_h(203.0, 53.0) + .w_h(190.0, 40.0) .up_from(self.ids.quit_button, 8.0) .hover_image(self.imgs.button_hover) .press_image(self.imgs.button_press) @@ -437,7 +438,7 @@ impl MainMenuUi { {}; // Servers if Button::image(self.imgs.button) - .w_h(203.0, 53.0) + .w_h(190.0, 40.0) .up_from(self.ids.settings_button, 8.0) .hover_image(self.imgs.button_hover) .press_image(self.imgs.button_press) From 823d43f4c21b645940120a8104d21726654ce219 Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Fri, 3 May 2019 13:21:44 +0200 Subject: [PATCH 42/45] textbox visuals Former-commit-id: 4ae65bb009a1e461143b3dbf3f3e52344148fa7c --- assets/voxygen | 2 +- voxygen/src/menu/main/ui.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/voxygen b/assets/voxygen index d887de6c9b..225805da11 160000 --- a/assets/voxygen +++ b/assets/voxygen @@ -1 +1 @@ -Subproject commit d887de6c9bbe1a770be06a1a4abb6be5fa35f3d2 +Subproject commit 225805da11d330f759c0767695d03b81f0c850ae diff --git a/voxygen/src/menu/main/ui.rs b/voxygen/src/menu/main/ui.rs index 1ffd13d461..ee58b1aea3 100644 --- a/voxygen/src/menu/main/ui.rs +++ b/voxygen/src/menu/main/ui.rs @@ -205,7 +205,7 @@ impl MainMenuUi { const TEXT_COLOR: Color = Color::Rgba(1.0, 1.0, 1.0, 1.0); // Username - Rectangle::fill_with([320.0, 50.0], color::rgba(0.0, 0.0, 0.0, 0.99)) + Rectangle::fill_with([320.0, 50.0], color::rgba(0.0, 0.0, 0.0, 0.97)) .middle_of(ui_widgets.window) .set(self.ids.usrnm_bg, ui_widgets); Image::new(self.imgs.input_bg) @@ -326,7 +326,7 @@ impl MainMenuUi { }; } // Server address - Rectangle::fill_with([320.0, 50.0], color::rgba(0.0, 0.0, 0.0, 0.98)) + Rectangle::fill_with([320.0, 50.0], color::rgba(0.0, 0.0, 0.0, 0.97)) .down_from(self.ids.usrnm_bg, 30.0) .set(self.ids.srvr_bg, ui_widgets); Image::new(self.imgs.input_bg) From 64a4a529cfe1b5f13d6069890ece005793356d2d Mon Sep 17 00:00:00 2001 From: Pfauenauge Date: Fri, 3 May 2019 13:25:58 +0200 Subject: [PATCH 43/45] asset update Former-commit-id: 58b9a630dbf5d1b584d0df01c0ff5ca407a2f762 --- assets/voxygen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/voxygen b/assets/voxygen index 225805da11..bcf9a93d20 160000 --- a/assets/voxygen +++ b/assets/voxygen @@ -1 +1 @@ -Subproject commit 225805da11d330f759c0767695d03b81f0c850ae +Subproject commit bcf9a93d2061c981fa9ecb13e2f8a8d51524d045 From a7346878d1bfe5afae91b6f1cb65152a5704d26b Mon Sep 17 00:00:00 2001 From: Pfauenauge90 <44173739+Pfauenauge90@users.noreply.github.com> Date: Fri, 3 May 2019 15:17:53 +0200 Subject: [PATCH 44/45] deleted .gitignore in voxygen Former-commit-id: 8a3ede769bb5f74af836bb8975fa2e1b7281c716 --- voxygen/.gitignore | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 voxygen/.gitignore diff --git a/voxygen/.gitignore b/voxygen/.gitignore deleted file mode 100644 index 6f47212ae1..0000000000 --- a/voxygen/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -/target -**/*.rs.bk -Cargo.lock -settings.toml -voxygen.log From e02e5defe835aa5e038933fe20ac5da3dee00399 Mon Sep 17 00:00:00 2001 From: Forest Date: Fri, 3 May 2019 09:49:05 -0400 Subject: [PATCH 45/45] Ran clean code Former-commit-id: 77b012d79af3cb9e56c008df1802c89a38f3374c --- voxygen/src/hud/mod.rs | 115 ++++++++++++++------------ voxygen/src/menu/char_selection/ui.rs | 4 +- voxygen/src/menu/main/ui.rs | 2 +- voxygen/src/scene/figure.rs | 2 +- 4 files changed, 66 insertions(+), 57 deletions(-) diff --git a/voxygen/src/hud/mod.rs b/voxygen/src/hud/mod.rs index 5e389d99b4..d5c983514a 100644 --- a/voxygen/src/hud/mod.rs +++ b/voxygen/src/hud/mod.rs @@ -179,7 +179,6 @@ pub(self) struct Imgs { inv_slot: ImgId, // Buttons - mmap_closed: ImgId, mmap_closed_hover: ImgId, mmap_closed_press: ImgId, @@ -224,7 +223,7 @@ pub(self) struct Imgs { button_press: ImgId, // MiniMap - mmap_frame: ImgId, + mmap_frame: ImgId, mmap_frame_closed: ImgId, // SkillBar Module @@ -344,7 +343,7 @@ impl Imgs { mmap_open: load_vox("element/buttons/button_mmap_open.vox", ui), mmap_open_hover: load_vox("element/buttons/button_mmap_open_hover.vox", ui), mmap_open_press: load_vox("element/buttons/button_mmap_open_press.vox", ui), - + settings: load_vox("element/buttons/settings.vox", ui), settings_hover: load_vox("element/buttons/settings_hover.vox", ui), settings_press: load_vox("element/buttons/settings_press.vox", ui), @@ -387,7 +386,7 @@ impl Imgs { button_press: load_img("element/buttons/button_press.png", ui), // MiniMap - mmap_frame: load_vox("element/frames/mmap.vox", ui), + mmap_frame: load_vox("element/frames/mmap.vox", ui), mmap_frame_closed: load_vox("element/frames/mmap_closed.vox", ui), // Skillbar Module @@ -662,35 +661,46 @@ impl Hud { }; } - // Minimap + // Minimap - if self.mmap_open { + if self.mmap_open { Image::new(self.imgs.mmap_frame) - .w_h(100.0 * 2.0, 100.0 * 2.0) - .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) - .set(self.ids.mmap_frame, ui_widgets); + .w_h(100.0 * 2.0, 100.0 * 2.0) + .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) + .set(self.ids.mmap_frame, ui_widgets); - Rectangle::fill_with([92.0 * 2.0, 82.0 * 2.0], color::TRANSPARENT) - .mid_top_with_margin_on(self.ids.mmap_frame, 13.0 * 2.0 + 2.0) - .set(self.ids.mmap_frame_bg, ui_widgets); - } - else { - Image::new(self.imgs.mmap_frame_closed) + Rectangle::fill_with([92.0 * 2.0, 82.0 * 2.0], color::TRANSPARENT) + .mid_top_with_margin_on(self.ids.mmap_frame, 13.0 * 2.0 + 2.0) + .set(self.ids.mmap_frame_bg, ui_widgets); + } else { + Image::new(self.imgs.mmap_frame_closed) .w_h(100.0 * 2.0, 11.0 * 2.0) .top_right_with_margins_on(ui_widgets.window, 5.0, 5.0) - .set(self.ids.mmap_frame, ui_widgets); - }; - - if Button::image(if self.mmap_open {self.imgs.mmap_open} else {self.imgs.mmap_closed}) - .w_h(100.0 * 0.2, 100.0 * 0.2) - .hover_image(if self.mmap_open {self.imgs.mmap_open_hover} else {self.imgs.mmap_closed_hover}) - .press_image(if self.mmap_open {self.imgs.mmap_open_press} else {self.imgs.mmap_closed_press}) - .top_right_with_margins_on(self.ids.mmap_frame, 0.0, 0.0) - .set(self.ids.mmap_button, ui_widgets) - .was_clicked() - { - self.mmap_open = !self.mmap_open; - }; + .set(self.ids.mmap_frame, ui_widgets); + }; + + if Button::image(if self.mmap_open { + self.imgs.mmap_open + } else { + self.imgs.mmap_closed + }) + .w_h(100.0 * 0.2, 100.0 * 0.2) + .hover_image(if self.mmap_open { + self.imgs.mmap_open_hover + } else { + self.imgs.mmap_closed_hover + }) + .press_image(if self.mmap_open { + self.imgs.mmap_open_press + } else { + self.imgs.mmap_closed_press + }) + .top_right_with_margins_on(self.ids.mmap_frame, 0.0, 0.0) + .set(self.ids.mmap_button, ui_widgets) + .was_clicked() + { + self.mmap_open = !self.mmap_open; + }; // Title // Make it display the actual location @@ -1052,23 +1062,23 @@ impl Hud { // 0 Settings if let Windows::Settings = self.open_windows { - // Frame Alignment + // Frame Alignment Rectangle::fill_with([824.0, 488.0], color::TRANSPARENT) - .middle_of(ui_widgets.window) + .middle_of(ui_widgets.window) .set(self.ids.settings_bg, ui_widgets); // Frame Image::new(self.imgs.settings_frame_l) .top_left_with_margins_on(self.ids.settings_bg, 0.0, 0.0) .w_h(412.0, 488.0) .set(self.ids.settings_l, ui_widgets); - Image::new(self.imgs.settings_frame_r) + Image::new(self.imgs.settings_frame_r) .right_from(self.ids.settings_l, 0.0) .parent(self.ids.settings_bg) .w_h(412.0, 488.0) .set(self.ids.settings_r, ui_widgets); // Content Alignment - Rectangle::fill_with([198.0*4.0, 97.0*4.0], color::TRANSPARENT) - .top_right_with_margins_on(self.ids.settings_r, 21.0*4.0, 4.0*4.0) + Rectangle::fill_with([198.0 * 4.0, 97.0 * 4.0], color::TRANSPARENT) + .top_right_with_margins_on(self.ids.settings_r, 21.0 * 4.0, 4.0 * 4.0) .scroll_kids() .scroll_kids_vertically() .set(self.ids.settings_content, ui_widgets); @@ -1097,10 +1107,10 @@ impl Hud { .set(self.ids.settings_title, ui_widgets); // Icon //Image::new(self.imgs.settings_icon) - //.w_h(224.0 / 3.0, 224.0 / 3.0) - //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) - //.set(self.ids.settings_icon, ui_widgets); - // TODO: Find out if we can remove this + //.w_h(224.0 / 3.0, 224.0 / 3.0) + //.top_left_with_margins_on(self.ids.settings_bg, -10.0, -10.0) + //.set(self.ids.settings_icon, ui_widgets); + // TODO: Find out if we can remove this // 1 Interface//////////////////////////// if Button::image(if let SettingsTab::Interface = self.settings_tab { @@ -1108,7 +1118,7 @@ impl Hud { } else { self.imgs.settings_button }) - .w_h(31.0*4.0, 12.0*4.0) + .w_h(31.0 * 4.0, 12.0 * 4.0) .hover_image(if let SettingsTab::Interface = self.settings_tab { self.imgs.settings_button_pressed } else { @@ -1119,7 +1129,7 @@ impl Hud { } else { self.imgs.settings_button_press }) - .top_left_with_margins_on(self.ids.settings_l, 8.0*4.0, 2.0*4.0) + .top_left_with_margins_on(self.ids.settings_l, 8.0 * 4.0, 2.0 * 4.0) .label("Interface") .label_font_size(14) .label_color(TEXT_COLOR) @@ -1182,12 +1192,12 @@ impl Hud { } // 2 Gameplay//////////////// - if Button::image(if let SettingsTab::Gameplay = self.settings_tab { + if Button::image(if let SettingsTab::Gameplay = self.settings_tab { self.imgs.settings_button_pressed } else { self.imgs.settings_button }) - .w_h(31.0*4.0, 12.0*4.0) + .w_h(31.0 * 4.0, 12.0 * 4.0) .hover_image(if let SettingsTab::Gameplay = self.settings_tab { self.imgs.settings_button_pressed } else { @@ -1214,7 +1224,7 @@ impl Hud { } else { self.imgs.settings_button }) - .w_h(31.0*4.0, 12.0*4.0) + .w_h(31.0 * 4.0, 12.0 * 4.0) .hover_image(if let SettingsTab::Controls = self.settings_tab { self.imgs.settings_button_pressed } else { @@ -1368,12 +1378,12 @@ impl Hud { .set(self.ids.controls_controls, ui_widgets); } // 4 Video//////////////////////////////// - if Button::image(if let SettingsTab::Video = self.settings_tab { + if Button::image(if let SettingsTab::Video = self.settings_tab { self.imgs.settings_button_pressed } else { self.imgs.settings_button }) - .w_h(31.0*4.0, 12.0*4.0) + .w_h(31.0 * 4.0, 12.0 * 4.0) .hover_image(if let SettingsTab::Video = self.settings_tab { self.imgs.settings_button_pressed } else { @@ -1383,7 +1393,7 @@ impl Hud { self.imgs.settings_button_pressed } else { self.imgs.settings_button_press - }) + }) .right_from(self.ids.controls, 0.0) .label("Video") .parent(self.ids.settings_r) @@ -1401,7 +1411,7 @@ impl Hud { } else { self.imgs.settings_button }) - .w_h(31.0*4.0, 12.0*4.0) + .w_h(31.0 * 4.0, 12.0 * 4.0) .hover_image(if let SettingsTab::Sound = self.settings_tab { self.imgs.settings_button_pressed } else { @@ -1705,7 +1715,7 @@ impl Hud { // 2 Map if self.map_open { - // BG + // BG Rectangle::fill_with([824.0, 976.0], color::TRANSPARENT) .mid_top_with_margin_on(ui_widgets.window, 15.0) .scroll_kids() @@ -1727,8 +1737,7 @@ impl Hud { Image::new(self.imgs.map_frame_bl) .down_from(self.ids.map_frame_l, 0.0) .w_h(412.0, 488.0) - .set(self.ids.map_frame_bl, ui_widgets); - + .set(self.ids.map_frame_bl, ui_widgets); // Icon Image::new(self.imgs.map_icon) @@ -1749,10 +1758,10 @@ impl Hud { } // Title //Text::new("Map") - //.mid_top_with_margin_on(self.ids.map_bg, -7.0) - //.font_size(14) - //.color(TEXT_COLOR) - //.set(self.ids.map_title, ui_widgets); + //.mid_top_with_margin_on(self.ids.map_bg, -7.0) + //.font_size(14) + //.color(TEXT_COLOR) + //.set(self.ids.map_title, ui_widgets); } // ESC-MENU diff --git a/voxygen/src/menu/char_selection/ui.rs b/voxygen/src/menu/char_selection/ui.rs index f23e169a2d..42d2704b4b 100644 --- a/voxygen/src/menu/char_selection/ui.rs +++ b/voxygen/src/menu/char_selection/ui.rs @@ -579,8 +579,8 @@ impl CharSelectionUi { } // Character Name Input Rectangle::fill_with([320.0, 50.0], color::rgba(0.0, 0.0, 0.0, 0.99)) - .mid_bottom_with_margin_on(self.ids.bg_creation, 20.0) - .set(self.ids.name_input_bg, ui_widgets); + .mid_bottom_with_margin_on(self.ids.bg_creation, 20.0) + .set(self.ids.name_input_bg, ui_widgets); Button::image(self.imgs.name_input) .w_h(337.0, 67.0) .middle_of(self.ids.name_input_bg) diff --git a/voxygen/src/menu/main/ui.rs b/voxygen/src/menu/main/ui.rs index ee58b1aea3..f669ec1e42 100644 --- a/voxygen/src/menu/main/ui.rs +++ b/voxygen/src/menu/main/ui.rs @@ -204,7 +204,7 @@ impl MainMenuUi { } const TEXT_COLOR: Color = Color::Rgba(1.0, 1.0, 1.0, 1.0); - // Username + // Username Rectangle::fill_with([320.0, 50.0], color::rgba(0.0, 0.0, 0.0, 0.97)) .middle_of(ui_widgets.window) .set(self.ids.usrnm_bg, ui_widgets); diff --git a/voxygen/src/scene/figure.rs b/voxygen/src/scene/figure.rs index 43fb2a5c0c..58d529537a 100644 --- a/voxygen/src/scene/figure.rs +++ b/voxygen/src/scene/figure.rs @@ -116,7 +116,7 @@ impl FigureCache { match head { Head::DefaultHead => "head.vox", }, - Vec3::new(-7.5, -8.0, 0.0), + Vec3::new(-7.5, -8.0, 0.0), ) }