comparison light8/Config.py @ 51:71489bb71528

- Meet Fader. He is going to grow up and be a crossfader some day - Meet Fader. He is going to grow up and be a crossfader some day (tomarrow) - Tkinter -> Tix so we can use ScrolledListBox which has a command - Some improvements to Cue - Cues need to specify their final values - Cues are imported by subs. This should be fixed for style points. - Some other cleanups
author dmcc
date Sun, 07 Jul 2002 15:40:45 +0000
parents f3d65ae17a8f
children 032b2b67bc10
comparison
equal deleted inserted replaced
50:5ff08b489693 51:71489bb71528
1 from random import randrange 1 from random import randrange
2 from time import time 2 from time import time
3 from __future__ import generators,division 3 from __future__ import generators,division
4 from Subs import * 4 from Subs import *
5 5
6 from Fader import fader
6 7
7 patch = { 8 patch = {
8 9
9 'side l' : 45, # posts 10 'side l' : 45, # posts
10 'side r' : 46, 11 'side r' : 46,
258 'edges':fulls((55,60,49,54,61,66)), 259 'edges':fulls((55,60,49,54,61,66)),
259 'bank1ctr':fulls(('b22','b23','b24','b25')), 260 'bank1ctr':fulls(('b22','b23','b24','b25')),
260 'god' : fulls((6,)), 261 'god' : fulls((6,)),
261 ('strobe', 'grey'):strobe, 262 ('strobe', 'grey'):strobe,
262 263
263 # 'midstage' : dict([(r, 100) for r in range(11, 21)]),
264 # 'backstage' : dict([(r, 100) for r in range(21, 31)]),
265 # 'frontchase' : mr_effect,
266 'chase' : chase, 264 'chase' : chase,
267 'chase2' : chase, 265 'chase2' : chase,
268 # 'random' : randomdimmer,
269 } 266 }
270 267
271 subs["ba outrs"] = fulls("b11 b12 b13 b14 b15 b16 b31 b32 b33 b34 b35 b36".split()) 268 subs["ba outrs"] = fulls("b11 b12 b13 b14 b15 b16 b31 b32 b33 b34 b35 b36".split())
272 subs["ba some"] = {'b12':40,'b13':FL,'b14':FL,'b15':40, 269 subs["ba some"] = {'b12':40,'b13':FL,'b14':FL,'b15':40,
273 'b32':40,'b33':FL,'b34':FL,'b35':40,} 270 'b32':40,'b33':FL,'b34':FL,'b35':40,}