You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Trac3r-rust/src/main.rs

153 lines
4.0 KiB

6 years ago
#![allow(dead_code)]
#![allow(unused_variables)]
#![allow(unused_mut)]
6 years ago
6 years ago
extern crate quick_xml;
extern crate sfml;
6 years ago
extern crate cgmath;
6 years ago
6 years ago
mod timer;
mod player;
mod input;
mod util;
mod entstate;
mod resources;
mod collision;
6 years ago
6 years ago
use crate::player::Player;
use crate::timer::Timer;
use crate::input::Input;
use crate::entstate::EntState;
use crate::resources::Resources;
use crate::collision::Collision;
6 years ago
extern crate nalgebra as na;
extern crate ncollide2d;
6 years ago
use sfml::graphics::{
Color, RenderTarget, RenderWindow,
};
use sfml::window::{ Event, Key, Style};
use sfml::system::Vector2 as sfVec2;
fn main() {
6 years ago
// Resources
// Holds textures and their descriptions
// Collision
// Holds the BVT which has a reference or owns the Sprite
// EntState
// Holds the entities and the player
// Entities (Sprites) have a texture so Resources must live longer
// Collision has references to sprites so EntState must live longer
// Resources { EntState { Collision } } }
let mut resources = Resources::new();
let mut collision = Collision::new();
6 years ago
let mut state = EntState::new();
6 years ago
// state.read_static_entities(String::from("static_entities.txt"), &resources);
//state.read_static_entities(String::from("static_entities.txt"), &resources);
//state.read_dynamic_entities(String::from("dynamic_entities.txt"));
//state.gen_bvt();
6 years ago
6 years ago
let mut window = RenderWindow::new(
7 years ago
(512, 512),
6 years ago
"Custom drawable",
Style::CLOSE,
&Default::default(),
);
6 years ago
let mut player = Player::new();
6 years ago
let mut timer = Timer::new();
let mut input = Input::new();
6 years ago
6 years ago
let step_size: f32 = 0.005;
6 years ago
let mut elapsed_time: f32;
let mut delta_time: f32;
6 years ago
let mut accumulator_time: f32 = 0.0;
6 years ago
let mut current_time: f32 = timer.elap_time();
6 years ago
while window.is_open() {
6 years ago
while let Some(event) = window.poll_event() {
match event {
6 years ago
Event::Closed => return,
Event::KeyPressed { code, .. } => {
if code == Key::Escape {
return;
}
}
6 years ago
_ => {}
}
6 years ago
input.ingest(&event)
}
if input.is_held(Key::W) {
player.impulse(&sfVec2::new(0.0, -1.0));
6 years ago
}
if input.is_held(Key::A) {
player.impulse(&sfVec2::new(-1.0, 0.0));
6 years ago
}
if input.is_held(Key::S) {
player.impulse(&sfVec2::new(0.0, 1.0));
6 years ago
}
if input.is_held(Key::D) {
player.impulse(&sfVec2::new(1.0, 0.0));
6 years ago
}
6 years ago
elapsed_time = timer.elap_time();
6 years ago
delta_time = elapsed_time - current_time;
current_time = elapsed_time;
if delta_time > 0.02 {
delta_time = 0.02;
6 years ago
}
6 years ago
accumulator_time += delta_time;
6 years ago
6 years ago
while (accumulator_time - step_size) >= step_size {
accumulator_time -= step_size;
}
6 years ago
6 years ago
// // intersection test
// let mut interferences = Vec::new();
// {
// // Get the AABB bounding box
// let (bv, _) = player.future_bounding_aabb(delta_time);
// let mut thing = BoundingVolumeInterferencesCollector::new(&bv, &mut interferences);
// bvt.visit(&mut thing);
// }
//
// let collision_rect = player.collision(&interferences, delta_time);
6 years ago
player.update(delta_time);
6 years ago
//
// let mut collision_sprite = RectangleShape::new();
// collision_sprite.set_position((collision_rect.left, collision_rect.top));
// collision_sprite.set_size((collision_rect.width, collision_rect.height));
6 years ago
window.clear(&Color::BLACK);
6 years ago
window.draw(&player);
6 years ago
//window.draw(&collision_sprite);
7 years ago
// for ent in state.static_entities.get_mut().iter() {
// window.draw(ent);
// }
//
// for ent in state.dynamic_entities.get_mut().iter() {
// window.draw(ent);
// }
6 years ago
window.display();
6 years ago
}
6 years ago
}