src/js/pop.js
author hamidouk
Wed, 07 Dec 2011 11:51:04 +0100
branchno-popcorn
changeset 417 bae7c50704d7
parent 394 89a79a2c6014
child 419 fe7e46eda1b4
permissions -rw-r--r--
fixed code() function. The Popcorn workaround now works correctly.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
387
d1fe53ad8d72 initial commit
hamidouk
parents:
diff changeset
     1
/* wrapper that simulates popcorn.js because
d1fe53ad8d72 initial commit
hamidouk
parents:
diff changeset
     2
   popcorn is a bit unstable at the time */
388
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
     3
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
     4
Popcorn = {};
394
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
     5
Popcorn.media = { "paused": true};
390
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
     6
388
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
     7
Popcorn.listen = function(msg, callback) {
394
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
     8
  IriSP.jQuery(Popcorn).bind(msg, function(event, rest) { callback(rest); });
388
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
     9
};
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    10
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    11
Popcorn.trigger = function(msg, params) {
394
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
    12
  IriSP.jQuery(Popcorn).trigger(msg, params);
388
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    13
};
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    14
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    15
Popcorn.guid = function(prefix) {
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    16
  var str = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    17
      var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    18
      return v.toString(16);
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    19
   });
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    20
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    21
  return prefix + str;
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    22
};
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    23
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    24
Popcorn.__initApi = function() {
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    25
  Popcorn.trigger("timeupdate");
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    26
};
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    27
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    28
Popcorn.jwplayer = function(container, options) {
390
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    29
  Popcorn._container = container.slice(1); //eschew the '#'
388
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    30
  options.events = {
390
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    31
      onReady: Popcorn.__initApi,
394
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
    32
      onTime: Popcorn.__timeHandler,
417
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
    33
      onSeek: Popcorn.__seekHandler }
388
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    34
    
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    35
  jwplayer(Popcorn._container).setup(options);
391
0a68395f7e12 added duration. automatically trigger timeupdate.
hamidouk
parents: 390
diff changeset
    36
  Popcorn.media.duration = options.duration;
390
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    37
  return Popcorn;
388
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    38
};
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    39
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    40
Popcorn.currentTime = function(time) {
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    41
  if (typeof(time) === "undefined") {
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    42
      return jwplayer(Popcorn._container).getPosition();            
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    43
  } else {
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    44
     var currentTime = +time;
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    45
     jwplayer( Popcorn._container ).seek( currentTime );
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    46
     return jwplayer(Popcorn._container).getPosition();            
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    47
  }
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    48
};
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    49
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    50
Popcorn.play = function() {
390
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    51
      Popcorn.media.paused = false;
394
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
    52
//      Popcorn.trigger("play");
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
    53
//      Popcorn.trigger("playing");
388
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    54
      jwplayer( Popcorn._container ).play();
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    55
};
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    56
    
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    57
Popcorn.pause = function() {
390
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    58
      if ( !Popcorn.media.paused ) {
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    59
        Popcorn.media.paused = true;
388
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    60
        Popcorn.trigger( "pause" );
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    61
        jwplayer( Popcorn._container ).pause();
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    62
      }
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    63
};
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    64
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    65
Popcorn.muted = function(val) {
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    66
  if (typeof(val) !== "undefined") {
390
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    67
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    68
    if (jwplayer(Popcorn._container).getMute() !== val) {
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    69
      if (val) {
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    70
        jwplayer(Popcorn._container).setMute(true);
388
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    71
      } else {
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    72
        jwplayer( Popcorn._container ).setMute(false);
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    73
      }
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    74
394
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
    75
      Popcorn.trigger( "volumechange" );
388
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    76
    }
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    77
    
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    78
    return jwplayer( Popcorn._container ).getMute();
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    79
  } else {
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    80
    return jwplayer( Popcorn._container ).getMute();
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
    81
  }
390
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    82
};
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    83
394
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
    84
Popcorn.mute = Popcorn.muted;
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
    85
390
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    86
Popcorn.__codes = [];
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    87
Popcorn.code = function(options) {
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    88
  Popcorn.__codes.push(options);
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    89
  return Popcorn;
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    90
};
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    91
394
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
    92
Popcorn.__runCode = function() {
390
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    93
  var currentTime = jwplayer(Popcorn._container).getPosition();
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    94
  var i = 0;
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    95
  for(i = 0; i < Popcorn.__codes.length; i++) {
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    96
    var c = Popcorn.__codes[i];
391
0a68395f7e12 added duration. automatically trigger timeupdate.
hamidouk
parents: 390
diff changeset
    97
    if (currentTime == c.start) {
390
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    98
      c.onStart();
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
    99
    }
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
   100
    
391
0a68395f7e12 added duration. automatically trigger timeupdate.
hamidouk
parents: 390
diff changeset
   101
    if (currentTime == c.end) {
390
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
   102
      c.onEnd();
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
   103
    }
388
30277c1e3d46 replaced most of popcorn's functions.
hamidouk
parents: 387
diff changeset
   104
390
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
   105
  }
394
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
   106
};
391
0a68395f7e12 added duration. automatically trigger timeupdate.
hamidouk
parents: 390
diff changeset
   107
394
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
   108
/* called everytime the player updates itself 
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
   109
   (onTime event)
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
   110
 */
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
   111
417
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   112
Popcorn.__timeHandler = function(event) {
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   113
  var pos = event.position;
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   114
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   115
  var i = 0;
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   116
  for(i = 0; i < Popcorn.__codes.length; i++) {
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   117
     var c = Popcorn.__codes[i];
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   118
     
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   119
     if (pos >= c.start && pos < c.end && 
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   120
         pos - 0.1 <= c.start) {
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   121
        c.onStart();
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   122
     }
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   123
 
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   124
     if (pos >= c.start && pos >= c.end && 
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   125
         pos - 0.1 <= c.end) {
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   126
        c.onEnd();
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   127
     }
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   128
   
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   129
  }
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   130
 
391
0a68395f7e12 added duration. automatically trigger timeupdate.
hamidouk
parents: 390
diff changeset
   131
  Popcorn.trigger("timeupdate");
390
9b4e5f606d72 first draft, a little rough around the edges.
hamidouk
parents: 388
diff changeset
   132
};
394
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
   133
417
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   134
Popcorn.__seekHandler = function(event) { 
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   135
  var i = 0;
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   136
  for(i = 0; i < Popcorn.__codes.length; i++) {
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   137
     var c = Popcorn.__codes[i];
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   138
    
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   139
     if (event.position >= c.start && event.position < c.end) {
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   140
        c.onEnd();
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   141
     }
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   142
    
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   143
     if (typeof(event.offset) === "undefined")
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   144
       event.offset = 0;
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   145
     if (event.offset >= c.start && event.offset < c.end) {
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   146
       c.onStart();
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   147
     }
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   148
     
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   149
   }
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   150
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   151
  Popcorn.trigger("timeupdate");
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   152
}
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   153
bae7c50704d7 fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents: 394
diff changeset
   154
394
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
   155
Popcorn.roundTime = function() {
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
   156
  var currentTime = Popcorn.currentTime();
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
   157
  return Math.round(currentTime);
89a79a2c6014 WIP - working on the code function.
hamidouk
parents: 391
diff changeset
   158
};