skizzle/src/engine.cpp

118 lines
3.6 KiB
C++
Raw Normal View History

2016-03-04 15:29:31 +00:00
#include "engine.hpp"
#include <cmath>
#include <queue>
2016-03-04 15:29:31 +00:00
Engine::Engine() : window(
sf::VideoMode(400, 300), "Projet CMI",
sf::Style::Default & ~sf::Style::Resize,
sf::ContextSettings(0, 0, 2)
) {
2016-03-04 15:29:31 +00:00
window.setVerticalSyncEnabled(true);
}
2016-03-04 15:29:31 +00:00
void Engine::start() {
2016-03-04 15:29:31 +00:00
// boucle d'événements sur la fenêtre
while (window.isOpen()) {
sf::Event event;
// traitement des évènements reçus
while (window.pollEvent(event)) {
// fermeture de la fenêtre
if (event.type == sf::Event::Closed) {
window.close();
}
// suivi de l'enfoncement et du relâchement des touches
2016-03-04 15:29:31 +00:00
if (event.type == sf::Event::KeyPressed) {
state.keys[event.key.code] = true;
2016-03-04 15:29:31 +00:00
}
if (event.type == sf::Event::KeyReleased) {
state.keys[event.key.code] = false;
2016-03-04 15:29:31 +00:00
}
}
state.delta = clock.restart().asSeconds();
update();
2016-03-04 15:29:31 +00:00
draw();
}
}
void Engine::addObject(Object& object) {
state.objects.push_back(&object);
}
void Engine::update() {
// demande la mise à jour de tous les objets du jeu
for (unsigned int i = 0; i < state.objects.size(); i++) {
state.objects[i]->update(state);
2016-03-04 15:29:31 +00:00
}
// gère les collisions entre les objets
for (unsigned int i = 0; i < state.objects.size(); i++) {
Object* objA = state.objects[i];
for (unsigned int j = i + 1; j < state.objects.size(); j++) {
Object* objB = state.objects[j];
// si les objets ne sont pas sur la même couche,
// ils ne peuvent pas entrer en collision
if (objA->getLayer() != objB->getLayer()) {
continue;
}
// si les deux boîtes englobantes des deux objets,
// il ne risque pas d'y avoir de collision
if (!objA->getAABB()->intersects(*objB->getAABB())) {
continue;
}
sf::Vector2f normal;
// vérifie plus finement s'il y a collision et
// calcule la normale
if (!objA->getNormal(*objB, normal)) {
continue;
}
sf::Vector2f codir = objB->getVelocity() - objA->getVelocity();
float dotnormal = codir.x * normal.x + codir.y * normal.y;
// si les directions sont divergentes, pas besoin
// de résoudre la collision
if (dotnormal >= 0) {
continue;
}
2016-03-15 21:17:08 +00:00
// calcule et applique l'impulsion de résolution de la collision
float restitution = std::min(objA->getRestitution(), objB->getRestitution());
2016-03-15 21:17:08 +00:00
float impulse = (-(1 + restitution) * dotnormal) /
(objA->getMassInvert() + objB->getMassInvert());
2016-03-15 21:17:08 +00:00
objA->setVelocity(objA->getVelocity() - objA->getMassInvert() * impulse * normal);
objB->setVelocity(objB->getVelocity() + objB->getMassInvert() * impulse * normal);
}
}
2016-03-04 15:29:31 +00:00
}
void Engine::draw() {
// efface la scène précédente et dessine la couche de fond
2016-03-04 15:29:31 +00:00
window.clear(sf::Color(66, 165, 245));
// chargement de la file d'affichage des objets
std::priority_queue<Object*, std::vector<Object*>, ObjectCompare> display_queue;
for (unsigned int i = 0; i < state.objects.size(); i++) {
display_queue.push(state.objects[i]);
2016-03-04 15:29:31 +00:00
}
// dessin des objets de la file d'affichage couche par couche
while (!display_queue.empty()) {
display_queue.top()->draw(window);
display_queue.pop();
2016-03-04 15:29:31 +00:00
}
2016-03-10 18:18:50 +00:00
window.display();
2016-03-04 15:29:31 +00:00
}