blob: 7f70c04b04b96b5843de2203e165e227baf7bbed (
plain)
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
|
#ifndef EVENTS_HPP_
#define EVENTS_HPP_
/**
* A place for events to live, while gamedev slowly dies from rewriting.
*/
#include <SDL2/SDL.h>
#include <string>
class World;
struct MouseScrollEvent {
MouseScrollEvent(int sd = 0)
: scrollDistance(sd) {}
int scrollDistance;
};
struct KeyDownEvent {
KeyDownEvent(SDL_Keycode kc = 0)
: keycode(kc) {}
SDL_Keycode keycode;
};
struct KeyUpEvent {
KeyUpEvent(SDL_Keycode kc = 0)
: keycode(kc) {}
SDL_Keycode keycode;
};
struct GameEndEvent {
GameEndEvent(bool r = true)
: really(r) {}
bool really;
};
struct BGMToggleEvent {
BGMToggleEvent(std::string f = "", World *w = nullptr)
: file(f), world(w) {}
std::string file;
World *world;
};
#endif // EVENTS_HPP_
|