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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
define.class("$server/composition", function (require, $ui$, icon, slider, button, checkbox, label, screen, view, cadgrid, $widgets$, colorpicker, $$, basestation, bulb) {
this.render = function () {
return [
basestation(
{username:"U25oiZ7c0cUV6Z7mE1EVVBiY3tiLY9K47GTo0iuP"}
),
screen({
name:"desktop",
clearcolor: '#888'
},
cadgrid({
name:"main",
bgcolor: vec4(0.07999999821186066, 0.10000000149011612, 0.10000000149011612, 1),
toolselect: false,
toolmove: false,
gridsize: 5,
majorevery: 10,
majorline: vec4(0, 0.20000000298023224, 0.30000001192092896, 1),
minorline: vec4(0, 0.19792191684246063, 0.17214606702327728, 1),
flexdirection: "row",
justifycontent: "space-around",
alignitems: "center",
render:function() {
var lights = [];
var baselights = this.rpc.basestation.lights;
console.log("Base has lights:", baselights)
for (var uid in baselights) {
if (baselights.hasOwnProperty(uid)) {
var light = baselights[uid];
var huebulb = bulb(light);
huebulb.click = function(ev,v,o){
o.on = !o.on;
this.rpc
.basestation
.setLightState(o.id, {on: o.on });
}.bind(this);
lights.push(
view({
flex:0,
padding:10,
flexdirection:"column",
aligncontent: "stretch",
justifycontent: "center",
bgcolor:vec4(0.4)
},
huebulb,
slider({
flex:1,
height:10,
margin:40,
width:250,
value:light.bri / 255.0,
bgcolor:"black",
fgcolor:"white",
smooth:false,
bulb:huebulb,
onvalue:function(ev,v,o) {
if (!this.__lock) {
this.__lock = true;
o.bulb.bri = v * 255;
o.bulb.reset();
this.rpc
.basestation
.setLightState(o.bulb.id, {transitiontime:0, bri: o.bulb.bri})
.then(function(){
this.__lock = false;
}.bind(this), function(){
this.__lock = false;
}.bind(this))
;
}
}.bind(this)
}),
colorpicker({
flex:1,
alignself:"center",
colorwheel:true,
colorsliders:false,
colorbox:false,
value:huebulb.textcolor,
bulb:huebulb,
valuechange:function(ev, v, o) {
var red = o._value[0];
var green = o._value[1];
var blue = o._value[2];
red = (red > 0.04045) ? Math.pow((red + 0.055) / (1.0 + 0.055), 2.4) : (red / 12.92);
green = (green > 0.04045) ? Math.pow((green + 0.055) / (1.0 + 0.055), 2.4) : (green / 12.92);
blue = (blue > 0.04045) ? Math.pow((blue + 0.055) / (1.0 + 0.055), 2.4) : (blue / 12.92);
var xx = red * 0.664511 + green * 0.154324 + blue * 0.162028;
var yy = red * 0.283881 + green * 0.668433 + blue * 0.047685;
var zz = red * 0.000088 + green * 0.072310 + blue * 0.986039;
var x = xx / (xx + yy + zz);
var y = yy / (xx + yy + zz);
if (!this.__lock) {
this.__lock = true;
o.bulb.rgb = [red * 255, green * 255, blue * 255];
o.bulb.reset();
this.rpc
.basestation
.setLightState(o.bulb.id, { transitiontime:0, xy:[x,y] })
.then(function(){
this.__lock = false;
}.bind(this), function(){
this.__lock = false;
}.bind(this))
}
}.bind(this)
})
)
)
}
}
lights.push(view({
visible:this.rpc.basestation.linkalert,
position:"absolute",
x:200,
y:100,
width:300,
height:300,
borderradius:30,
bgcolor:"white",
flexdirection:"column",
justifycontent:"center",
alignitems:"center"
},
view({alignitems:"center"},icon({fontsize:40, marginright:20, fgcolor:"cornflowerblue", icon:"link"}),label({fontsize:30, fgcolor:"#888", text:"Missing Link!"})),
label({
padding:20,
marginleft:20,
fgcolor:"#888",
text:"Press the Link button on top\nof your base station and then\n quickly press this button:"
}),
button({
text:"Link To Basestation",
click:function() {
this.rpc.basestation.linkalert = false;
this.rerender();
}.bind(this)
}))
);
return lights;
}
}))
]
}
}
)
|