From 390348202efc6ab6344bdcbb7ae22ec08432a040 Mon Sep 17 00:00:00 2001 From: Tamius Han Date: Sun, 6 May 2018 21:32:18 +0200 Subject: [PATCH] Moved functions that calculate video crop from Resizer.js to Scaler.js. Resizer.js is not fixed to account for this yet. --- js/modules/Resizer.js | 88 ++++++++++++------------ js/modules/Scaler.js | 148 ++++++++++++++++++++++++++++++++++++++++ js/modules/Stretcher.js | 15 ++++ js/modules/Zoom.js | 12 ++++ 4 files changed, 219 insertions(+), 44 deletions(-) create mode 100644 js/modules/Scaler.js create mode 100644 js/modules/Stretcher.js create mode 100644 js/modules/Zoom.js diff --git a/js/modules/Resizer.js b/js/modules/Resizer.js index 95e7b59..b2ba207 100644 --- a/js/modules/Resizer.js +++ b/js/modules/Resizer.js @@ -44,58 +44,58 @@ var _res_char = function(newAr, video, player){ _res_setVideoAr(new_ar, video, player); } -// Skrbi za "stare" možnosti, kot na primer "na širino zaslona", "na višino zaslona" in "ponastavi". -// Približevanje opuščeno. -// handles "legacy" options, such as 'fit to widht', 'fit to height' and 'reset'. No zoom tho -var _res_legacyAr = function(action){ - var vid = GlobalVars.video; - var ar; +// // Skrbi za "stare" možnosti, kot na primer "na širino zaslona", "na višino zaslona" in "ponastavi". +// // Približevanje opuščeno. +// // handles "legacy" options, such as 'fit to widht', 'fit to height' and 'reset'. No zoom tho +// var _res_legacyAr = function(action){ +// var vid = GlobalVars.video; +// var ar; - if (!vid) { - if(Debug.debug){ - console.log("[Resizer.js::_res_legacyAr] No video??",vid) - } +// if (!vid) { +// if(Debug.debug){ +// console.log("[Resizer.js::_res_legacyAr] No video??",vid) +// } - return; - } +// return; +// } - if(! GlobalVars.playerDimensions ){ - ar = screen.width / screen.height; - } - else{ - ar = GlobalVars.playerDimensions.width / GlobalVars.playerDimensions.height; - } +// if(! GlobalVars.playerDimensions ){ +// ar = screen.width / screen.height; +// } +// else{ +// ar = GlobalVars.playerDimensions.width / GlobalVars.playerDimensions.height; +// } - // POMEMBNO: GlobalVars.lastAr je potrebno nastaviti šele po tem, ko kličemo _res_setAr(). _res_setAr() predvideva, - // da želimo nastaviti statično (type: 'static') razmerje stranic — tudi, če funkcijo kličemo tu oz. v ArDetect. - // - // IMPORTANT NOTE: GlobalVars.lastAr needs to be set after _res_setAr() is called, as _res_setAr() assumes we're - // setting a static aspect ratio (even if the function is called from here or ArDetect). +// // POMEMBNO: GlobalVars.lastAr je potrebno nastaviti šele po tem, ko kličemo _res_setAr(). _res_setAr() predvideva, +// // da želimo nastaviti statično (type: 'static') razmerje stranic — tudi, če funkcijo kličemo tu oz. v ArDetect. +// // +// // IMPORTANT NOTE: GlobalVars.lastAr needs to be set after _res_setAr() is called, as _res_setAr() assumes we're +// // setting a static aspect ratio (even if the function is called from here or ArDetect). - var fileAr = vid.videoWidth / vid.videoHeight; +// var fileAr = vid.videoWidth / vid.videoHeight; - if (action == "fitw"){ - _res_setAr( ar > fileAr ? ar : fileAr); - } - else if(action == "fith"){ - _res_setAr( ar < fileAr ? ar : fileAr); - } - else if(action == "reset"){ - if(Debug.debug){ - console.log("[Resizer.js::_res_legacyAr] Resetting aspect ratio to", fileAr) - } +// if (action == "fitw"){ +// _res_setAr( ar > fileAr ? ar : fileAr); +// } +// else if(action == "fith"){ +// _res_setAr( ar < fileAr ? ar : fileAr); +// } +// else if(action == "reset"){ +// if(Debug.debug){ +// console.log("[Resizer.js::_res_legacyAr] Resetting aspect ratio to", fileAr) +// } - _res_setAr(fileAr); - GlobalVars.lastAr = {type: "original"}; - return; - } - else if(action == "autoar" || action == "auto"){ - GlobalVars.lastAr = {type: "auto", ar: null}; - ArDetect.init(); - } +// _res_setAr(fileAr); +// GlobalVars.lastAr = {type: "original"}; +// return; +// } +// else if(action == "autoar" || action == "auto"){ +// GlobalVars.lastAr = {type: "auto", ar: null}; +// ArDetect.init(); +// } - GlobalVars.lastAr = {type: "legacy", action: action}; -} +// GlobalVars.lastAr = {type: "legacy", action: action}; +// } var _res_setAr = function(ar){ if(Debug.debug) diff --git a/js/modules/Scaler.js b/js/modules/Scaler.js new file mode 100644 index 0000000..ec608e1 --- /dev/null +++ b/js/modules/Scaler.js @@ -0,0 +1,148 @@ +// računa velikost videa za približevanje/oddaljevanje +// does video size calculations for zooming/cropping + + +class Scaler { + // internal variables + + // functions + constructor() { + } + + static modeToAr(mode, video, playerDimensions){ + // Skrbi za "stare" možnosti, kot na primer "na širino zaslona", "na višino zaslona" in "ponastavi". + // Približevanje opuščeno. + // handles "legacy" options, such as 'fit to widht', 'fit to height' and 'reset'. No zoom tho + var ar; + + if (!video) { + if(Debug.debug){ + console.log("[Scaler.js::modeToAr] No video??",video) + } + + return null; + } + + + if(! playerDimensions ){ + ar = screen.width / screen.height; + } + else { + ar = playerDimensions.width / playerDimensions.height; + } + + // POMEMBNO: GlobalVars.lastAr je potrebno nastaviti šele po tem, ko kličemo _res_setAr(). _res_setAr() predvideva, + // da želimo nastaviti statično (type: 'static') razmerje stranic — tudi, če funkcijo kličemo tu oz. v ArDetect. + // + // IMPORTANT NOTE: GlobalVars.lastAr needs to be set after _res_setAr() is called, as _res_setAr() assumes we're + // setting a static aspect ratio (even if the function is called from here or ArDetect). + + var fileAr = video.videoWidth / video.videoHeight; + + if (action == "fitw"){ + return ar > fileAr ? ar : fileAr; + } + else if(action == "fith"){ + return ar < fileAr ? ar : fileAr; + } + else if(action == "reset"){ + if(Debug.debug){ + console.log("[Resizer.js::_res_legacyAr] Resetting aspect ratio to", fileAr) + } + + return fileAr; + } + + return null; + } + + static calculateCrop(mode, video, playerDimensions) { + // if 'ar' is string, we'll handle that in legacy wrapper + var ar = 0; + if(isNaN(mode)){ + ar = this.modeToAr(ar); + } else { + ar = mode; + } + + // handle fuckie-wuckies + if (! ar){ + return null; + } + + if(Debug.debug) + console.log("[Scaler::calculateCrop] trying to set ar. args are: ar->",ar,"; playerDimensions->",playerDimensions.width, "×", playerDimensions.height, "| obj:", GlobalVars.playerDimensions); + + if(!video || video.videoWidth == 0 || video.videoHeight == 0){ + if(Debug.debug) + console.log("[Scaler::calculateCrop] ERROR — no video detected.") + return {error: "no_video"}; + } + + if(! playerDimensions || playerDimensions.width === 0 || playerDimensions.height){ + if(Debug.debug) + console.log("[Scaler::calculateCrop] ERROR — no (or invalid) playerDimensions:",playerDimensions); + return {error: "playerDimensions_error"}; + } + + // zdaj lahko končno začnemo računati novo velikost videa + // we can finally start computing required video dimensions now: + + + // Dejansko razmerje stranic datoteke/