]> www.average.org Git - mkgallery.git/blobdiff - include/show.js
basically it works
[mkgallery.git] / include / show.js
index 2b5264f4be9d54bf460adc16f45bb6bd2844b612..4bcd28ea0c758aefe48159e620ca23ae239a465f 100644 (file)
@@ -30,6 +30,9 @@
   - On "stop": if "playing" cancel autoswitch; break "playing".
   - On "start show": set up things; set "playing" state; show needed image.
   - On "stop show": cancel any schedules, hide things.
+  - On resize: recalculate existing image size and position; determine
+    what image is needed; if it is not the one on display then request
+    "show image" for the new image.
 */
 
 var Show = new Class({
@@ -38,62 +41,270 @@ var Show = new Class({
                return {
                        cbStart: function(){ alert('show start undefined'); },
                        cbExit: function(){ alert('show exit undefined'); },
+                       percentage: 98,
+                       delay: 5000,
+                       fxduration: 200,
                }
        },
 
        initialize: function(vimgs, container, controls, options){
                this.setOptions(this.getOptions(), options);
                this.vimgs = vimgs;
-               this.container = $(container);
+               this.container = container;
                this.controls = controls;
                this.controls.registershow(this);
+               this.timer = 0;
+               this.delay = this.options.delay;
+               this.cache = {
+                       prev: {},
+                       curr: {},
+                       next: {},
+               };
+               this.updatecoords();
+               this.prevdisplay = new Element('img').
+                       injectInside(this.container.container);
+               this.ondisplay = new Element('img').
+                       injectInside(this.container.container);
+               this.loadingdiv = new Element('div').
+               addClass('loading').setStyles({
+                       position: 'absolute',
+                       top: 0,
+                       left: 0,
+                       zIndex: 4,
+                       display: 'none',
+                       width: this.coords.width,
+                       height: this.coords.height,
+               }).injectInside(this.container.container);
 
                window.addEvent('resize', this.resizer.bind(this))
-               window.addEvent('scroll', this.scroller.bind(this))
        },
 
+       /* event handler for window resize */
+
        resizer: function(){
-               alert('show.resizer called');
+               this.updatecoords();
+               var newstyle = this.calcsize(this.cache.curr);
+               this.ondisplay.setStyles(newstyle);
+               /* check if we need reload */
        },
 
-       scroller: function(){
-               alert('show.scroller called');
-       },
+       /* prev, play, stop, next, exit, comm are methods for button presses */
 
        prev: function(){
-               this.controls.info(-1,this.vimgs.length,
-                               '<ref>','prev called');
+               if (this.currentid > 0) {
+                       this.show(this.currentid-1);
+               } else {
+                       alert('show.prev called beyond first element');
+               }
        },
 
        stop: function(){
-               this.controls.info(0,this.vimgs.length,
-                               '<ref>','stop called');
+               if (this.isplaying) { $clear(this.timer); }
+               this.isplaying = false;
+               $clear(this.timer);
                this.controls.running(0);
        },
 
        play: function(){
-               this.controls.info(999,this.vimgs.length,
-                               '<ref>','play called');
+               this.isplaying = true;
+               this.timer = this.autonext.delay(this.delay,this);
                this.controls.running(1);
        },
 
        next: function(){
-               this.controls.info(1,this.vimgs.length,
-                               '<ref>','next called');
+               if (this.currentid < this.vimgs.length-1) {
+                       this.show(this.currentid+1);
+               } else {
+                       alert('show.next called beyond last element');
+               }
+       },
+
+       exit: function(){
+               if (this.isplaying) { $clear(this.timer); }
+               this.prevdisplay.setStyle('display', 'none');
+               this.ondisplay.setStyle('display', 'none');
+               this.stopfx();
+               this.options.cbExit();
+       },
+
+       comm: function(){
+               /* alert('show.comm called, do nothing'); */
        },
 
+       /* Entry point: called to start doing things */
+
        start: function(id, play){
                this.options.cbStart();
-               /* real job here */
-               return false; /* tao make it usable from href links */
+               this.isplaying = play;
+               this.controls.running(this.isplaying);
+               this.show(id);
+               return false; /* to make it usable from href links */
        },
 
-       exit: function(){
-               this.options.cbExit();
+       /* "Private" methods to do the real job */
+
+       show: function(id){
+               /* alert('called show.show('+id+')'); */
+               this.currentid = id;
+               var newcache = {
+                       prev: (id > 0)?this.prepare(id-1):{},
+                       curr: this.prepare(id),
+                       next: (id < (this.vimgs.length-1))?this.prepare(id+1):{},
+               };
+               delete this.cache;
+               this.cache = newcache;
+               if (this.cache.curr.ready) {
+                       this.display(this.cache.curr);
+               } else {
+                       this.pendingload = true;
+                       this.showloading();
+               }
+               this.controls.info(id,this.vimgs.length,
+                               this.vimgs[id][0],
+                               this.vimgs[id][1]);
        },
 
-       comm: function(){
-               alert('show.comm called, do nothing');
+       prepare: function(id){
+               var vi;
+               for (vi=0;vi<this.vimgs[id][2].length-1;vi++) {
+                       if ((this.vimgs[id][2][vi][0] >= this.target.width) ||
+                           (this.vimgs[id][2][vi][1] >= this.target.height)) {
+                               break;
+                       }
+               }
+               /* alert('prepare id='+id+', selected '+vi+' at '+
+                       this.vimgs[id][2][vi][0]+'x'+
+                       this.vimgs[id][2][vi][1]); */
+               var cachel;
+               ['prev', 'curr', 'next'].each(function(el){
+                       if (this.cache[el] &&
+                           this.cache[el].id == id &&
+                           this.cache[el].vi == vi) {
+                               cachel = this.cache[el];
+                       }
+               }.bind(this));
+               if (! cachel) {
+                       cachel = {
+                               id: id,
+                               vi: vi,
+                               ready: false,
+                               url: this.vimgs[id][2][vi][2],
+                       };
+                       cachel.img = this.bgload(cachel);
+               }
+               return cachel;
+       },
+
+       bgload: function(cachel){
+               /* alert('bgload: id='+cachel.id+' vi='+cachel.vi+
+                       ' url='+cachel.url); */
+               return new Asset.image(this.vimgs[cachel.id][2][cachel.vi][2],{
+                       id: this.vimgs[cachel.id][0],
+                       title: this.vimgs[cachel.id][1],
+                       onload: this.loadcomplete.bind(this,[cachel]),
+               });
+       },
+
+       loadcomplete: function(cachel){
+               /* alert('loadcomplete '+cachel.url+' id='+cachel.id+
+                       ' vi='+cachel.vi); */
+               cachel.ready = true;
+               if (cachel.id == this.currentid &&
+                   this.pendingload) {
+                       this.pendingload = false;
+                       this.hideloading();
+                       this.display(cachel);
+               }
+       },
+
+       display: function(cachel){
+               var newstyle = this.calcsize(cachel);
+               var newimg = cachel.img.clone();
+               newimg.setStyles(newstyle);
+               newimg.setStyles({
+                       zIndex: 3,
+                       opacity: 0,
+               });
+               this.prevdisplay.dispose();
+               this.prevdisplay = this.ondisplay.clone().
+               setStyle('zIndex', 2).injectInside(this.container.container);
+               newimg.replaces(this.ondisplay);
+               this.ondisplay = newimg;
+               this.effect();
+       },
+
+       effect: function(){
+               this.fx = new Fx.Tween(this.ondisplay, {
+                       duration: this.options.fxduration,
+               });
+               this.fx.addEvent('complete',this.displaycomplete.bind(this));
+               this.fx.start('opacity', 0, 1);
+       },
+
+       displaycomplete: function(){
+               this.prevdisplay.setStyle('display', 'none');
+               if (this.isplaying) {
+                       this.timer = this.autonext.delay(this.delay,this);
+               }
+       },
+
+       autonext: function(){
+               if (this.isplaying) {
+                       if (this.currentid < this.vimgs.length-1) {
+                               this.show(this.currentid+1);
+                       } else {
+                               this.exit();
+                       }
+               }
+       },
+
+       calcsize: function(cachel){
+               var factor = 1;
+               var candidate;
+               candidate = this.target.width /
+                               this.vimgs[cachel.id][2][cachel.vi][0];
+               if (factor > candidate) { factor = candidate; }
+               candidate = this.target.height /
+                               this.vimgs[cachel.id][2][cachel.vi][1];
+               if (factor > candidate) { factor = candidate; }
+               var w = Math.round(this.vimgs[cachel.id][2][cachel.vi][0] *
+                       factor);
+               var h = Math.round(this.vimgs[cachel.id][2][cachel.vi][1] *
+                       factor);
+               var t = Math.round((this.coords.height-h)/2);
+               var l = Math.round((this.coords.width-w)/2);
+               /* alert('new size: '+w+'x'+h+'+'+l+'+'+t); */
+               return {
+                       position: 'absolute',
+                       top: t+'px',
+                       left: l+'px',
+                       width: w,
+                       height: h,
+               };
+       },
+
+       showloading: function(){
+               this.loadingdiv.setStyle('display', 'block');
+       },
+
+       hideloading: function(){
+               this.loadingdiv.setStyle('display', 'none');
+       },
+
+       stopfx: function(){
+               if (this.fx) this.fx.cancel();
+       },
+
+       updatecoords: function(){
+               this.coords = this.container.getCoordinates();
+               this.target = {
+                       width: Math.round(this.coords.width *
+                                               this.options.percentage / 100),
+                       height: Math.round(this.coords.height *
+                                               this.options.percentage / 100),
+               };
+               /* alert('coords: '+this.coords.width+'x'+this.coords.height+
+                    ', target: '+this.target.width+'x'+this.target.height); */
        },
 
 });