-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGridPointer.cpp
67 lines (63 loc) · 2.27 KB
/
GridPointer.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
// ======================================================================
// WinGridStrument - a Windows touchscreen musical instrument
// Copyright(C) 2020 Roger Allen
//
// 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 <https://www.gnu.org/licenses/>.
// ======================================================================
#include "GridPointer.h"
// ======================================================================
// Default contstructor. FIXME would like to know why I need this.
//
GridPointer::GridPointer()
{
id_ = -1;
rect_ = RECT{ 0,0,0,0 };
point_ = POINT{ 0,0 };
pressure_ = 0;
starting_point_ = POINT{ 0,0 };
note_ = 0;
channel_ = 0;
modulation_x_ = modulation_y_ = modulation_z_ = 0;
}
// ======================================================================
// Standard Constructor. Used when we get a finger down touch event.
//
GridPointer::GridPointer(int id, RECT rect, POINT point, int pressure) :
id_(id), rect_(rect), point_(point), pressure_(pressure)
{
starting_point_ = point;
// setters will update these values
note_ = 0;
channel_ = 0;
modulation_x_ = modulation_y_ = modulation_z_ = 0;
}
// ======================================================================
// update the pointer values on touch update event
//
void GridPointer::update(RECT rect, POINT point, int pressure)
{
rect_ = rect;
point_ = point;
pressure_ = pressure;
}
// ======================================================================
// return the dx,dy between the current point and starting point.
//
POINT GridPointer::pointChange()
{
POINT delta;
delta.x = point_.x - starting_point_.x;
delta.y = point_.y - starting_point_.y;
return delta;
}