forked from waldobronchart/AmbientLightServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathColor.cpp
66 lines (51 loc) · 1.18 KB
/
Color.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
#include "Color.h"
Color lerpColor(const Color& c1, const Color& c2, float term)
{
float r = lerp(c1.R(), c2.R(), term);
float g = lerp(c1.G(), c2.G(), term);
float b = lerp(c1.B(), c2.B(), term);
return Color(r, g, b);
}
json_t* json_color(const Color& c)
{
json_t* root = json_array();
// R
json_t* jsonR = json_real(c.R());
json_array_append(root, jsonR);
json_decref(jsonR);
// G
json_t* jsonG = json_real(c.G());
json_array_append(root, jsonG);
json_decref(jsonG);
// B
json_t* jsonB = json_real(c.B());
json_array_append(root, jsonB);
json_decref(jsonB);
return root;
}
bool json_is_color(const json_t *root)
{
if (!json_is_array(root))
return false;
if (json_array_size(root) != 3)
return false;
for (int i=0; i<3; ++i)
{
if (!json_is_real(json_array_get(root, i)))
return false;
}
return true;
}
Color json_color_value(const json_t *root)
{
// Read R
json_t* jsonR = json_array_get(root, 0);
float r = (float)json_real_value(jsonR);
// Read G
json_t* jsonG = json_array_get(root, 1);
float g = (float)json_real_value(jsonG);
// Read B
json_t* jsonB = json_array_get(root, 2);
float b = (float)json_real_value(jsonB);
return Color(r, g, b);
}