forked from acaudwell/Gource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslider.cpp
More file actions
159 lines (107 loc) · 3.54 KB
/
Copy pathslider.cpp
File metadata and controls
159 lines (107 loc) · 3.54 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/*
Copyright (C) 2009 Andrew Caudwell (acaudwell@gmail.com)
This program 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.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "slider.h"
// PositionSlider
PositionSlider::PositionSlider(float percent) {
this->percent = percent;
font = fontmanager.grab("FreeSans.ttf", 16);
font.dropShadow(true);
slidercol = vec3(1.0, 1.0, 1.0);
mouseover = -1.0;
mouseover_elapsed = 1.0;
fade_time = 1.0;
alpha = 0.0;
resize();
}
const Bounds2D& PositionSlider::getBounds() const {
return bounds;
}
void PositionSlider::resize() {
int gap = 35;
bounds.reset();
bounds.update(vec2(gap, display.height - gap*2));
bounds.update(vec2(display.width - gap, display.height - gap));
}
void PositionSlider::setColour(vec3 col) {
slidercol = col;
}
void PositionSlider::show() {
mouseover_elapsed = 0.0;
}
bool PositionSlider::mouseOver(vec2 pos, float* percent_ptr) {
if(bounds.contains(pos)) {
mouseover_elapsed = 0;
mouseover = pos.x;
if(percent_ptr != 0) {
*percent_ptr = (float) (pos.x - bounds.min.x) / (bounds.max.x - bounds.min.x);
}
return true;
}
mouseover = -1.0;
return false;
}
bool PositionSlider::click(vec2 pos, float* percent_ptr) {
if(mouseOver(pos, &percent)) {
if(percent_ptr != 0) {
*percent_ptr = percent;
}
return true;
}
return false;
}
void PositionSlider::setCaption(const std::string& caption) {
capwidth = 0.0;
this->caption = caption;
if(caption.size()) {
capwidth = font.getWidth(caption.c_str());
}
}
void PositionSlider::setPercent(float percent) {
this->percent = percent;
}
void PositionSlider::logic(float dt) {
if(mouseover < 0.0 && mouseover_elapsed < fade_time) mouseover_elapsed += dt;
if(mouseover_elapsed < fade_time && alpha < 1.0) {
alpha = std::min(1.0f, alpha+dt);
} else if(mouseover_elapsed >= fade_time && alpha > 0.0) {
alpha = std::max(0.0f, alpha-dt);
}
}
void PositionSlider::drawSlider(float pos_x) const {
glLineWidth(2.0f);
bounds.draw();
glLineWidth(2.0f);
glBegin(GL_LINES);
glVertex2f(pos_x, bounds.min.y);
glVertex2f(pos_x, bounds.max.y);
glEnd();
}
void PositionSlider::draw(float dt) {
glDisable(GL_TEXTURE_2D);
float pos_x = bounds.min.x + (bounds.max.x - bounds.min.x) * percent;
glColor4f(0.0f, 0.0f, 0.0f, 0.7*alpha);
glPushMatrix();
glTranslatef(2.0, 2.0, 0.0);
drawSlider(pos_x);
glPopMatrix();
glColor4f(slidercol.x, slidercol.y, slidercol.z, alpha);
drawSlider(pos_x);
glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glEnable(GL_BLEND);
glEnable(GL_TEXTURE_2D);
glColor4f(1.0, 1.0, 1.0, 1.0);
if(caption.size() && mouseover >= 0.0) {
font.draw(std::min((double)display.width - capwidth - 1.0, std::max(1.0, mouseover - (capwidth/2.0))), bounds.min.y - 25.0, caption);
}
}