-
Notifications
You must be signed in to change notification settings - Fork 5
/
fieldofview.cpp
125 lines (102 loc) · 2.12 KB
/
fieldofview.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
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 "entity.h"
FieldOfView::FieldOfView(float x, float y, float radius, int direction, int halfSize, bool active, FOVType type)
{
_position.x = x;
_position.y = y;
_radius = radius;
_direction = direction;
_halfSize = halfSize;
_active = active;
clearVerts();
_red = 1.0f;
_green = 1.0f;
_blue = 1.0f;
_fixture = NULL;
_type = type;
}
FieldOfView::~FieldOfView()
{
_verts.clear();
}
vec2f FieldOfView::getPosition()
{
return _position;
}
float FieldOfView::getRadius()
{
return _radius;
}
int FieldOfView::getDirection()
{
return _direction;
}
int FieldOfView::getSize()
{
return _halfSize;
}
void FieldOfView::addVertex(float x, float y)
{
_verts.push_back(x);
_verts.push_back(y);
}
void FieldOfView::changeVertex(unsigned int i, float x, float y)
{
if (i >= _verts.size())
{
return;
}
_verts[i] = x;
_verts[i + 1] = y;
}
float* FieldOfView::getVertData()
{
return _verts.data();
}
int FieldOfView::getNumberOfVerts()
{
return _verts.size() / 2;
}
void FieldOfView::moveTo(float x, float y)
{
_position.x = x;
_position.y = y;
clearVerts();
}
void FieldOfView::clearVerts()
{
_verts.clear();
addVertex(_position.x, _position.y);
}
void FieldOfView::getColors(float* r, float* g, float* b)
{
*r = _red;
*g = _green;
*b = _blue;
}
Rect FieldOfView::getCollisionRect()
{
Rect rect;
rect.x = _position.x - 16;
rect.y = _position.y - 16;
rect.w = 32;
rect.h = 32;
return rect;
}
FOVType FieldOfView::getType()
{
return _type;
}