-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathLookAssistant.cpp
68 lines (53 loc) · 1.97 KB
/
LookAssistant.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
/***************************************************
Copyright (c) 2020 Luis Llamas
(www.luisllamas.es)
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses
****************************************************/
#include "LookAssistant.h"
#include "Face.h"
#include "EyeTransformation.h"
LookAssistant::LookAssistant(Face& face) : _face(face), Timer(4000)
{
Timer.Start();
}
void LookAssistant::LookAt(float x, float y)
{
int16_t moveX_x;
int16_t moveY_x;
int16_t moveY_y;
float scaleY_x;
float scaleY_y;
moveX_x = -25 * x;
moveY_x = -3 * x;
moveY_y = 20 * y;
scaleY_x = 1.0 - x * 0.2;
scaleY_y = 1.0 - (y > 0 ? y : -y) * 0.4;
transformation.MoveX = moveX_x;
transformation.MoveY = moveY_y; //moveY_x + moveY_y;
transformation.ScaleX = 1.0;
transformation.ScaleY = scaleY_x * scaleY_y;
_face.RightEye.Transformation.SetDestin(transformation);
moveY_x = +3 * x;
scaleY_x = 1.0 + x * 0.2;
transformation.MoveX = moveX_x;
transformation.MoveY = + moveY_y; //moveY_x + moveY_y;
transformation.ScaleX = 1.0;
transformation.ScaleY = scaleY_x * scaleY_y;
_face.LeftEye.Transformation.SetDestin(transformation);
_face.RightEye.Transformation.Animation.Restart();
_face.LeftEye.Transformation.Animation.Restart();
}
void LookAssistant::Update()
{
Timer.Update();
if (Timer.IsExpired())
{
Timer.Reset();
auto x = random(-50, 50);
auto y = random(-50, 50);
LookAt((float)x / 100, (float)y / 100);
}
}