/*
 * AnythingSlider Slide FX 1.1
 * By Rob Garrison (aka Mottie & Fudgey)
 * Dual licensed under the MIT and GPL licenses.
 */
(function($) {
	$.fn.anythingSliderFx = function(options){

		// variable sizes shouldn't matter - it's just to get an idea to get the elements out of view
		var wrap = $(this).closest('.anythingSlider'),
		sliderWidth = wrap.width(),
		sliderHeight = wrap.height(),
		getBaseFx = function(size){
			return {
				// 'name' : [{ inFx: {effects}, { outFx: {effects} }, selector: []]
				'top'    : [{ inFx: { top: 0 }, outFx: { top: '-' + (size || sliderHeight) } }],
				'bottom' : [{ inFx: { bottom: 0 }, outFx: { bottom: (size || sliderHeight) } }],
				'left'   : [{ inFx: { left: 0 }, outFx: { left: '-' + (size || sliderWidth) } }],
				'right'  : [{ inFx: { right: 0 }, outFx: { right: (size || sliderWidth) } }],
				'fade'   : [{ inFx: { opacity: 1, time: 500 }, outFx: { opacity: 0, time: 500 } }],
				'expand' : [{ inFx: { width: '100%', top: '0%', left: '0%' } , outFx: { width: (size || '10%'), top: '50%', left: '50%' } }],
				'listLR' : [{ inFx: { left: 0, opacity: 1 }, outFx: [{ left: (size || sliderWidth), opacity: 0 }, { left: '-' + (size || sliderWidth), opacity: 0 }], selector: [':odd', ':even'] }],
				'listRL' : [{ inFx: { left: 0, opacity: 1 }, outFx: [{ left: (size || sliderWidth), opacity: 0 }, { left: '-' + (size || sliderWidth), opacity: 0 }], selector: [':even', ':odd'] }],

				'caption-Top'    : [{ inFx: { top: 0, opacity: 0.8 }, outFx: { top: ( '-' + size || -50 ), opacity: 0 } }],
				'caption-Right'  : [{ inFx: { right: 0, opacity: 0.8 }, outFx: { right: ( '-' + size || -150 ), opacity: 0 } }],
				'caption-Bottom' : [{ inFx: { bottom: 0, opacity: 0.8 }, outFx: { bottom: ( '-' + size || -50 ), opacity: 0 } }],
				'caption-Left'   : [{ inFx: { left: 0, opacity: 0.8 }, outFx: { left: ( '-' + size || -150 ), opacity: 0 } }]
			};
		};

		return this.each(function(){

			var baseFx = getBaseFx(), // get base FX with standard sizes
			defaults = {
				easing  : 'swing',
				timeIn  : 400,
				timeOut : 350
			};

			// hide caption using setTimeout to ensure slider_complete has fired and activePage class has been added.
			// this hides element if out of the viewport (prevents captions - right & left only - from overlapping current window)
			var hideOffscreen = function(el){
				el.each(function(){
					if (!$(this).closest('.panel').is('.activePage')) { $(this).hide(); }
				});
			};

			// Animate FX
			var animateFx = function(el, opt, isOut){
				if (el.length === 0 || typeof opt == 'undefined') { return; } // no fx
				var o = opt[0] || opt,
					s = o[1] || '',
					// time needs to be a number, not a string
					t = parseInt( ((s === '') ? o.time : o[0].time), 10);
				if (isOut) {
					// don't change caption position from absolute
					if (el.css('position') !== 'absolute') { el.css({ position : 'relative' }); }
					el.stop();
					// multiple selectors for out animation
					if (s !== ''){
						el.filter(opt[1][0]).animate(o[0], { queue : false, duration : t, easing : o[0].easing });
						el.filter(opt[1][1]).animate(s, { queue : false, duration : t, easing : o[0].easing, complete: function(){
							setTimeout(function(){ hideOffscreen(el); }, defaults.timeOut);
						} });
						return;
					}
				}
				// animation for no extra selectors
				if (!isOut) { el.show(); }
				el.animate(o, { queue : false, duration : t, easing : o.easing, complete: function(){
					if (isOut) { setTimeout(function(){ hideOffscreen(el); }, defaults.timeOut); }
				} });
			};

			// Extract FX from options
			var getFx = function(opts, isOut){
				// example: '.textSlide h3' : [ 'top fade', '500', 'easeOutBounce' ],
				var tmp, bfx2,
				ex  = (isOut) ? 'outFx' : 'inFx', // object key
				bfx = {}, // base effects
				time = (isOut) ? defaults.timeOut : defaults.timeIn, // default duration settings
				// split & process multiple built-in effects (e.g. 'top fade')
				fx = $.trim(opts[0].replace(/\s+/g,' ')).split(' ');

				// look for multiple selectors in the Out effects
				if (isOut && fx.length == 1 && baseFx.hasOwnProperty(fx) && typeof (baseFx[fx][0].selector) !== 'undefined') {
					bfx2 = baseFx[fx][0].outFx;
					// add time and easing to first set, the animation will use it for both
					bfx2[0].time = opts[2] || defaults.timeOut;
					bfx2[0].easing = opts[3] || defaults.easing;
					return [bfx2, baseFx[fx][0].selector || [] ];
				}

				// combine base effects
				$.each(fx, function(i,f){
					// check if built-in effect exists
					if (baseFx.hasOwnProperty(f)) {
						// if size option is defined, get new base fx
						tmp = (typeof opts[1] == 'undefined') ? baseFx : getBaseFx(opts[1]);
						$.extend(true, bfx, tmp[f][0][ex]);
						bfx.time = opts[2] || bfx.time || time; // user set time || built-in time || default time set above
						bfx.easing = opts[3] || defaults.easing;
					}
				});
				return [bfx];
			};

			$(this)

			// bind events for "OUT" effects - occur when leaving a page
			.bind('slide_init', function(e, slider){
				var page = slider.$currentPage,
				lastPage = slider.$lastPage;
				if (page.is('.cloned')) {
					// if the resultant page is a clone, then switch animation to the actual page.
					var tar = (slider.currentPage == slider.pages) ? slider.pages : 1;
					page = page.add(lastPage).add( slider.$items.eq(tar) );
				} else {
					page = page.add(lastPage);
				}
				for (var el in options) {
					if (el == 'outFx') {
						// process "out" custom effects
						for (var elOut in options.outFx) {
							if (page.find(elOut)) {
								// animate current/last slide, unless it's a clone, then effect the original
								animateFx( page.find(elOut), options.outFx[elOut], true);
							}
						}
					} else if (el !== 'inFx') {
						// Use built-in effects
						if ($.isArray(options[el])) {
							animateFx( page.find(el), getFx(options[el],true), true);
						}
					}
				}
			})

			// bind events for "IN" effects - occurs on target page
			.bind('slide_complete', function(e, slider){
				var page = slider.$currentPage;
				if (page.is('.cloned')) {
					// if the resultant page is a clone, then switch animation to the actual page.
					var tar = (slider.currentPage == slider.pages) ? slider.pages : 1;
					page = slider.$items.eq(tar);
				}
				for (var el in options) {
					if (el == 'inFx') {
						// process "in" custom effects
						for (var elIn in options.inFx) {
							// animate current page, unless it's a clone, then effect the original
							if (page.find(elIn)) {
								animateFx( page.find(elIn), options.inFx[elIn], false);
							}
						}
						// Use built-in effects
					} else if (el != 'outFx' && $.isArray(options[el])) {
						if (page.find(el)){
							animateFx( page.find(el), getFx(options[el],false), false);
						}
					}
				}

			});

		});
	};
})(jQuery);

