summaryrefslogtreecommitdiff
path: root/sly/transition.scm
blob: f8138280d00467b2fcc7c71cfbad12ee4d2bb849 (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
;;; Sly
;;; Copyright (C) 2014 David Thompson <davet@gnu.org>
;;;
;;; Sly 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.
;;;
;;; Sly 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/>.

;;; Commentary:
;;
;; Interpolate values over time with easing.  Useful for animation.
;;
;;; Code:

(define-module (sly transition)
  #:use-module (sly agenda)
  #:use-module (sly color)
  #:use-module (sly coroutine)
  #:use-module (sly math)
  #:use-module (sly signal)
  #:use-module (sly vector)
  #:export (ease-linear
            ease-in-sine ease-out-sine ease-in-out-sine
            ease-in-quad ease-out-quad ease-in-out-quad
            interpolator
            number-interpolate vector-interpolate color-interpolate
            transition))

;;;
;;; Easings
;;;

(define (ease-linear t d)
  (/ t d))

(define (ease-in-sine t d)
  (let ((delta (/ t d)))
    (+ (* (- delta) (cos (* delta pi/2))) delta)))

(define (ease-out-sine t d)
  (let ((delta (/ t d)))
    (* delta (sin (* delta pi/2)))))

(define (ease-in-out-sine t d)
  (* (/ t d -2)
     (1- (cos (/ (* t pi) d)))))

(define (ease-in-quad t d)
  (expt (/ t d) 3))

(define (ease-out-quad t d)
  (let ((delta (/ t d)))
    (* (- delta) delta (- delta 2))))

(define (ease-in-out-quad t d)
  (let ((delta (/ t d))
        (t (/ t (/ d 2))))
    (if (< t 1)
        (* (/ delta 2) t t)
        (* (/ delta -2)
           (1- (* (1- t) (- t 3)))))))

;; TODO: See
;; <http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js> for
;; implementation details.
;;
;; ease-in-cubic
;; ease-out-cubic
;; ease-in-out-cubic
;; ease-in-quart
;; ease-out-quart
;; ease-in-out-quart
;; ease-in-quint
;; ease-out-quint
;; ease-in-out-quint
;; ease-in-expo
;; ease-out-expo
;; ease-in-out-expo
;; ease-in-circ
;; ease-out-circ
;; ease-in-out-circ
;; ease-in-back
;; ease-out-back
;; ease-in-out-back
;; ease-in-elastic
;; ease-out-elastic
;; ease-in-out-elastic
;; ease-in-bounce
;; ease-out-bounce
;; ease-in-out-bounce

;;;
;;; Interpolators
;;;

(define (interpolator + *)
  "Return a new procedure that accepts three arguments: a, b, and
delta.  The returned procedure uses the operations + and * to
interpolate a value between a and b.  Delta should always be in the
range [0, 1]."
  (lambda (a b delta)
    (+ (* a (- 1 delta))
       (* b delta))))

(define number-interpolate (interpolator + *))
(define vector-interpolate (interpolator v+ v*))
(define color-interpolate (interpolator color+ color-scale))

(define (guess-interpolator a b)
  (define (both? pred)
    (and (pred a) (pred b)))

  (cond ((both? number?)
         number-interpolate)
        ((both? vector?)
         vector-interpolate)
        ((both? color?)
         color-interpolate)
        (else
         (error "Failed to guess interpolator: " a b))))

;;;
;;; Transitions
;;;

(define* (transition start end duration
                     #:optional #:key
                     (interpolator #f)
                     (ease ease-linear)
                     (step 1))
  "Return a signal that transitions from START to END in DURATION
ticks. The INTERPOLATOR procedure is used to compute intermediate
values.  When no interpolator is specified, it is inferred.
Interpolation procedures can be inferred for numbers, vectors, and
colors.  For other values, an error is thrown unless INTERPOLATOR is
passed explicitly.  EASE specifies the easing procedure to apply to
the transition.  Linear easing is used by default.  STEP specifies the
number of ticks between each interpolation sample.  By default, a step
of 1 is used for the smoothest, but most computationally expensive
transition."
  (let ((interpolator (or interpolator
                          (guess-interpolator start end))))
    (define (value-at t)
      (interpolator start end (ease t duration)))

    (let ((signal (make-signal start)))
      (coroutine
       (let lp ((t 0))
         (if (< t duration)
             (begin
               (wait (min step (- duration t)))
               (signal-set! signal (value-at t))
               (lp (+ t step)))
             (signal-set! signal end))))
      signal)))