概述1. 新的API
风格 我们直接来看看你可以如何使用Cocos2d-JS v3.0: 以前的API 新的API node.setPosition(x, y); node.x = x; node.y = y; node.setRotation(r); node.rotation = r; 如表格中可以看到的,设置position
属性的函数调用在3.0版中会被替换为直接的对象属性存取。不仅仅是示例中的x 1. 新的API风格
我们直接来看看你可以如何使用Cocos2d-Js v3.0:
以前的API | 新的API |
node.setposition(x,y); | node.x = x; node.y = y; |
node.setRotation(r); | node.rotation = r; |
如表格中可以看到的,设置position属性的函数调用在3.0版中会被替换为直接的对象属性存取。不仅仅是示例中的x
,y
和rotation
,几乎所有节点类型中关于属性存取的函数都会被替换为直接的对象属性访问。具体的属性列表在文档最后。
得益于JavaScript的getter/setter,我们可以为对象的某一个属性名分别设置其getter/setter函数。这就是Cocos2d-Js如何做到从函数到属性的转换。比如说,node.x = x;
实际上调用了setpositionX
函数并传入x作为参数,所以在使用属性风格API的时候请不要因为它的简单而感到担心,在很多情况下这等同于以前的函数调用。
你也可以给自己的对象属性定义getter/setter函数,只需要使用下面这行代码:
cc.defineGetterSetter(object,"propertyname",getterFunc,setterFunc);
这样的话,var a = object.propertyname;
会通过getterFunc
获取propertyname
的当前值,object.propertyname = newvalue;
则会通过setterFunc
来给propertyname
赋新值。
至于属性的命名,我们尽可能提供了类似CSS风格的属性名,除此之外的属性都尽力维持与v2.2.2中一致。选择类似CSS的属性名是为了给JavaScript开发者以最自然的开发体验。
2. cc.Node的
attr
函数
新API使得Cocos2d-Js代码更加简洁,但这还不够,我们为cc.Node添加了更为简单易用的attr
函数。与jquery的attr
函数相同,这个函数允许开发者批量设置多个属性。示例如下:
node.attr({ x: 20,y0.5,anchorY400,height300,scale2});
值得一提的是,这个函数不仅仅支持文末列表中的属性,也支持开发者的自定义属性。
3. 改变的初衷
为什么Cocos2d-Js要对已稳定的API做出如此大的改变呢?我想最显而易见的答案已经体现在前面的示例中了:那就是更简单。
但是我们真正想改变的目标,并不仅仅是更简单而已,或者说简单并不是目标,而是结果。长期以来,Cocos2d-Js一直被WEB开发者诟病其复杂程度导致难于学习和使用。在与其他HTML5游戏引擎比较之后,我们发现我们引擎最大的问题是,它并不是为JavaScript开发者设计的。事实上确实如此,到目前为止,Cocos2d-Js引擎的实现目标一直是尽力与Cocos2d-x的API保持一致,而Cocos2d-x是为C++开发者设计的,与此同时,Cocos2d家族的起源Cocos2d-iPhone也在引擎中留下了非常多objective-C风格的API设计。很显然,正是由于这些API被直接移植到h5引擎中,JavaScript开发者才会觉得引擎非常复杂难用。
所以引擎3.0版本的主要目标就是提供给开发者一套全新的JavaScript风格API,开发团队决定冒着很大的风险推动这次重构。
回到属性风格API,cc.Node以及所有继承自cc.Node的类都使用属性风格重构。以往的大多数getXXX()
和setXXX(value)
都被直接属性存取取代了。同时也有也有少数其他适合属性风格的类使用这种方式重构,它们都可以在文末的列表中找到。
4. 关于Closure Compiler
由于attr
函数使用键值对来配置节点,当我们使用Closure Compiler的高级模式来混淆时,这可能会引起一些意想不到的错误。
简单来说,键值对中的键实质上是String类型,混淆过程中它并不会被压缩,而与之相对应的属性名却会被压缩,这导致了两者命名的不匹配。所幸,在引擎中我们保障了常用的属性不会被压缩,至于其他的属性和用户自定义属性,可以使用Closure Compiler的expose
声明来避免出现问题。需要注意的是这个问题只有在开发者尝试使用attr
函数来配置属性的时候才会出现,如果没有使用attr
函数就不需要做任何额外的处理。
/** @expose */node.shaderProgram;
/** @expose */node.customProperty;node.attr({ shaderProgram
: program,customProperty
0}); 5. 通过继承来重载属性
另一个重要的问题是在继承过程中,如何重载父类中的属性。好消息是我们已经将这一机制在Cocos2d-Js的cc.Class中实现了。只要你重载了父类中的getter/setter函数,那么不需要重新定义,新的getter/setter会自动被绑定到属性上。下面是一个重载Sprite类中的x
属性的例子:
var MySprite
= cc.Sprite.extend({
ctor:
function() {
this._super();
this.init(); },
getpositionX:
function() {
// Your own implementation },163)">setpositionX:
function(
x) {
// Your own implementation }});
var mySprite
= new MySprite();
mySprite.x = x;
会调用MySprite
类的setpositionX
函数而不是Sprite
类的,getter函数也是同理。用户代码中唯一需要保证的是重载的getter/setter函数名必须和父类中定义的属性的getter/setter函数同名。否则你将需要通过cc.defineGetterSetter
重新定义属性。
6. 属性列表 cc.Node
Property | Type | Accessibility | Getter/Setter function | Advanced Compress Ready | x | Number | R&W | getpositionX,setpositionX | YES |
y | getpositionY,setpositionY | wIDth | _getWIDth,_setWIDth | height | _getHeight,_setHeight | anchorX | _getAnchorX,_setAnchorX | anchorY | _getAnchorY,_setAnchorY | skewX | getSkewX,setSkewX | skewY | getSkewY,setSkewY | zIndex | getLocalZOrder,setLocalZOrder | vertexZ | getVertexZ,setVertexZ | rotation | getRotation,setRotation | rotationX | getRotationX,setRotationX | rotationY | getRotationY,setRotationY | scale | getScale,setScale | scaleX | getScaleX,setScaleX | scaleY | getScaleY,setScaleY | opacity | getopacity,setopacity | opacityModifyRGB | Boolean | isOpacityModifyRGB,setopacityModifyRGB | cascadeOpacity | isCascadeOpacityEnabled,setCascadeOpacityEnabled | color | cc.color | getcolor,setcolor | cascadecolor | isCascadecolorEnabled,setCascadecolorEnabled | children | Array | Readonly | getChildren | childrenCount | getChildrenCount | parent | cc.Node | getParent,setParent | visible | isVisible,setVisible | running | isRunning | ignoreAnchor | isIgnoreAnchorPointForposition,ignoreAnchorPointForposition | tag | None | userData | Object | userObject | arrivalOrder | actionManager | cc.ActionManager | getActionManager,setActionManager | scheduler | cc.Scheduler | getScheduler,setScheduler | grID | cc.GrIDBase | NO |
shaderProgram cc.GLProgram | getShaderProgram,setShaderProgram | YES |
cc.Texture2D
name WebGLTexture | getname | pixelFormat | getPixelFormat | pixelsWIDth | getPixelsWIDe | pixelsHeight | getPixelsHigh | maxS | maxT | NO |
cc.Sprite
Extend from cc.NodeRGBA
dirty flippedX | isFlippedX,setFlippedX | flippedY | isFlippedY,setFlippedY | offsetX | _getoffsetX | offsetY | _getoffsetY | atlasIndex | texture | cc.Texture2D | getTexture,setTexture | textureRectRotated | isTextureRectRotated | textureAtlas | cc.TextureAtlas | batchNode | cc.SpriteBatchNode | getBatchNode,setBatchNode | quad | cc.V3F_C4B_T2F_Quad | getQuad | cc.LabelTTF Extend from cc.Sprite string String | getString,setString | textAlign | getHorizontalAlignment,setHorizontalAlignment | verticalAlign | getVerticalAlignment,setVerticalAlignment | FontSize | getFontSize,setFontSize | Fontname | getFontname,setFontname | Font | _getFont,_setFont | boundingWIDth | _getBoundingWIDth,_setBoundingWIDth | boundingHeight | _getBoundingHeight,_setBoundingHeight | fillStyle | _getFillStyle,setFontFillcolor | strokeStyle | _getstrokeStyle,_setstrokeStyle | linewidth | _getlinewidth,_setlinewidth | shadowOffsetX | _getShadowOffsetX,_setShadowOffsetX | shadowOffsetY | _getShadowOffsetY,_setShadowOffsetY | shadowOpacity | _getShadowOpacity,_setShadowOpacity | shadowBlur | _getShadowBlur,_setShadowBlur | YES | cc.Node cc.TextureAtlas Image capacity | getCapacity | totalQuads | getTotalQuads | quads | getQuads,setQuads | cc.AtlasNode quadsToDraw | cc.LayerRGBA Extend from cc.Layer cc.LayerGradIEnt Extend from cc.Layercolor startcolor getStartcolor,setStartcolor | endcolor | getEndcolor,setEndcolor | startopacity | getStartopacity,setStartopacity | endOpacity | getEndOpacity,setEndOpacity | vector | getVector,setVector | compresseInterpolation | cc.ClipPingNode Extend from cc.Node AlphaThreshold inverted | stencil | getStencil,setStencil | cc.SpriteBatchNode descendants | getDescendants | Extend from cc.Sprite cc.LabelAtlas Extend from cc.AtlasNode cc.LabelBMFont Extend from cc.SpriteBatchNode enum _getAlignment,setAlignment | cc.Menu Extend from cc.LayerRGBA enabled cc.MenuItem isEnabled,setEnabled | cc.MenuItemLabel Extend from cc.MenuItem label getLabel,setLabel | Disabledcolor | getDisabledcolor,setDisabledcolor | cc.MenuItemFont Extend from cc.MenuItemLabel cc.MenuItemSprite normalimage cc.Sprite | getnormalimage,setnormalimage | selectedImage | getSelectedImage,setSelectedImage | DisabledImage | getDisabledImage,setDisabledImage | cc.NodeGrID target | writeonly | setTarget | cc.ParticleBatchNode cc.ParticleSystem active | isActive | shapeType | particleCount | duration | sourcePos | cc.Point | getSourceposition,setSourceposition | posVar | getPosVar,setPosVar | life | lifeVar | angle | angleVar | startSize | startSizeVar | endSize | endSizeVar | startSpin | startSpinVar | endSpin | endSpinVar | gravity | getGravity,setGravity | speed | getSpeed,setSpeed | speedVar | getSpeedVar,setSpeedVar | tangentialAccel | tangentialAccelVar | getTangentialAccel,setTangentialAccel | getTangentialAccelVar,setTangentialAccelVar | rotationIsDir | getRotationIsDir,setRotationIsDir | starTradius | getStarTradius,setStarTradius | starTradiusVar | getStarTradiusVar,setStarTradiusVar | endRadius | getEndRadius,setEndRadius | endRadiusVar | getEndRadiusVar,setEndRadiusVar | rotatePerS | getRotatePerSecond,setRotatePerSecond | rotatePerSVar | getRotatePerSecondVar,setRotatePerSecondVar | startcolorVar | getStartcolorVar,setStartcolorVar | endcolorVar | getEndcolorVar,setEndcolorVar | emissionRate | emitterMode | positionType | totalParticles | getTotalParticles,setTotalParticles | autoRemoveOnFinish | cc.Progresstimer mIDPoint | getMIDpoint,setMIDpoint | barChangeRate | getbarChangeRate,setbarChangeRate | type | getType,setType | percentage | getPercentage,setPercentage | sprite | getSprite,setSprite | reverseDir | isReverseDirection,setReverseDirection | cc.RenderTexture clearFlags | clearDepthVal | clearStencilVal | clearcolorVal | getClearcolor,setClearcolor | autoDraw | cc.TMXLayer tiles | tileset | cc.TMXTilesetInfo | layerOrIEntation | propertIEs | layername | layerWIDth | _getLayerWIDth,_setLayerWIDth | layerHeight | _getLayerHeight,_setLayerHeight | tileWIDth | _getTileWIDth,_setTileWIDth | tileHeight | _getTileHeight,_setTileHeight | cc.TMXTiledMap mapOrIEntation | objectGroups | mapWIDth | _getMapWIDth,_setMapWIDth | mapHeight | _getMapHeight,_setMapHeight | ccui.Widget Extend from ccui.Node xPercent _getXPercent,_setXPercent | yPercent | _getYPercent,_setYPercent | wIDthPercent | _getWIDthPercent,_setWIDthPercent | heightPercent | _getHeightPercent,_setHeightPercent | WidgetParent | ccui.Widget | getWidgetParent | focused | isFocused,setFocused | touchEnabled | istouchEnabled,settouchEnabled | updateEnabled | isUpdateEnabled,setUpdateEnabled | bright | isBright,setBright | getname,setname | actionTag | getActionTag,setActionTag | ccui.Layout Extend from ccui.Widget clipPingEnabled isClipPingEnabled,setClipPingEnabled | ccui.button TitleText | getTitleText,setTitleText | TitleFont | _getTitleFont,_setTitleFont | TitleFontSize | getTitleFontSize,setTitleFontSize | TitleFontname | getTitleFontname,setTitleFontname | TitleFontcolor | pressedActionEnabled | ccui.CheckBox selected | getSelectedState,setSelectedState | ccui.Loadingbar percent | getPercent,setPercent | ccui.SlIDer ccui.Text getStringValue,setText | stringLength | getStringLength | getTextHorizontalAlignment,setTextHorizontalAlignment | getTextVerticalAlignment,setTextVerticalAlignment | touchScaleEnabled | ccui.TextAtlas ccui.TextBMFont ccui.TextFIEld maxLengthEnabled | isMaxLengthEnabled,setMaxLengthEnabled | maxLength | getMaxLength,setMaxLength | passwordEnabled | isPasswordEnabled,setPasswordEnabled | ccui.ScrollVIEw Extend from ccui.Layout innerWIDth _getInnerWIDth,_setInnerWIDth | innerHeight | _getInnerHeight,_setInnerHeight | bounceEnabled | inertiaScrollEnabled | ccs.Armature Extend from ccs.NodeRGBA parentBone ccs.Bone | getParentBone,setParentBone | animation | ccs.ArmatureAnimation | armatureData | ccs.ArmatureData | version | body | getbody,setbody | collIDerFilter | ccs.CollIDerFilter | setCollIDerFilter | ccs.Bone boneData | ccs.BoneData | getBoneData,setBoneData | armature | ccs.Armature | getArmature,setArmature | childArmature | getChildArmature,setChildArmature | childrenBone | getChildrenBone | tween | ccs.Tween | getTween | tweenData | ccs.FrameData | getTweenData | transformDirty | getCollIDerFilter,setCollIDerFilter | displayManager | ccs.displayManager | ignoreMovementBoneData | blendDirty | ccs.Skin Extend from ccs.Sprite skinData getSkinData,setSkinData | bone | displayname | getdisplayname | cc.EditBox Extend from cc.Controlbutton _setFont setFontname | setFontSize | getText,sans-serif"> cc.Control state | getState | isSelected,setSelected | highlighted | isHighlighted,setHighlighted | cc.Controlbutton Extend from cc.Control adjustBackgroundImage zoomOntouchDown | preferredSize | cc.Size | getPreferredSize,setPreferredSize | labelAnchor | getLabelAnchorPoint,setLabelAnchorPoint | cc.ControlColourPicker background | getBackground | cc.ControlHuePicker hue | getHue,setHue | huePercent | getHuePercentage,setHuePercentage | slIDer | getSlIDer | startPos | getStartPos | cc.ControlPotentiometer value | getValue,setValue | minValue | getMinimumValue,setMinimumValue | maxValue | getMaximumValue,setMaximumValue | progresstimer | cc.Progresstimer | getProgresstimer,setProgresstimer | thumbSprite | getThumbSprite,setThumbSprite | prevLocation | getPrevIoUsLocation,setPrevIoUsLocation | cc.ControlSaturationBrightnessPicker saturation | getSaturation | brightness | getBrightness | overlay | getoverlay | shadow | getShadow | cc.ControlSlIDer minAllowedValue | getMinimumAllowedValue,setMinimumAllowedValue | maxAllowedValue | getMaximumAllowedValue,setMaximumAllowedValue | getThumbSprite | progresssprite | getProgresssprite | backgroundSprite | getBackgroundSprite | cc.ControlStepper wraps | getWraps,setWraps | stepValue | getStepValue,setStepValue | continuous | isContinuous | minussprite | getMinussprite,setMinussprite | plussprite | getPlussprite,setPlussprite | minusLabel | cc.LabelTTF | getMinusLabel,setMinusLabel | plusSLabel | cc.Scale9Sprite cAPInsets | cc.Rect | getCAPInsets,setCAPInsets | insetleft | getInsetleft,setInsetleft | insettop | getInsettop,setInsettop | insetRight | getInsetRight,setInsetRight | insetBottom | getInsetBottom,setInsetBottom | cc.tableVIEwCell Extend from cc.Node objectID getobjectID,setobjectID | YES | 转载 请注明: http://www.cocos2dx.net/post/235 总结 以上是内存溢出为你收集整理的【cocos2d-js官方文档】十八、Cocos2d-JS v3.0中的属性风格API全部内容,希望文章能够帮你解决【cocos2d-js官方文档】十八、Cocos2d-JS v3.0中的属性风格API所遇到的程序开发问题。 如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
赞
(0)
打赏
微信扫一扫
支付宝扫一扫
| | | | | | | | | | | | | | |
评论列表(0条)