diff --git a/samples/TestJavascript/bindings/jsb_constants.js b/samples/TestJavascript/bindings/jsb_constants.js new file mode 100644 index 0000000000..7aa0419617 --- /dev/null +++ b/samples/TestJavascript/bindings/jsb_constants.js @@ -0,0 +1,9 @@ +// +// Javascript Bindigns helper file +// + +// DO NOT ALTER THE ORDER +require('jsb_constants_cocos2d.js'); +require('jsb_constants_chipmunk.js'); +require('jsb_constants_gl.js'); +require('jsb_constants_cocosbuilder.js'); diff --git a/samples/TestJavascript/bindings/jsb_constants_chipmunk.js b/samples/TestJavascript/bindings/jsb_constants_chipmunk.js new file mode 100644 index 0000000000..724c6afa36 --- /dev/null +++ b/samples/TestJavascript/bindings/jsb_constants_chipmunk.js @@ -0,0 +1,253 @@ +// +// Chipmunk defines +// + +cp.v = cc.p; +cp._v = cc._p; +cp.vzero = cp.v(0,0); + +// Vector: Compatibility with Chipmunk-JS +cp.v.add = cp.vadd; +cp.v.clamp = cp.vclamp; +cp.v.cross = cp.vcross; +cp.v.dist = cp.vdist; +cp.v.distsq = cp.vdistsq; +cp.v.dot = cp.vdot; +cp.v.eql = cp.veql; +cp.v.forangle = cp.vforangle; +cp.v.len = cp.vlength; +cp.v.lengthsq = cp.vlengthsq; +cp.v.lerp = cp.vlerp; +cp.v.lerpconst = cp.vlerpconst; +cp.v.mult = cp.vmult; +cp.v.near = cp.vnear; +cp.v.neg = cp.vneg; +cp.v.normalize = cp.vnormalize; +cp.v.normalize_safe = cp.vnormalize_safe; +cp.v.perp = cp.vperp; +cp.v.project = cp.vproject; +cp.v.rotate = cp.vrotate; +cp.v.rperp = cp.vrperp; +cp.v.slerp = cp.vslerp; +cp.v.slerpconst = cp.vslerpconst; +cp.v.sub = cp.vsub; +cp.v.toangle = cp.vtoangle; +cp.v.unrotate = cp.vunrotate; + + + +/// Initialize an offset box shaped polygon shape. +cp.BoxShape2 = function(body, box) +{ + var verts = [ + box.l, box.b, + box.l, box.t, + box.r, box.t, + box.r, box.b + ]; + + return new cp.PolyShape(body, verts, cp.vzero); +}; + +/// Initialize a box shaped polygon shape. +cp.BoxShape = function(body, width, height) +{ + var hw = width/2; + var hh = height/2; + + return cp.BoxShape2(body, new cp.BB(-hw, -hh, hw, hh)); +}; + + +/// Initialize an static body +cp.BodyStatic = function() +{ + return new cp.Body(Infinity, Infinity); +}; + + +// "Bounding Box" compatibility with Chipmunk-JS +cp.BB = function(l, b, r, t) +{ + return {l:l, b:b, r:r, t:t}; +}; + +// helper function to create a BB +cp.bb = function(l, b, r, t) { + return new cp.BB(l, b, r, t); +}; + + +// +// Some properties +// +// "handle" needed in some cases +Object.defineProperties(cp.Base.prototype, + { + "handle" : { + get : function(){ + return this.getHandle(); + }, + enumerable : true, + configurable : true + } + }); + +// Properties, for Chipmunk-JS compatibility +// Space properties +Object.defineProperties(cp.Space.prototype, + { + "gravity" : { + get : function(){ + return this.getGravity(); + }, + set : function(newValue){ + this.setGravity(newValue); + }, + enumerable : true, + configurable : true + }, + "iterations" : { + get : function(){ + return this.getIterations(); + }, + set : function(newValue){ + this.setIterations(newValue); + }, + enumerable : true, + configurable : true + }, + "damping" : { + get : function(){ + return this.getDamping(); + }, + set : function(newValue){ + this.setDamping(newValue); + }, + enumerable : true, + configurable : true + }, + "staticBody" : { + get : function(){ + return this.getStaticBody(); + }, + enumerable : true, + configurable : true + }, + "idleSpeedThreshold" : { + get : function(){ + return this.getIdleSpeedThreshold(); + }, + set : function(newValue){ + this.setIdleSpeedThreshold(newValue); + }, + enumerable : true, + configurable : true + }, + "sleepTimeThreshold": { + get : function(){ + return this.getSleepTimeThreshold(); + }, + set : function(newValue){ + this.setSleepTimeThreshold(newValue); + }, + enumerable : true, + configurable : true + }, + "collisionSlop": { + get : function(){ + return this.getCollisionSlop(); + }, + set : function(newValue){ + this.setCollisionSlop(newValue); + }, + enumerable : true, + configurable : true + }, + "collisionBias": { + get : function(){ + return this.getCollisionBias(); + }, + set : function(newValue){ + this.setCollisionBias(newValue); + }, + enumerable : true, + configurable : true + }, + "collisionPersistence": { + get : function(){ + return this.getCollisionPersistence(); + }, + set : function(newValue){ + this.setCollisionPersistence(newValue); + }, + enumerable : true, + configurable : true + }, + "enableContactGraph": { + get : function(){ + return this.getEnableContactGraph(); + }, + set : function(newValue){ + this.setEnableContactGraph(newValue); + }, + enumerable : true, + configurable : true + } + }); + +// Body properties +Object.defineProperties(cp.Body.prototype, + { + "a" : { + get : function(){ + return this.getAngle(); + }, + set : function(newValue){ + this.setAngle(newValue); + }, + enumerable : true, + configurable : true + }, + "w" : { + get : function(){ + return this.getAngVel(); + }, + set : function(newValue){ + this.setAngVel(newValue); + }, + enumerable : true, + configurable : true + }, + "p" : { + get : function(){ + return this.getPos(); + }, + set : function(newValue){ + this.setPos(newValue); + }, + enumerable : true, + configurable : true + }, + "v" : { + get : function(){ + return this.getVel(); + }, + set : function(newValue){ + this.setVel(newValue); + }, + enumerable : true, + configurable : true + }, + "i" : { + get : function(){ + return this.getMoment(); + }, + set : function(newValue){ + this.setMoment(newValue); + }, + enumerable : true, + configurable : true + } + + }); diff --git a/samples/TestJavascript/bindings/jsb_constants_cocos2d.js b/samples/TestJavascript/bindings/jsb_constants_cocos2d.js new file mode 100644 index 0000000000..ee39c19d33 --- /dev/null +++ b/samples/TestJavascript/bindings/jsb_constants_cocos2d.js @@ -0,0 +1,339 @@ +// +// cocos2d constants +// +cc.DIRECTOR_PROJECTION_2D = 0; +cc.DIRECTOR_PROJECTION_3D = 1; + +cc.TEXTURE_PIXELFORMAT_RGBA8888 = 0; +cc.TEXTURE_PIXELFORMAT_RGB888 = 1; +cc.TEXTURE_PIXELFORMAT_RGB565 = 2; +cc.TEXTURE_PIXELFORMAT_A8 = 3; +cc.TEXTURE_PIXELFORMAT_I8 = 4; +cc.TEXTURE_PIXELFORMAT_AI88 = 5; +cc.TEXTURE_PIXELFORMAT_RGBA4444 = 6; +cc.TEXTURE_PIXELFORMAT_RGB5A1 = 7; +cc.TEXTURE_PIXELFORMAT_PVRTC4 = 8; +cc.TEXTURE_PIXELFORMAT_PVRTC4 = 9; +cc.TEXTURE_PIXELFORMAT_DEFAULT = cc.TEXTURE_PIXELFORMAT_RGBA8888; + +cc.TEXT_ALIGNMENT_LEFT = 0; +cc.TEXT_ALIGNMENT_CENTER = 1; +cc.TEXT_ALIGNMENT_RIGHT = 2; + +cc.VERTICAL_TEXT_ALIGNMENT_TOP = 0; +cc.VERTICAL_TEXT_ALIGNMENT_CENTER = 1; +cc.VERTICAL_TEXT_ALIGNMENT_BOTTOM = 2; + +cc.IMAGE_FORMAT_JPEG = 0; +cc.IMAGE_FORMAT_PNG = 0; + +cc.PROGRESS_TIMER_TYPE_RADIAL = 0; +cc.PROGRESS_TIMER_TYPE_BAR = 1; + +cc.PARTICLE_TYPE_FREE = 0; +cc.PARTICLE_TYPE_RELATIVE = 1; +cc.PARTICLE_TYPE_GROUPED = 2; +cc.PARTICLE_DURATION_INFINITY = -1; +cc.PARTICLE_MODE_GRAVITY = 0; +cc.PARTICLE_MODE_RADIUS = 1; +cc.PARTICLE_START_SIZE_EQUAL_TO_END_SIZE = -1; +cc.PARTICLE_START_RADIUS_EQUAL_TO_END_RADIUS = -1; + +cc.RED = {r:255, g:0, b:0}; +cc.GREEN = {r:0, g:255, b:0}; +cc.BLUE = {r:0, g:0, b:255}; +cc.BLACK = {r:0, g:0, b:0}; +cc.WHITE = {r:255, g:255, b:255}; + +cc.POINT_ZERO = {x:0, y:0}; + +cc._reuse_p0 = {x:0, y:0}; +cc._reuse_p1 = {x:0, y:0}; +cc._reuse_p_index = 0; +cc._reuse_color3b = {r:255, g:255, b:255 }; +cc._reuse_color4b = {r:255, g:255, b:255, a:255 }; +cc._reuse_grid = cc.g(0,0); + +// +// Color 3B +// +cc.c3b = function( r, g, b ) +{ + return {r:r, g:g, b:b }; +}; +cc._c3b = function( r, g, b ) +{ + cc._reuse_color3b.r = r; + cc._reuse_color3b.g = g; + cc._reuse_color3b.b = b; + return cc._reuse_color3b; +}; +// compatibility +cc.c3 = cc.c3b; +cc._c3 = cc._c3b; + +// +// Color 4B +// +cc.c4b = function( r, g, b, a ) +{ + return {r:r, g:g, b:b, a:a }; +}; +cc._c4b = function( r, g, b, a ) +{ + cc._reuse_color4b.r = r; + cc._reuse_color4b.g = g; + cc._reuse_color4b.b = b; + cc._reuse_color4b.a = a; + return cc._reuse_color4b; +}; +// compatibility +cc.c4 = cc.c4b; +cc._c4 = cc._c4b; + + + +// +// Color 4F +// +cc.c4f = function( r, g, b, a ) +{ + return {r:r, g:g, b:b, a:a }; +}; + +// +// Point +// +cc.p = function( x, y ) +{ + return {x:x, y:y}; +}; +cc._p = function( x, y ) +{ + if( cc._reuse_p_index === 0 ) { + cc._reuse_p0.x = x; + cc._reuse_p0.y = y; + cc._reuse_p_index = 1; + return cc._reuse_p0; + } else { + cc._reuse_p1.x = x; + cc._reuse_p1.y = y; + cc._reuse_p_index = 0; + return cc._reuse_p1; + } +}; + +// +// Grid +// +cc._g = function( x, y ) +{ + cc._reuse_grid.x = x; + cc._reuse_grid.y = y; + return cc._reuse_grid; +}; + +// +// Size +// +cc.size = function(w,h) +{ + return {width:w, height:h}; +}; + +// +// Rect +// +cc.rect = function(x,y,w,h) +{ + return {x:x, y:y, width:w, height:h}; +}; + + +// dump config info, but only in debug mode +cc.dumpConfig = function() +{ + if( cc.config.debug ) { + for( var i in cc.config ) + cc.log( i + " = " + cc.config[i] ); + } +}; + +// +// MenuItemToggle +// +cc.MenuItemToggle.create = function( /* var args */) { + + var n = arguments.length; + + if (typeof arguments[n-1] === 'function') { + var args = Array.prototype.slice.call(arguments); + var func = args.pop(); + var obj = args.pop(); + + // create it with arguments, + var item = cc.MenuItemToggle._create.apply(this, args); + + // then set the callback + item.setCallback(obj, func); + return item; + } else { + return cc.MenuItemToggle._create.apply(this, arguments); + } +}; + +/** + * Associates a base class with a native superclass + * @function + * @param {object} jsobj subclass + * @param {object} klass superclass + */ +cc.associateWithNative = function( jsobj, superclass ) { + var native = new superclass(); + __associateObjWithNative( jsobj, native ); +}; + + +// XXX Should be done in native +cc.rectIntersectsRect = function( rectA, rectB ) +{ + var bool = ! ( rectA.x > rectB.x + rectB.width || + rectA.x + rectA.width < rectB.x || + rectA.y > rectB.y +rectB.height || + rectA.y + rectA.height < rectB.y ); + + return bool; +}; + +// +// Array: for cocos2d-html5 compatibility +// +cc.ArrayRemoveObject = function (arr, delObj) { + for (var i = 0; i < arr.length; i++) { + if (arr[i] == delObj) { + arr.splice(i, 1); + } + } +}; + + +// +// Google "subclasses" +// borrowed from closure library +// +var goog = goog || {}; // Check to see if already defined in current scope +goog.inherits = function (childCtor, parentCtor) { + /** @constructor */ + function tempCtor() {}; + tempCtor.prototype = parentCtor.prototype; + childCtor.superClass_ = parentCtor.prototype; + childCtor.prototype = new tempCtor(); + childCtor.prototype.constructor = childCtor; + + // Copy "static" method, but doesn't generate subclasses. +// for( var i in parentCtor ) { +// childCtor[ i ] = parentCtor[ i ]; +// } +}; +goog.base = function(me, opt_methodName, var_args) { + var caller = arguments.callee.caller; + if (caller.superClass_) { + // This is a constructor. Call the superclass constructor. + ret = caller.superClass_.constructor.apply( me, Array.prototype.slice.call(arguments, 1)); + + // XXX: SpiderMonkey bindings extensions +// __associateObjWithNative( me, ret ); + return ret; + } + + var args = Array.prototype.slice.call(arguments, 2); + var foundCaller = false; + for (var ctor = me.constructor; + ctor; ctor = ctor.superClass_ && ctor.superClass_.constructor) { + if (ctor.prototype[opt_methodName] === caller) { + foundCaller = true; + } else if (foundCaller) { + return ctor.prototype[opt_methodName].apply(me, args); + } + } + + // If we did not find the caller in the prototype chain, + // then one of two things happened: + // 1) The caller is an instance method. + // 2) This method was not called by the right caller. + if (me[opt_methodName] === caller) { + return me.constructor.prototype[opt_methodName].apply(me, args); + } else { + throw Error( + 'goog.base called from a method of one name ' + + 'to a method of a different name'); + } +}; + + +// +// Simple subclass +// + +cc.Class = function(){}; + +cc.Class.extend = function (prop) { + var _super = this.prototype; + + // Instantiate a base class (but only create the instance, + // don't run the init constructor) + initializing = true; + var prototype = new this(); + initializing = false; + fnTest = /xyz/.test(function(){xyz;}) ? /\b_super\b/ : /.*/; + + // Copy the properties over onto the new prototype + for (var name in prop) { + // Check if we're overwriting an existing function + prototype[name] = typeof prop[name] == "function" && + typeof _super[name] == "function" && fnTest.test(prop[name]) ? + (function (name, fn) { + return function () { + var tmp = this._super; + + // Add a new ._super() method that is the same method + // but on the super-class + this._super = _super[name]; + + // The method only need to be bound temporarily, so we + // remove it when we're done executing + var ret = fn.apply(this, arguments); + this._super = tmp; + + return ret; + }; + })(name, prop[name]) : + prop[name]; + } + + // The dummy class constructor + function Class() { + // All construction is actually done in the init method + if (!initializing && this.ctor) + this.ctor.apply(this, arguments); + } + + // Populate our constructed prototype object + Class.prototype = prototype; + + // Enforce the constructor to be what we expect + Class.prototype.constructor = Class; + + // And make this class extendable + Class.extend = arguments.callee; + + return Class; +}; + +cc.Node.extend = cc.Class.extend; +cc.Layer.extend = cc.Class.extend; +cc.LayerGradient.extend = cc.Class.extend; +cc.LayerColor.extend = cc.Class.extend; +cc.Sprite.extend = cc.Class.extend; +cc.MenuItemFont.extend = cc.Class.extend; +cc.Scene.extend = cc.Class.extend; diff --git a/samples/TestJavascript/bindings/jsb_constants_cocosbuilder.js b/samples/TestJavascript/bindings/jsb_constants_cocosbuilder.js new file mode 100644 index 0000000000..a4d33fb89d --- /dev/null +++ b/samples/TestJavascript/bindings/jsb_constants_cocosbuilder.js @@ -0,0 +1,118 @@ +// +// CocosBuilder definitions +// + +cc.Reader = {}; + +var _ccbGlobalContext = this; + +cc.Reader.load = function(file, owner, parentSize) +{ + // Load the node graph using the correct function + var reader = cc._Reader.create(); + var node; + + if (owner && parentSize) + { + node = reader.load(file, owner, parentSize); + } + else if (owner) + { + node = reader.load(file,owner); + } + else + { + node = reader.load(file); + } + + // Assign owner callbacks & member variables + if (owner) + { + // Callbacks + var ownerCallbackNames = reader.getOwnerCallbackNames(); + var ownerCallbackNodes = reader.getOwnerCallbackNodes(); + + for (var i = 0; i < ownerCallbackNames.length; i++) + { + var callbackName = ownerCallbackNames[i]; + var callbackNode = ownerCallbackNodes[i]; + + callbackNode.setCallback(owner, owner[callbackName]); + } + + // Variables + var ownerOutletNames = reader.getOwnerOutletNames(); + var ownerOutletNodes = reader.getOwnerOutletNodes(); + + for (var i = 0; i < ownerOutletNames.length; i++) + { + var outletName = ownerOutletNames[i]; + var outletNode = ownerOutletNodes[i]; + + owner[outletName] = outletNode; + } + } + + var nodesWithAnimationManagers = reader.getNodesWithAnimationManagers(); + var animationManagersForNodes = reader.getAnimationManagersForNodes(); + + // Attach animation managers to nodes and assign root node callbacks and member variables + for (var i = 0; i < nodesWithAnimationManagers.length; i++) + { + var innerNode = nodesWithAnimationManagers[i]; + var animationManager = animationManagersForNodes[i]; + + innerNode.animationManager = animationManager; + + var documentControllerName = animationManager.getDocumentControllerName(); + if (!documentControllerName) continue; + + // Create a document controller + var controller = new _ccbGlobalContext[documentControllerName](); + controller.controllerName = documentControllerName; + + innerNode.controller = controller; + controller.rootNode = innerNode; + + // Callbacks + var documentCallbackNames = animationManager.getDocumentCallbackNames(); + var documentCallbackNodes = animationManager.getDocumentCallbackNodes(); + + for (var j = 0; j < documentCallbackNames.length; j++) + { + var callbackName = documentCallbackNames[j]; + var callbackNode = documentCallbackNodes[j]; + + callbackNode.setCallback(controller, controller[callbackName]); + } + + + // Variables + var documentOutletNames = animationManager.getDocumentOutletNames(); + var documentOutletNodes = animationManager.getDocumentOutletNodes(); + + for (var j = 0; j < documentOutletNames.length; j++) + { + var outletName = documentOutletNames[j]; + var outletNode = documentOutletNodes[j]; + + controller[outletName] = outletNode; + } + + if (typeof(controller.onDidLoadFromCCB) == "function") + { + controller.onDidLoadFromCCB(); + } + } + + return node; +} + +cc.Reader.loadAsScene = function(file, owner, parentSize) +{ + var node = cc.Reader.load(file, owner, parentSize); + var scene = cc.Scene.create(); + scene.addChild( node ); + + return scene; +} diff --git a/samples/TestJavascript/bindings/jsb_constants_gl.js b/samples/TestJavascript/bindings/jsb_constants_gl.js new file mode 100644 index 0000000000..8b9d2f701d --- /dev/null +++ b/samples/TestJavascript/bindings/jsb_constants_gl.js @@ -0,0 +1,23 @@ +// +// OpenGL defines +// + +var gl = gl || {}; +gl.NEAREST = 0x2600; +gl.LINEAR = 0x2601; +gl.REPEAT = 0x2901; +gl.CLAMP_TO_EDGE = 0x812F; +gl.CLAMP_TO_BORDER = 0x812D; +gl.LINEAR_MIPMAP_NEAREST = 0x2701; +gl.NEAREST_MIPMAP_NEAREST = 0x2700; +gl.ZERO = 0; +gl.ONE = 1; +gl.SRC_COLOR = 0x0300; +gl.ONE_MINUS_SRC_COLOR = 0x0301; +gl.SRC_ALPHA = 0x0302; +gl.ONE_MINUS_SRC_ALPHA = 0x0303; +gl.DST_ALPHA = 0x0304; +gl.ONE_MINUS_DST_ALPHA = 0x0305; +gl.DST_COLOR = 0x0306; +gl.ONE_MINUS_DST_COLOR = 0x0307; +gl.SRC_ALPHA_SATURATE = 0x0308;