2019-04-14 23:28:29 +00:00
|
|
|
mod client_init;
|
2019-03-04 07:28:16 +00:00
|
|
|
mod ui;
|
2019-01-02 22:08:13 +00:00
|
|
|
|
2019-03-17 17:52:54 +00:00
|
|
|
use super::char_selection::CharSelectionState;
|
2019-01-02 21:25:01 +00:00
|
|
|
use crate::{
|
2019-03-15 04:55:52 +00:00
|
|
|
window::{Event, Window},
|
|
|
|
GlobalState, PlayState, PlayStateResult,
|
2019-01-02 21:25:01 +00:00
|
|
|
};
|
2019-04-14 23:28:29 +00:00
|
|
|
use client_init::{ClientInit, Error as InitError};
|
|
|
|
use common::{clock::Clock, comp};
|
2019-03-15 04:55:52 +00:00
|
|
|
use std::time::Duration;
|
2019-03-17 17:52:54 +00:00
|
|
|
use ui::{Event as MainMenuEvent, MainMenuUi};
|
2019-03-15 04:55:52 +00:00
|
|
|
use vek::*;
|
2019-01-02 21:25:01 +00:00
|
|
|
|
2019-03-04 07:28:16 +00:00
|
|
|
const FPS: u64 = 60;
|
2019-02-16 03:01:42 +00:00
|
|
|
|
2019-03-04 07:28:16 +00:00
|
|
|
pub struct MainMenuState {
|
|
|
|
main_menu_ui: MainMenuUi,
|
2019-01-30 12:11:34 +00:00
|
|
|
}
|
2019-01-02 21:25:01 +00:00
|
|
|
|
2019-03-04 07:28:16 +00:00
|
|
|
impl MainMenuState {
|
|
|
|
/// Create a new `MainMenuState`
|
2019-02-16 03:01:42 +00:00
|
|
|
pub fn new(window: &mut Window) -> Self {
|
2019-01-30 12:11:34 +00:00
|
|
|
Self {
|
2019-03-15 04:55:52 +00:00
|
|
|
main_menu_ui: MainMenuUi::new(window),
|
2019-01-30 12:11:34 +00:00
|
|
|
}
|
2019-01-02 21:25:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-15 04:55:52 +00:00
|
|
|
// Background colour
|
|
|
|
const BG_COLOR: Rgba<f32> = Rgba {
|
|
|
|
r: 0.0,
|
|
|
|
g: 0.3,
|
|
|
|
b: 1.0,
|
|
|
|
a: 1.0,
|
|
|
|
};
|
2019-01-11 20:14:37 +00:00
|
|
|
|
2019-03-04 07:28:16 +00:00
|
|
|
impl PlayState for MainMenuState {
|
2019-01-07 21:10:31 +00:00
|
|
|
fn play(&mut self, global_state: &mut GlobalState) -> PlayStateResult {
|
2019-03-04 07:28:16 +00:00
|
|
|
// Set up an fps clock
|
|
|
|
let mut clock = Clock::new();
|
|
|
|
|
2019-04-14 23:28:29 +00:00
|
|
|
// Used for client creation
|
|
|
|
let mut client_init: Option<ClientInit> = None;
|
|
|
|
|
2019-01-11 23:18:34 +00:00
|
|
|
loop {
|
|
|
|
// Handle window events
|
2019-01-07 21:10:31 +00:00
|
|
|
for event in global_state.window.fetch_events() {
|
|
|
|
match event {
|
2019-01-11 23:18:34 +00:00
|
|
|
Event::Close => return PlayStateResult::Shutdown,
|
2019-02-16 03:01:42 +00:00
|
|
|
// Pass events to ui
|
2019-03-22 03:55:42 +00:00
|
|
|
Event::Ui(event) => {
|
|
|
|
self.main_menu_ui.handle_event(event);
|
2019-02-16 03:01:42 +00:00
|
|
|
}
|
2019-01-11 23:18:34 +00:00
|
|
|
// Ignore all other events
|
2019-03-15 04:55:52 +00:00
|
|
|
_ => {}
|
2019-01-07 21:10:31 +00:00
|
|
|
}
|
|
|
|
}
|
2019-01-02 21:25:01 +00:00
|
|
|
|
2019-02-12 04:14:55 +00:00
|
|
|
global_state.window.renderer_mut().clear(BG_COLOR);
|
|
|
|
|
2019-04-14 23:28:29 +00:00
|
|
|
// Poll client creation
|
2019-04-15 20:51:32 +00:00
|
|
|
match client_init.as_ref().and_then(|init| init.poll()) {
|
2019-04-14 23:28:29 +00:00
|
|
|
Some(Ok(client)) => {
|
|
|
|
self.main_menu_ui.connected();
|
|
|
|
return PlayStateResult::Push(Box::new(CharSelectionState::new(
|
|
|
|
&mut global_state.window,
|
|
|
|
std::rc::Rc::new(std::cell::RefCell::new(client)),
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
Some(Err(err)) => {
|
|
|
|
client_init = None;
|
2019-04-15 20:51:32 +00:00
|
|
|
self.main_menu_ui.login_error(
|
|
|
|
match err {
|
|
|
|
InitError::BadAddress(_) | InitError::NoAddress => "Server not found",
|
|
|
|
InitError::ConnectionFailed(_) => "Connection failed",
|
|
|
|
}
|
|
|
|
.to_string(),
|
|
|
|
);
|
|
|
|
}
|
2019-04-14 23:28:29 +00:00
|
|
|
None => {}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Maintain the UI
|
|
|
|
for event in self
|
|
|
|
.main_menu_ui
|
|
|
|
.maintain(global_state.window.renderer_mut())
|
|
|
|
{
|
2019-04-04 14:45:57 +00:00
|
|
|
match event {
|
2019-04-14 23:28:29 +00:00
|
|
|
MainMenuEvent::LoginAttempt {
|
|
|
|
username,
|
|
|
|
server_address,
|
|
|
|
} => {
|
2019-04-04 14:45:57 +00:00
|
|
|
const DEFAULT_PORT: u16 = 59003;
|
2019-04-14 23:28:29 +00:00
|
|
|
// Don't try to connect if there is already a connection in progress
|
|
|
|
client_init = client_init.or(Some(ClientInit::new(
|
|
|
|
(server_address, DEFAULT_PORT, false),
|
|
|
|
(
|
|
|
|
comp::Player::new(username.clone()),
|
|
|
|
Some(comp::Character::test()),
|
|
|
|
300,
|
|
|
|
),
|
|
|
|
)));
|
2019-04-04 14:45:57 +00:00
|
|
|
}
|
|
|
|
MainMenuEvent::Quit => return PlayStateResult::Shutdown,
|
|
|
|
}
|
2019-03-04 07:28:16 +00:00
|
|
|
}
|
2019-01-30 12:11:34 +00:00
|
|
|
|
|
|
|
// Draw the UI to the screen
|
2019-03-04 07:28:16 +00:00
|
|
|
self.main_menu_ui.render(global_state.window.renderer_mut());
|
2019-02-11 06:12:46 +00:00
|
|
|
|
2019-02-12 04:14:55 +00:00
|
|
|
// Finish the frame
|
|
|
|
global_state.window.renderer_mut().flush();
|
2019-03-15 04:55:52 +00:00
|
|
|
global_state
|
|
|
|
.window
|
2019-03-04 07:28:16 +00:00
|
|
|
.swap_buffers()
|
|
|
|
.expect("Failed to swap window buffers");
|
|
|
|
|
|
|
|
// Wait for the next tick
|
|
|
|
clock.tick(Duration::from_millis(1000 / FPS));
|
2019-01-02 21:25:01 +00:00
|
|
|
}
|
|
|
|
}
|
2019-01-11 23:18:34 +00:00
|
|
|
|
2019-03-15 04:55:52 +00:00
|
|
|
fn name(&self) -> &'static str {
|
|
|
|
"Title"
|
|
|
|
}
|
2019-01-02 21:25:01 +00:00
|
|
|
}
|