leds/pattern.py

128 lines
2.9 KiB
Python
Raw Normal View History

2020-11-08 07:18:12 +00:00
import sys
2020-11-09 04:15:31 +00:00
import json
2020-11-09 06:09:47 +00:00
import random
2020-11-09 06:38:02 +00:00
import logger
2020-11-08 07:18:12 +00:00
2020-11-08 07:16:30 +00:00
this = sys.modules[__name__]
2020-11-09 05:33:07 +00:00
this.encoded = None
this.pattern = None
2020-11-09 04:15:31 +00:00
this.values = {
"stack": 0,
"r": 0,
"g": 0,
2020-11-09 06:09:47 +00:00
"b": 0,
"tick": 0,
"index": 0
2020-11-09 04:15:31 +00:00
}
def constant(target, arg):
return arg
def add(target, arg):
2020-11-09 06:29:22 +00:00
return target + arg
2020-11-09 04:15:31 +00:00
def sub(target, arg):
2020-11-09 06:29:22 +00:00
return target - arg
def mult(target, arg):
return target * arg
def div(target, arg):
return target / arg
def mod(target, arg):
2020-11-09 06:33:30 +00:00
if arg <= 0:
2020-11-09 06:38:02 +00:00
return target
2020-11-09 06:29:22 +00:00
return target % arg
2020-11-09 04:15:31 +00:00
2020-11-09 06:09:47 +00:00
def rand(target, arg):
return random.randrange(0, 255)
def _apply(target, arg, func):
2020-11-09 06:48:04 +00:00
if type(arg) is int:
2020-11-09 06:09:47 +00:00
return func(target, arg)
2020-11-09 06:48:04 +00:00
elif type(arg) is str and arg in this.values:
2020-11-09 06:09:47 +00:00
return func(target, this.values[arg])
2020-11-09 04:15:31 +00:00
def apply(targets, args, func):
for target in range(len(targets)):
2020-11-09 05:51:49 +00:00
if this.values[targets[target]['channel']] != None:
2020-11-09 07:06:05 +00:00
if target < len(args):
2020-11-09 06:09:47 +00:00
this.values[targets[target]['channel']] = _apply(
this.values[targets[target]['channel']], args[target], func)
else:
this.values[targets[target]['channel']] = _apply(
this.values[targets[target]['channel']], 0, func)
2020-11-09 06:38:02 +00:00
logger.debug("{} : {}".format(
targets[target]['channel'],
this.values[targets[target]['channel']]
))
2020-11-09 04:15:31 +00:00
this.instructions = {
"CONSTANT": constant,
"ADD": add,
2020-11-09 06:29:22 +00:00
"SUBTRACT": sub,
"MULTIPLY": mult,
"DIVIDE": div,
"MODULO": mod,
"RANDOM": rand
2020-11-09 04:15:31 +00:00
}
2020-11-08 07:16:30 +00:00
def default(index, tick):
return (((index + tick) * 5) % 255, (tick * 42) % 255, (tick * 50) % 255)
def pat(index, tick, previous_values):
2020-11-09 06:35:07 +00:00
this.values['tick'] = tick
this.values['index'] = index
2020-11-09 04:15:31 +00:00
if this.pattern != None:
for i in range(len(this.pattern)):
2020-11-09 07:52:45 +00:00
if i < len(this.pattern):
name = this.pattern[i]['instruction']['name']
targets = this.pattern[i]['instruction']['targets']
args = []
if 'args' in this.pattern[i]['instruction']:
args = this.pattern[i]['instruction']['args']
if this.instructions[name] != None:
apply(targets, args, this.instructions[name])
2020-11-09 04:15:31 +00:00
r = this.values["r"]
g = this.values["g"]
b = this.values["b"]
this.values["r"] = 0
this.values["g"] = 0
this.values["b"] = 0
this.values["stack"] = 0
2020-11-09 06:29:22 +00:00
if r > 255:
r = 255
elif r < 0:
r = 0
if g > 255:
g = 255
elif g < 0:
g = 0
if b > 255:
b = 255
elif b < 0:
b = 0
2020-11-09 04:15:31 +00:00
return (r, g, b)
else:
return default(index, tick)
2020-11-08 07:16:30 +00:00
def parse(str):
this.encoded = str
2020-11-09 06:38:02 +00:00
logger.debug(this.encoded)
2020-11-09 04:15:31 +00:00
this.pattern = json.loads(this.encoded)