This repository has been archived by the owner on Jun 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Chase.py
139 lines (131 loc) · 5.31 KB
/
Chase.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
import openrgb, time, sys
from openrgb.utils import RGBColor , ModeData , DeviceType , ZoneType
client = openrgb.OpenRGBClient()
Dlist = client.devices
def UserInput():
Color1 = Color2 = ReversedDevice = OnlySet = None
for arg in sys.argv:
if arg == '--C1':
Pos = sys.argv.index(arg) + 1
R, G, B = sys.argv[Pos:(Pos + 3)]
Color1 = RGBColor(int(R),int(G),int(B))
elif arg == '--C2':
Pos = sys.argv.index(arg) + 1
R, G, B = sys.argv[Pos:(Pos + 3)]
Color2 = RGBColor(int(R),int(G),int(B))
elif arg == '--reversed':
ReversedDevices = (sys.argv.index(arg) + 1)
ReversedDevice = []
if ' , ' in sys.argv[ReversedDevices]:
for i in sys.argv[ReversedDevices].split(' , '):
for D in client.devices:
if D.name.strip().casefold() == i.strip().casefold():
ReversedDevice += [D]
else:
for D in client.devices:
if D.name.strip().casefold() == sys.argv[ReversedDevices].strip().casefold():
ReversedDevice += [D]
elif arg == '--only-set':
OnlySet = []
AllowedDevices = (sys.argv.index(arg) + 1)
if ' , ' in sys.argv[AllowedDevices]:
for i in sys.argv[AllowedDevices].split(' , '):
for D in client.devices:
if D.name.strip().casefold() == i.strip().casefold():
OnlySet += [D]
else:
for D in client.devices:
if D.name.strip().casefold() == sys.argv[AllowedDevices].strip().casefold():
OnlySet += [D]
else:
pass
return(Color1, Color2, ReversedDevice, OnlySet)
def SetStatic(Dlist):
"""A quick function I use to make sure that everything is in direct or static mode"""
for Device in Dlist:
time.sleep(0.1)
try:
Device.set_mode('direct')
print('Set %s successfully'%Device.name)
except:
try:
Device.set_mode('static')
print('error setting %s\nfalling back to static'%Device.name)
except:
print("Critical error! couldn't set %s to static or direct"%Device.name)
def InfiniteCycle(C1, C2, ZoneOffsets):
RunThrough = 0
while True:
for ZO in ZoneOffsets:
ZOType = ZO[0].type
if ZOType == ZoneType.SINGLE:
RunThrough += 1
if (RunThrough%3) == 0:
if ZO[0].colors[0] == C1:
ZO[0].colors[0] = (C2)
elif ZO[0].colors[0] == C2:
ZO[0].colors[0] = (C1)
elif (ZO[0].colors[0] != C1) & (ZO[0].colors[0] != C2):
ZO[0].colors[0] = (C2)
ZO[0].show()
elif ZOType == ZoneType.LINEAR:
if ZO[3] == True: # True is reversed, False is regular
ID = 0
Half = int(len(ZO[0].colors)/2)
for _ in ZO[0].colors:
if ZO[1][ID] > Half:
ZO[0].colors[ID] = C1
elif ZO[1][ID] <= Half:
ZO[0].colors[ID] = C2
if ZO[1][ID] >= ZO[2]:
ZO[1][ID] = 1
else:
ZO[1][ID] += 1
ID += 1
ZO[0].show()
elif ZO[3] == False:
ID = 0
Half = int(len(ZO[0].colors)/2)
for _ in ZO[0].colors:
if ZO[1][ID] >= Half:
ZO[0].colors[ID] = C1
elif ZO[1][ID] < Half:
ZO[0].colors[ID] = C2
if ZO[1][ID] <= 0:
ZO[1][ID] = ZO[2]
else:
ZO[1][ID] -= 1
ID += 1
ZO[0].show()
elif ZOType == ZoneType.MATRIX:
pass
#print('matrix support not done yet')
time.sleep(0.1)
if __name__ == '__main__':
C1, C2, Reversed, Enabled = UserInput()
#print(C1, C2, Reversed, Enabled)
if C1 == None:
C1 = RGBColor(255,0,0)
if C2 == None:
C2 = RGBColor(0,0,255)
Enable = []
if Enabled == None:
Enable += [i for i in client.devices]
elif Enabled != None:
Enable = Enabled
PassTo = []
for Device in Enable:
if Reversed != None:
for R in Reversed:
if R == Device:
ReverseBool = True
continue
else:
ReverseBool = False
else:
ReverseBool = False
for zone in Device.zones:
LEDAmmount = len(zone.leds) # the ammount of leds in a zone
PassTo += [[zone, [i for i in range(1, (LEDAmmount + 1)) ], LEDAmmount, ReverseBool]]
SetStatic(Enable)
InfiniteCycle(C1, C2, PassTo)