Skip to content

Commit

Permalink
Updated archives
Browse files Browse the repository at this point in the history
  • Loading branch information
williammalone committed Dec 19, 2014
1 parent 67ec480 commit d6fba48
Show file tree
Hide file tree
Showing 1,438 changed files with 7,083 additions and 277,521 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ module.exports = function(grunt) {
files: [
{
expand: true,
cwd: '',
cwd: 'src',
src: '**',
dest: 'archive/<%= pkg.version %>/',
filter: 'isFile'
Expand Down
File renamed without changes.
File renamed without changes.
214 changes: 214 additions & 0 deletions archive/0.5.10.1/js/block.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,214 @@
/*
Copyright (c) 2013 William Malone (www.williammalone.com)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

/*global window */

var BLOCKS;

if (BLOCKS === undefined) {
BLOCKS = {};
}

BLOCKS.block = function (options) {

"use strict";

var block = BLOCKS.eventDispatcher(),

// Private Properties
slicesArr = [],
slicesObj = {},
curSlice,
motors = [],
// The order of properties matters in cases of dependencies
properties = ["stack", "worldX", "worldY", "x", "y", "scale", "width", "height", "centerRegistrationPoint", "mirrorX", "mirrorY", "angle", "alpha", "layer", "visible", "dirty", "justTapped", "justNotTapped", "dragging", "justReleased", "tapPos", "cropWidth", "cropHeight", "frameOffsetX", "frameOffsetY", "offsetX", "offsetY", "minHotspot", "hotspots", "currentFrameIndex"],
methods = ["update", "render", "show", "hide", "pause", "unpause", "reset", "stop", "play", "isPointInside", "getBounds", "getBoundingBox", "isRectInside", "gotoLastFrame", "gotoFrame"],

motorDestroyed = function (motor) {

var i;

motor.removeEventListener("destroyed", motorDestroyed);

for (i = 0 ; i < motors.length; i += 1) {
motors.splice(i, 1);
break;
}
};

options = options || {};

// Block Specific Public Properties
block.name = options.name;

// BLock Specific Public Methods
block.addSlice = function (spec) {

var i, slice;

slice = BLOCKS.slice(spec);

if (!spec.name) {
slice.name = "unnamedSlice" + slicesArr.length;
}

slicesArr.push(slice);
slicesObj[spec.name] = slice;

slice.addEventListener("complete", function () {
block.dispatchEvent("complete");
});

// If first slice then set the block to this slice
if (slicesArr.length === 1) {
// Assign the properties of the spec to the new slice
for (i = 0; i < properties.length; i += 1) {
if (options[properties[i]] !== undefined) {
slice[properties[i]] = options[properties[i]];
}
}
block.setSlice(spec.name);
}

return slice;
};

block.getSlice = function (name) {

if (name === undefined) {
return curSlice;
} else {
return slicesObj[name];
}
};

block.setSlice = function (name, callback) {

var i, newSlice;

newSlice = slicesObj[name];

if (newSlice && newSlice !== curSlice) {

// If there is a current slice
if (curSlice) {
// Assign the properties of the current slice to the new slice
for (i = 0; i < properties.length; i += 1) {
if (properties[i] !== "width" && properties[i] !== "height" && properties[i] !== "offsetX" && properties[i] !== "offsetY") {
newSlice[properties[i]] = curSlice[properties[i]];
}
}
}
// Make the new slice the block's current slice
curSlice = newSlice;

// If the current slice is an animation then reset and autoplay it
curSlice.reset();
if (curSlice.autoPlay) {
curSlice.play(callback);
}

curSlice.dirty = true;

return true;
} else {
// If slice does not exist or it is already set then do nothing
return false;
}
};

block.motorize = function (motor) {

motor.addEventListener("destroyed", motorDestroyed);
motors.push(motor);
};

block.removeMotors = function (type) {

var i, motorArr = [];

for (i = 0 ; i < motors.length; i += 1) {
if (type) {
if (motors[i].type === type) {
motors[i].destroy();
} else {
motorArr.push(motors[i]);
}
} else {
motors[i].destroy();
}
}
motors = motorArr;
};

block.destroy = function () {

var i;

if (block) {
block.removeMotors();

for (i = 0; i < slicesArr.length; i += 1) {
slicesArr[i].destroy();
}
slicesArr = null;
slicesObj = null;
curSlice = null;

block.dispatchEvent("destroyed", block);
block = null;
}
};

(function () {
var i,

createPublicProperty = function (propertyName) {

Object.defineProperty(block, propertyName, {
get: function () {
if (curSlice) {
return curSlice[propertyName];
}
},
set: function (value) {
if (curSlice) {
curSlice[propertyName] = value;
}
}
});
},

createPublicMethod = function (methodName) {

block[methodName] = function (parameter) {

return curSlice[methodName](parameter);
};
};

for (i = 0; i < properties.length; i += 1) {
createPublicProperty(properties[i]);
}

for (i = 0; i < methods.length; i += 1) {
createPublicMethod(methods[i]);
}

// If slices defined in the options
if (options.slices) {
for (i = 0; i < options.slices.length; i += 1) {
block.addSlice(options.slices[i]);
}
}
}());

return block;
};
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit d6fba48

Please sign in to comment.