forked from nimaid/LPHK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lp_colors.py
167 lines (139 loc) · 4.91 KB
/
lp_colors.py
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
curr_colors = [[[0, 0, 0] for y in range(9)] for x in range(9)]
color_modes = [["solid" for y in range(9)] for x in range(9)]
import lp_events, scripts, window
import colorsys
lp_object = None
def init(lp_object_in):
global lp_object
lp_object = lp_object_in
def code_to_RGB(code):
# Used to convert old layouts to the new format only
RGB = {0: "#000",
1: "#555",
2: "#aaa",
3: "#fff",
5: "#f00",
6: "#a00",
7: "#500",
9: "#f90",
10: "#a60",
11: "#530",
21: "#0f0",
22: "#0a0",
23: "#050",
13: "#ff0",
14: "#aa0",
15: "#550",
29: "#0ff",
30: "#0aa",
31: "#055",
37: "#0bf",
38: "#08a",
39: "#045",
45: "#00f",
46: "#00a",
47: "#005",
53: "#f0f",
54: "#a0a",
55: "#505",
48: "#96f",
49: "#64a",
50: "#325"}
rgb = []
for c in range(3):
val = RGB[code][c + 1]
rgb.append(int(val + val, 16))
return rgb
def RGB_to_RG(rgb):
if rgb[2] != 0:
color = list(colorsys.rgb_to_hsv(rgb[0], rgb[1], rgb[2]))
color[0] = color[0] * (106 / 330)
color = list(colorsys.hsv_to_rgb(color[0], color[1], color[2]))
color = [round(x) for x in color]
for x in range(2):
color[x] = round(color[x])
return color[:2] + [0]
else:
return rgb
def setXY(x, y, color):
curr_colors[x][y] = color
def getXY(x, y):
return curr_colors[x][y]
def list_RGB_to_string(color):
color_texts = [hex(c)[2:] for c in color]
color_string = "#"
for c in color_texts:
if len(c) < 2:
color_string += "0"
color_string += c
return color_string
def getXY_RGB(x, y):
color = getXY(x, y)
color_string = list_RGB_to_string(color)
return color_string
def luminance(r, g, b):
return ((0.299 * r) + (0.587 * g) + (0.114 * b)) / 255.0
def updateXY(x, y):
if window.lp_connected:
if (x, y) != (8, 0):
is_running = False
if scripts.threads[x][y] is not None:
if scripts.threads[x][y].is_alive():
is_running = True
is_func_key = ((y == 0) or (x == 8))
# print("Update colors for (" + str(x) + ", " + str(y) + "), is_running = " + str(is_running))
if is_running:
set_color = scripts.COLOR_PRIMED
color_modes[x][y] = "flash"
elif (x, y) in [l[1:] for l in scripts.to_run]:
if is_func_key:
set_color = scripts.COLOR_FUNC_KEYS_PRIMED
else:
set_color = scripts.COLOR_PRIMED
color_modes[x][y] = "pulse"
else:
set_color = curr_colors[x][y]
color_modes[x][y] = "solid"
if window.lp_mode == "Mk1":
if type(set_color) is int:
set_color = code_to_RGB(set_color)
lp_object.LedCtrlXY(x, y, set_color[0] // 64, set_color[1] // 64)
elif window.lp_mode == "64":
if type(set_color) is int:
set_color = code_to_RGB(set_color)
lp_object.LedCtrlXY(x, y, set_color[0] // 64, set_color[1] // 64)
else:
if (color_modes[x][y] == "solid") or is_func_key:
# pulse and flash only work on main grid
if type(set_color) is list:
lp_object.LedCtrlXYByRGB(x, y, [c // 4 for c in set_color])
else:
lp_object.LedCtrlXYByCode(x, y, set_color)
elif color_modes[x][y] == "pulse":
lp_object.LedCtrlPulseXYByCode(x, y, set_color)
elif color_modes[x][y] == "flash":
lp_object.LedCtrlXYByCode(x, y, 0)
lp_object.LedCtrlFlashXYByCode(x, y, set_color)
else:
if type(set_color) is list:
lp_object.LedCtrlXYByRGB(x, y, [c // 4 for c in set_color])
else:
lp_object.LedCtrlXYByCode(x, y, set_color)
else:
print("[lp_colors] (" + str(x) + ", " + str(y) + ") Launchpad is disconnected, cannot update.")
def update_all():
if window.lp_connected:
for x in range(9):
for y in range(9):
updateXY(x, y)
else:
print("[lp_colors] Launchpad is disconnected, cannot update.")
def raw_clear():
for x in range(9):
for y in range(9):
if window.lp_mode == "Mk1":
lp_object.LedCtrlXY(x, y, 0, 0)
elif window.lp_mode == "64":
lp_object.LedCtrlXY(x, y, 0, 0)
else:
lp_object.LedCtrlXYByCode(x, y, 0)