rpc and stuff

This commit is contained in:
Evan Pratten 2021-10-03 10:29:20 -04:00
parent 80c27ddc7e
commit 71513ab501
9 changed files with 142 additions and 68 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -2,6 +2,7 @@ use std::ops::{Div, Sub};
use chrono::{DateTime, Utc}; use chrono::{DateTime, Utc};
use dirty_fsm::{Action, ActionFlag}; use dirty_fsm::{Action, ActionFlag};
use discord_sdk::activity::{ActivityBuilder, Assets};
use pkg_version::pkg_version_major; use pkg_version::pkg_version_major;
use raylib::prelude::*; use raylib::prelude::*;
@ -14,7 +15,7 @@ use crate::{GameConfig, context::GameContext, utilities::{
}}; }};
use super::{Scenes, ScreenError}; use super::{Scenes, ScreenError};
use tracing::{debug, info, trace}; use tracing::{debug, info, error, trace};
#[derive(Debug)] #[derive(Debug)]
pub struct DeathScreen { pub struct DeathScreen {
@ -36,9 +37,19 @@ impl Action<Scenes, ScreenError, GameContext> for DeathScreen {
Ok(()) Ok(())
} }
fn on_first_run(&mut self, _context: &GameContext) -> Result<(), ScreenError> { fn on_first_run(&mut self, context: &GameContext) -> Result<(), ScreenError> {
debug!("Running DeathScreen for the first time"); debug!("Running DeathScreen for the first time");
if let Err(e) = context.discord_rpc_send.send(Some(
ActivityBuilder::default()
.details("dead... again")
.assets(
Assets::default().large("game-logo-small", Some(context.config.name.clone())),
)
)) {
error!("Failed to update discord: {}", e);
}
Ok(()) Ok(())
} }

View File

@ -2,6 +2,7 @@ use std::ops::{Div, Sub};
use chrono::{DateTime, Utc}; use chrono::{DateTime, Utc};
use dirty_fsm::{Action, ActionFlag}; use dirty_fsm::{Action, ActionFlag};
use discord_sdk::activity::{ActivityBuilder, Assets};
use pkg_version::pkg_version_major; use pkg_version::pkg_version_major;
use raylib::prelude::*; use raylib::prelude::*;
@ -18,7 +19,7 @@ use crate::{
}; };
use super::{Scenes, ScreenError}; use super::{Scenes, ScreenError};
use tracing::{debug, info, trace}; use tracing::{debug, error, info, trace};
#[derive(Debug)] #[derive(Debug)]
pub struct HowToPlayScreen { pub struct HowToPlayScreen {
@ -40,9 +41,19 @@ impl Action<Scenes, ScreenError, GameContext> for HowToPlayScreen {
Ok(()) Ok(())
} }
fn on_first_run(&mut self, _context: &GameContext) -> Result<(), ScreenError> { fn on_first_run(&mut self, context: &GameContext) -> Result<(), ScreenError> {
debug!("Running HowToPlayScreen for the first time"); debug!("Running HowToPlayScreen for the first time");
if let Err(e) = context.discord_rpc_send.send(Some(
ActivityBuilder::default()
.details("learning how to play")
.assets(
Assets::default().large("game-logo-small", Some(context.config.name.clone())),
),
)) {
error!("Failed to update discord: {}", e);
}
Ok(()) Ok(())
} }

View File

@ -29,46 +29,51 @@ pub fn load_all_levels(
let mut levels = Vec::new(); let mut levels = Vec::new();
for level_name in &level_names { for level_name in &level_names {
levels.push(Level { let zones = serde_json::from_str(
name: level_name.to_string(), &String::from_utf8(
background_tex: WorldPaintTexture::new(load_texture_from_internal_data( StaticGameData::get(&format!("levels/{}/zones.json", level_name))
raylib_handle, .unwrap()
thread, .data
&format!("levels/{}/background.png", level_name), .into(),
)?), )
platform_tex: load_texture_from_internal_data( .unwrap(),
raylib_handle, )?;
thread, levels.push({
&format!("levels/{}/platforms.png", level_name), let mut l = Level {
)?, name: level_name.to_string(),
appearing_platform_tex: load_texture_from_internal_data( background_tex: WorldPaintTexture::new(load_texture_from_internal_data(
raylib_handle, raylib_handle,
thread, thread,
&format!("levels/{}/appearing_platforms.png", level_name), &format!("levels/{}/background.png", level_name),
)?, )?),
disappearing_platform_tex: load_texture_from_internal_data( platform_tex: load_texture_from_internal_data(
raylib_handle, raylib_handle,
thread, thread,
&format!("levels/{}/disappearing_platforms.png", level_name), &format!("levels/{}/platforms.png", level_name),
)?, )?,
colliders: serde_json::from_str( appearing_platform_tex: load_texture_from_internal_data(
&String::from_utf8( raylib_handle,
StaticGameData::get(&format!("levels/{}/colliders.json", level_name)) thread,
.unwrap() &format!("levels/{}/appearing_platforms.png", level_name),
.data )?,
.into(), disappearing_platform_tex: load_texture_from_internal_data(
) raylib_handle,
.unwrap(), thread,
)?, &format!("levels/{}/disappearing_platforms.png", level_name),
zones: serde_json::from_str( )?,
&String::from_utf8( colliders: serde_json::from_str(
StaticGameData::get(&format!("levels/{}/zones.json", level_name)) &String::from_utf8(
.unwrap() StaticGameData::get(&format!("levels/{}/colliders.json", level_name))
.data .unwrap()
.into(), .data
) .into(),
.unwrap(), )
)?, .unwrap(),
)?,
zones,
};
l.colliders.append(&mut l.zones.appear);
l
}); });
} }
Ok(levels) Ok(levels)

View File

@ -1,3 +1,4 @@
use chrono::{DateTime, Utc};
use dirty_fsm::{Action, ActionFlag}; use dirty_fsm::{Action, ActionFlag};
use discord_sdk::activity::{ActivityBuilder, Assets}; use discord_sdk::activity::{ActivityBuilder, Assets};
use raylib::prelude::*; use raylib::prelude::*;
@ -29,6 +30,7 @@ pub struct InGameScreen {
levels: Vec<Level>, levels: Vec<Level>,
current_level_idx: usize, current_level_idx: usize,
player_dead: bool, player_dead: bool,
level_switch_timestamp: DateTime<Utc>,
} }
impl InGameScreen { impl InGameScreen {
@ -50,6 +52,7 @@ impl InGameScreen {
levels, levels,
current_level_idx: 0, current_level_idx: 0,
player_dead: false, player_dead: false,
level_switch_timestamp: Utc::now(),
} }
} }
} }
@ -66,6 +69,7 @@ impl Action<Scenes, ScreenError, GameContext> for InGameScreen {
// Handle cleanup after death // Handle cleanup after death
self.player_dead = false; self.player_dead = false;
self.player.reset(); self.player.reset();
self.level_switch_timestamp = Utc::now();
// Set the player to running // Set the player to running
let cur_level = self.levels.get(context.current_level).unwrap(); let cur_level = self.levels.get(context.current_level).unwrap();
@ -77,9 +81,12 @@ impl Action<Scenes, ScreenError, GameContext> for InGameScreen {
// Update discord // Update discord
if let Err(e) = context.discord_rpc_send.send(Some( if let Err(e) = context.discord_rpc_send.send(Some(
ActivityBuilder::default().details("in game").assets( ActivityBuilder::default()
Assets::default().large("game-logo-small", Some(context.config.name.clone())), .details(format!("LVL {}", context.current_level))
), .assets(
Assets::default().large("game-logo-small", Some(context.config.name.clone())),
)
.start_timestamp(self.level_switch_timestamp),
)) { )) {
error!("Failed to update discord: {}", e); error!("Failed to update discord: {}", e);
} }
@ -94,7 +101,11 @@ impl Action<Scenes, ScreenError, GameContext> for InGameScreen {
) -> Result<dirty_fsm::ActionFlag<Scenes>, ScreenError> { ) -> Result<dirty_fsm::ActionFlag<Scenes>, ScreenError> {
puffin::profile_function!(); puffin::profile_function!();
trace!("execute() called on InGameScreen"); trace!("execute() called on InGameScreen");
self.current_level_idx = context.current_level;
if self.current_level_idx != context.current_level {
self.current_level_idx = context.current_level;
self.level_switch_timestamp = Utc::now();
}
// Grab exclusive access to the renderer // Grab exclusive access to the renderer
let mut renderer = context.renderer.borrow_mut(); let mut renderer = context.renderer.borrow_mut();

View File

@ -45,11 +45,13 @@ impl WorldSpaceRender for InGameScreen {
.appear .appear
.iter() .iter()
.map(|zone| { .map(|zone| {
Vector2::new( // Vector2::new(
zone.x + WORLD_LEVEL_X_OFFSET + (zone.width / 2.0), // zone.x + WORLD_LEVEL_X_OFFSET + (zone.width / 2.0),
zone.y - cur_level.platform_tex.height as f32, // zone.y - cur_level.platform_tex.height as f32,
) // )
.distance_to(self.player.position) as i32 // .distance_to(self.player.position) as i32
((zone.x + WORLD_LEVEL_X_OFFSET + (zone.width / 2.0)) - self.player.position.x)
.abs() as i32
}) })
.min() .min()
.unwrap_or(i32::MAX); .unwrap_or(i32::MAX);
@ -86,11 +88,13 @@ impl WorldSpaceRender for InGameScreen {
.disappear .disappear
.iter() .iter()
.map(|zone| { .map(|zone| {
Vector2::new( // Vector2::new(
zone.x + WORLD_LEVEL_X_OFFSET + (zone.width / 2.0), // zone.x + WORLD_LEVEL_X_OFFSET + (zone.width / 2.0),
zone.y - cur_level.platform_tex.height as f32, // zone.y - cur_level.platform_tex.height as f32,
) // )
.distance_to(self.player.position) as i32 // .distance_to(self.player.position) as i32
((zone.x + WORLD_LEVEL_X_OFFSET + (zone.width / 2.0)) - self.player.position.x)
.abs() as i32
}) })
.min() .min()
.unwrap_or(i32::MAX); .unwrap_or(i32::MAX);

View File

@ -2,6 +2,7 @@ use std::ops::{Div, Sub};
use chrono::{DateTime, Utc}; use chrono::{DateTime, Utc};
use dirty_fsm::{Action, ActionFlag}; use dirty_fsm::{Action, ActionFlag};
use discord_sdk::activity::{ActivityBuilder, Assets};
use pkg_version::pkg_version_major; use pkg_version::pkg_version_major;
use raylib::prelude::*; use raylib::prelude::*;
@ -18,7 +19,7 @@ use crate::{
}; };
use super::{Scenes, ScreenError}; use super::{Scenes, ScreenError};
use tracing::{debug, info, trace}; use tracing::{debug, error, info, trace};
#[derive(Debug)] #[derive(Debug)]
pub struct NextLevelScreen { pub struct NextLevelScreen {
@ -40,8 +41,17 @@ impl Action<Scenes, ScreenError, GameContext> for NextLevelScreen {
Ok(()) Ok(())
} }
fn on_first_run(&mut self, _context: &GameContext) -> Result<(), ScreenError> { fn on_first_run(&mut self, context: &GameContext) -> Result<(), ScreenError> {
debug!("Running NextLevelScreen for the first time"); debug!("Running NextLevelScreen for the first time");
if let Err(e) = context.discord_rpc_send.send(Some(
ActivityBuilder::default().details("accepting fate").assets(
Assets::default().large("game-logo-small", Some(context.config.name.clone())),
),
)) {
error!("Failed to update discord: {}", e);
}
Ok(()) Ok(())
} }
@ -58,7 +68,6 @@ impl Action<Scenes, ScreenError, GameContext> for NextLevelScreen {
} else { } else {
Ok(ActionFlag::Continue) Ok(ActionFlag::Continue)
} }
} }
fn on_finish(&mut self, _interrupted: bool) -> Result<(), ScreenError> { fn on_finish(&mut self, _interrupted: bool) -> Result<(), ScreenError> {
@ -112,8 +121,9 @@ impl ScreenSpaceRender for NextLevelScreen {
); );
//Next Level //Next Level
let hovering_next_button = Rectangle::new(80.0, screen_size.y as f32 / 2.0 + 50.0, 200.0, 40.0) let hovering_next_button =
.check_collision_point_rec(mouse_position); Rectangle::new(80.0, screen_size.y as f32 / 2.0 + 50.0, 200.0, 40.0)
.check_collision_point_rec(mouse_position);
raylib.draw_rgb_split_text( raylib.draw_rgb_split_text(
Vector2::new(80.0, screen_size.y / 2.0 + 50.0), Vector2::new(80.0, screen_size.y / 2.0 + 50.0),
">> Next Level", ">> Next Level",

View File

@ -2,6 +2,7 @@ use std::ops::{Div, Sub};
use chrono::{DateTime, Utc}; use chrono::{DateTime, Utc};
use dirty_fsm::{Action, ActionFlag}; use dirty_fsm::{Action, ActionFlag};
use discord_sdk::activity::{ActivityBuilder, Assets};
use pkg_version::pkg_version_major; use pkg_version::pkg_version_major;
use raylib::prelude::*; use raylib::prelude::*;
@ -18,7 +19,7 @@ use crate::{
}; };
use super::{Scenes, ScreenError}; use super::{Scenes, ScreenError};
use tracing::{debug, info, trace}; use tracing::{debug, error, info, trace};
#[derive(Debug)] #[derive(Debug)]
pub struct OptionsScreen { pub struct OptionsScreen {
@ -40,9 +41,19 @@ impl Action<Scenes, ScreenError, GameContext> for OptionsScreen {
Ok(()) Ok(())
} }
fn on_first_run(&mut self, _context: &GameContext) -> Result<(), ScreenError> { fn on_first_run(&mut self, context: &GameContext) -> Result<(), ScreenError> {
debug!("Running OptionsScreen for the first time"); debug!("Running OptionsScreen for the first time");
if let Err(e) = context.discord_rpc_send.send(Some(
ActivityBuilder::default()
.details("we gott'em boys!")
.assets(
Assets::default().large("game-logo-small", Some(context.config.name.clone())),
),
)) {
error!("Failed to update discord: {}", e);
}
// Rick-roll the user // Rick-roll the user
let _ = webbrowser::open("https://www.youtube.com/watch?v=dQw4w9WgXcQ"); let _ = webbrowser::open("https://www.youtube.com/watch?v=dQw4w9WgXcQ");
@ -108,7 +119,6 @@ impl ScreenSpaceRender for OptionsScreen {
Color::WHITE, Color::WHITE,
); );
//Back to Menu //Back to Menu
let hovering_back = Rectangle::new(35.0, screen_size.y as f32 - 80.0, 200.0, 40.0) let hovering_back = Rectangle::new(35.0, screen_size.y as f32 - 80.0, 200.0, 40.0)
.check_collision_point_rec(mouse_position); .check_collision_point_rec(mouse_position);

View File

@ -2,6 +2,7 @@ use std::ops::{Div, Sub};
use chrono::{DateTime, Utc}; use chrono::{DateTime, Utc};
use dirty_fsm::{Action, ActionFlag}; use dirty_fsm::{Action, ActionFlag};
use discord_sdk::activity::{ActivityBuilder, Assets};
use pkg_version::pkg_version_major; use pkg_version::pkg_version_major;
use raylib::prelude::*; use raylib::prelude::*;
@ -18,7 +19,7 @@ use crate::{
}; };
use super::{Scenes, ScreenError}; use super::{Scenes, ScreenError};
use tracing::{debug, info, trace}; use tracing::{debug, error, info, trace};
#[derive(Debug)] #[derive(Debug)]
pub struct WinScreen { pub struct WinScreen {
@ -42,8 +43,19 @@ impl Action<Scenes, ScreenError, GameContext> for WinScreen {
Ok(()) Ok(())
} }
fn on_first_run(&mut self, _context: &GameContext) -> Result<(), ScreenError> { fn on_first_run(&mut self, context: &GameContext) -> Result<(), ScreenError> {
debug!("Running WinScreen for the first time"); debug!("Running WinScreen for the first time");
if let Err(e) = context.discord_rpc_send.send(Some(
ActivityBuilder::default()
.details("somehow won the game")
.assets(
Assets::default().large("game-logo-small", Some(context.config.name.clone())),
),
)) {
error!("Failed to update discord: {}", e);
}
Ok(()) Ok(())
} }