2011-11-05 16:46:53 +00:00
|
|
|
'use strict';
|
|
|
|
|
2011-05-15 18:50:05 +00:00
|
|
|
Ox.SmallVideoTimelineImage = function(options, self) {
|
2011-05-15 16:18:58 +00:00
|
|
|
|
|
|
|
self = self || {};
|
|
|
|
var that = Ox.Element({}, self)
|
|
|
|
.defaults({
|
2011-05-17 09:43:54 +00:00
|
|
|
duration: 0,
|
2011-05-15 16:18:58 +00:00
|
|
|
editing: false,
|
|
|
|
'in': 0,
|
|
|
|
out: 0,
|
|
|
|
results: [],
|
|
|
|
subtitles: [],
|
2011-05-17 09:43:54 +00:00
|
|
|
timeline: '',
|
2011-05-15 16:18:58 +00:00
|
|
|
width: 256,
|
|
|
|
type: 'player'
|
|
|
|
})
|
|
|
|
.options(options || {})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
width: self.options.width + 'px'
|
|
|
|
});
|
|
|
|
|
2011-05-17 10:00:49 +00:00
|
|
|
self.images = Ox.isString(self.options.timeline) ?
|
|
|
|
1 : Math.ceil(self.options.duration / 3600);
|
|
|
|
self.imageWidth = Ox.isString(self.options.timeline) ?
|
|
|
|
1920 : Math.round(self.options.duration);
|
2011-05-15 16:18:58 +00:00
|
|
|
self.height = self.options.type == 'player' ? 16 : 24;
|
|
|
|
self.imageHeight = self.options.type == 'player' ? 16 : 18;
|
|
|
|
self.imageTop = self.options.type == 'player' ? 0 : 3;
|
2011-05-17 17:04:33 +00:00
|
|
|
self.timelineTop = self.options.type == 'player' ? 0 : 4;
|
2011-05-15 16:18:58 +00:00
|
|
|
|
|
|
|
that.css({
|
|
|
|
height: self.height + 'px'
|
|
|
|
});
|
|
|
|
|
2011-05-17 10:00:49 +00:00
|
|
|
if (Ox.isString(self.options.timeline)) {
|
|
|
|
self.$timeline = $('<img>')
|
|
|
|
.attr({
|
|
|
|
src: self.options.timeline
|
|
|
|
})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
2011-05-17 17:04:33 +00:00
|
|
|
top: self.timelineTop + 'px',
|
2011-05-17 10:00:49 +00:00
|
|
|
width: self.options.width + 'px',
|
2011-05-17 17:04:33 +00:00
|
|
|
height: '16px'
|
2011-05-17 10:00:49 +00:00
|
|
|
})
|
|
|
|
.appendTo(that.$element);
|
|
|
|
} else {
|
|
|
|
Ox.loop(self.images, function(i) {
|
|
|
|
$('<img>')
|
|
|
|
.attr({
|
|
|
|
src: self.options.timeline(i)
|
|
|
|
})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
left: (i * 3600) + 'px',
|
2011-05-17 17:04:33 +00:00
|
|
|
top: self.timelineTop + 'px',
|
2011-05-17 10:00:49 +00:00
|
|
|
width: (i == self.images - 1 ? self.imageWidth % 3600 : 3600) + 'px',
|
2011-05-17 17:04:33 +00:00
|
|
|
height: '16px'
|
2011-05-17 10:00:49 +00:00
|
|
|
})
|
|
|
|
.appendTo(that.$element);
|
2011-05-15 16:18:58 +00:00
|
|
|
});
|
2011-05-17 10:00:49 +00:00
|
|
|
}
|
2011-05-15 16:18:58 +00:00
|
|
|
|
|
|
|
self.$subtitles = $('<img>')
|
|
|
|
.attr({
|
|
|
|
src: getImageURL('subtitles')
|
|
|
|
})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
2011-05-17 10:00:49 +00:00
|
|
|
top: self.imageTop + 'px',
|
2011-05-15 16:18:58 +00:00
|
|
|
width: self.options.width + 'px',
|
2011-05-17 10:00:49 +00:00
|
|
|
height: self.imageHeight + 'px'
|
2011-05-15 16:18:58 +00:00
|
|
|
})
|
|
|
|
.appendTo(that.$element);
|
|
|
|
|
|
|
|
self.$results = $('<img>')
|
|
|
|
.attr({
|
|
|
|
src: getImageURL('results')
|
|
|
|
})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
2011-05-17 10:00:49 +00:00
|
|
|
top: self.imageTop + 'px',
|
2011-05-15 16:18:58 +00:00
|
|
|
width: self.options.width + 'px',
|
2011-05-17 10:00:49 +00:00
|
|
|
height: self.imageHeight + 'px'
|
2011-05-15 16:18:58 +00:00
|
|
|
})
|
|
|
|
.appendTo(that.$element);
|
|
|
|
|
|
|
|
self.$selection = $('<img>')
|
|
|
|
.attr({
|
|
|
|
src: getImageURL('selection')
|
|
|
|
})
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
2011-05-17 10:00:49 +00:00
|
|
|
top: self.imageTop + 'px',
|
2011-05-15 16:18:58 +00:00
|
|
|
width: self.options.width + 'px',
|
2011-05-17 10:00:49 +00:00
|
|
|
height: self.imageHeight + 'px'
|
2011-05-15 16:18:58 +00:00
|
|
|
})
|
|
|
|
.appendTo(that.$element);
|
|
|
|
|
|
|
|
function getImageURL(image, callback) {
|
2011-05-16 07:03:37 +00:00
|
|
|
var width = image == 'results' || image == 'selection' ?
|
2011-05-17 09:43:54 +00:00
|
|
|
self.options.width : self.imageWidth,
|
2011-05-15 16:18:58 +00:00
|
|
|
height = self.imageHeight,
|
|
|
|
canvas = $('<canvas>')
|
|
|
|
.attr({
|
|
|
|
width: width,
|
|
|
|
height: height
|
|
|
|
})[0],
|
|
|
|
context = canvas.getContext('2d'),
|
|
|
|
imageData = context.createImageData(width, height),
|
|
|
|
data = imageData.data;
|
|
|
|
if (image == 'results') {
|
|
|
|
var top = 0,
|
|
|
|
bottom = height;
|
|
|
|
self.options.results.forEach(function(result) {
|
2011-05-16 07:03:37 +00:00
|
|
|
var left = Math.round(
|
2011-05-17 09:43:54 +00:00
|
|
|
result['in'] / self.options.duration * width
|
2011-05-16 07:03:37 +00:00
|
|
|
),
|
|
|
|
right = Math.round(
|
2011-05-17 09:43:54 +00:00
|
|
|
result.out / self.options.duration * width
|
2011-05-16 07:03:37 +00:00
|
|
|
) + 1;
|
2011-05-15 16:18:58 +00:00
|
|
|
Ox.loop(left, right, function(x) {
|
|
|
|
Ox.loop(top, bottom, function(y) {
|
2011-05-16 07:03:37 +00:00
|
|
|
var color = self.options.type == 'player' ?
|
|
|
|
[255, 255, 0, 128] :
|
|
|
|
(y == top || y == bottom - 1) ?
|
|
|
|
[255, 255, 0, 255] : [255, 255, 0, 64],
|
2011-05-15 16:18:58 +00:00
|
|
|
index = x * 4 + y * 4 * width;
|
|
|
|
data[index] = color[0];
|
|
|
|
data[index + 1] = color[1];
|
|
|
|
data[index + 2] = color[2];
|
|
|
|
data[index + 3] = color[3];
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2011-05-16 18:05:29 +00:00
|
|
|
} else if (image == 'selection' && self.options.out > self.options['in']) {
|
2011-05-16 07:03:37 +00:00
|
|
|
var left = Math.round(
|
2011-05-17 09:43:54 +00:00
|
|
|
self.options['in'] / self.options.duration * width
|
2011-05-16 07:03:37 +00:00
|
|
|
),
|
|
|
|
right = Math.round(
|
2011-05-17 09:43:54 +00:00
|
|
|
self.options.out / self.options.duration * width
|
2011-05-16 07:03:37 +00:00
|
|
|
) + 1,
|
2011-05-15 16:18:58 +00:00
|
|
|
top = 0,
|
|
|
|
bottom = height,
|
|
|
|
rgb = self.options.editing ? [128, 255, 255] : [255, 255, 255];
|
|
|
|
Ox.loop(left, right, function(x) {
|
|
|
|
Ox.loop(top, bottom, function(y) {
|
2011-05-16 07:03:37 +00:00
|
|
|
var color = self.options.type == 'player' ?
|
|
|
|
[rgb[0], rgb[1], rgb[2], 128] :
|
|
|
|
[rgb[0], rgb[1], rgb[2], (y == top || y == bottom - 1) ? 255 : 64],
|
2011-05-15 16:18:58 +00:00
|
|
|
index = x * 4 + y * 4 * width;
|
|
|
|
data[index] = color[0];
|
|
|
|
data[index + 1] = color[1];
|
|
|
|
data[index + 2] = color[2];
|
|
|
|
data[index + 3] = color[3];
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} else if (image == 'subtitles') {
|
|
|
|
var bottom = self.options.type == 'player' ? 14 : 15;
|
|
|
|
self.options.subtitles.forEach(function(subtitle) {
|
2011-05-17 09:43:54 +00:00
|
|
|
var left = Math.round(
|
|
|
|
subtitle['in'] / self.options.duration * self.imageWidth
|
|
|
|
),
|
|
|
|
right = Math.round(
|
|
|
|
subtitle.out / self.options.duration * self.imageWidth
|
|
|
|
) + 1,
|
2011-05-18 18:30:58 +00:00
|
|
|
top = bottom - subtitle.text.split('\n').length - 3;
|
2011-05-15 16:18:58 +00:00
|
|
|
Ox.loop(left, right, function(x) {
|
|
|
|
Ox.loop(top, bottom, function(y) {
|
2011-05-18 18:30:58 +00:00
|
|
|
var color = y == top ? [0, 0, 0, 0] :
|
|
|
|
(y == top + 1 || y == bottom - 1) ?
|
|
|
|
[0, 0, 0, 128] : [255, 255, 255, 128],
|
2011-05-15 16:18:58 +00:00
|
|
|
index = x * 4 + y * 4 * width;
|
|
|
|
data[index] = color[0];
|
|
|
|
data[index + 1] = color[1];
|
|
|
|
data[index + 2] = color[2];
|
2011-05-18 18:30:58 +00:00
|
|
|
data[index + 3] = color[3];
|
2011-05-15 16:18:58 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2011-05-17 10:00:49 +00:00
|
|
|
context.putImageData(imageData, 0, 0);
|
|
|
|
return canvas.toDataURL();
|
2011-05-15 16:18:58 +00:00
|
|
|
}
|
|
|
|
|
2011-05-17 09:43:54 +00:00
|
|
|
function getPosition() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-05-15 16:18:58 +00:00
|
|
|
self.setOption = function(key, value) {
|
|
|
|
if (key == 'in' || key == 'out') {
|
|
|
|
self.$selection.attr({
|
|
|
|
src: getImageURL('selection')
|
|
|
|
});
|
|
|
|
} else if (key == 'results') {
|
|
|
|
self.$results.attr({
|
|
|
|
src: getImageURL('results')
|
|
|
|
});
|
2011-05-16 07:03:37 +00:00
|
|
|
} else if (key == 'selection') {
|
|
|
|
self.$selection.attr({
|
|
|
|
src: getImageURL('selection')
|
|
|
|
});
|
2011-05-15 16:18:58 +00:00
|
|
|
} else if (key == 'subtitles') {
|
|
|
|
self.$subtitles.attr({
|
|
|
|
src: getImageURL('subtitles')
|
|
|
|
});
|
2011-05-16 07:03:37 +00:00
|
|
|
} else if (key == 'width') {
|
|
|
|
that.css({width: value + 'px'});
|
|
|
|
self.$results
|
|
|
|
.attr({src: getImageURL('results')})
|
|
|
|
.css({width: value + 'px'});
|
|
|
|
self.$selection
|
|
|
|
.attr({src: getImageURL('selection')})
|
|
|
|
.css({width: value + 'px'});
|
|
|
|
self.$subtitles.css({width: value + 'px'});
|
|
|
|
self.$timeline.css({width: value + 'px'});
|
2011-05-15 16:18:58 +00:00
|
|
|
}
|
2011-06-19 17:48:32 +00:00
|
|
|
};
|
2011-05-15 16:18:58 +00:00
|
|
|
|
|
|
|
return that;
|
|
|
|
|
2011-10-24 13:13:00 +00:00
|
|
|
};
|