summaryrefslogtreecommitdiff
path: root/src/app/Knob.cpp
blob: 7f9fcff3c59594a34910149662d82e0ca9ca6ce1 (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
#include "app/Knob.hpp"


namespace rack {


void Knob::onButton(event::Button &e) {
	float r = box.size.x / 2;
	math::Vec c = box.size.div(2);
	float dist = e.pos.minus(c).norm();
	if (dist <= r) {
		ParamWidget::onButton(e);
	}
}

void Knob::onDragStart(event::DragStart &e) {
	context()->window->cursorLock();
}

void Knob::onDragEnd(event::DragEnd &e) {
	context()->window->cursorUnlock();
}

void Knob::onDragMove(event::DragMove &e) {
	if (quantity) {
		float range;
		if (quantity->isBounded()) {
			range = quantity->getRange();
		}
		else {
			// Continuous encoders scale as if their limits are +/-1
			range = 2.f;
		}
		float delta = KNOB_SENSITIVITY * -e.mouseDelta.y * speed * range;

		// Drag slower if Mod is held
		if (context()->window->isModPressed())
			delta /= 16.f;
		quantity->moveValue(delta);
	}
}


} // namespace rack