blob: efd5fb8032997e9ac44b336ad6ffe3d841f061ce (
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
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
100
101
102
103
104
105
106
107
108
|
#ifndef EVENTS_HPP_
#define EVENTS_HPP_
/**
* A place for events to live, while gamedev slowly dies from rewriting.
*/
#include <SDL2/SDL.h>
#include <string>
#include <config.hpp>
#include <vector2.hpp>
//////////////////////////
/// INPUT EVENTS
//////////////////////////
struct MainSDLEvent {
MainSDLEvent(SDL_Event e)
: event(e) {}
SDL_Event event;
};
struct MouseScrollEvent {
MouseScrollEvent(int sd = 0)
: scrollDistance(sd) {}
int scrollDistance;
};
struct MouseClickEvent {
MouseClickEvent(vec2 pos, int b)
: position(pos), button(b) {}
vec2 position;
int button;
};
struct MouseReleaseEvent {
MouseReleaseEvent(vec2 pos, int b)
: position(pos), button(b) {}
vec2 position;
int button;
};
struct KeyDownEvent {
KeyDownEvent(SDL_Keycode kc = 0)
: keycode(kc) {}
SDL_Keycode keycode;
};
struct KeyUpEvent {
KeyUpEvent(SDL_Keycode kc = 0)
: keycode(kc) {}
SDL_Keycode keycode;
};
//////////////////////////
/// ENGINE EVENTS
//////////////////////////
struct GameEndEvent {
GameEndEvent(bool r = true)
: really(r) {}
bool really;
};
//////////////////////////
/// WORLD EVENTS
//////////////////////////
class World;
struct BGMToggleEvent {
BGMToggleEvent(std::string f = "", World *w = nullptr)
: file(f), world(w) {}
std::string file;
World *world;
};
//////////////////////////
/// WINDOW EVENTS
//////////////////////////
struct WindowResizeEvent {
WindowResizeEvent(int w = 640, int h = 480)
: x(w), y(h) {}
int x;
int y;
};
struct ScreenshotEvent {
ScreenshotEvent(int w = game::SCREEN_HEIGHT, int h = game::SCREEN_WIDTH)
: w(w), h(h) {}
int w;
int h;
};
#endif // EVENTS_HPP_
|