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

176 lines
5.1 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 loader;
6 years ago
6 years ago
use crate::player::Player;
use crate::timer::Timer;
use crate::input::Input;
use crate::loader::Loader;
6 years ago
extern crate nalgebra as na;
extern crate ncollide2d;
6 years ago
use sfml::graphics::{
Color, RenderTarget, RenderWindow,
6 years ago
Sprite, Transformable
6 years ago
};
use sfml::window::{ Event, Key, Style};
use sfml::system::Vector2 as sfVec2;
6 years ago
use ncollide2d::bounding_volume::{AABB, BoundingVolumeInterferencesCollector};
use ncollide2d::partitioning::BVT;
use sfml::graphics::RectangleShape;
use std::{thread, time};
use std::cell::RefCell;
use std::rc::Rc;
6 years ago
use ncollide2d::bounding_volume;
6 years ago
pub struct EntState<'a> {
6 years ago
dynamic_bvh : Option<BVT<&'a Sprite<'a>, AABB<f64>>>,
dynamic_entities: Rc<RefCell<Vec< Sprite<'a> >>>,
6 years ago
static_bvh : Option<BVT<&'a Sprite<'a>, AABB<f64>>>,
static_entities : Rc<RefCell<Vec< Sprite<'a> >>>,
6 years ago
player : Player<'a>,
}
6 years ago
fn main() {
7 years ago
let loader = Loader::new();
let mut state = EntState {
6 years ago
dynamic_bvh: None,
dynamic_entities: Rc::new(RefCell::new(Vec::new())),
6 years ago
static_bvh: None,
static_entities: Rc::new(RefCell::new(Vec::new())),
player: Player::new(),
};
6 years ago
loader.read_static_entities(String::from("static_entities.txt"), &state);
loader.read_dynamic_entities(String::from("dynamic_entities.txt"), &state);
6 years ago
let mut dynamic_sprites: Vec<(&Sprite, AABB<f64>)> = Vec::new();
let dyna = state.dynamic_entities.borrow();
for i in dyna.iter() {
let bounds = &i.local_bounds();
let pos = &i.position();
let volume = bounding_volume::AABB::new(na::Point2::new(pos.x as f64, pos.y as f64),
na::Point2::new((pos.x + bounds.width) as f64, (pos.y + bounds.width) as f64));
6 years ago
dynamic_sprites.push((i, volume));
}
state.dynamic_bvh = Some(BVT::new_balanced(dynamic_sprites));
6 years ago
let mut static_sprites: Vec<(&Sprite, AABB<f64>)> = Vec::new();
for i in state.static_entities.borrow_mut().iter() {
let bounds = &i.local_bounds();
let pos = &i.position();
let volume = bounding_volume::AABB::new(na::Point2::new(pos.x as f64, pos.y as f64),
na::Point2::new((pos.x + bounds.width) as f64, (pos.y + bounds.width) as f64));
static_sprites.push((i, volume));
}
state.static_bvh = Some(BVT::new_balanced(static_sprites));
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.borrow().iter() {
window.draw(ent);
}
6 years ago
for ent in state.dynamic_entities.borrow().iter() {
window.draw(ent);
}
6 years ago
window.display();
6 years ago
}
6 years ago
}