Set up a code template for tomorrow

This commit is contained in:
Evan Pratten 2021-04-22 10:44:28 -04:00
parent dfcd5c5e99
commit 01ee2d5dcf
3 changed files with 39 additions and 58 deletions

View File

@ -1,5 +1,6 @@
{
"cSpell.words": [
"Ludum",
"raylib"
]
}

13
src/gamecore.rs Normal file
View File

@ -0,0 +1,13 @@
/// Overall states for the game
pub enum GameState {
Loading,
MainMenu,
}
/// This structure contains the entire game state, and should be passed around to various logic functions.
pub struct GameCore {
/// The game's overall state
pub state: GameState
}

View File

@ -1,71 +1,38 @@
mod lib;
mod gamecore;
use lib::wrappers::{animation::FrameAnimationWrapper, audio::AudioWrapper};
use gamecore::{GameCore, GameState};
use raylib::prelude::*;
// Game Launch Configuration
const DEFAULT_WINDOW_DIMENSIONS: Vector2 = Vector2 { x: 800.0, y: 600.0 };
const WINDOW_TITLE: &str = r"Ludum Dare 48";
const MAX_FPS: u32 = 60;
fn main() {
let (mut rl, thread) = raylib::init()
.size(800, 600)
.title("LDJam48 Tech Demo")
// Configure a window
let (mut raylib, raylib_thread) = raylib::init()
.size(
DEFAULT_WINDOW_DIMENSIONS.x as i32,
DEFAULT_WINDOW_DIMENSIONS.y as i32,
)
.title(WINDOW_TITLE)
.build();
rl.set_target_fps(120);
raylib.set_target_fps(MAX_FPS);
// Set up audio
let mut audio = RaylibAudio::init_audio_device();
let mut distraction_dance_sound = AudioWrapper::new(
Music::load_music_stream(&thread, "assets/audio/distraction_dance.mp3").unwrap(),
);
// Set up the game's core state
let mut game_core = GameCore{
state: GameState::Loading
};
// Build an animation
let texture =
rl.load_texture(&thread, "assets/img/chr_henryStickman/spritesheet.png")
.unwrap();
let mut stickman_animation =
FrameAnimationWrapper::new(texture, Vector2 { x: 472.0, y: 562.0 }, 44, 24);
// State
let mut is_playing_dance = false;
while !rl.window_should_close() {
let mut d = rl.begin_drawing(&thread);
// Main rendering loop
while !raylib.window_should_close() {
let mut draw_handle = raylib.begin_drawing(&raylib_thread);
// Clear frame
d.clear_background(Color::WHITE);
draw_handle.clear_background(Color::WHITE);
// Update the audio buffer
distraction_dance_sound.update(&mut audio);
// Draw an animation frame
stickman_animation.draw(&mut d, Vector2 { x: 200.0, y: 0.0 });
// Begin the dance if needed
if !is_playing_dance {
// Play audio
distraction_dance_sound.play(&mut audio);
// Play animation
stickman_animation.start(&d);
is_playing_dance = true;
}
// Reset the loop at the end of the track
if !distraction_dance_sound.is_playing(&mut audio) {
// Stop animation
stickman_animation.stop();
is_playing_dance = false;
}
// Render debug info
d.draw_text("Tech Demo - do not redistribute", 10, 10, 20, Color::BLACK);
let fps = d.get_fps();
d.draw_text(&format!("FPS: {}/120", fps), 10, 25, 20, Color::BLACK);
let spf = d.get_frame_time();
d.draw_text(&format!("SPF: {}", spf), 10, 40, 20, Color::BLACK);
let dpi = d.get_window_scale_dpi();
d.draw_text(&format!("DPI: {:?}", dpi), 10, 55, 20, Color::BLACK);
let frame = stickman_animation.get_current_frame_id(&d);
d.draw_text(&format!("Frame: {}", frame), 10, 70, 20, Color::BLACK);
// Call appropriate render function
// TODO: the usual match statement on `game_core.state`
}
}