-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgenerate.py
31 lines (24 loc) · 1005 Bytes
/
generate.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
import clockGen
import counterGen
import imageGen
import math
def clock(period):
if period <= 5:
return clockGen.chain(period)
else:
return clockGen.cycle(period)
def counter(minVal, maxVal, direction):
if minVal == 0 and (math.log2(maxVal + 1)) % 1 == 0 and direction == 1:
return counterGen.standard(math.ceil(math.log2(maxVal + 1)))
elif minVal == 0 and (math.log2(maxVal + 1)) % 1 == 0 and direction == -1:
return counterGen.reverse(math.ceil(math.log2(maxVal + 1)))
elif minVal == 0 and (math.log2(maxVal + 1)) % 1 == 0 and direction == 0:
return counterGen.both(math.ceil(math.log2(maxVal + 1)))
elif direction == 1:
return counterGen.standard(math.ceil(math.log2(maxVal + 1)), (minVal, maxVal))
elif direction == -1:
return counterGen.reverse(math.ceil(math.log2(maxVal + 1)), (minVal, maxVal))
else:
return
def image(im, scale, transparency):
return imageGen.image(im, scale, transparency)