-
Notifications
You must be signed in to change notification settings - Fork 5
/
state.cpp
109 lines (93 loc) · 2.07 KB
/
state.cpp
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
109
/*
Copyright 2013-2015 Rohit Nirmal
This file is part of Clonepoint.
Clonepoint is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Clonepoint is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Clonepoint. If not, see <http://www.gnu.org/licenses/>.
*/
#include "state.h"
BaseState::BaseState(StateManager* sm)
{
_quitting = false;
tookScreenshot = false;
_manager = sm;
_mouseX = 0;
_mouseY = 0;
}
BaseState::~BaseState()
{
size_t i;
for (i = 0; i < _labels.size(); i++)
{
delete _labels[i];
}
_labels.clear();
}
bool BaseState::isQuitting()
{
return _quitting;
}
size_t BaseState::getLabelCount()
{
return _labels.size();
}
TextLabel* BaseState::getLabelAt(size_t i)
{
return _labels[i];
}
void BaseState::handleMouseWheel(int dir)
{
}
void BaseState::handleInput()
{
while (SDL_PollEvent(&_event))
{
if (_event.type == SDL_QUIT)
{
_quitting = true;
}
else if (_event.type == SDL_MOUSEWHEEL)
{
handleMouseWheel(_event.wheel.y);
}
else if (_event.type == SDL_KEYUP)
{
handleKeyUp(_event.key.keysym.sym);
}
else if (_event.type == SDL_KEYDOWN)
{
handleKeyDown(_event.key.keysym.sym);
}
else if (_event.type == SDL_MOUSEBUTTONDOWN)
{
handleMouseDown(_event.button);
}
else if (_event.type == SDL_MOUSEBUTTONUP)
{
handleMouseUp(_event.button);
}
if (_event.type == SDL_MOUSEBUTTONUP
|| _event.type == SDL_MOUSEBUTTONDOWN
|| _event.type == SDL_MOUSEMOTION)
{
setMousePosition(_event.button.x, _event.button.y);
}
}
}
void BaseState::getMousePosition(int* mx, int* my)
{
*mx = _mouseX;
*my = _mouseY;
}
void BaseState::setMousePosition(int mx, int my)
{
_mouseX = mx;
_mouseY = my;
}