aboutsummaryrefslogtreecommitdiff
path: root/guile/starlet/open-sound-control/utils.scm
blob: 34c4127100e302e0d791abd25b03fbb4278dea73 (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
;;
;; starlet/open-sound-control/utils.scm
;;
;; Copyright © 2020-2023 Thomas White <taw@bitwiz.org.uk>
;;
;; This file is part of Starlet.
;;
;; Starlet is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
;;
(define-module (starlet open-sound-control utils)
  #:use-module (starlet attributes)
  #:use-module (starlet playback)
  #:use-module (starlet selection)
  #:use-module (starlet fixture)
  #:use-module (starlet engine)
  #:use-module (starlet state)
  #:use-module (starlet utils)
  #:use-module (open-sound-control client)
  #:use-module (open-sound-control server-thread)
  #:use-module (srfi srfi-1)
  #:export (osc-playback-indicators
            osc-playback-controls
            osc-select-button
            osc-parameter-encoder
            osc-state-fader))


(define* (osc-playback-controls pb server go-method stop-method back-method
                                #:key (min-time-between-presses 0.2))

  (let ((time-last-press 0))
    (add-osc-method server go-method ""
                    (lambda ()
                      (let ((time-this-press (hirestime)))
                        (if (> time-this-press (+ time-last-press min-time-between-presses))
                          (go! pb)
                          (display "Too soon after last press!\n"))
                        (set! time-last-press time-this-press)))))

  (add-osc-method server stop-method "" (lambda () (stop! pb)))
  (add-osc-method server back-method "" (lambda () (back! pb))))


(define (osc-playback-indicators pb addr go-led stop-led back-led)

  (add-and-run-hook!
    (state-change-hook pb)
    (lambda (new-state)

      (if (eq? new-state 'running)
        (osc-send addr stop-led 'green)
        (osc-send addr stop-led 'off))

      (cond
        ((eq? new-state 'pause)
         (osc-send addr go-led 'orange))
        ((eq? new-state 'ready)
         (osc-send addr go-led 'green))
        ((eq? new-state 'running)
         (osc-send addr go-led 'green))
        (else
          (osc-send addr go-led 'off))))

    (playback-state pb))

  (osc-send addr back-led 'green))


(define (osc-select-button server button-method addr led fix)

  (add-osc-method server button-method ""
                  (lambda () (toggle-sel fix)))

  (add-and-run-hook!
    selection-hook
    (lambda (sel)
      (if (selected? fix)
        (osc-send addr led 'orange)
        (osc-send addr led 'red)))
    (get-selection)))


(define (encoder-inc attr n)
  (for-each
    (lambda (fix)
      (at fix attr (+ (current-value fix attr) n)))
    (get-selection)))


(define (osc-parameter-encoder server encoder-method addr led attr)

  (add-osc-method server (string-append encoder-method "/inc") ""
                  (lambda () (encoder-inc attr 3)))

  (add-osc-method server (string-append encoder-method "/dec") ""
                  (lambda () (encoder-inc attr -3)))

  (add-osc-method server (string-append encoder-method "/inc-fine") ""
                  (lambda () (encoder-inc attr 1)))

  (add-osc-method server (string-append encoder-method "/dec-fine") ""
                  (lambda () (encoder-inc attr -1)))

  (add-and-run-hook!
    selection-hook
    (lambda (sel)
      (if (any
            (lambda (fix)
              (fixture-has-attr? fix attr))
            (get-selection))
        (osc-send addr led 'green)
        (osc-send addr led 'off)))
    (get-selection)))


(define (ccval->percent n)
  (/ (* n 100) 127))


(define (osc-state-fader server fader state)
  (let ((fader-val 0))
    (register-state!
      (lighting-state
        (state-for-each
          (lambda (fix attr val)
            (at fix attr
                (lambda ()

                  (if (intensity? attr)

                    ;; Intensity parameters get scaled according to the fader
                    (* 0.01 val (ccval->percent fader-val))

                    ;; Non-intensity parameters just get set in our new state,
                    ;; but only if the fader is up!
                    (if (> fader-val 0)
                      val
                      'no-value)))))
          state)))

    (add-osc-method server fader "i"
                    (lambda (v) (set! fader-val v)))))