Merge branch 'master' of gitlab.com:veloren/veloren into sharp/small-fixes

This commit is contained in:
Joshua Yanovski 2020-08-07 13:23:19 +02:00
commit fba64a7d93
6 changed files with 33 additions and 50 deletions

View File

@ -79,6 +79,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Bow M2 is now a charged attack that scales the longer it's held - Bow M2 is now a charged attack that scales the longer it's held
- Fixed window resizing on Mac OS X. - Fixed window resizing on Mac OS X.
- Dehardcoded many item variants - Dehardcoded many item variants
- Tooltips avoid the mouse better and disappear when hovered
### Removed ### Removed

View File

@ -44,7 +44,6 @@ widget_ids! {
} }
} }
const TOOLTIP_UPSHIFT: f64 = 40.0;
#[derive(WidgetCommon)] #[derive(WidgetCommon)]
pub struct Buttons<'a> { pub struct Buttons<'a> {
client: &'a Client, client: &'a Client,
@ -167,7 +166,6 @@ impl<'a> Widget for Buttons<'a> {
"", "",
&button_tooltip, &button_tooltip,
) )
.bottom_offset(55.0)
.set(state.ids.bag, ui) .set(state.ids.bag, ui)
.was_clicked() .was_clicked()
{ {
@ -228,7 +226,6 @@ impl<'a> Widget for Buttons<'a> {
"", "",
&button_tooltip, &button_tooltip,
) )
.bottom_offset(TOOLTIP_UPSHIFT)
.set(state.ids.settings_button, ui) .set(state.ids.settings_button, ui)
.was_clicked() .was_clicked()
{ {
@ -266,7 +263,6 @@ impl<'a> Widget for Buttons<'a> {
"", "",
&button_tooltip, &button_tooltip,
) )
.bottom_offset(TOOLTIP_UPSHIFT)
.set(state.ids.social_button, ui) .set(state.ids.social_button, ui)
.was_clicked() .was_clicked()
{ {
@ -303,7 +299,6 @@ impl<'a> Widget for Buttons<'a> {
"", "",
&button_tooltip, &button_tooltip,
) )
.bottom_offset(TOOLTIP_UPSHIFT)
.set(state.ids.map_button, ui) .set(state.ids.map_button, ui)
.was_clicked() .was_clicked()
{ {
@ -341,7 +336,6 @@ impl<'a> Widget for Buttons<'a> {
"", "",
&button_tooltip, &button_tooltip,
) )
.bottom_offset(TOOLTIP_UPSHIFT)
.set(state.ids.spellbook_button, ui) .set(state.ids.spellbook_button, ui)
.was_clicked() .was_clicked()
{ {
@ -378,7 +372,6 @@ impl<'a> Widget for Buttons<'a> {
"", "",
&button_tooltip, &button_tooltip,
) )
.bottom_offset(TOOLTIP_UPSHIFT)
.set(state.ids.crafting_button, ui) .set(state.ids.crafting_button, ui)
.was_clicked() .was_clicked()
{ {

View File

@ -806,14 +806,12 @@ impl<'a> Widget for Skillbar<'a> {
}) })
}; };
const SLOT_TOOLTIP_UPSHIFT: f64 = 70.0;
//Slot 5 //Slot 5
let slot = slot_maker let slot = slot_maker
.fabricate(hotbar::Slot::Five, [20.0 * scale as f32; 2]) .fabricate(hotbar::Slot::Five, [20.0 * scale as f32; 2])
.bottom_left_with_margins_on(state.ids.m1_slot, 0.0, -20.0 * scale); .bottom_left_with_margins_on(state.ids.m1_slot, 0.0, -20.0 * scale);
if let Some((title, desc)) = tooltip_text(hotbar::Slot::Five) { if let Some((title, desc)) = tooltip_text(hotbar::Slot::Five) {
slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip) slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip)
.bottom_offset(SLOT_TOOLTIP_UPSHIFT)
.set(state.ids.slot5, ui); .set(state.ids.slot5, ui);
} else { } else {
slot.set(state.ids.slot5, ui); slot.set(state.ids.slot5, ui);
@ -824,7 +822,6 @@ impl<'a> Widget for Skillbar<'a> {
.left_from(state.ids.slot5, 0.0); .left_from(state.ids.slot5, 0.0);
if let Some((title, desc)) = tooltip_text(hotbar::Slot::Four) { if let Some((title, desc)) = tooltip_text(hotbar::Slot::Four) {
slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip) slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip)
.bottom_offset(SLOT_TOOLTIP_UPSHIFT)
.set(state.ids.slot4, ui); .set(state.ids.slot4, ui);
} else { } else {
slot.set(state.ids.slot4, ui); slot.set(state.ids.slot4, ui);
@ -835,7 +832,6 @@ impl<'a> Widget for Skillbar<'a> {
.left_from(state.ids.slot4, 0.0); .left_from(state.ids.slot4, 0.0);
if let Some((title, desc)) = tooltip_text(hotbar::Slot::Three) { if let Some((title, desc)) = tooltip_text(hotbar::Slot::Three) {
slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip) slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip)
.bottom_offset(SLOT_TOOLTIP_UPSHIFT)
.set(state.ids.slot3, ui); .set(state.ids.slot3, ui);
} else { } else {
slot.set(state.ids.slot3, ui); slot.set(state.ids.slot3, ui);
@ -846,7 +842,6 @@ impl<'a> Widget for Skillbar<'a> {
.left_from(state.ids.slot3, 0.0); .left_from(state.ids.slot3, 0.0);
if let Some((title, desc)) = tooltip_text(hotbar::Slot::Two) { if let Some((title, desc)) = tooltip_text(hotbar::Slot::Two) {
slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip) slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip)
.bottom_offset(SLOT_TOOLTIP_UPSHIFT)
.set(state.ids.slot2, ui); .set(state.ids.slot2, ui);
} else { } else {
slot.set(state.ids.slot2, ui); slot.set(state.ids.slot2, ui);
@ -860,7 +855,6 @@ impl<'a> Widget for Skillbar<'a> {
.left_from(state.ids.slot2, 0.0); .left_from(state.ids.slot2, 0.0);
if let Some((title, desc)) = tooltip_text(hotbar::Slot::One) { if let Some((title, desc)) = tooltip_text(hotbar::Slot::One) {
slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip) slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip)
.bottom_offset(SLOT_TOOLTIP_UPSHIFT)
.set(state.ids.slot1, ui); .set(state.ids.slot1, ui);
} else { } else {
slot.set(state.ids.slot1, ui); slot.set(state.ids.slot1, ui);
@ -874,7 +868,6 @@ impl<'a> Widget for Skillbar<'a> {
.bottom_right_with_margins_on(state.ids.m2_slot, 0.0, -20.0 * scale); .bottom_right_with_margins_on(state.ids.m2_slot, 0.0, -20.0 * scale);
if let Some((title, desc)) = tooltip_text(hotbar::Slot::Six) { if let Some((title, desc)) = tooltip_text(hotbar::Slot::Six) {
slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip) slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip)
.bottom_offset(SLOT_TOOLTIP_UPSHIFT)
.set(state.ids.slot6, ui); .set(state.ids.slot6, ui);
} else { } else {
slot.set(state.ids.slot6, ui); slot.set(state.ids.slot6, ui);
@ -885,7 +878,6 @@ impl<'a> Widget for Skillbar<'a> {
.right_from(state.ids.slot6, 0.0); .right_from(state.ids.slot6, 0.0);
if let Some((title, desc)) = tooltip_text(hotbar::Slot::Seven) { if let Some((title, desc)) = tooltip_text(hotbar::Slot::Seven) {
slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip) slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip)
.bottom_offset(SLOT_TOOLTIP_UPSHIFT)
.set(state.ids.slot7, ui); .set(state.ids.slot7, ui);
} else { } else {
slot.set(state.ids.slot7, ui); slot.set(state.ids.slot7, ui);
@ -896,7 +888,6 @@ impl<'a> Widget for Skillbar<'a> {
.right_from(state.ids.slot7, 0.0); .right_from(state.ids.slot7, 0.0);
if let Some((title, desc)) = tooltip_text(hotbar::Slot::Eight) { if let Some((title, desc)) = tooltip_text(hotbar::Slot::Eight) {
slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip) slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip)
.bottom_offset(SLOT_TOOLTIP_UPSHIFT)
.set(state.ids.slot8, ui); .set(state.ids.slot8, ui);
} else { } else {
slot.set(state.ids.slot8, ui); slot.set(state.ids.slot8, ui);
@ -907,7 +898,6 @@ impl<'a> Widget for Skillbar<'a> {
.right_from(state.ids.slot8, 0.0); .right_from(state.ids.slot8, 0.0);
if let Some((title, desc)) = tooltip_text(hotbar::Slot::Nine) { if let Some((title, desc)) = tooltip_text(hotbar::Slot::Nine) {
slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip) slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip)
.bottom_offset(SLOT_TOOLTIP_UPSHIFT)
.set(state.ids.slot9, ui); .set(state.ids.slot9, ui);
} else { } else {
slot.set(state.ids.slot9, ui); slot.set(state.ids.slot9, ui);
@ -921,7 +911,6 @@ impl<'a> Widget for Skillbar<'a> {
.right_from(state.ids.slot9, 0.0); .right_from(state.ids.slot9, 0.0);
if let Some((title, desc)) = tooltip_text(hotbar::Slot::Ten) { if let Some((title, desc)) = tooltip_text(hotbar::Slot::Ten) {
slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip) slot.with_tooltip(self.tooltip_manager, title, desc, &item_tooltip)
.bottom_offset(SLOT_TOOLTIP_UPSHIFT)
.set(state.ids.slot10, ui); .set(state.ids.slot10, ui);
} else { } else {
slot.set(state.ids.slot10, ui); slot.set(state.ids.slot10, ui);

View File

@ -20,8 +20,8 @@ pub fn loadout_slot_text<'a>(
pub fn item_text<'a>(item: &'a Item) -> (&'_ str, Cow<'a, str>) { pub fn item_text<'a>(item: &'a Item) -> (&'_ str, Cow<'a, str>) {
let desc = match &item.kind { let desc = match &item.kind {
ItemKind::Armor(armor) => Cow::Owned(armor_desc(armor.clone(), item.description())), ItemKind::Armor(armor) => Cow::Owned(armor_desc(&armor, item.description())),
ItemKind::Tool(tool) => Cow::Owned(tool_desc(tool.clone(), item.description())), ItemKind::Tool(tool) => Cow::Owned(tool_desc(&tool, item.description())),
/*ItemKind::Consumable(kind, effect, ..) => { /*ItemKind::Consumable(kind, effect, ..) => {
Cow::Owned(consumable_desc(consumable, item.description())) Cow::Owned(consumable_desc(consumable, item.description()))
},*/ },*/
@ -35,7 +35,7 @@ pub fn item_text<'a>(item: &'a Item) -> (&'_ str, Cow<'a, str>) {
(item.name(), desc) (item.name(), desc)
} }
// Armor Description // Armor Description
fn armor_desc(armor: Armor, desc: &str) -> String { fn armor_desc(armor: &Armor, desc: &str) -> String {
// TODO: localization // TODO: localization
let kind = match armor.kind { let kind = match armor.kind {
ArmorKind::Shoulder(_) => "Shoulders", ArmorKind::Shoulder(_) => "Shoulders",
@ -55,6 +55,13 @@ fn armor_desc(armor: Armor, desc: &str) -> String {
Protection::Invincible => "Inf".to_string(), Protection::Invincible => "Inf".to_string(),
}; };
// TODO: remove when legacy descriptions are fixed by persistence overhaul
let desc = if desc.contains("<Right-Click to use>") {
"Legacy item."
} else {
desc
};
if !desc.is_empty() { if !desc.is_empty() {
format!( format!(
"{}\n\nArmor: {}\n\n{}\n\n<Right-Click to use>", "{}\n\nArmor: {}\n\n{}\n\n<Right-Click to use>",
@ -65,7 +72,7 @@ fn armor_desc(armor: Armor, desc: &str) -> String {
} }
} }
// Weapon/Tool Description // Weapon/Tool Description
fn tool_desc(tool: Tool, desc: &str) -> String { fn tool_desc(tool: &Tool, desc: &str) -> String {
// TODO: localization // TODO: localization
let kind = match tool.kind { let kind = match tool.kind {
ToolKind::Sword(_) => "Sword", ToolKind::Sword(_) => "Sword",
@ -81,6 +88,13 @@ fn tool_desc(tool: Tool, desc: &str) -> String {
}; };
let power = tool.base_power(); let power = tool.base_power();
// TODO: remove when legacy descriptions are fixed by persistence overhaul
let desc = if desc.contains("<Right-Click to use>") {
"Legacy item."
} else {
desc
};
if !desc.is_empty() { if !desc.is_empty() {
format!( format!(
"{}\n\nPower: {:0.1}\n\n{}\n\n<Right-Click to use>", "{}\n\nPower: {:0.1}\n\n{}\n\n<Right-Click to use>",

View File

@ -905,8 +905,6 @@ impl CharSelectionUi {
"", "",
&tooltip_human, &tooltip_human,
) )
.bottom_offset(55.0)
.x_offset(-10.0)
.set(self.ids.create_button, ui_widgets) .set(self.ids.create_button, ui_widgets)
.was_clicked() .was_clicked()
{} {}

View File

@ -52,17 +52,16 @@ impl TooltipManager {
if let Some(um_id) = current.widget_under_mouse { if let Some(um_id) = current.widget_under_mouse {
match self.state { match self.state {
HoverState::Hovering(hover) if um_id == hover.0 || um_id == self.tooltip_id => (), HoverState::Hovering(hover) if um_id == hover.0 => (),
HoverState::Hovering(hover) => { HoverState::Hovering(hover) => {
self.state = self.state =
HoverState::Fading(Instant::now(), hover, Some((Instant::now(), um_id))) HoverState::Fading(Instant::now(), hover, Some((Instant::now(), um_id)))
}, },
HoverState::Fading(_, _, Some((_, id))) HoverState::Fading(_, _, Some((_, id))) if um_id == id => {},
if um_id == id || um_id == self.tooltip_id => {},
HoverState::Fading(start, hover, _) => { HoverState::Fading(start, hover, _) => {
self.state = HoverState::Fading(start, hover, Some((Instant::now(), um_id))) self.state = HoverState::Fading(start, hover, Some((Instant::now(), um_id)))
}, },
HoverState::Start(_, id) if um_id == id || um_id == self.tooltip_id => (), HoverState::Start(_, id) if um_id == id => (),
HoverState::Start(_, _) | HoverState::None => { HoverState::Start(_, _) | HoverState::None => {
self.state = HoverState::Start(Instant::now(), um_id) self.state = HoverState::Start(Instant::now(), um_id)
}, },
@ -100,8 +99,6 @@ impl TooltipManager {
img_id: Option<image::Id>, img_id: Option<image::Id>,
image_dims: Option<(f64, f64)>, image_dims: Option<(f64, f64)>,
src_id: widget::Id, src_id: widget::Id,
bottom_offset: f64,
x_offset: f64,
ui: &mut UiCell, ui: &mut UiCell,
) { ) {
let tooltip_id = self.tooltip_id; let tooltip_id = self.tooltip_id;
@ -122,9 +119,17 @@ impl TooltipManager {
let (w_w, w_h) = (ui.win_w, ui.win_h); let (w_w, w_h) = (ui.win_w, ui.win_h);
// Determine position based on size and mouse position // Determine position based on size and mouse position
// Flow to the bottom right of the mouse // Flow to the top left of the mouse when there is space
let x = (m_x + t_w / 2.0).min(w_w / 2.0 - t_w / 2.0 + x_offset); let x = if (m_x + w_w / 2.0) > t_w {
let y = (m_y - mp_h - t_h / 2.0).max(-w_h / 2.0 + t_h / 2.0 + bottom_offset); m_x - t_w / 2.0
} else {
m_x + t_w / 2.0
};
let y = if w_h - (m_y + w_h / 2.0) > t_h + mp_h {
m_y + mp_h + t_h / 2.0
} else {
m_y - mp_h - t_h / 2.0
};
tooltip tooltip
.floating(true) .floating(true)
.transparency(transparency) .transparency(transparency)
@ -157,9 +162,6 @@ pub struct Tooltipped<'a, W> {
desc_text: &'a str, desc_text: &'a str,
img_id: Option<image::Id>, img_id: Option<image::Id>,
image_dims: Option<(f64, f64)>, image_dims: Option<(f64, f64)>,
// Offsets limit of bottom of tooltip
bottom_offset: Option<f64>,
x_offset: Option<f64>,
tooltip: &'a Tooltip<'a>, tooltip: &'a Tooltip<'a>,
} }
impl<'a, W: Widget> Tooltipped<'a, W> { impl<'a, W: Widget> Tooltipped<'a, W> {
@ -173,16 +175,6 @@ impl<'a, W: Widget> Tooltipped<'a, W> {
self self
} }
pub fn x_offset(mut self, off: f64) -> Self {
self.x_offset = Some(off);
self
}
pub fn bottom_offset(mut self, off: f64) -> Self {
self.bottom_offset = Some(off);
self
}
pub fn set(self, id: widget::Id, ui: &mut UiCell) -> W::Event { pub fn set(self, id: widget::Id, ui: &mut UiCell) -> W::Event {
let event = self.inner.set(id, ui); let event = self.inner.set(id, ui);
self.tooltip_manager.set_tooltip( self.tooltip_manager.set_tooltip(
@ -192,8 +184,6 @@ impl<'a, W: Widget> Tooltipped<'a, W> {
self.img_id, self.img_id,
self.image_dims, self.image_dims,
id, id,
self.bottom_offset.unwrap_or(0.0),
self.x_offset.unwrap_or(0.0),
ui, ui,
); );
event event
@ -227,8 +217,6 @@ impl<W: Widget> Tooltipable for W {
desc_text, desc_text,
img_id: None, img_id: None,
image_dims: None, image_dims: None,
bottom_offset: None,
x_offset: None,
tooltip, tooltip,
} }
} }