1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
#ifndef ___PAppSdlOpenGl3_H__
#define ___PAppSdlOpenGl3_H__
#define GL3_PROTOTYPES 1
#include <GL3/gl3.h>
#include <SDL/SDL.h>
#include <iostream>
#include <string>
#include <map>
#include "Matrice4.h"
#include "simple_camera_gl3.h"
typedef std::map<SDL_Keycode,bool> KeyStates; typedef std::map<std::string,SDL_Keycode> KeyConf;
class PAppSdlOpenGl3{
public:
PAppSdlOpenGl3(const std::string & titreFenetre, int largeurFenetre, int hauteurFenetre);
virtual ~PAppSdlOpenGl3();
int executer();
bool isOpenGlSdlInit() const;
void setFPS(Uint32 framePerSecond);
float getRatio() const;
void setPerpectiveDeg(float angleDeg, float near, float far);
void setPerpectiveRad(float angleRad, float near, float far);
void dontRun();
protected:
virtual void updateWithEvent(SDL_Event* event);
virtual void update(float dt) = 0;
virtual void draw3d() = 0;
void addKeyEventRepeat(const std::string & action, SDL_Keycode key, bool initValue = false);
void addKeyEventNoRepeat(const std::string & action, SDL_Keycode key, bool initValue = false);
///fonction qui dit si un événement à tester s'est réalisé ou pas
/** @param action : nom de l'action à testé ("forward", "up", "down", "left", "right", "quit"...)
@return true si la touche est pressée, false sinon
*/
inline bool keyEventMadeRepeat(const std::string & action){return p_keystatesRepeat[p_keyconfRepeat[action]];}
///fonction qui dit si un événement à tester s'est réalisé ou pas
/** @param action : nom de l'action à testé ("forward", "up", "down", "left", "right", "quit"...)
@return true si la touche est pressée, false sinon
*/
inline bool keyEventMadeNoRepeat(const std::string & action){return p_keystatesNoRepeat[p_keyconfNoRepeat[action]];}
void clearKeyStatesNoRepeat();
void stop();
Matrice4 p_matProjection;
Matrice4 p_matModelview;
///id de la fenêtre
SDL_WindowID p_fenetre;
///caméra de l'application
SimpleCameraGl3 p_cameraGL;
private:
void initialisationPAppSdlOpenGl3(const std::string & titreFenetre, int largeurFenetre, int hauteurFenetre);
PAppSdlOpenGl3(const PAppSdlOpenGl3 & other); void getEvent(SDL_Event* event);
std::string p_titreFenetre;
int p_largeurFenetre;
int p_hauteurFenetre;
SDL_GLContext p_contexteOpenGL;
SDL_Event p_evenements;
bool p_isOpenGlSdlInit;
bool p_isRun;
///dernière mesure de temps de l'application (SDL_Ticks)
Uint32 p_last_time; ///temps courrant
Uint32 p_current_time; ///intervalle de temps entre le temps courrant et la dernière mesure de temps de l'application
Uint32 p_ellapsed_time; ///instant ou l'appilcation a été déclenchée
Uint32 p_start_time; ///tableau de bool pour les entrées clavier
KeyStates p_keystatesRepeat; ///association actions touches
KeyConf p_keyconfRepeat; ///état des touches qui ne se répètent pas (genre pour aller dans un menu)
KeyStates p_keystatesNoRepeat;
///config des touches qui ne se répètent pas
KeyConf p_keyconfNoRepeat;
///temps de rendu pour une frame
Uint32 p_timeForOneFrame;
};
#endif //classe PAppSdlOpenGl3
|