Set up a code template for tomorrow
This commit is contained in:
parent
dfcd5c5e99
commit
01ee2d5dcf
1
.vscode/settings.json
vendored
1
.vscode/settings.json
vendored
@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"cSpell.words": [
|
"cSpell.words": [
|
||||||
|
"Ludum",
|
||||||
"raylib"
|
"raylib"
|
||||||
]
|
]
|
||||||
}
|
}
|
13
src/gamecore.rs
Normal file
13
src/gamecore.rs
Normal 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
|
||||||
|
|
||||||
|
}
|
83
src/main.rs
83
src/main.rs
@ -1,71 +1,38 @@
|
|||||||
mod lib;
|
mod lib;
|
||||||
|
mod gamecore;
|
||||||
|
|
||||||
use lib::wrappers::{animation::FrameAnimationWrapper, audio::AudioWrapper};
|
use gamecore::{GameCore, GameState};
|
||||||
use raylib::prelude::*;
|
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() {
|
fn main() {
|
||||||
let (mut rl, thread) = raylib::init()
|
// Configure a window
|
||||||
.size(800, 600)
|
let (mut raylib, raylib_thread) = raylib::init()
|
||||||
.title("LDJam48 Tech Demo")
|
.size(
|
||||||
|
DEFAULT_WINDOW_DIMENSIONS.x as i32,
|
||||||
|
DEFAULT_WINDOW_DIMENSIONS.y as i32,
|
||||||
|
)
|
||||||
|
.title(WINDOW_TITLE)
|
||||||
.build();
|
.build();
|
||||||
rl.set_target_fps(120);
|
raylib.set_target_fps(MAX_FPS);
|
||||||
|
|
||||||
// Set up audio
|
// Set up the game's core state
|
||||||
let mut audio = RaylibAudio::init_audio_device();
|
let mut game_core = GameCore{
|
||||||
let mut distraction_dance_sound = AudioWrapper::new(
|
state: GameState::Loading
|
||||||
Music::load_music_stream(&thread, "assets/audio/distraction_dance.mp3").unwrap(),
|
};
|
||||||
);
|
|
||||||
|
|
||||||
// Build an animation
|
// Main rendering loop
|
||||||
let texture =
|
while !raylib.window_should_close() {
|
||||||
rl.load_texture(&thread, "assets/img/chr_henryStickman/spritesheet.png")
|
let mut draw_handle = raylib.begin_drawing(&raylib_thread);
|
||||||
.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);
|
|
||||||
|
|
||||||
// Clear frame
|
// Clear frame
|
||||||
d.clear_background(Color::WHITE);
|
draw_handle.clear_background(Color::WHITE);
|
||||||
|
|
||||||
// Update the audio buffer
|
// Call appropriate render function
|
||||||
distraction_dance_sound.update(&mut audio);
|
// TODO: the usual match statement on `game_core.state`
|
||||||
|
|
||||||
// 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);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user