some pre-jam reorg

This commit is contained in:
Evan Pratten 2021-04-22 10:32:43 -04:00
parent 0861a84777
commit dfcd5c5e99
8 changed files with 25 additions and 10 deletions

View File

@ -5,8 +5,6 @@ authors = ["Evan Pratten <ewpratten@gmail.com>"]
edition = "2018"
description = ""
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
raylib = { version = "3.5", git = "https://github.com/ewpratten/raylib-rs", branch = "cross_compile_fixes" }
raylib = { version = "3.5", git = "https://github.com/ewpratten/raylib-rs", branch = "master" }

View File

@ -1 +0,0 @@
pub mod wrapper;

View File

@ -1 +0,0 @@
pub mod wrapper;

View File

@ -1,2 +1 @@
pub mod audio;
pub mod animation;
pub mod wrappers;

View File

@ -5,6 +5,7 @@ use raylib::{
texture::Texture2D,
};
/// A wrapper around an animation spritesheet
pub struct FrameAnimationWrapper {
sprite_sheet: Texture2D,
size: Vector2,
@ -14,6 +15,8 @@ pub struct FrameAnimationWrapper {
}
impl FrameAnimationWrapper {
/// Create a new animation from a texture containing all frames
pub fn new(sprite_sheet: Texture2D, frame_size: Vector2, frame_count: u32, fps: u8) -> Self {
Self {
sprite_sheet,
@ -24,14 +27,17 @@ impl FrameAnimationWrapper {
}
}
/// Start the animation
pub fn start(&mut self, handle: &RaylibDrawHandle) {
self.start_time_seconds = handle.get_time();
}
/// Stop (and reset) the animation
pub fn stop(&mut self) {
self.start_time_seconds = 0.0;
}
/// Get the index of the currently displayed frame
pub fn get_current_frame_id(&self, handle: &RaylibDrawHandle) -> u32 {
// Get the time since start
let time_since_start = handle.get_time() - self.start_time_seconds;
@ -41,11 +47,13 @@ impl FrameAnimationWrapper {
as u32;
}
/// Draw the next frame to the screen at `position`
pub fn draw(&mut self, handle: &mut RaylibDrawHandle, position: Vector2) {
let frame_id = self.get_current_frame_id(handle);
self.draw_frame(handle, position, frame_id);
}
/// Draw a specified frame to the screen at `position`
pub fn draw_frame(
&mut self,
handle: &mut RaylibDrawHandle,
@ -67,7 +75,7 @@ impl FrameAnimationWrapper {
width: self.size.x,
height: self.size.y,
};
// Render
handle.draw_texture_rec(&mut self.sprite_sheet, frame_box, position, Color::WHITE);
}

View File

@ -1,30 +1,40 @@
use raylib::{audio::{Music, RaylibAudio}, prelude::RaylibDrawHandle};
use raylib::{
audio::{Music, RaylibAudio},
prelude::RaylibDrawHandle,
};
/// A simple wrapper around a single audio clip.
pub struct AudioWrapper {
music: Music,
}
impl AudioWrapper {
/// Create a new AudioWrapper from a `Music` struct
pub fn new(music: Music) -> Self {
Self { music }
}
/// Begin playing the audio
pub fn play(&mut self, audio_handle: &mut RaylibAudio) {
audio_handle.play_music_stream(&mut self.music);
}
/// Stop playing the audio
pub fn stop(&mut self, audio_handle: &mut RaylibAudio) {
audio_handle.stop_music_stream(&mut self.music);
}
/// Pause the audio
pub fn pause(&mut self, audio_handle: &mut RaylibAudio) {
audio_handle.pause_music_stream(&mut self.music);
}
/// Call this every frame
pub fn update(&mut self, audio_handle: &mut RaylibAudio) {
audio_handle.update_music_stream(&mut self.music);
}
/// Check if this audio clip is playing
pub fn is_playing(&mut self, audio_handle: &mut RaylibAudio) -> bool {
return audio_handle.is_music_playing(&mut self.music);
}

2
src/lib/wrappers/mod.rs Normal file
View File

@ -0,0 +1,2 @@
pub mod audio;
pub mod animation;

View File

@ -1,6 +1,6 @@
mod lib;
use lib::{animation::wrapper::FrameAnimationWrapper, audio::wrapper::AudioWrapper};
use lib::wrappers::{animation::FrameAnimationWrapper, audio::AudioWrapper};
use raylib::prelude::*;
fn main() {