Date picker and bylines for platforms`
[bus.git] / openlayers / examples / animator.js
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
/*  
        Animator.js 1.1.9
        
        This library is released under the BSD license:
 
        Copyright (c) 2006, Bernard Sumption. All rights reserved.
        
        Redistribution and use in source and binary forms, with or without
        modification, are permitted provided that the following conditions are met:
        
        Redistributions of source code must retain the above copyright notice, this
        list of conditions and the following disclaimer. Redistributions in binary
        form must reproduce the above copyright notice, this list of conditions and
        the following disclaimer in the documentation and/or other materials
        provided with the distribution. Neither the name BernieCode nor
        the names of its contributors may be used to endorse or promote products
        derived from this software without specific prior written permission. 
        
        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
        AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
        IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
        ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
        ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
        DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
        SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
        CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
        LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
        OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
        DAMAGE.
 
*/
 
 
// Applies a sequence of numbers between 0 and 1 to a number of subjects
// construct - see setOptions for parameters
function Animator(options) {
        this.setOptions(options);
        var _this = this;
        this.timerDelegate = function(){_this.onTimerEvent()};
        this.subjects = [];
        this.target = 0;
        this.state = 0;
        this.lastTime = null;
};
Animator.prototype = {
        // apply defaults
        setOptions: function(options) {
                this.options = Animator.applyDefaults({
                        interval: 20,  // time between animation frames
                        duration: 400, // length of animation
                        onComplete: function(){},
                        onStep: function(){},
                        transition: Animator.tx.easeInOut
                }, options);
        },
        // animate from the current state to provided value
        seekTo: function(to) {
                this.seekFromTo(this.state, to);
        },
        // animate from the current state to provided value
        seekFromTo: function(from, to) {
                this.target = Math.max(0, Math.min(1, to));
                this.state = Math.max(0, Math.min(1, from));
                this.lastTime = new Date().getTime();
                if (!this.intervalId) {
                        this.intervalId = window.setInterval(this.timerDelegate, this.options.interval);
                }
        },
        // animate from the current state to provided value
        jumpTo: function(to) {
                this.target = this.state = Math.max(0, Math.min(1, to));
                this.propagate();
        },
        // seek to the opposite of the current target
        toggle: function() {
                this.seekTo(1 - this.target);
        },
        // add a function or an object with a method setState(state) that will be called with a number
        // between 0 and 1 on each frame of the animation
        addSubject: function(subject) {
                this.subjects[this.subjects.length] = subject;
                return this;
        },
        // remove all subjects
        clearSubjects: function() {
                this.subjects = [];
        },
        // forward the current state to the animation subjects
        propagate: function() {
                var value = this.options.transition(this.state);
                for (var i=0; i<this.subjects.length; i++) {
                        if (this.subjects[i].setState) {
                                this.subjects[i].setState(value);
                        } else {
                                this.subjects[i](value);
                        }
                }
        },
        // called once per frame to update the current state
        onTimerEvent: function() {
                var now = new Date().getTime();
                var timePassed = now - this.lastTime;
                this.lastTime = now;
                var movement = (timePassed / this.options.duration) * (this.state < this.target ? 1 : -1);
                if (Math.abs(movement) >= Math.abs(this.state - this.target)) {
                        this.state = this.target;
                } else {
                        this.state += movement;
                }
                
                try {
                        this.propagate();
                } finally {
                        this.options.onStep.call(this);
                        if (this.target == this.state) {
                                window.clearInterval(this.intervalId);
                                this.intervalId = null;
                                this.options.onComplete.call(this);
                        }
                }
        },
        // shortcuts
        play: function() {this.seekFromTo(0, 1)},
        reverse: function() {this.seekFromTo(1, 0)},
        // return a string describing this Animator, for debugging
        inspect: function() {
                var str = "#<Animator:\n";
                for (var i=0; i<this.subjects.length; i++) {
                        str += this.subjects[i].inspect();
                }
                str += ">";
                return str;
        }
}
// merge the properties of two objects
Animator.applyDefaults = function(defaults, prefs) {
        prefs = prefs || {};
        var prop, result = {};
        for (prop in defaults) result[prop] = prefs[prop] !== undefined ? prefs[prop] : defaults[prop];
        return result;
}
// make an array from any object
Animator.makeArray = function(o) {
        if (o == null) return [];
        if (!o.length) return [o];
        var result = [];
        for (var i=0; i<o.length; i++) result[i] = o[i];
        return result;
}
// convert a dash-delimited-property to a camelCaseProperty (c/o Prototype, thanks Sam!)
Animator.camelize = function(string) {
        var oStringList = string.split('-');
        if (oStringList.length == 1) return oStringList[0];
        
        var camelizedString = string.indexOf('-') == 0
                ? oStringList[0].charAt(0).toUpperCase() + oStringList[0].substring(1)
                : oStringList[0];
        
        for (var i = 1, len = oStringList.length; i < len; i++) {
                var s = oStringList[i];
                camelizedString += s.charAt(0).toUpperCase() + s.substring(1);
        }
        return camelizedString;
}
// syntactic sugar for creating CSSStyleSubjects
Animator.apply = function(el, style, options) {
        if (style instanceof Array) {
                return new Animator(options).addSubject(new CSSStyleSubject(el, style[0], style[1]));
        }
        return new Animator(options).addSubject(new CSSStyleSubject(el, style));
}
// make a transition function that gradually accelerates. pass a=1 for smooth
// gravitational acceleration, higher values for an exaggerated effect
Animator.makeEaseIn = function(a) {
        return function(state) {
                return Math.pow(state, a*2); 
        }
}
// as makeEaseIn but for deceleration
Animator.makeEaseOut = function(a) {
        return function(state) {
                return 1 - Math.pow(1 - state, a*2); 
        }
}
// make a transition function that, like an object with momentum being attracted to a point,
// goes past the target then returns
Animator.makeElastic = function(bounces) {
        return function(state) {
                state = Animator.tx.easeInOut(state);
                return ((1-Math.cos(state * Math.PI * bounces)) * (1 - state)) + state; 
        }
}
// make an Attack Decay Sustain Release envelope that starts and finishes on the same level
// 
Animator.makeADSR = function(attackEnd, decayEnd, sustainEnd, sustainLevel) {
        if (sustainLevel == null) sustainLevel = 0.5;
        return function(state) {
                if (state < attackEnd) {
                        return state / attackEnd;
                }
                if (state < decayEnd) {
                        return 1 - ((state - attackEnd) / (decayEnd - attackEnd) * (1 - sustainLevel));
                }
                if (state < sustainEnd) {
                        return sustainLevel;
                }
                return sustainLevel * (1 - ((state - sustainEnd) / (1 - sustainEnd)));
        }
}
// make a transition function that, like a ball falling to floor, reaches the target and/
// bounces back again
Animator.makeBounce = function(bounces) {
        var fn = Animator.makeElastic(bounces);
        return function(state) {
                state = fn(state); 
                return state <= 1 ? state : 2-state;
        }
}
 
// pre-made transition functions to use with the 'transition' option
Animator.tx = {
        easeInOut: function(pos){
                return ((-Math.cos(pos*Math.PI)/2) + 0.5);
        },
        linear: function(x) {
                return x;
        },
        easeIn: Animator.makeEaseIn(1.5),
        easeOut: Animator.makeEaseOut(1.5),
        strongEaseIn: Animator.makeEaseIn(2.5),
        strongEaseOut: Animator.makeEaseOut(2.5),
        elastic: Animator.makeElastic(1),
        veryElastic: Animator.makeElastic(3),
        bouncy: Animator.makeBounce(1),
        veryBouncy: Animator.makeBounce(3)
}
 
// animates a pixel-based style property between two integer values
function NumericalStyleSubject(els, property, from, to, units) {
        this.els = Animator.makeArray(els);
        if (property == 'opacity' && window.ActiveXObject) {
                this.property = 'filter';
        } else {
                this.property = Animator.camelize(property);
        }
        this.from = parseFloat(from);
        this.to = parseFloat(to);
        this.units = units != null ? units : 'px';
}
NumericalStyleSubject.prototype = {
        setState: function(state) {
                var style = this.getStyle(state);
                var visibility = (this.property == 'opacity' && state == 0) ? 'hidden' : '';
                var j=0;
                for (var i=0; i<this.els.length; i++) {
                        try {
                                this.els[i].style[this.property] = style;
                        } catch (e) {
                                // ignore fontWeight - intermediate numerical values cause exeptions in firefox
                                if (this.property != 'fontWeight') throw e;
                        }
                        if (j++ > 20) return;
                }
        },
        getStyle: function(state) {
                state = this.from + ((this.to - this.from) * state);
                if (this.property == 'filter') return "alpha(opacity=" + Math.round(state*100) + ")";
                if (this.property == 'opacity') return state;
                return Math.round(state) + this.units;
        },
        inspect: function() {
                return "\t" + this.property + "(" + this.from + this.units + " to " + this.to + this.units + ")\n";
        }
}
 
// animates a colour based style property between two hex values
function ColorStyleSubject(els, property, from, to) {
        this.els = Animator.makeArray(els);
        this.property = Animator.camelize(property);
        this.to = this.expandColor(to);
        this.from = this.expandColor(from);
        this.origFrom = from;
        this.