leds/pattern.py

190 lines
4.7 KiB
Python
Raw Permalink 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,
2020-11-10 22:59:59 +00:00
"stack2": 0,
"stack3": 0,
"stack4": 0,
"stack5": 0,
"stack6": 0,
2020-11-11 00:15:29 +00:00
"stackr": 0,
"stackg": 0,
"stackb": 0,
2020-11-09 04:15:31 +00:00
"r": 0,
"g": 0,
2020-11-09 06:09:47 +00:00
"b": 0,
"tick": 0,
2020-11-12 09:48:19 +00:00
"index": 0,
"fadeval": 0,
"fadeinc": True
2020-11-09 04:15:31 +00:00
}
2020-11-10 22:59:59 +00:00
def constant(target, arg, index):
return (arg, index)
2020-11-09 04:15:31 +00:00
2020-11-10 22:59:59 +00:00
def add(target, arg, index):
return (target + arg, index)
2020-11-09 04:15:31 +00:00
2020-11-10 22:59:59 +00:00
def sub(target, arg, index):
return (target - arg, index)
2020-11-09 06:29:22 +00:00
2020-11-10 22:59:59 +00:00
def mult(target, arg, index):
return (target * arg, index)
2020-11-09 06:29:22 +00:00
2020-11-10 22:59:59 +00:00
def div(target, arg, index):
return (target / arg, index)
2020-11-09 06:29:22 +00:00
2020-11-10 22:59:59 +00:00
def mod(target, arg, index):
2020-11-09 06:33:30 +00:00
if arg <= 0:
2020-11-09 06:38:02 +00:00
return target
2020-11-10 22:59:59 +00:00
return (target % arg, index)
2020-11-09 04:15:31 +00:00
2020-11-12 09:48:19 +00:00
def fade(target, arg, index):
value = this.values['fadeval']
if this.values['fadeinc']:
value += 1
if value >= arg:
this.values['fadeinc'] = False
else:
value -= 1
if value <= 0:
this.values['fadeinc'] = True
this.values['fadeval'] = value
return (value, index)
2020-11-11 18:44:52 +00:00
def rand(target, arg, index):
return (random.randrange(0, 255), index)
2020-11-09 06:09:47 +00:00
2020-11-11 20:44:29 +00:00
def jmp(target, arg, index):
return (target, target)
2020-11-10 22:59:59 +00:00
def jnz(target, arg, index):
if target != 0:
return (target, arg)
else:
return (target, index)
def jez(target, arg, index):
if target == 0:
return (target, arg)
else:
return (target, index)
def _apply(index, target, arg, func):
2020-11-09 06:48:04 +00:00
if type(arg) is int:
logger.debug("ran: {} {} {} {}".format(index, func.__name__, target, arg))
2020-11-10 22:59:59 +00:00
return func(target, arg, index)
2020-11-09 06:48:04 +00:00
elif type(arg) is str and arg in this.values:
logger.debug("ran: {} {} {} {}".format(
2020-11-11 00:33:09 +00:00
index, func.__name__, target, this.values[arg]))
2020-11-10 22:59:59 +00:00
return func(target, this.values[arg], index)
2020-11-09 06:09:47 +00:00
2020-11-10 22:59:59 +00:00
def apply(index, targets, args, func):
2020-11-11 20:44:29 +00:00
j = index
2020-11-09 04:15:31 +00:00
for target in range(len(targets)):
2020-11-09 05:51:49 +00:00
if this.values[targets[target]['channel']] != None:
logger.debug("target: {}".format(targets[target]['channel']))
2020-11-09 07:06:05 +00:00
if target < len(args):
2020-11-10 22:59:59 +00:00
val, jump = _apply(
index, this.values[targets[target]['channel']], args[target], func)
if val != this.values[targets[target]['channel']]:
this.values[targets[target]['channel']] = val
2020-11-11 20:44:29 +00:00
j = jump
2020-11-09 06:09:47 +00:00
else:
2020-11-10 22:59:59 +00:00
val, jump = _apply(
index, this.values[targets[target]['channel']], 0, func)
if val != this.values[targets[target]['channel']]:
this.values[targets[target]['channel']] = val
2020-11-11 20:44:29 +00:00
j = jump
return j
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,
2020-11-12 09:48:19 +00:00
"FADE": fade,
2020-11-10 22:59:59 +00:00
"RANDOM": rand,
2020-11-11 20:44:29 +00:00
"JMP": jmp,
2020-11-10 22:59:59 +00:00
"JNZ": jnz,
"JEZ": jez
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:
2020-11-11 00:47:56 +00:00
i = 0
while i < 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:
2020-11-11 00:30:06 +00:00
jump = apply(i, targets, args, this.instructions[name])
logger.debug("{} {} {} {} {}".format(jump, i, len(
this.pattern), jump != i, jump <= len(this.pattern)))
2020-11-11 00:33:09 +00:00
if jump != i and jump <= len(this.pattern):
logger.debug("jumping to {}".format(jump - 1))
2020-11-10 22:59:59 +00:00
i = jump - 1
2020-11-11 00:47:56 +00:00
i += 1
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
logger.debug("final color: {}".format((r, g, b)))
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)