2019-05-08 20:25:15 +00:00
|
|
|
use super::{img_ids::Imgs, Fonts};
|
2019-05-04 10:43:37 +00:00
|
|
|
use conrod_core::{
|
2019-05-07 03:25:25 +00:00
|
|
|
color,
|
|
|
|
widget::{self, Button, Image, Rectangle, Scrollbar},
|
2019-05-07 05:40:03 +00:00
|
|
|
widget_ids, Colorable, Positionable, Sizeable, Widget, WidgetCommon,
|
2019-05-04 10:43:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
widget_ids! {
|
|
|
|
struct Ids {
|
|
|
|
bag_close,
|
|
|
|
bag_contents,
|
|
|
|
inv_alignment,
|
2019-05-06 18:49:12 +00:00
|
|
|
inv_grid_1,
|
|
|
|
inv_grid_2,
|
2019-05-04 10:43:37 +00:00
|
|
|
inv_scrollbar,
|
|
|
|
inv_slot_0,
|
|
|
|
map_title,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(WidgetCommon)]
|
|
|
|
pub struct Bag<'a> {
|
|
|
|
inventory_space: u32,
|
|
|
|
|
|
|
|
imgs: &'a Imgs,
|
2019-07-02 21:25:07 +00:00
|
|
|
_fonts: &'a Fonts,
|
2019-05-04 10:43:37 +00:00
|
|
|
#[conrod(common_builder)]
|
|
|
|
common: widget::CommonBuilder,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Bag<'a> {
|
2019-07-02 21:25:07 +00:00
|
|
|
pub fn new(inventory_space: u32, imgs: &'a Imgs, _fonts: &'a Fonts) -> Self {
|
2019-05-04 10:43:37 +00:00
|
|
|
Self {
|
|
|
|
inventory_space,
|
|
|
|
imgs,
|
2019-07-02 21:25:07 +00:00
|
|
|
_fonts,
|
2019-05-04 10:43:37 +00:00
|
|
|
common: widget::CommonBuilder::default(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct State {
|
|
|
|
ids: Ids,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum Event {
|
|
|
|
Close,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Widget for Bag<'a> {
|
|
|
|
type State = State;
|
|
|
|
type Style = ();
|
|
|
|
type Event = Option<Event>;
|
|
|
|
|
|
|
|
fn init_state(&self, id_gen: widget::id::Generator) -> Self::State {
|
|
|
|
State {
|
|
|
|
ids: Ids::new(id_gen),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn style(&self) -> Self::Style {
|
|
|
|
()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update(self, args: widget::UpdateArgs<Self>) -> Self::Event {
|
2019-05-07 05:40:03 +00:00
|
|
|
let widget::UpdateArgs { state, ui, .. } = args;
|
2019-05-04 10:43:37 +00:00
|
|
|
|
|
|
|
// Contents
|
|
|
|
Image::new(self.imgs.bag_contents)
|
2019-05-06 18:49:12 +00:00
|
|
|
.w_h(68.0 * 4.0, 123.0 * 4.0)
|
|
|
|
.bottom_right_with_margins_on(ui.window, 60.0, 5.0)
|
2019-05-04 10:43:37 +00:00
|
|
|
.set(state.ids.bag_contents, ui);
|
|
|
|
|
|
|
|
// Alignment for Grid
|
2019-05-06 18:49:12 +00:00
|
|
|
Rectangle::fill_with([58.0 * 4.0 - 5.0, 100.0 * 4.0], color::TRANSPARENT)
|
2019-05-07 05:40:03 +00:00
|
|
|
.top_left_with_margins_on(state.ids.bag_contents, 11.0 * 4.0, 5.0 * 4.0)
|
|
|
|
.scroll_kids()
|
|
|
|
.scroll_kids_vertically()
|
|
|
|
.set(state.ids.inv_alignment, ui);
|
2019-05-04 10:43:37 +00:00
|
|
|
// Grid
|
|
|
|
Image::new(self.imgs.inv_grid)
|
2019-05-07 05:40:03 +00:00
|
|
|
.w_h(58.0 * 4.0, 111.0 * 4.0)
|
|
|
|
.mid_top_with_margin_on(state.ids.inv_alignment, 0.0)
|
|
|
|
.set(state.ids.inv_grid_1, ui);
|
|
|
|
Image::new(self.imgs.inv_grid)
|
|
|
|
.w_h(58.0 * 4.0, 111.0 * 4.0)
|
|
|
|
.mid_top_with_margin_on(state.ids.inv_alignment, 110.0 * 4.0)
|
|
|
|
.set(state.ids.inv_grid_2, ui);
|
|
|
|
Scrollbar::y_axis(state.ids.inv_alignment)
|
|
|
|
.thickness(5.0)
|
|
|
|
.rgba(0.33, 0.33, 0.33, 1.0)
|
|
|
|
.set(state.ids.inv_scrollbar, ui);
|
2019-05-07 03:25:25 +00:00
|
|
|
|
|
|
|
if self.inventory_space > 0 {
|
|
|
|
// First Slot
|
|
|
|
Button::image(self.imgs.inv_slot)
|
|
|
|
.top_left_with_margins_on(state.ids.inv_grid_1, 4.0, 4.0)
|
|
|
|
.w_h(10.0 * 4.0, 10.0 * 4.0)
|
|
|
|
.set(state.ids.inv_slot_0, ui);
|
|
|
|
}
|
|
|
|
|
2019-05-04 10:43:37 +00:00
|
|
|
// X-button
|
|
|
|
if Button::image(self.imgs.close_button)
|
2019-05-06 18:49:12 +00:00
|
|
|
.w_h(28.0, 28.0)
|
2019-05-04 10:43:37 +00:00
|
|
|
.hover_image(self.imgs.close_button_hover)
|
|
|
|
.press_image(self.imgs.close_button_press)
|
2019-05-06 18:49:12 +00:00
|
|
|
.top_right_with_margins_on(state.ids.bag_contents, 0.0, 0.0)
|
2019-05-04 10:43:37 +00:00
|
|
|
.set(state.ids.bag_close, ui)
|
|
|
|
.was_clicked()
|
|
|
|
{
|
2019-05-07 03:25:25 +00:00
|
|
|
Some(Event::Close)
|
|
|
|
} else {
|
|
|
|
None
|
2019-05-04 10:43:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|