From efbf538569ee706dd2709741ad85e3df77b59c5b Mon Sep 17 00:00:00 2001 From: Snowram Date: Sat, 3 Jul 2021 03:27:20 +0200 Subject: [PATCH] Makes dungeons start at level 1 visually --- CHANGELOG.md | 1 + .../element/ui/map/buttons/dungeon_hover.png | Bin 142 -> 140 bytes assets/voxygen/element/ui/map/icons/dif_3.png | Bin 82 -> 91 bytes assets/voxygen/element/ui/map/icons/dif_4.png | Bin 83 -> 98 bytes assets/voxygen/element/ui/map/icons/dif_5.png | Bin 83 -> 95 bytes .../element/ui/map/icons/dif_unknown.png | Bin 0 -> 95 bytes voxygen/src/hud/img_ids.rs | 1 + voxygen/src/hud/map.rs | 68 ++++++++++-------- voxygen/src/hud/minimap.rs | 29 ++++---- 9 files changed, 54 insertions(+), 45 deletions(-) create mode 100644 assets/voxygen/element/ui/map/icons/dif_unknown.png diff --git a/CHANGELOG.md b/CHANGELOG.md index 29efb0ee00..1bca9a3765 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,6 +50,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Usage of "stamina" replaced with "energy" - Glider dimensions now depend on character height - Glider dimensions somewhat increased overall +- Dungeon difficulty level starts at 1 instead of 0 ### Removed diff --git a/assets/voxygen/element/ui/map/buttons/dungeon_hover.png b/assets/voxygen/element/ui/map/buttons/dungeon_hover.png index e0ad40bebc67448e23f213e709ca6f7c7f0a0c35..7469bc8489c4bb3de69f0c8d084afd8909132efb 100644 GIT binary patch delta 111 zcmV-#0FeKV0gM5VBxqAfL_t(|0qv3j1^_V-1M`0X`kp?mRUpKo5oPHRIBrZ?^kNPy zXQd3V#!{8t!cq~M)WXPmdKI;Vst0J8)XP5=M^ diff --git a/assets/voxygen/element/ui/map/icons/dif_5.png b/assets/voxygen/element/ui/map/icons/dif_5.png index d6b9f05bcdd2ebf2b712461fbcacd5e1df8a75be..c80a8b80320d3bb6af72242535785c6ff86ef225 100644 GIT binary patch literal 95 zcmeAS@N?(olHy`uVBq!ia0vp^JV4CB!2%@H-(IT%Qfi(qjv*C{$qh~a9XebNw>C0p tuq@~FPLN`Ko^Z+F?F$n>&N*(344(r1H`+Soe+TMd@O1TaS?83{1OPf98t4E3 literal 83 zcmeAS@N?(olHy`uVBq!ia0vp^B0$W-!2%>z!mi5#DJf4E$B+ufWQL~y4jwFj Widget for Map<'a> { SiteKind::Tree => i18n.get("hud.map.tree"), }); let (difficulty, desc) = match &site.kind { - SiteKind::Town => (0, i18n.get("hud.map.town").to_string()), + SiteKind::Town => (None, i18n.get("hud.map.town").to_string()), SiteKind::Dungeon { difficulty } => ( - *difficulty, + Some(*difficulty), i18n.get("hud.map.difficulty_dungeon") - .replace("{difficulty}", difficulty.to_string().as_str()), + .replace("{difficulty}", (difficulty + 1).to_string().as_str()), ), - SiteKind::Castle => (0, i18n.get("hud.map.castle").to_string()), - SiteKind::Cave => (0, i18n.get("hud.map.cave").to_string()), - SiteKind::Tree => (0, i18n.get("hud.map.tree").to_string()), + SiteKind::Castle => (None, i18n.get("hud.map.castle").to_string()), + SiteKind::Cave => (None, i18n.get("hud.map.cave").to_string()), + SiteKind::Tree => (None, i18n.get("hud.map.tree").to_string()), }; let desc = desc + &get_site_economy(site_rich); let site_btn = Button::image(match &site.kind { @@ -828,12 +828,12 @@ impl<'a> Widget for Map<'a> { SiteKind::Town => TEXT_COLOR, SiteKind::Castle => TEXT_COLOR, SiteKind::Dungeon { .. } => match difficulty { - 0 => QUALITY_LOW, - 1 => QUALITY_COMMON, - 2 => QUALITY_MODERATE, - 3 => QUALITY_HIGH, - 4 => QUALITY_EPIC, - 5 => QUALITY_DEBUG, + Some(0) => QUALITY_LOW, + Some(1) => QUALITY_COMMON, + Some(2) => QUALITY_MODERATE, + Some(3) => QUALITY_HIGH, + Some(4) => QUALITY_EPIC, + Some(5) => QUALITY_DEBUG, _ => TEXT_COLOR, }, SiteKind::Cave => TEXT_COLOR, @@ -859,34 +859,40 @@ impl<'a> Widget for Map<'a> { // Difficulty from 0-6 // 0 = towns and places without a difficulty level if show_difficulty { - let size = 1.8; // Size factor for difficulty indicators + let rsize = zoom * 1.8; // Size factor for difficulty indicators let dif_img = Image::new(match difficulty { - 1 => self.imgs.map_dif_1, - 2 => self.imgs.map_dif_2, - 3 => self.imgs.map_dif_3, - 4 => self.imgs.map_dif_4, - 5 => self.imgs.map_dif_6, - _ => self.imgs.nothing, + Some(0) => self.imgs.map_dif_1, + Some(1) => self.imgs.map_dif_2, + Some(2) => self.imgs.map_dif_3, + Some(3) => self.imgs.map_dif_4, + Some(4) => self.imgs.map_dif_5, + Some(5) => self.imgs.map_dif_6, + Some(_) => self.imgs.map_dif_unknown, + None => self.imgs.nothing, }) .mid_top_with_margin_on(state.ids.mmap_site_icons[i], match difficulty { - 5 => -2.0 * zoom * size, - _ => -1.0 * zoom * size, + Some(0 | 1) => -1.0 * rsize, + Some(_) => -2.0 * rsize, + _ => -1.0 * rsize, }) .w(match difficulty { - 5 => 2.0 * zoom * size, - _ => 1.0 * zoom * size * difficulty as f64, + Some(0) => 1.0 * rsize, + Some(1 | 2 | 5) => 2.0 * rsize, + Some(_) => 3.0 * rsize, + _ => 1.0 * rsize, }) .h(match difficulty { - 5 => 2.0 * size * zoom, - _ => 1.0 * zoom * size, + Some(0 | 1) => 1.0 * rsize, + Some(_) => 2.0 * rsize, + _ => 1.0 * rsize, }) .color(Some(match difficulty { - 0 => QUALITY_LOW, - 1 => QUALITY_COMMON, - 2 => QUALITY_MODERATE, - 3 => QUALITY_HIGH, - 4 => QUALITY_EPIC, - 5 => QUALITY_DEBUG, + Some(0) => QUALITY_LOW, + Some(1) => QUALITY_COMMON, + Some(2) => QUALITY_MODERATE, + Some(3) => QUALITY_HIGH, + Some(4) => QUALITY_EPIC, + Some(5) => QUALITY_DEBUG, _ => TEXT_COLOR, })); match &site.kind { diff --git a/voxygen/src/hud/minimap.rs b/voxygen/src/hud/minimap.rs index 754d3cbf3a..47f89059e0 100644 --- a/voxygen/src/hud/minimap.rs +++ b/voxygen/src/hud/minimap.rs @@ -688,6 +688,13 @@ impl<'a> Widget for MiniMap<'a> { Some(rpos) => rpos, None => continue, }; + let difficulty = match &site.kind { + SiteKind::Town => None, + SiteKind::Dungeon { difficulty } => Some(*difficulty), + SiteKind::Castle => None, + SiteKind::Cave => None, + SiteKind::Tree => None, + }; Image::new(match &site.kind { SiteKind::Town => self.imgs.mmap_site_town_bg, @@ -702,20 +709,14 @@ impl<'a> Widget for MiniMap<'a> { position::Relative::Scalar(rpos.y as f64), ) .w_h(20.0, 20.0) - .color(Some(match &site.kind { - SiteKind::Town => Color::Rgba(1.0, 1.0, 1.0, 0.0), - SiteKind::Castle => Color::Rgba(1.0, 1.0, 1.0, 0.0), - SiteKind::Dungeon { difficulty } => match difficulty { - 0 => QUALITY_LOW, - 1 => QUALITY_COMMON, - 2 => QUALITY_MODERATE, - 3 => QUALITY_HIGH, - 4 => QUALITY_EPIC, - 5 => QUALITY_DEBUG, - _ => Color::Rgba(1.0, 1.0, 1.0, 0.0), - }, - SiteKind::Cave => Color::Rgba(1.0, 1.0, 1.0, 0.0), - SiteKind::Tree => Color::Rgba(1.0, 1.0, 1.0, 0.0), + .color(Some(match difficulty { + Some(0) => QUALITY_LOW, + Some(1) => QUALITY_COMMON, + Some(2) => QUALITY_MODERATE, + Some(3) => QUALITY_HIGH, + Some(4) => QUALITY_EPIC, + Some(5) => QUALITY_DEBUG, + _ => Color::Rgba(1.0, 1.0, 1.0, 0.0), })) .set(state.ids.mmap_site_icons_bgs[i], ui); Image::new(match &site.kind {