| author | hamidouk |
| Thu, 08 Dec 2011 12:29:33 +0100 | |
| branch | bugslaying-after-r417-merge |
| changeset 430 | c0b529ae20d2 |
| parent 419 | fe7e46eda1b4 |
| child 431 | f9460dc1957f |
| permissions | -rw-r--r-- |
| 387 | 1 |
/* wrapper that simulates popcorn.js because |
2 |
popcorn is a bit unstable at the time */ |
|
| 388 | 3 |
|
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
4 |
PopcornReplacement = {}; |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
5 |
PopcornReplacement.media = { "paused": true}; |
| 390 | 6 |
|
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
7 |
PopcornReplacement.listen = function(msg, callback) { |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
8 |
IriSP.jQuery(PopcornReplacement).bind(msg, function(event, rest) { callback(rest); }); |
| 388 | 9 |
}; |
10 |
||
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
11 |
PopcornReplacement.trigger = function(msg, params) { |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
12 |
IriSP.jQuery(PopcornReplacement).trigger(msg, params); |
| 388 | 13 |
}; |
14 |
||
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
15 |
PopcornReplacement.guid = function(prefix) { |
| 388 | 16 |
var str = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) { |
17 |
var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8); |
|
18 |
return v.toString(16); |
|
19 |
}); |
|
20 |
||
21 |
return prefix + str; |
|
22 |
}; |
|
23 |
||
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
24 |
PopcornReplacement.__initApi = function() { |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
25 |
PopcornReplacement.trigger("timeupdate"); |
| 388 | 26 |
}; |
27 |
||
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
28 |
PopcornReplacement.jwplayer = function(container, options) { |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
29 |
PopcornReplacement._container = container.slice(1); //eschew the '#' |
| 388 | 30 |
options.events = { |
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
31 |
onReady: PopcornReplacement.__initApi, |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
32 |
onTime: PopcornReplacement.__timeHandler, |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
33 |
onSeek: PopcornReplacement.__seekHandler } |
| 388 | 34 |
|
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
35 |
jwplayer(PopcornReplacement._container).setup(options); |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
36 |
PopcornReplacement.media.duration = options.duration; |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
37 |
return PopcornReplacement; |
| 388 | 38 |
}; |
39 |
||
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
40 |
PopcornReplacement.currentTime = function(time) { |
| 388 | 41 |
if (typeof(time) === "undefined") { |
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
42 |
return jwplayer(PopcornReplacement._container).getPosition(); |
| 388 | 43 |
} else { |
44 |
var currentTime = +time; |
|
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
45 |
jwplayer( PopcornReplacement._container ).seek( currentTime ); |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
46 |
return jwplayer(PopcornReplacement._container).getPosition(); |
| 388 | 47 |
} |
48 |
}; |
|
49 |
||
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
50 |
PopcornReplacement.play = function() { |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
51 |
PopcornReplacement.media.paused = false; |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
52 |
// PopcornReplacement.trigger("play"); |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
53 |
// PopcornReplacement.trigger("playing"); |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
54 |
jwplayer( PopcornReplacement._container ).play(); |
| 388 | 55 |
}; |
56 |
|
|
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
57 |
PopcornReplacement.pause = function() { |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
58 |
if ( !PopcornReplacement.media.paused ) { |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
59 |
PopcornReplacement.media.paused = true; |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
60 |
PopcornReplacement.trigger( "pause" ); |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
61 |
jwplayer( PopcornReplacement._container ).pause(); |
| 388 | 62 |
} |
63 |
}; |
|
64 |
||
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
65 |
PopcornReplacement.muted = function(val) { |
| 388 | 66 |
if (typeof(val) !== "undefined") { |
| 390 | 67 |
|
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
68 |
if (jwplayer(PopcornReplacement._container).getMute() !== val) { |
| 390 | 69 |
if (val) { |
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
70 |
jwplayer(PopcornReplacement._container).setMute(true); |
| 388 | 71 |
} else { |
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
72 |
jwplayer( PopcornReplacement._container ).setMute(false); |
| 388 | 73 |
} |
74 |
||
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
75 |
PopcornReplacement.trigger( "volumechange" ); |
| 388 | 76 |
} |
77 |
|
|
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
78 |
return jwplayer( PopcornReplacement._container ).getMute(); |
| 388 | 79 |
} else { |
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
80 |
return jwplayer( PopcornReplacement._container ).getMute(); |
| 388 | 81 |
} |
| 390 | 82 |
}; |
83 |
||
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
84 |
PopcornReplacement.mute = PopcornReplacement.muted; |
| 394 | 85 |
|
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
86 |
PopcornReplacement.__codes = []; |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
87 |
PopcornReplacement.code = function(options) { |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
88 |
PopcornReplacement.__codes.push(options); |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
89 |
return PopcornReplacement; |
| 390 | 90 |
}; |
91 |
||
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
92 |
PopcornReplacement.__runCode = function() { |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
93 |
var currentTime = jwplayer(PopcornReplacement._container).getPosition(); |
| 390 | 94 |
var i = 0; |
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
95 |
for(i = 0; i < PopcornReplacement.__codes.length; i++) { |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
96 |
var c = PopcornReplacement.__codes[i]; |
| 391 | 97 |
if (currentTime == c.start) { |
| 390 | 98 |
c.onStart(); |
99 |
} |
|
100 |
|
|
| 391 | 101 |
if (currentTime == c.end) { |
| 390 | 102 |
c.onEnd(); |
103 |
} |
|
| 388 | 104 |
|
| 390 | 105 |
} |
| 394 | 106 |
}; |
| 391 | 107 |
|
| 394 | 108 |
/* called everytime the player updates itself |
109 |
(onTime event) |
|
110 |
*/ |
|
111 |
||
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
112 |
PopcornReplacement.__timeHandler = function(event) { |
|
417
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; |
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
116 |
for(i = 0; i < PopcornReplacement.__codes.length; i++) { |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
117 |
var c = PopcornReplacement.__codes[i]; |
|
417
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 |
|
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
131 |
PopcornReplacement.trigger("timeupdate"); |
| 390 | 132 |
}; |
| 394 | 133 |
|
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
134 |
PopcornReplacement.__seekHandler = function(event) { |
|
417
bae7c50704d7
fixed code() function. The Popcorn workaround now works correctly.
hamidouk
parents:
394
diff
changeset
|
135 |
var i = 0; |
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
136 |
for(i = 0; i < PopcornReplacement.__codes.length; i++) { |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
137 |
var c = PopcornReplacement.__codes[i]; |
|
417
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 |
|
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
151 |
PopcornReplacement.trigger("timeupdate"); |
|
417
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 |
|
|
419
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
155 |
PopcornReplacement.roundTime = function() { |
|
fe7e46eda1b4
renamed all popcorn references in pop.js to not reference popcorn.
hamidouk
parents:
417
diff
changeset
|
156 |
var currentTime = PopcornReplacement.currentTime(); |
| 394 | 157 |
return Math.round(currentTime); |
158 |
}; |