Calcul de l'état dans la fonction update
This commit is contained in:
parent
91c72fb9d7
commit
ebd1cc15d6
17
engine.cpp
17
engine.cpp
|
@ -1,4 +1,5 @@
|
||||||
#include "engine.hpp"
|
#include "engine.hpp"
|
||||||
|
#include "state.hpp"
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
#include <queue>
|
#include <queue>
|
||||||
|
|
||||||
|
@ -53,20 +54,20 @@ Engine::Engine() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// réinitialise l'horloge à zéro et calcule la différence
|
update();
|
||||||
// puis établit l'objet stockant l'état du moteur
|
draw();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void Engine::update() {
|
||||||
|
// calcul du temps écoulé depuis la dernière frame
|
||||||
|
// et création de l'objet state stockant l'état du moteur
|
||||||
State state;
|
State state;
|
||||||
state.delta = clock.restart().asSeconds();
|
state.delta = clock.restart().asSeconds();
|
||||||
state.goLeftKey = goLeftKey;
|
state.goLeftKey = goLeftKey;
|
||||||
state.goRightKey = goRightKey;
|
state.goRightKey = goRightKey;
|
||||||
state.objects = objects;
|
state.objects = objects;
|
||||||
|
|
||||||
update(state);
|
|
||||||
draw();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void Engine::update(State state) {
|
|
||||||
// demande la mise à jour de tous les objets du jeu
|
// demande la mise à jour de tous les objets du jeu
|
||||||
for (int i = 0; i < objects.size(); i++) {
|
for (int i = 0; i < objects.size(); i++) {
|
||||||
objects[i]->update(state);
|
objects[i]->update(state);
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <SFML/Graphics.hpp>
|
#include <SFML/Graphics.hpp>
|
||||||
#include "state.hpp"
|
|
||||||
#include "object.hpp"
|
#include "object.hpp"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -32,7 +31,7 @@ public:
|
||||||
* Met à jour les objets du jeu pour
|
* Met à jour les objets du jeu pour
|
||||||
* qu'ils s'adaptent au nouvel état du moteur
|
* qu'ils s'adaptent au nouvel état du moteur
|
||||||
*/
|
*/
|
||||||
void update(State state);
|
void update();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue