2019-08-07 13:14:26 +00:00
|
|
|
use super::{img_ids::Imgs, Fonts, Show, TEXT_COLOR, TEXT_COLOR_3};
|
|
|
|
|
2020-01-17 23:43:18 +00:00
|
|
|
use crate::i18n::VoxygenLocalization;
|
|
|
|
use client::{self, Client};
|
2019-08-07 13:14:26 +00:00
|
|
|
use conrod_core::{
|
|
|
|
color,
|
|
|
|
widget::{self, Button, Image, Rectangle, Scrollbar, Text},
|
2020-02-01 20:39:39 +00:00
|
|
|
widget_ids, Colorable, Labelable, Positionable, Sizeable, Widget, WidgetCommon,
|
2019-08-07 13:14:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
widget_ids! {
|
|
|
|
pub struct Ids {
|
|
|
|
social_frame,
|
|
|
|
social_close,
|
|
|
|
social_title,
|
|
|
|
frame,
|
|
|
|
align,
|
|
|
|
content_align,
|
|
|
|
online_tab,
|
|
|
|
friends_tab,
|
|
|
|
faction_tab,
|
|
|
|
online_title,
|
|
|
|
online_no,
|
|
|
|
scrollbar,
|
|
|
|
friends_test,
|
|
|
|
faction_test,
|
|
|
|
player_names[],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum SocialTab {
|
|
|
|
Online,
|
|
|
|
Friends,
|
|
|
|
Faction,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(WidgetCommon)]
|
|
|
|
pub struct Social<'a> {
|
|
|
|
show: &'a Show,
|
|
|
|
client: &'a Client,
|
|
|
|
imgs: &'a Imgs,
|
|
|
|
fonts: &'a Fonts,
|
2020-01-17 23:43:18 +00:00
|
|
|
localized_strings: &'a std::sync::Arc<VoxygenLocalization>,
|
|
|
|
|
2019-08-07 13:14:26 +00:00
|
|
|
#[conrod(common_builder)]
|
|
|
|
common: widget::CommonBuilder,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Social<'a> {
|
2020-01-17 23:43:18 +00:00
|
|
|
pub fn new(
|
|
|
|
show: &'a Show,
|
|
|
|
client: &'a Client,
|
|
|
|
imgs: &'a Imgs,
|
|
|
|
fonts: &'a Fonts,
|
|
|
|
localized_strings: &'a std::sync::Arc<VoxygenLocalization>,
|
|
|
|
) -> Self {
|
2019-08-07 13:14:26 +00:00
|
|
|
Self {
|
2020-01-17 23:43:18 +00:00
|
|
|
show,
|
|
|
|
client,
|
2019-08-07 13:14:26 +00:00
|
|
|
imgs,
|
2020-01-17 23:43:18 +00:00
|
|
|
fonts,
|
|
|
|
localized_strings,
|
2019-08-07 13:14:26 +00:00
|
|
|
common: widget::CommonBuilder::default(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum Event {
|
|
|
|
Close,
|
|
|
|
ChangeSocialTab(SocialTab),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Widget for Social<'a> {
|
2020-02-01 20:39:39 +00:00
|
|
|
type Event = Vec<Event>;
|
2019-08-07 13:14:26 +00:00
|
|
|
type State = Ids;
|
|
|
|
type Style = ();
|
|
|
|
|
2020-02-01 20:39:39 +00:00
|
|
|
fn init_state(&self, id_gen: widget::id::Generator) -> Self::State { Ids::new(id_gen) }
|
2019-08-07 13:14:26 +00:00
|
|
|
|
2020-02-01 20:39:39 +00:00
|
|
|
fn style(&self) -> Self::Style { () }
|
2019-08-07 13:14:26 +00:00
|
|
|
|
|
|
|
fn update(self, args: widget::UpdateArgs<Self>) -> Self::Event {
|
|
|
|
let widget::UpdateArgs {
|
2020-02-01 20:39:39 +00:00
|
|
|
/* id, */ state: ids,
|
2019-08-07 13:14:26 +00:00
|
|
|
ui,
|
|
|
|
..
|
|
|
|
} = args;
|
|
|
|
|
|
|
|
let mut events = Vec::new();
|
|
|
|
|
|
|
|
if self.show.character_window {
|
|
|
|
Image::new(self.imgs.window_3)
|
|
|
|
.top_left_with_margins_on(ui.window, 200.0, 658.0)
|
|
|
|
.w_h(103.0 * 4.0, 122.0 * 4.0)
|
|
|
|
.set(ids.social_frame, ui);
|
|
|
|
} else {
|
|
|
|
Image::new(self.imgs.window_3)
|
|
|
|
.top_left_with_margins_on(ui.window, 200.0, 25.0)
|
|
|
|
.w_h(103.0 * 4.0, 122.0 * 4.0)
|
|
|
|
.set(ids.social_frame, ui);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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(ids.social_frame, 0.0, 0.0)
|
|
|
|
.set(ids.social_close, ui)
|
|
|
|
.was_clicked()
|
|
|
|
{
|
|
|
|
events.push(Event::Close);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Title
|
2020-01-17 23:43:18 +00:00
|
|
|
Text::new(&self.localized_strings.get("hud.social"))
|
2019-08-07 13:14:26 +00:00
|
|
|
.mid_top_with_margin_on(ids.social_frame, 6.0)
|
2019-10-05 21:51:08 +00:00
|
|
|
.font_id(self.fonts.cyri)
|
2019-08-07 13:14:26 +00:00
|
|
|
.font_size(14)
|
|
|
|
.color(TEXT_COLOR)
|
|
|
|
.set(ids.social_title, ui);
|
|
|
|
|
|
|
|
// Alignment
|
|
|
|
Rectangle::fill_with([99.0 * 4.0, 112.0 * 4.0], color::TRANSPARENT)
|
|
|
|
.mid_top_with_margin_on(ids.social_frame, 8.0 * 4.0)
|
|
|
|
.set(ids.align, ui);
|
|
|
|
// Content Alignment
|
|
|
|
Rectangle::fill_with([94.0 * 4.0, 94.0 * 4.0], color::TRANSPARENT)
|
|
|
|
.middle_of(ids.frame)
|
|
|
|
.scroll_kids()
|
|
|
|
.scroll_kids_vertically()
|
|
|
|
.set(ids.content_align, ui);
|
|
|
|
Scrollbar::y_axis(ids.content_align)
|
|
|
|
.thickness(5.0)
|
|
|
|
.rgba(0.33, 0.33, 0.33, 1.0)
|
|
|
|
.set(ids.scrollbar, ui);
|
|
|
|
// Frame
|
|
|
|
Image::new(self.imgs.social_frame)
|
|
|
|
.w_h(99.0 * 4.0, 100.0 * 4.0)
|
|
|
|
.mid_bottom_of(ids.align)
|
|
|
|
.set(ids.frame, ui);
|
|
|
|
|
|
|
|
// Online Tab
|
|
|
|
|
|
|
|
if Button::image(if let SocialTab::Online = self.show.social_tab {
|
|
|
|
self.imgs.social_button_pressed
|
|
|
|
} else {
|
|
|
|
self.imgs.social_button
|
|
|
|
})
|
|
|
|
.w_h(30.0 * 4.0, 12.0 * 4.0)
|
|
|
|
.hover_image(if let SocialTab::Online = self.show.social_tab {
|
|
|
|
self.imgs.social_button_pressed
|
|
|
|
} else {
|
|
|
|
self.imgs.social_button_hover
|
|
|
|
})
|
|
|
|
.press_image(if let SocialTab::Online = self.show.social_tab {
|
|
|
|
self.imgs.social_button_pressed
|
|
|
|
} else {
|
|
|
|
self.imgs.social_button_press
|
|
|
|
})
|
|
|
|
.top_left_with_margins_on(ids.align, 4.0, 0.0)
|
2020-01-17 23:43:18 +00:00
|
|
|
.label(&self.localized_strings.get("hud.social.online"))
|
2019-08-07 13:14:26 +00:00
|
|
|
.label_font_size(14)
|
|
|
|
.parent(ids.frame)
|
|
|
|
.label_color(TEXT_COLOR)
|
|
|
|
.set(ids.online_tab, ui)
|
|
|
|
.was_clicked()
|
|
|
|
{
|
|
|
|
events.push(Event::ChangeSocialTab(SocialTab::Online));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Contents
|
|
|
|
|
|
|
|
if let SocialTab::Online = self.show.social_tab {
|
|
|
|
// TODO Needs to be a string sent from the server
|
|
|
|
|
|
|
|
// Players list
|
2020-02-01 20:39:39 +00:00
|
|
|
// TODO: this list changes infrequently enough that it should not have to be
|
|
|
|
// recreated every frame
|
2019-12-23 06:02:00 +00:00
|
|
|
let count = self.client.player_list.len();
|
|
|
|
if ids.player_names.len() < count {
|
|
|
|
ids.update(|ids| {
|
|
|
|
ids.player_names
|
|
|
|
.resize(count, &mut ui.widget_id_generator())
|
|
|
|
})
|
2019-08-07 13:14:26 +00:00
|
|
|
}
|
2020-01-17 23:43:18 +00:00
|
|
|
Text::new(
|
|
|
|
&self
|
|
|
|
.localized_strings
|
|
|
|
.get("hud.social.play_online_fmt")
|
|
|
|
.replace("{nb_player}", &format!("{:?}", count)),
|
|
|
|
)
|
|
|
|
.top_left_with_margins_on(ids.content_align, -2.0, 7.0)
|
|
|
|
.font_size(14)
|
|
|
|
.font_id(self.fonts.cyri)
|
|
|
|
.color(TEXT_COLOR)
|
|
|
|
.set(ids.online_title, ui);
|
2019-12-23 06:02:00 +00:00
|
|
|
for (i, (_, player_alias)) in self.client.player_list.iter().enumerate() {
|
|
|
|
Text::new(player_alias)
|
|
|
|
.down(3.0)
|
|
|
|
.font_size(15)
|
|
|
|
.font_id(self.fonts.cyri)
|
|
|
|
.color(TEXT_COLOR)
|
|
|
|
.set(ids.player_names[i], ui);
|
|
|
|
}
|
2019-08-07 13:14:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Friends Tab
|
|
|
|
|
|
|
|
if Button::image(if let SocialTab::Friends = self.show.social_tab {
|
|
|
|
self.imgs.social_button_pressed
|
|
|
|
} else {
|
|
|
|
self.imgs.social_button
|
|
|
|
})
|
|
|
|
.w_h(30.0 * 4.0, 12.0 * 4.0)
|
|
|
|
.hover_image(if let SocialTab::Friends = self.show.social_tab {
|
|
|
|
self.imgs.social_button_pressed
|
|
|
|
} else {
|
|
|
|
self.imgs.social_button
|
|
|
|
})
|
|
|
|
.press_image(if let SocialTab::Friends = self.show.social_tab {
|
|
|
|
self.imgs.social_button_pressed
|
|
|
|
} else {
|
|
|
|
self.imgs.social_button
|
|
|
|
})
|
|
|
|
.right_from(ids.online_tab, 0.0)
|
2020-01-17 23:43:18 +00:00
|
|
|
.label(&self.localized_strings.get("hud.social.friends"))
|
2019-08-07 13:14:26 +00:00
|
|
|
.label_font_size(14)
|
|
|
|
.parent(ids.frame)
|
|
|
|
.label_color(TEXT_COLOR_3)
|
|
|
|
.set(ids.friends_tab, ui)
|
|
|
|
.was_clicked()
|
|
|
|
{
|
|
|
|
events.push(Event::ChangeSocialTab(SocialTab::Friends));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Contents
|
|
|
|
|
|
|
|
if let SocialTab::Friends = self.show.social_tab {
|
2020-01-17 23:43:18 +00:00
|
|
|
Text::new(&self.localized_strings.get("hud.social.not_yet_available"))
|
2019-08-07 13:14:26 +00:00
|
|
|
.middle_of(ids.content_align)
|
|
|
|
.font_size(18)
|
2019-10-06 19:19:08 +00:00
|
|
|
.font_id(self.fonts.cyri)
|
2019-08-07 13:14:26 +00:00
|
|
|
.color(TEXT_COLOR_3)
|
|
|
|
.set(ids.friends_test, ui);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Faction Tab
|
|
|
|
let button_img = if let SocialTab::Faction = self.show.social_tab {
|
|
|
|
self.imgs.social_button_pressed
|
|
|
|
} else {
|
|
|
|
self.imgs.social_button
|
|
|
|
};
|
|
|
|
if Button::image(button_img)
|
|
|
|
.w_h(30.0 * 4.0, 12.0 * 4.0)
|
|
|
|
.right_from(ids.friends_tab, 0.0)
|
2020-01-17 23:43:18 +00:00
|
|
|
.label(&self.localized_strings.get("hud.social.faction"))
|
2019-08-07 13:14:26 +00:00
|
|
|
.parent(ids.frame)
|
|
|
|
.label_font_size(14)
|
|
|
|
.label_color(TEXT_COLOR_3)
|
|
|
|
.set(ids.faction_tab, ui)
|
|
|
|
.was_clicked()
|
|
|
|
{
|
|
|
|
events.push(Event::ChangeSocialTab(SocialTab::Faction));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Contents
|
|
|
|
|
|
|
|
if let SocialTab::Faction = self.show.social_tab {
|
2020-01-17 23:43:18 +00:00
|
|
|
Text::new(&self.localized_strings.get("hud.social.not_yet_available"))
|
2019-08-07 13:14:26 +00:00
|
|
|
.middle_of(ids.content_align)
|
|
|
|
.font_size(18)
|
2019-10-06 19:19:08 +00:00
|
|
|
.font_id(self.fonts.cyri)
|
2019-08-07 13:14:26 +00:00
|
|
|
.color(TEXT_COLOR_3)
|
|
|
|
.set(ids.faction_test, ui);
|
|
|
|
}
|
|
|
|
|
|
|
|
events
|
|
|
|
}
|
|
|
|
}
|