Mercurial > code > home > repos > light9
annotate light8/io.py @ 12:7adc65771676
big restructuring - moved lots of things (including most panels) to other files
author | drewp |
---|---|
date | Sun, 07 Jul 2002 06:16:11 +0000 |
parents | 45b12307c695 |
children | 7dbe8067acea |
rev | line source |
---|---|
0 | 1 |
12
7adc65771676
big restructuring - moved lots of things (including most panels) to other files
drewp
parents:
0
diff
changeset
|
2 DUMMY=1 |
0 | 3 |
12
7adc65771676
big restructuring - moved lots of things (including most panels) to other files
drewp
parents:
0
diff
changeset
|
4 def init(DUMMY_in): |
7adc65771676
big restructuring - moved lots of things (including most panels) to other files
drewp
parents:
0
diff
changeset
|
5 global DUMMY |
7adc65771676
big restructuring - moved lots of things (including most panels) to other files
drewp
parents:
0
diff
changeset
|
6 if not DUMMY_in: |
7adc65771676
big restructuring - moved lots of things (including most panels) to other files
drewp
parents:
0
diff
changeset
|
7 getparport() |
7adc65771676
big restructuring - moved lots of things (including most panels) to other files
drewp
parents:
0
diff
changeset
|
8 DUMMY=0 |
0 | 9 |
12
7adc65771676
big restructuring - moved lots of things (including most panels) to other files
drewp
parents:
0
diff
changeset
|
10 def sendlevels(levels): |
7adc65771676
big restructuring - moved lots of things (including most panels) to other files
drewp
parents:
0
diff
changeset
|
11 if DUMMY: return |
7adc65771676
big restructuring - moved lots of things (including most panels) to other files
drewp
parents:
0
diff
changeset
|
12 levels = list(levels) + [0] |
7adc65771676
big restructuring - moved lots of things (including most panels) to other files
drewp
parents:
0
diff
changeset
|
13 if levels[14] > 0: levels[14] = 100 |
7adc65771676
big restructuring - moved lots of things (including most panels) to other files
drewp
parents:
0
diff
changeset
|
14 # print "levels", ' '.join(["%3.1f" % l for l in levels]) |
7adc65771676
big restructuring - moved lots of things (including most panels) to other files
drewp
parents:
0
diff
changeset
|
15 outstart() |
7adc65771676
big restructuring - moved lots of things (including most panels) to other files
drewp
parents:
0
diff
changeset
|
16 for p in range(1,70): |
7adc65771676
big restructuring - moved lots of things (including most panels) to other files
drewp
parents:
0
diff
changeset
|
17 outbyte(levels[p-1]*255/100) |