Resizer prepared to handle stretching and zooming
This commit is contained in:
parent
cbe250fabf
commit
0ac051d5d5
@ -93,6 +93,12 @@ var ExtensionConf = {
|
||||
conditionalDifferencePercent: 0.05 // black bars less than this wide will trigger stretch
|
||||
// if mode is set to '1'. 1.0=100%
|
||||
},
|
||||
resizer: {
|
||||
setStyleString: {
|
||||
maxRetries: 3,
|
||||
retryTimeout: 200
|
||||
}
|
||||
},
|
||||
colors:{
|
||||
// criticalFail: "background: #fa2; color: #000"
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
if(Debug.debug)
|
||||
console.log("Loading: FullScreenDetect.js");
|
||||
console.log("Loading: PlayerData.js");
|
||||
|
||||
/* sprejme <video> tag (element) in seznam imen, ki se lahko pojavijo v razredih oz. id staršev.
|
||||
// vrne dimenzije predvajalnika (širina, višina)
|
||||
|
@ -22,14 +22,19 @@ class Resizer {
|
||||
this.zoom = new Zoom();
|
||||
|
||||
// load up default values
|
||||
this.correctedVideoDimensions = {};
|
||||
this.currentCss = {};
|
||||
this.stretch = {mode: ExtensionConf.stretch.initialMode};
|
||||
|
||||
// restore watchdog. While true, applyCss() tries to re-apply new css until this value becomes false again
|
||||
// value becomes false when width and height of <video> tag match with what we want to set. Only necessary when
|
||||
// calling _res_restore() for some weird reason.
|
||||
this.restore_wd = false;
|
||||
|
||||
this.lastAr = {type: 'original'};
|
||||
}
|
||||
|
||||
|
||||
setAr(ar, lastAr){
|
||||
if(Debug.debug){
|
||||
console.log('[Resizer::setAr] trying to set ar. New ar:', ar)
|
||||
@ -38,17 +43,21 @@ class Resizer {
|
||||
if(lastAr) {
|
||||
this.lastAr = lastAr;
|
||||
} else {
|
||||
this.lastAr = {type: 'static', ar: ar};
|
||||
if(isNaN(ar)){
|
||||
this.lastAr = {type: 'legacy', ar: ar}
|
||||
} else {
|
||||
this.lastAr = {type: 'static', ar: ar};
|
||||
}
|
||||
}
|
||||
|
||||
if (! this.video) {
|
||||
console.log("No video detected.")
|
||||
this.videoData.destroy();
|
||||
// this.videoData.destroy();
|
||||
}
|
||||
|
||||
|
||||
var dimensions = Scaler.calculateCrop(ar, this.video, this.conf.player.dimensions);
|
||||
var stretchFactors;
|
||||
var stretchFactors = undefined;
|
||||
|
||||
// if we set stretching, we apply stretching
|
||||
if (this.stretch.mode == StretchMode.FULL){
|
||||
@ -59,288 +68,304 @@ class Resizer {
|
||||
|
||||
zoom.applyZoom(dimensions);
|
||||
|
||||
cssOffsets = this.computeOffsets(dimensions);
|
||||
this.applyCss(cssOffsets, stretchFactors);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
var _res_computeOffsets = function(vidDim, playerDim){
|
||||
|
||||
if(Debug.debug)
|
||||
console.log("[Resizer::_res_computeOffsets] video will be aligned to ", ExtensionConf.miscFullscreenSettings.videoFloat);
|
||||
|
||||
var offsets = {
|
||||
width: vidDim.width,
|
||||
height: vidDim.height,
|
||||
left: 0,
|
||||
top: ((playerDim.height - vidDim.height) / 2)
|
||||
setStretchMode(stretchMode){
|
||||
this.stretch.mode = stretchMode;
|
||||
}
|
||||
|
||||
if( ExtensionConf.miscFullscreenSettings.videoFloat == "center" ){
|
||||
offsets.left = (playerDim.width - vidDim.width ) / 2;
|
||||
|
||||
setPan(relativeMousePosX, relativeMousePosY){
|
||||
// relativeMousePos[X|Y] - on scale from 0 to 1, how close is the mouse to player edges.
|
||||
// use these values: top, left: 0, bottom, right: 1
|
||||
if(! this.pan){
|
||||
this.pan = {};
|
||||
}
|
||||
|
||||
this.pan.relativeOffsetX = relativeMousePosX*2.5 - 1.25;
|
||||
this.pan.relativeOffsetY = relativeMousePosY*2.5 - 1.25;
|
||||
}
|
||||
|
||||
startCssWatcher(){
|
||||
this.cssWatcherTimeout = setInterval(this.cssWatcher, 200);
|
||||
}
|
||||
|
||||
stopCssWatcher(){
|
||||
clearInterval(this.cssWatcherTimeout);
|
||||
}
|
||||
|
||||
restore(){
|
||||
if(Debug.debug){
|
||||
console.log("[Resizer::restore] attempting to restore aspect ratio. this & settings:", {'this': this, "settings": Settings} );
|
||||
}
|
||||
|
||||
// this is true until we verify that css has actually been applied
|
||||
this.restore_wd = true;
|
||||
|
||||
if(this.lastAr.type === 'original'){
|
||||
this.setAr('reset');
|
||||
}
|
||||
else {
|
||||
this.setAr(this.lastAr.ar, this.lastAr)
|
||||
}
|
||||
}
|
||||
else if( ExtensionConf.miscFullscreenSettings.videoFloat == "right" ){
|
||||
offsets.left = (playerDim.width - vidDim.width);
|
||||
|
||||
reset(){
|
||||
this.setStretchMode(StretchMode.NO_STRETCH);
|
||||
this.zoom.setZoom(1);
|
||||
this.resetPan();
|
||||
this.setAr('reset');
|
||||
}
|
||||
|
||||
resetPan(){
|
||||
this.pan = undefined;
|
||||
}
|
||||
|
||||
resetZoom(){
|
||||
this.zoom.setZoom(1);
|
||||
this.restore();
|
||||
}
|
||||
|
||||
resetCrop(){
|
||||
this.setAr('reset');
|
||||
}
|
||||
|
||||
resetStretch(){
|
||||
this.stretch.mode = StretchMode.NO_STRETCH;
|
||||
this.restore();
|
||||
}
|
||||
|
||||
|
||||
// mostly internal stuff
|
||||
|
||||
computeOffsets(videoDimensions){
|
||||
|
||||
if(Debug.debug)
|
||||
console.log("[Resizer::_res_computeOffsets] video will be aligned to ", ExtensionConf.miscFullscreenSettings.videoFloat);
|
||||
|
||||
var offsets = {
|
||||
width: videoDimensions.width,
|
||||
height: videoDimensions.height,
|
||||
left: 0,
|
||||
top: ((this.conf.player.dimensions.height - videoDimensions.height) / 2)
|
||||
}
|
||||
|
||||
if(this.pan){
|
||||
var defaultOffset = (this.conf.player.dimensions.height - videoDimensions.height) / 2;
|
||||
offsets.top = defaultOffset + (defualtOffset * this.pan.relativeOffsetY);
|
||||
|
||||
defaultOffset = (this.conf.player.dimensions.height - videoDimensions.width ) / 2;
|
||||
offsets.left = defaultOffset + (defaultOffset * this.pan.relativeOffsetX);
|
||||
} else {
|
||||
if( ExtensionConf.miscFullscreenSettings.videoFloat == "center" ){
|
||||
offsets.left = (this.conf.player.dimensions.height - videoDimensions.width ) / 2;
|
||||
|
||||
}
|
||||
else if( ExtensionConf.miscFullscreenSettings.videoFloat == "right" ){
|
||||
offsets.left = (this.conf.player.dimensions.height - videoDimensions.width);
|
||||
}
|
||||
}
|
||||
|
||||
this.correctedVideoDimensions.width = parseInt(offsets.width);
|
||||
this.correctedVideoDimensions.height= parseInt(offsets.height);
|
||||
this.correctedVideoDimensions.left = parseInt(offsets.left);
|
||||
this.correctedVideoDimensions.top = parseInt(offsets.top);
|
||||
|
||||
return offsets;
|
||||
}
|
||||
|
||||
GlobalVars.correctedVideoDimensions.width = parseInt(offsets.width);
|
||||
GlobalVars.correctedVideoDimensions.height= parseInt(offsets.height);
|
||||
GlobalVars.correctedVideoDimensions.left = parseInt(offsets.left);
|
||||
GlobalVars.correctedVideoDimensions.top = parseInt(offsets.top);
|
||||
|
||||
return offsets;
|
||||
}
|
||||
applyCss(dimensions, stretchFactors){
|
||||
|
||||
var _res_align = function(float){
|
||||
if(! float)
|
||||
float = ExtensionConf.miscFullscreenSettings.videoFloat;
|
||||
|
||||
var dimensions = {left: 0};
|
||||
|
||||
if(float == "left"){
|
||||
_res_applyCss(dimensions);
|
||||
return;
|
||||
}
|
||||
if(float == "center"){
|
||||
// dimensions.left =
|
||||
// _res_applyCss(
|
||||
}
|
||||
}
|
||||
|
||||
var _res_setStyleString_maxRetries = 3;
|
||||
|
||||
var _res_setStyleString = function(vid, styleString, count){
|
||||
vid.setAttribute("style", styleString);
|
||||
|
||||
if(_res_restore_wd){
|
||||
var vid2 = GlobalVars.video;
|
||||
|
||||
if(vid2 == undefined || vid2 == null){
|
||||
if(this.video == undefined || this.video == null){
|
||||
if(Debug.debug)
|
||||
console.log("[Resizer::_res_setStyleString] Video element went missing, nothing to do here.")
|
||||
console.log("[Resizer::_res_applyCss] Video went missing, doing nothing.");
|
||||
return;
|
||||
}
|
||||
|
||||
if(
|
||||
styleString.indexOf("width: " + vid2.style.width) == -1 ||
|
||||
styleString.indexOf("height: " + vid2.style.height) == -1) {
|
||||
// css ni nastavljen?
|
||||
// css not set?
|
||||
if(Debug.debug)
|
||||
console.log("[Resizer::_res_setStyleString] Style string not set ???");
|
||||
if(Debug.debug)
|
||||
console.log("[Resizer::_res_applyCss] Starting to apply css. this is what we're getting in:", dimensions);
|
||||
|
||||
if(dimensions.top !== undefined)
|
||||
dimensions.top = "top: " + Math.round(dimensions.top) + "px !important";
|
||||
|
||||
if(dimensions.left !== undefined)
|
||||
dimensions.left = "left: " + Math.round(dimensions.left) + "px !important";
|
||||
|
||||
if(dimensions.width !== undefined)
|
||||
dimensions.width = "width: " + Math.round(dimensions.width) + "px !important";
|
||||
|
||||
if(dimensions.height !== undefined)
|
||||
dimensions.height = "height: " + Math.round(dimensions.height) + "px !important";
|
||||
|
||||
// misc.
|
||||
dimensions.position = "position: absolute !important";
|
||||
dimensions.margin = "margin: 0px !important";
|
||||
|
||||
|
||||
// save values for left and top to
|
||||
this.currentCss.top = dimensions.top;
|
||||
this.currentCss.left = dimensions.left;
|
||||
|
||||
|
||||
if(Debug.debug)
|
||||
console.log("[Resizer::_res_applyCss] trying to apply css. Css strings: ", dimensions, "video tag: ", this.video);
|
||||
|
||||
var styleArrayStr = this.video.getAttribute('style');
|
||||
|
||||
if (styleArrayStr !== null && styleArrayStr !== undefined){
|
||||
|
||||
if(count++ < _res_setStyleString_maxRetries){
|
||||
setTimeout( _res_setStyleString, 200, count);
|
||||
}
|
||||
else if(Debug.debug){
|
||||
console.log("[Resizer::_res_setStyleString] we give up. css string won't be set");
|
||||
var styleArray = styleArrayStr.split(";");
|
||||
for(var i in styleArray){
|
||||
|
||||
styleArray[i] = styleArray[i].trim();
|
||||
|
||||
if (styleArray[i].startsWith("top:")){
|
||||
styleArray[i] = dimensions.top;
|
||||
delete dimensions.top;
|
||||
}
|
||||
else if(styleArray[i].startsWith("left:")){
|
||||
styleArray[i] = dimensions.left;
|
||||
delete dimensions.left;
|
||||
}
|
||||
else if(styleArray[i].startsWith("width:")){
|
||||
styleArray[i] = dimensions.width;
|
||||
delete dimensions.width;
|
||||
}
|
||||
else if(styleArray[i].startsWith("height:")){
|
||||
styleArray[i] = dimensions.height;
|
||||
delete dimensions.height;
|
||||
}
|
||||
else if(styleArray[i].startsWith("position:")){
|
||||
styleArray[i] = dimensions.position;
|
||||
delete dimensions.position;
|
||||
}
|
||||
else if(styleArray[i].startsWith("margin:")){
|
||||
styleArray[i] = dimensions.margin;
|
||||
delete dimensions.margin;
|
||||
}
|
||||
else if(styleArray[i].startsWith("transform:")){
|
||||
if(stretchFactors){
|
||||
styleArray[i] = `scale(${stretchFactors.x}, ${stretchFactors.y}`;
|
||||
stretchFactors = undefined;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else{
|
||||
_res_restore_wd = false;
|
||||
var styleArray = [];
|
||||
}
|
||||
}
|
||||
else{
|
||||
if(Debug.debug)
|
||||
console.log("[Resizer::_res_setStyleString] css applied. Style string:", styleString);
|
||||
}
|
||||
}
|
||||
|
||||
function _res_applyCss(dimensions){
|
||||
|
||||
if(GlobalVars.video == undefined || GlobalVars.video == null){
|
||||
if(Debug.debug)
|
||||
console.log("[Resizer::_res_applyCss] Video went missing, doing nothing.");
|
||||
return;
|
||||
}
|
||||
|
||||
if(Debug.debug)
|
||||
console.log("[Resizer::_res_applyCss] Starting to apply css. this is what we're getting in:", dimensions);
|
||||
|
||||
if(dimensions.top !== undefined)
|
||||
dimensions.top = "top: " + Math.round(dimensions.top) + "px !important";
|
||||
|
||||
if(dimensions.left !== undefined)
|
||||
dimensions.left = "left: " + Math.round(dimensions.left) + "px !important";
|
||||
|
||||
if(dimensions.width !== undefined)
|
||||
dimensions.width = "width: " + Math.round(dimensions.width) + "px !important";
|
||||
|
||||
if(dimensions.height !== undefined)
|
||||
dimensions.height = "height: " + Math.round(dimensions.height) + "px !important";
|
||||
|
||||
// misc.
|
||||
dimensions.position = "position: absolute !important";
|
||||
dimensions.margin = "margin: 0px !important";
|
||||
|
||||
// save values for left and top to GlobalVars
|
||||
GlobalVars.currentCss.top = dimensions.top;
|
||||
GlobalVars.currentCss.left = dimensions.left;
|
||||
|
||||
var vid = GlobalVars.video;
|
||||
|
||||
if(Debug.debug)
|
||||
console.log("[Resizer::_res_applyCss] trying to apply css. Css strings: ", dimensions, "video tag: ", vid);
|
||||
|
||||
var styleArrayStr = vid.getAttribute('style');
|
||||
|
||||
if (styleArrayStr !== null && styleArrayStr !== undefined){
|
||||
|
||||
var styleArray = styleArrayStr.split(";");
|
||||
for(var i in styleArray){
|
||||
|
||||
styleArray[i] = styleArray[i].trim();
|
||||
|
||||
if (styleArray[i].startsWith("top:")){
|
||||
styleArray[i] = dimensions.top;
|
||||
delete dimensions.top;
|
||||
}
|
||||
else if(styleArray[i].startsWith("left:")){
|
||||
styleArray[i] = dimensions.left;
|
||||
delete dimensions.left;
|
||||
}
|
||||
else if(styleArray[i].startsWith("width:")){
|
||||
styleArray[i] = dimensions.width;
|
||||
delete dimensions.width;
|
||||
}
|
||||
else if(styleArray[i].startsWith("height:")){
|
||||
styleArray[i] = dimensions.height;
|
||||
delete dimensions.height;
|
||||
}
|
||||
else if(styleArray[i].startsWith("position:")){
|
||||
styleArray[i] = dimensions.position;
|
||||
delete dimensions.position;
|
||||
}
|
||||
else if(styleArray[i].startsWith("margin:")){
|
||||
styleArray[i] = dimensions.margin;
|
||||
delete dimensions.margin;
|
||||
}
|
||||
// add remaining elements
|
||||
for(var key in dimensions)
|
||||
styleArray.push( dimensions[key] );
|
||||
|
||||
if(stretchFactors){
|
||||
styleArray.push(`scale(${stretchFactors.x}, ${stretchFactors.y}`);
|
||||
}
|
||||
}
|
||||
else{
|
||||
var styleArray = [];
|
||||
}
|
||||
|
||||
// add remaining elements
|
||||
for(var key in dimensions)
|
||||
styleArray.push( dimensions[key] );
|
||||
|
||||
|
||||
|
||||
// build style string back
|
||||
var styleString = "";
|
||||
for(var i in styleArray)
|
||||
if(styleArray[i] !== undefined && styleArray[i] !== "")
|
||||
styleString += styleArray[i] + "; ";
|
||||
|
||||
_res_setStyleString(vid, styleString);
|
||||
}
|
||||
|
||||
var _res_antiCssOverride = function(){
|
||||
|
||||
// this means we haven't set our CSS yet, or that we changed video.
|
||||
if(GlobalVars.currentCss.top === null)
|
||||
return;
|
||||
|
||||
// this means video went missing.
|
||||
if(GlobalVars.video == undefined || GlobalVars.video == null)
|
||||
return;
|
||||
|
||||
// // our current css is fucky? Null, undefined and 0 are invalid values.
|
||||
// if(! GlobalVars.currentCss.width || ! GlobalVars.currentCss.height )
|
||||
// return;
|
||||
|
||||
var styleArrayStr = GlobalVars.video.getAttribute('style');
|
||||
|
||||
if (styleArrayStr !== null && styleArrayStr !== undefined){
|
||||
var styleArray = styleArrayStr.split(";");
|
||||
|
||||
var stuffChecked = 0;
|
||||
var stuffToCheck = 2;
|
||||
// build style string back
|
||||
var styleString = "";
|
||||
for(var i in styleArray)
|
||||
if(styleArray[i] !== undefined && styleArray[i] !== "")
|
||||
styleString += styleArray[i] + "; ";
|
||||
|
||||
for(var i in styleArray){
|
||||
styleArray[i] = styleArray[i].trim();
|
||||
|
||||
if (styleArray[i].startsWith("top:")){
|
||||
// don't force css restore if currentCss.top is not defined
|
||||
if(GlobalVars.currentCss.top && styleArray[i] != GlobalVars.currentCss.top){
|
||||
if(Debug.debug){
|
||||
console.log("[Resizer::_res_antiCssOverride] SOMEBODY TOUCHED MA SPAGHETT (our CSS got overriden, restoring our css)");
|
||||
console.log("[Resizer::_res_antiCssOverride] MA SPAGHETT: top:", GlobalVars.currentCss.top, "left:", GlobalVars.currentCss.left, "thing that touched ma spaghett", styleArrayStr);
|
||||
}
|
||||
_res_restore();
|
||||
return;
|
||||
}
|
||||
stuffChecked++;
|
||||
}
|
||||
else if(styleArray[i].startsWith("left:")){
|
||||
// don't force css restore if currentCss.left is not defined
|
||||
if(GlobalVars.currentCss.left && styleArray[i] != GlobalVars.currentCss.left){
|
||||
if(Debug.debug){
|
||||
console.log("[Resizer::_res_antiCssOverride] SOMEBODY TOUCHED MA SPAGHETT (our CSS got overriden, restoring our css)");
|
||||
console.log("[Resizer::_res_antiCssOverride] MA SPAGHETT: width:", GlobalVars.currentCss.width, "height:", GlobalVars.currentCss.height, "thing that touched ma spaghett", styleArrayStr);
|
||||
}
|
||||
_res_restore();
|
||||
return;
|
||||
}
|
||||
stuffChecked++;
|
||||
}
|
||||
|
||||
if(stuffChecked == stuffToCheck){
|
||||
// if(Debug.debug){
|
||||
// console.log("[Resizer::_res_antiCssOverride] My spaghett rests untouched. (nobody overrode our CSS, doing nothing)");
|
||||
// }
|
||||
this.setStyleString(styleString);
|
||||
}
|
||||
|
||||
setStyleString (styleString, count = 0) {
|
||||
vid.setAttribute("style", styleString);
|
||||
|
||||
if(this.restore_wd){
|
||||
|
||||
if(this.video == undefined || this.video == null){
|
||||
if(Debug.debug)
|
||||
console.log("[Resizer::_res_setStyleString] Video element went missing, nothing to do here.")
|
||||
return;
|
||||
}
|
||||
|
||||
if(
|
||||
styleString.indexOf("width: " + this.video.style.width) == -1 ||
|
||||
styleString.indexOf("height: " + this.video.style.height) == -1) {
|
||||
// css ni nastavljen?
|
||||
// css not set?
|
||||
if(Debug.debug)
|
||||
console.log("[Resizer::_res_setStyleString] Style string not set ???");
|
||||
|
||||
if(count < ExtensionConf.resizer.setStyleString.maxRetries){
|
||||
setTimeout( this.setStyleString, ExtensionConf.resizer.setStyleString.retryTimeout, count + 1);
|
||||
}
|
||||
else if(Debug.debug){
|
||||
console.log("[Resizer::_res_setStyleString] we give up. css string won't be set");
|
||||
}
|
||||
}
|
||||
else{
|
||||
this.restore_wd = false;
|
||||
}
|
||||
}
|
||||
else{
|
||||
if(Debug.debug)
|
||||
console.log("[Resizer::_res_setStyleString] css applied. Style string:", styleString);
|
||||
}
|
||||
}
|
||||
|
||||
cssWatcher(){
|
||||
|
||||
// this means we haven't set our CSS yet, or that we changed video.
|
||||
if(! this.currentCss.top)
|
||||
return;
|
||||
|
||||
// this means video went missing.
|
||||
if(! this.video)
|
||||
return;
|
||||
|
||||
// // our current css is fucky? Null, undefined and 0 are invalid values.
|
||||
// if(! GlobalVars.currentCss.width || ! GlobalVars.currentCss.height )
|
||||
// return;
|
||||
|
||||
var styleArrayStr = this.video.getAttribute('style');
|
||||
|
||||
if (styleArrayStr){
|
||||
var styleArray = styleArrayStr.split(";");
|
||||
|
||||
var stuffChecked = 0;
|
||||
var stuffToCheck = 2;
|
||||
|
||||
for(var i in styleArray){
|
||||
styleArray[i] = styleArray[i].trim();
|
||||
|
||||
if (styleArray[i].startsWith("top:")){
|
||||
// don't force css restore if currentCss.top is not defined
|
||||
if(this.currentCss.top && styleArray[i] != this.currentCss.top){
|
||||
if(Debug.debug){
|
||||
console.log("[Resizer::_res_antiCssOverride] SOMEBODY TOUCHED MA SPAGHETT (our CSS got overriden, restoring our css)");
|
||||
console.log("[Resizer::_res_antiCssOverride] MA SPAGHETT: top:", this.currentCss.top, "left:", this.currentCss.left, "thing that touched ma spaghett", styleArrayStr);
|
||||
}
|
||||
_res_restore();
|
||||
return;
|
||||
}
|
||||
stuffChecked++;
|
||||
}
|
||||
else if(styleArray[i].startsWith("left:")){
|
||||
// don't force css restore if currentCss.left is not defined
|
||||
if(this.currentCss.left && styleArray[i] != this.currentCss.left){
|
||||
if(Debug.debug){
|
||||
console.log("[Resizer::_res_antiCssOverride] SOMEBODY TOUCHED MA SPAGHETT (our CSS got overriden, restoring our css)");
|
||||
console.log("[Resizer::_res_antiCssOverride] MA SPAGHETT: width:", this.currentCss.width, "height:", this.currentCss.height, "thing that touched ma spaghett", styleArrayStr);
|
||||
}
|
||||
_res_restore();
|
||||
return;
|
||||
}
|
||||
stuffChecked++;
|
||||
}
|
||||
|
||||
if(stuffChecked == stuffToCheck){
|
||||
// if(Debug.debug){
|
||||
// console.log("[Resizer::_res_antiCssOverride] My spaghett rests untouched. (nobody overrode our CSS, doing nothing)");
|
||||
// }
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var _res_restore = function(){
|
||||
if(! GlobalVars.video)
|
||||
return false;
|
||||
|
||||
if(Debug.debug){
|
||||
console.log("[Resizer::_res_restore] attempting to restore aspect ratio. this & settings:", {'this': this, "settings": Settings} );
|
||||
}
|
||||
|
||||
// this is true until we verify that css has actually been applied
|
||||
_res_restore_wd = true;
|
||||
|
||||
if(GlobalVars.lastAr.type == "legacy"){
|
||||
_res_legacyAr(GlobalVars.lastAr.action);
|
||||
}
|
||||
else if(GlobalVars.lastAr.type == "static"){
|
||||
_res_setAr(GlobalVars.lastAr.ar);
|
||||
}
|
||||
else if(GlobalVars.lastAr.type == "original"){
|
||||
_res_legacyAr("reset");
|
||||
}
|
||||
else if(GlobalVars.lastAr.type == "auto"){
|
||||
// do same as static, except keep lastAr to 'auto'. If we're here, this means video probably changed
|
||||
// and there's something broken that prevents AR from working properly
|
||||
var storeLastAr = {type: GlobalVars.lastAr.type, ar: GlobalVars.lastAr.ar};
|
||||
_res_setAr(GlobalVars.lastAr.ar);
|
||||
GlobalVars.lastAr = storeLastAr;
|
||||
// ArDetect.init();
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
var _res_reset = function(){
|
||||
_res_legacyAr("reset");
|
||||
}
|
||||
|
||||
var Resizer = {
|
||||
_currentAr: -1,
|
||||
align: _res_align,
|
||||
setAr: _res_setAr,
|
||||
legacyAr: _res_legacyAr,
|
||||
reset: _res_reset,
|
||||
restore: _res_restore,
|
||||
antiCssOverride: _res_antiCssOverride
|
||||
}
|
||||
|
@ -39,15 +39,15 @@ class Scaler {
|
||||
|
||||
var fileAr = video.videoWidth / video.videoHeight;
|
||||
|
||||
if (action == "fitw"){
|
||||
if (mode == "fitw"){
|
||||
return ar > fileAr ? ar : fileAr;
|
||||
}
|
||||
else if(action == "fith"){
|
||||
else if(mode == "fith"){
|
||||
return ar < fileAr ? ar : fileAr;
|
||||
}
|
||||
else if(action == "reset"){
|
||||
else if(mode == "reset"){
|
||||
if(Debug.debug){
|
||||
console.log("[Resizer.js::_res_legacyAr] Resetting aspect ratio to", fileAr)
|
||||
console.log("[Scaler.js::modeToAr] Using original aspect ratio -", fileAr)
|
||||
}
|
||||
|
||||
return fileAr;
|
||||
|
@ -29,7 +29,7 @@
|
||||
"js/lib/EdgeDetect.js",
|
||||
"js/lib/GuardLine.js",
|
||||
|
||||
"js/lib/PlayerDetect.js",
|
||||
|
||||
|
||||
"js/modules/PageInfo.js",
|
||||
"js/modules/DebugCanvas.js",
|
||||
@ -38,7 +38,8 @@
|
||||
"js/modules/Scaler.js",
|
||||
"js/modules/Stretcher.js",
|
||||
|
||||
"js/modules/Resizer.js",
|
||||
"js/modules/Resizer.js",
|
||||
"js/lib/PlayerData.js",
|
||||
"js/lib/VideoData.js",
|
||||
|
||||
"js/conf/Keybinds.js",
|
||||
|
Loading…
Reference in New Issue
Block a user