aboutsummaryrefslogtreecommitdiff
path: root/guile/starlet/fixture-library/robe.scm
blob: 7654f6971fce906c650509b9eda2e037abc3e324 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
(define-module (starlet fixture-library robe)
  #:use-module (oop goops)
  #:use-module (starlet base)
  #:use-module (starlet colours)
  #:export (<robe-dl7s-mode1>
            <robe-mmxwashbeam-mode1>
            <robe-mmxspot-mode1>))


(define-class <robe-dl7s-mode1> (<fixture>)
  (attributes
   #:init-form (list
                (attr-continuous 'intensity '(0 100) 0)
                (attr-continuous 'pan '(0 540) 270)
                (attr-continuous 'tilt '(0 270) 135)
                (attr-list 'strobe '(#t #f) #f)
                (attr-list 'prism '(#t #f) #f)
                (attr-list 'tungsten-watts-emulation '(750 1000 1200 2000 2500 #f) #f)
                (attr-continuous 'cyan '(0 100) 0)
                (attr-continuous 'magenta '(0 100) 0)
                (attr-continuous 'yellow '(0 100) 0)
                (attr-continuous 'colour-temperature-correction '(2700 8000) 8000)
                (attr-continuous 'green-correction '(-100 100) 0))))


(define-method (scanout-fixture (fixture <robe-dl7s-mode1>)
                                get-attr set-chan8 set-chan16)

  (set-chan16 50 (percent->dmxval16 (get-attr 'intensity)))

  (set-chan16 1 (scale-to-range (get-attr 'pan) '(0 540) '(0 65535)))
  (set-chan16 3 (scale-to-range (get-attr 'tilt) (0 270) '(0 65535)))

  (set-chan8 49 (if (get-attr 'strobe) 95 32))

  (set-chan8 28 (if (get-attr 'prism) 50 0))

  (set-chan8 7 (assv-ref '((750 . 82)
                           (1000 . 88)
                           (1200 . 92)
                           (2000 . 97)
                           (2500 . 102)
                           (#f . 107))
                         (get-attr 'tungsten-watts-emulation)))

  (set-chan16 9 (percent->dmxval16 (get-attr 'cyan)))
  (set-chan16 11 (percent->dmxval16 (get-attr 'magenta)))
  (set-chan16 13 (percent->dmxval16 (get-attr 'yellow))))


(define-class <robe-mmxwashbeam-mode1> (<fixture>)
  (attributes
   #:init-form (list
                (attr-continuous 'intensity '(0 100) 0)
                (attr-continuous 'pan '(0 540) 270)
                (attr-continuous 'tilt '(0 270) 135)
                (attr-list 'strobe '(#t #f) #f)
                (attr-list 'colwheel '(#f red blue orange green amber uv) #f)
                (attr-list 'gobo '(#f iris gobo1 gobo2 gobo3 gobo4 gobo5 gobo6) #f)
                (attr-list 'beamtype '(beam beamwash beamwashext) 'beam)
                (attr-continuous 'cyan '(0 100) 0)
                (attr-continuous 'magenta '(0 100) 0)
                (attr-continuous 'yellow '(0 100) 0)
                (attr-continuous 'zoom '(0 100) 0)
                (attr-continuous 'focus '(0 100) 0)
                (attr-continuous 'barndoor-rot '(0 180) 90)
                (attr-continuous 'barndoor1 '(0 180) 0)
                (attr-continuous 'barndoor2 '(0 100) 0)
                (attr-continuous 'barndoor3 '(0 100) 0)
                (attr-continuous 'barndoor4 '(0 100) 0))))


(define-method (scanout-fixture (fixture <robe-mmxwashbeam-mode1>)
                                get-attr set-chan8 set-chan16)

  (set-chan16 33 (percent->dmxval16 (get-attr 'intensity)))

  (set-chan16 1 (scale-to-range (get-attr 'pan) '(0 540) '(0 65535)))
  (set-chan16 3 (scale-to-range (get-attr 'tilt) '(0 270) '(0 65535)))

  (set-chan8 32 (if (get-attr 'strobe) 70 255))

  (set-chan16 19 (percent->dmxval16 (get-attr 'zoom)))
  (set-chan16 21 (percent->dmxval16 (get-attr 'focus)))

  ;;(set-chan 24 (number->dmxval (get-attr 'barndoor-rot) '(0 180)))
  (set-chan8 25 (percent->dmxval8 (get-attr 'barndoor1)))
  (set-chan8 26 (percent->dmxval8 (get-attr 'barndoor2)))
  (set-chan8 27 (percent->dmxval8 (get-attr 'barndoor3)))
  (set-chan8 28 (percent->dmxval8 (get-attr 'barndoor4)))

  (set-chan8 7 (assv-ref '((#f . 0)
                           (red . 18)
                           (blue . 37)
                           (orange . 55)
                           (green . 73)
                           (amber . 91)
                           (uv . 110))
                         (get-attr 'colwheel)))

  (set-chan8 15 (assv-ref '((#f . 0)
                            (iris . 5)
                            (gobo1 . 10)
                            (gobo2 . 14)
                            (gobo3 . 18)
                            (gobo4 . 22)
                            (gobo5 . 26)
                            (gobo6 . 30))
                          (get-attr 'gobo)))

  (set-chan8 18 (assv-ref '((beam . 0)
                            (beamwash . 35)
                            (beamwashext . 45))
                          (get-attr 'beamtype)))

  (set-chan8 9 (percent->dmxval8 (get-attr 'cyan)))
  (set-chan8 10 (percent->dmxval8 (get-attr 'magenta)))
  (set-chan8 11 (percent->dmxval8 (get-attr 'yellow))))


(define-class <robe-mmxspot-mode1> (<fixture>)
  (attributes
   #:init-form (list
                (attr-continuous 'intensity '(0 100) 0)
                (attr-continuous 'pan '(0 540) 270)
                (attr-continuous 'tilt '(0 270) 135)
                (attr-list 'colwheel '(#f red blue orange green amber uv) #f)
                (attr-list 'prism '(#t #f) #f)
                (attr-list 'strobe '(#f #t random zap) #f)
                (attr-continuous 'strobe-speed '(0 100) 50)
                (attr-colour 'colour white)
                (attr-continuous 'iris '(0 100) 0)
                (attr-continuous 'zoom '(0 100) 0)
                (attr-continuous 'focus '(0 100) 0)
                (attr-continuous 'hotspot '(0 100) 0)
                (attr-continuous 'frost '(0 100) 0)
                (attr-continuous 'cto '(3200 6900) 6900))))


(define-method (scanout-fixture (fixture <robe-mmxspot-mode1>)
                                get-attr set-chan8 set-chan16)

  (set-chan16 37 (percent->dmxval16 (get-attr 'intensity)))

  (set-chan16 1 (scale-to-range (get-attr 'pan) '(0 540) '(0 65535)))

  (set-chan16 3 (scale-to-range (get-attr 'tilt) '(0 270) '(0 65535)))

  (set-chan16 28 (scale-to-range (get-attr 'iris) '(0 100) '(0 45567)))
  (set-chan16 30 (percent->dmxval16 (get-attr 'zoom)))
  (set-chan16 32 (percent->dmxval16 (get-attr 'focus)))

  (set-chan8 36
             (let ((strb (get-attr 'strobe))
                   (spd (get-attr 'strobe-speed)))
               (cond
                ((eq? strb #t) (scale-to-range spd '(0 100) '(64 95)))
                ((eq? strb 'random) (scale-to-range spd '(0 100) '(192 223)))
                ((eq? strb 'zap) (scale-to-range spd '(0 100) '(160 191)))
                (else 255))))

  (set-chan8 25 (if (get-attr 'prism) 20 0))

  (set-chan8 7 (assv-ref '((#f . 0)
                           (red . 18)
                           (blue . 37)
                           (orange . 55)
                           (green . 73)
                           (amber . 91)
                           (uv . 110))
                         (get-attr 'colwheel)))

  (let ((cmy (colour-as-cmy (get-attr 'colour))))
    (set-chan8 9 (percent->dmxval8 (car cmy)))
    (set-chan8 10 (percent->dmxval8 (cadr cmy)))
    (set-chan8 11 (percent->dmxval8 (caddr cmy))))

  (set-chan8 35 (percent->dmxval8 (get-attr 'hotspot)))
  (set-chan8 12 (scale-to-range (get-attr 'cto) '(3200 6900) '(0 255)))
  (set-chan8 27 (scale-to-range (get-attr 'frost) '(0 100) '(0 179))))