joybox 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/Gemfile.lock +1 -1
- data/LICENSE +1 -1
- data/LICENSE_Box2D +20 -0
- data/LICENSE_Cocos2D +24 -0
- data/README.md +34 -66
- data/Rakefile +2 -3
- data/bin/joybox +49 -0
- data/command/joybox/USAGE +24 -0
- data/command/joybox/templates/layer.erb +11 -0
- data/command/joybox/templates/layer_spec.erb +3 -0
- data/command/joybox/templates/scene.erb +11 -0
- data/command/joybox/templates/scene_spec.erb +3 -0
- data/command/joybox/templates/sprite.erb +11 -0
- data/command/joybox/templates/sprite_spec.erb +3 -0
- data/command/joybox_generate_command.rb +114 -0
- data/joybox.gemspec +44 -0
- data/lib/joybox/joybox-ios.rb +47 -0
- data/lib/joybox/joybox-osx.rb +47 -0
- data/lib/joybox/version.rb +1 -1
- data/lib/joybox.rb +18 -36
- data/{lib/joybox/cocos2d → motion/joybox}/actions/actions.rb +0 -0
- data/motion/joybox/actions/animate.rb +22 -0
- data/motion/joybox/actions/bezier.rb +33 -0
- data/motion/joybox/actions/blink.rb +24 -0
- data/motion/joybox/actions/ease.rb +149 -0
- data/motion/joybox/actions/fade.rb +38 -0
- data/motion/joybox/actions/jump.rb +39 -0
- data/{lib/joybox/cocos2d → motion/joybox}/actions/move.rb +4 -2
- data/motion/joybox/actions/place.rb +22 -0
- data/{lib/joybox/cocos2d → motion/joybox}/actions/repeat.rb +10 -1
- data/{lib/joybox/cocos2d → motion/joybox}/actions/rotate.rb +4 -2
- data/{lib/joybox/cocos2d → motion/joybox}/actions/scale.rb +4 -2
- data/{lib/joybox/cocos2d → motion/joybox}/actions/sequence.rb +3 -3
- data/{lib/joybox/cocos2d → motion/joybox}/actions/skew.rb +0 -0
- data/motion/joybox/actions/spawn.rb +22 -0
- data/motion/joybox/actions/tint.rb +37 -0
- data/motion/joybox/animations/animation.rb +60 -0
- data/{lib/joybox/cocos2d → motion/joybox}/common/color.rb +12 -1
- data/{lib/joybox/cocos2d → motion/joybox}/common/gc_size.rb +4 -4
- data/{lib/joybox/cocos2d → motion/joybox}/common/ns_set.rb +0 -0
- data/{lib/joybox/cocos2d → motion/joybox}/common/numeric.rb +0 -0
- data/{lib/joybox/cocos2d → motion/joybox}/common/screen.rb +4 -4
- data/motion/joybox/core/layer.rb +51 -0
- data/{lib/joybox/cocos2d → motion/joybox}/core/node.rb +0 -0
- data/{lib/joybox/cocos2d → motion/joybox}/core/scene.rb +0 -0
- data/{lib/joybox/cocos2d → motion/joybox}/core/sprite.rb +22 -3
- data/{lib/joybox/cocos2d → motion/joybox}/core/sprite_batch.rb +0 -0
- data/motion/joybox/core/sprite_frame_cache.rb +147 -0
- data/{lib/joybox/cocos2d/cocos2d.rb → motion/joybox/joybox.rb} +3 -1
- data/{lib/joybox/cocos2d → motion/joybox}/macros.rb +0 -0
- data/{lib/joybox/box2d → motion/joybox/physics}/body.rb +44 -17
- data/{lib/joybox/cocos2d/core → motion/joybox/physics}/physics_sprite.rb +1 -1
- data/motion/joybox/physics/world.rb +79 -0
- data/{lib/joybox/cocos2d → motion/joybox}/ui/label.rb +3 -2
- data/{lib/joybox/cocos2d → motion/joybox}/ui/menu.rb +0 -0
- data/{lib/joybox/cocos2d → motion/joybox}/ui/menu_image.rb +0 -0
- data/{lib/joybox/cocos2d → motion/joybox}/ui/menu_label.rb +0 -0
- data/{lib/joybox/cocos2d → motion/joybox}/ui/ui.rb +0 -0
- data/{lib/joybox/cocos2d → motion/joybox-ios}/common/cg_point.rb +9 -2
- data/{lib/joybox/cocos2d → motion/joybox-ios}/common/ui_touch.rb +1 -1
- data/{lib/joybox/cocos2d → motion/joybox-ios}/configuration/configuration.rb +0 -0
- data/{lib/joybox/cocos2d → motion/joybox-ios}/configuration/file_utils.rb +0 -3
- data/{lib/joybox/cocos2d → motion/joybox-ios}/configuration/gl_view.rb +0 -0
- data/{lib/joybox/cocos2d → motion/joybox-ios}/configuration/texture_2d.rb +0 -0
- data/{lib/joybox/cocos2d → motion/joybox-ios}/core/layer.rb +1 -45
- data/{lib/joybox/cocos2d → motion/joybox-ios}/director.rb +6 -6
- data/motion/joybox-osx/common/ats_point.rb +48 -0
- data/motion/joybox-osx/common/ns_event.rb +8 -0
- data/motion/joybox-osx/configuration/configuration.rb +46 -0
- data/motion/joybox-osx/configuration/gl_view.rb +57 -0
- data/motion/joybox-osx/core/layer.rb +135 -0
- data/motion/joybox-osx/director.rb +42 -0
- data/template/joybox-ios/files/Rakefile.erb +9 -0
- data/{app → template/joybox-ios/files/app}/app_delegate.rb +1 -5
- data/{resources → template/joybox-ios/files/resources}/fps_images-hd.png +0 -0
- data/{resources → template/joybox-ios/files/resources}/fps_images-ipadhd.png +0 -0
- data/{resources → template/joybox-ios/files/resources}/fps_images.png +0 -0
- data/template/joybox-ios/files/spec/main_spec.rb.erb +9 -0
- data/template/joybox-osx/files/Rakefile.erb +9 -0
- data/template/joybox-osx/files/app/app_delegate.rb +23 -0
- data/template/joybox-osx/files/app/layers/default_layer.rb +5 -0
- data/template/joybox-osx/files/app/menu.rb +51 -0
- data/template/joybox-osx/files/resources/Credits.rtf +29 -0
- data/template/joybox-osx/files/resources/fps_images-hd.png +0 -0
- data/template/joybox-osx/files/resources/fps_images-ipadhd.png +0 -0
- data/template/joybox-osx/files/resources/fps_images.png +0 -0
- data/template/joybox-osx/files/spec/main_spec.rb.erb +9 -0
- data/vendor/{Box2D.framework → vendor-ios/Box2D.framework}/Box2D +0 -0
- data/vendor/{Box2D.framework → vendor-ios/Box2D.framework}/Box2D.framework.bridgesupport +47 -37
- data/vendor/{Box2D.framework → vendor-ios/Box2D.framework}/Versions/A/Box2D +0 -0
- data/vendor/{Box2D.framework → vendor-ios/Box2D.framework}/Versions/A/Headers/Collision/B2DContactListener.h +0 -0
- data/vendor/vendor-ios/Box2D.framework/Versions/A/Headers/Collision/Shapes/B2DCircleShape.h +16 -0
- data/vendor/{Box2D.framework → vendor-ios/Box2D.framework}/Versions/A/Headers/Collision/Shapes/B2DEdgeShape.h +0 -0
- data/vendor/{Box2D.framework → vendor-ios/Box2D.framework}/Versions/A/Headers/Collision/Shapes/B2DPolygonShape.h +0 -0
- data/vendor/{Box2D.framework → vendor-ios/Box2D.framework}/Versions/A/Headers/Collision/Shapes/B2DShape.h +0 -0
- data/vendor/{Box2D.framework → vendor-ios/Box2D.framework}/Versions/A/Headers/Dynamics/B2DBody.h +6 -6
- data/vendor/{Box2D.framework → vendor-ios/Box2D.framework}/Versions/A/Headers/Dynamics/B2DWorld.h +0 -0
- data/vendor/{Box2D.framework → vendor-ios/Box2D.framework}/Versions/A/Resources/Box2DConfig.cmake +0 -0
- data/vendor/{Box2D.framework → vendor-ios/Box2D.framework}/Versions/A/Resources/CMakeLists.txt +0 -0
- data/vendor/vendor-ios/Box2D.framework/Versions/A/Resources/LICENSE +22 -0
- data/vendor/vendor-ios/cocos_2d/cocos_2d.bridgesupport +9154 -0
- data/vendor/vendor-ios/cocos_2d/cocos_2d_exceptions.bridgesupport +39 -0
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCAction.h +23 -23
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCActionCamera.h +21 -19
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCActionCatmullRom.h +18 -6
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCActionEase.h +117 -31
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCActionGrid.h +19 -17
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCActionGrid3D.h +45 -42
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCActionInstant.h +21 -13
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCActionInterval.h +123 -81
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCActionManager.h +2 -2
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCActionPageTurn3D.h +2 -1
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCActionProgressTimer.h +4 -4
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCActionTiledGrid.h +46 -38
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCActionTween.h +3 -3
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCAnimation.h +8 -8
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCAnimationCache.h +2 -2
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCAtlasNode.h +19 -17
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCCamera.h +12 -12
- data/vendor/vendor-ios/cocos_2d/include/CCClippingNode.h +77 -0
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCConfiguration.h +31 -13
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCDirector.h +51 -42
- data/vendor/vendor-ios/cocos_2d/include/CCDrawNode.h +65 -0
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCDrawingPrimitives.h +42 -8
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCGLProgram.h +56 -21
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCGrabber.h +2 -2
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCGrid.h +29 -29
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCLabelAtlas.h +5 -2
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCLabelBMFont.h +56 -32
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCLabelTTF.h +20 -20
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCLayer.h +107 -79
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCMenu.h +10 -14
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCMenuItem.h +37 -32
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCMotionStreak.h +18 -19
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCNode+Debug.h +0 -0
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCNode.h +87 -37
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCParallaxNode.h +2 -2
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCParticleBatchNode.h +2 -2
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCParticleExamples.h +22 -0
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCParticleSystem.h +51 -40
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCParticleSystemQuad.h +4 -4
- data/vendor/vendor-ios/cocos_2d/include/CCPhysicsDebugNode.h +58 -0
- data/vendor/vendor-ios/cocos_2d/include/CCPhysicsSprite.h +82 -0
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCProgressTimer.h +9 -11
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCProtocols.h +54 -26
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCRenderTexture.h +29 -9
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCScene.h +4 -0
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCScheduler.h +94 -40
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCShaderCache.h +1 -1
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCSprite.h +21 -28
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCSpriteBatchNode.h +16 -9
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCSpriteFrame.h +10 -10
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCSpriteFrameCache.h +6 -6
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCTMXLayer.h +16 -16
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCTMXObjectGroup.h +4 -4
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCTMXTiledMap.h +9 -9
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCTMXXMLParser.h +44 -33
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCTexture2D.h +17 -25
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCTextureAtlas.h +10 -10
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCTextureCache.h +4 -4
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCTexturePVR.h +25 -8
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCTileMapAtlas.h +6 -6
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCTransition.h +57 -12
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCTransitionPageTurn.h +2 -2
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/CCTransitionProgress.h +27 -5
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Platforms}/CCGL.h +4 -2
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Platforms}/CCNS.h +0 -0
- data/vendor/vendor-ios/cocos_2d/include/Platforms/Mac/CCDirectorMac.h +110 -0
- data/vendor/vendor-ios/cocos_2d/include/Platforms/Mac/CCEventDispatcher.h +343 -0
- data/vendor/vendor-ios/cocos_2d/include/Platforms/Mac/CCGLView.h +103 -0
- data/vendor/vendor-ios/cocos_2d/include/Platforms/Mac/CCWindow.h +41 -0
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Platforms/iOS}/CCDirectorIOS.h +12 -5
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Platforms/iOS}/CCES2Renderer.h +12 -12
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Platforms/iOS}/CCESRenderer.h +0 -0
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Platforms/iOS}/CCGLView.h +28 -13
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Platforms/iOS}/CCTouchDelegateProtocol.h +4 -4
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Platforms/iOS}/CCTouchDispatcher.h +2 -2
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Platforms/iOS}/CCTouchHandler.h +7 -7
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Support}/CCArray.h +1 -1
- data/vendor/vendor-ios/cocos_2d/include/Support/CCFileUtils.h +394 -0
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Support}/CCProfiling.h +0 -0
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Support}/CCVertex.h +1 -1
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Support}/CGPointExtension.h +4 -2
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Support}/NSThread+performBlock.h +0 -0
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Support}/OpenGL_Internal.h +0 -0
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Support}/TGAlib.h +0 -0
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Support}/TransformUtils.h +0 -0
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Support}/ZipUtils.h +4 -4
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Support}/base64.h +0 -0
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Support}/ccCArray.h +15 -15
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Support}/ccUtils.h +0 -0
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Support}/uthash.h +129 -184
- data/vendor/{Cocos2D/include → vendor-ios/cocos_2d/include/Support}/utlist.h +298 -55
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/ccConfig.h +56 -9
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/ccDeprecated.h +131 -0
- data/vendor/vendor-ios/cocos_2d/include/ccFPSImages.h +39 -0
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/ccGLStateCache.h +44 -26
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/ccMacros.h +9 -9
- data/vendor/vendor-ios/cocos_2d/include/ccShader_PositionColorLengthTexture_frag.h +41 -0
- data/vendor/vendor-ios/cocos_2d/include/ccShader_PositionColorLengthTexture_vert.h +47 -0
- data/vendor/vendor-ios/cocos_2d/include/ccShader_PositionColor_frag.h +37 -0
- data/vendor/vendor-ios/cocos_2d/include/ccShader_PositionColor_vert.h +40 -0
- data/vendor/vendor-ios/cocos_2d/include/ccShader_PositionTextureA8Color_frag.h +41 -0
- data/vendor/vendor-ios/cocos_2d/include/ccShader_PositionTextureA8Color_vert.h +45 -0
- data/vendor/vendor-ios/cocos_2d/include/ccShader_PositionTextureColorAlphaTest_frag.h +47 -0
- data/vendor/vendor-ios/cocos_2d/include/ccShader_PositionTextureColor_frag.h +39 -0
- data/vendor/vendor-ios/cocos_2d/include/ccShader_PositionTextureColor_vert.h +45 -0
- data/vendor/vendor-ios/cocos_2d/include/ccShader_PositionTexture_frag.h +38 -0
- data/vendor/vendor-ios/cocos_2d/include/ccShader_PositionTexture_uColor_frag.h +41 -0
- data/vendor/vendor-ios/cocos_2d/include/ccShader_PositionTexture_uColor_vert.h +41 -0
- data/vendor/vendor-ios/cocos_2d/include/ccShader_PositionTexture_vert.h +41 -0
- data/vendor/vendor-ios/cocos_2d/include/ccShader_Position_uColor_frag.h +37 -0
- data/vendor/vendor-ios/cocos_2d/include/ccShader_Position_uColor_vert.h +43 -0
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/ccShaders.h +11 -0
- data/vendor/vendor-ios/cocos_2d/include/ccTypes.h +392 -0
- data/vendor/vendor-ios/cocos_2d/include/cocos2d-ios-exceptions.bridgesupport +39 -0
- data/vendor/{Cocos2D → vendor-ios/cocos_2d}/include/cocos2d.h +28 -3
- data/vendor/vendor-ios/cocos_2d/include/gen_cocos2d_bridgesupport.sh +17 -0
- data/vendor/vendor-ios/cocos_2d/include/gen_cocos2d_complement.sh +17 -0
- data/vendor/vendor-ios/cocos_2d/libcocos2d.a +0 -0
- data/vendor/vendor-osx/box_2d/box_2d.bridgesupport +176 -0
- data/vendor/vendor-osx/box_2d/include/B2DBody.h +46 -0
- data/vendor/vendor-osx/box_2d/include/B2DCircleShape.h +16 -0
- data/vendor/vendor-osx/box_2d/include/B2DContactListener.h +30 -0
- data/vendor/vendor-osx/box_2d/include/B2DEdgeShape.h +17 -0
- data/vendor/vendor-osx/box_2d/include/B2DPolygonShape.h +16 -0
- data/vendor/vendor-osx/box_2d/include/B2DShape.h +18 -0
- data/vendor/vendor-osx/box_2d/include/B2DWorld.h +44 -0
- data/vendor/vendor-osx/box_2d/libBox2D.a +0 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d.bridgesupport +8292 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCAction.h +195 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCActionCamera.h +75 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCActionCatmullRom.h +151 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCActionEase.h +245 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCActionGrid.h +167 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCActionGrid3D.h +208 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCActionInstant.h +235 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCActionInterval.h +473 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCActionManager.h +113 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCActionPageTurn3D.h +43 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCActionProgressTimer.h +59 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCActionTiledGrid.h +219 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCActionTween.h +62 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCAnimation.h +150 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCAnimationCache.h +74 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCAtlasNode.h +98 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCCamera.h +98 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCClippingNode.h +77 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCConfiguration.h +144 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCDirector.h +353 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCDrawNode.h +65 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCDrawingPrimitives.h +173 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCGLProgram.h +185 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCGrabber.h +44 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCGrid.h +130 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCLabelAtlas.h +71 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCLabelBMFont.h +240 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCLabelTTF.h +132 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCLayer.h +308 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCMenu.h +96 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCMenuItem.h +428 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCMotionStreak.h +86 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCNode+Debug.h +39 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCNode.h +619 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCParallaxNode.h +50 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCParticleBatchNode.h +99 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCParticleExamples.h +117 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCParticleSystem.h +464 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCParticleSystemQuad.h +73 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCPhysicsDebugNode.h +58 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCPhysicsSprite.h +82 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCProgressTimer.h +92 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCProtocols.h +160 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCRenderTexture.h +159 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCScene.h +47 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCScheduler.h +284 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCShaderCache.h +60 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCSprite.h +281 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCSpriteBatchNode.h +145 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCSpriteFrame.h +126 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCSpriteFrameCache.h +121 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCTMXLayer.h +164 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCTMXObjectGroup.h +67 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCTMXTiledMap.h +145 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCTMXXMLParser.h +228 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCTexture2D.h +349 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCTextureAtlas.h +188 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCTextureCache.h +146 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCTexturePVR.h +146 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCTileMapAtlas.h +83 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCTransition.h +341 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCTransitionPageTurn.h +60 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCTransitionProgress.h +84 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Platforms/CCGL.h +74 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Platforms/CCNS.h +54 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Platforms/Mac/CCDirectorMac.h +110 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Platforms/Mac/CCEventDispatcher.h +343 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Platforms/Mac/CCGLView.h +103 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Platforms/Mac/CCWindow.h +41 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Support/CCArray.h +119 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Support/CCFileUtils.h +394 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Support/CCProfiling.h +89 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Support/CCVertex.h +36 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Support/CGPointExtension.h +346 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Support/NSThread+performBlock.h +22 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Support/OpenGL_Internal.h +86 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Support/TGAlib.h +55 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Support/TransformUtils.h +36 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Support/ZipUtils.h +91 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Support/base64.h +33 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Support/ccCArray.h +229 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Support/ccUtils.h +36 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Support/uthash.h +917 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Support/utlist.h +733 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccConfig.h +292 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccDeprecated.h +431 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccFPSImages.h +39 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccGLStateCache.h +156 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccMacros.h +353 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccShader_PositionColorLengthTexture_frag.h +41 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccShader_PositionColorLengthTexture_vert.h +47 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccShader_PositionColor_frag.h +37 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccShader_PositionColor_vert.h +40 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccShader_PositionTextureA8Color_frag.h +41 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccShader_PositionTextureA8Color_vert.h +45 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccShader_PositionTextureColorAlphaTest_frag.h +47 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccShader_PositionTextureColor_frag.h +39 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccShader_PositionTextureColor_vert.h +45 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccShader_PositionTexture_frag.h +38 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccShader_PositionTexture_uColor_frag.h +41 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccShader_PositionTexture_uColor_vert.h +41 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccShader_PositionTexture_vert.h +41 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccShader_Position_uColor_frag.h +37 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccShader_Position_uColor_vert.h +43 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccShaders.h +56 -0
- data/vendor/{Cocos2D/include → vendor-osx/cocos_2d/cocos_2d_include}/ccTypes.h +39 -35
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/cocos2d.h +203 -0
- data/vendor/vendor-osx/cocos_2d/libcocos2d.a +0 -0
- metadata +363 -195
- data/app/layers/box2d_layer.rb +0 -109
- data/app/layers/cocos2d_layer.rb +0 -14
- data/app/layers/cocos_motion_layer.rb +0 -145
- data/app/layers/menu_layer.rb +0 -59
- data/lib/joybox/box2d/world.rb +0 -79
- data/resources/box2d/blocks_sprite_sheet.png +0 -0
- data/resources/cocos_motion/dot.png +0 -0
- data/resources/cocos_motion/dot_selected.png +0 -0
- data/resources/cocos_motion/grossini.png +0 -0
- data/resources/cocos_motion/grossinis_sister.png +0 -0
- data/resources/cocos_motion/grossinis_sister_two.png +0 -0
- data/resources/cocos_motion/left_arrow.png +0 -0
- data/resources/cocos_motion/left_arrow_selected.png +0 -0
- data/resources/cocos_motion/right_arrow.png +0 -0
- data/resources/cocos_motion/right_arrow_selected.png +0 -0
- data/vendor/Cocos2D/Cocos2D.bridgesupport +0 -7808
- data/vendor/Cocos2D/include/CCFileUtils.h +0 -188
- data/vendor/Cocos2D/include/CocosDenshion/CDAudioManager.h +0 -243
- data/vendor/Cocos2D/include/CocosDenshion/CDConfig.h +0 -60
- data/vendor/Cocos2D/include/CocosDenshion/CDOpenALSupport.h +0 -77
- data/vendor/Cocos2D/include/CocosDenshion/CDXPropertyModifierAction.h +0 -45
- data/vendor/Cocos2D/include/CocosDenshion/CocosDenshion.h +0 -440
- data/vendor/Cocos2D/include/CocosDenshion/SimpleAudioEngine.h +0 -90
- data/vendor/Cocos2D/include/RubyMotionSchedule.h +0 -7
- data/vendor/Cocos2D/include/ccShader_PositionColor_frag.h +0 -12
- data/vendor/Cocos2D/include/ccShader_PositionColor_vert.h +0 -17
- data/vendor/Cocos2D/include/ccShader_PositionTextureA8Color_frag.h +0 -16
- data/vendor/Cocos2D/include/ccShader_PositionTextureA8Color_vert.h +0 -21
- data/vendor/Cocos2D/include/ccShader_PositionTextureColorAlphaTest_frag.h +0 -23
- data/vendor/Cocos2D/include/ccShader_PositionTextureColor_frag.h +0 -14
- data/vendor/Cocos2D/include/ccShader_PositionTextureColor_vert.h +0 -22
- data/vendor/Cocos2D/include/ccShader_PositionTexture_frag.h +0 -13
- data/vendor/Cocos2D/include/ccShader_PositionTexture_uColor_frag.h +0 -16
- data/vendor/Cocos2D/include/ccShader_PositionTexture_uColor_vert.h +0 -18
- data/vendor/Cocos2D/include/ccShader_PositionTexture_vert.h +0 -17
- data/vendor/Cocos2D/include/ccShader_Position_uColor_frag.h +0 -12
- data/vendor/Cocos2D/include/ccShader_Position_uColor_vert.h +0 -19
- data/vendor/Cocos2D/include/kazmath/GL/mat4stack.h +0 -51
- data/vendor/Cocos2D/include/kazmath/GL/matrix.h +0 -58
- data/vendor/Cocos2D/include/kazmath/aabb.h +0 -53
- data/vendor/Cocos2D/include/kazmath/kazmath.h +0 -39
- data/vendor/Cocos2D/include/kazmath/mat3.h +0 -75
- data/vendor/Cocos2D/include/kazmath/mat4.h +0 -93
- data/vendor/Cocos2D/include/kazmath/neon_matrix_impl.h +0 -41
- data/vendor/Cocos2D/include/kazmath/plane.h +0 -70
- data/vendor/Cocos2D/include/kazmath/quaternion.h +0 -113
- data/vendor/Cocos2D/include/kazmath/ray2.h +0 -50
- data/vendor/Cocos2D/include/kazmath/utility.h +0 -74
- data/vendor/Cocos2D/include/kazmath/vec2.h +0 -64
- data/vendor/Cocos2D/include/kazmath/vec3.h +0 -68
- data/vendor/Cocos2D/include/kazmath/vec4.h +0 -68
- data/vendor/Cocos2D/libCocosDenshion.a +0 -0
- data/vendor/Cocos2D/libcocos2d.a +0 -0
@@ -0,0 +1,167 @@
|
|
1
|
+
/*
|
2
|
+
* cocos2d for iPhone: http://www.cocos2d-iphone.org
|
3
|
+
*
|
4
|
+
* Copyright (c) 2009 On-Core
|
5
|
+
*
|
6
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
|
+
* of this software and associated documentation files (the "Software"), to deal
|
8
|
+
* in the Software without restriction, including without limitation the rights
|
9
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10
|
+
* copies of the Software, and to permit persons to whom the Software is
|
11
|
+
* furnished to do so, subject to the following conditions:
|
12
|
+
*
|
13
|
+
* The above copyright notice and this permission notice shall be included in
|
14
|
+
* all copies or substantial portions of the Software.
|
15
|
+
*
|
16
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
17
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
18
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
19
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
20
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
21
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
22
|
+
* THE SOFTWARE.
|
23
|
+
*
|
24
|
+
*/
|
25
|
+
|
26
|
+
|
27
|
+
#import "CCActionInterval.h"
|
28
|
+
#import "CCActionInstant.h"
|
29
|
+
#import "CCGrid.h"
|
30
|
+
|
31
|
+
@class CCGridBase;
|
32
|
+
|
33
|
+
/** Base class for Grid actions */
|
34
|
+
@interface CCGridAction : CCActionInterval
|
35
|
+
{
|
36
|
+
CGSize _gridSize;
|
37
|
+
}
|
38
|
+
|
39
|
+
/** size of the grid */
|
40
|
+
@property (nonatomic,readwrite) CGSize gridSize;
|
41
|
+
|
42
|
+
/** creates the action with size and duration */
|
43
|
+
+(id) actionWithDuration:(ccTime)duration size:(CGSize)gridSize;
|
44
|
+
/** initializes the action with size and duration */
|
45
|
+
-(id) initWithDuration:(ccTime)duration size:(CGSize)gridSize;
|
46
|
+
/** returns the grid */
|
47
|
+
-(CCGridBase *)grid;
|
48
|
+
|
49
|
+
@end
|
50
|
+
|
51
|
+
////////////////////////////////////////////////////////////
|
52
|
+
|
53
|
+
/** Base class for CCGrid3D actions.
|
54
|
+
Grid3D actions can modify a non-tiled grid.
|
55
|
+
*/
|
56
|
+
@interface CCGrid3DAction : CCGridAction
|
57
|
+
{
|
58
|
+
}
|
59
|
+
|
60
|
+
/** returns the vertex than belongs to certain position in the grid */
|
61
|
+
-(ccVertex3F)vertex:(CGPoint)position;
|
62
|
+
/** returns the non-transformed vertex than belongs to certain position in the grid */
|
63
|
+
-(ccVertex3F)originalVertex:(CGPoint)position;
|
64
|
+
/** sets a new vertex to a certain position of the grid */
|
65
|
+
-(void)setVertex:(CGPoint)position vertex:(ccVertex3F)vertex;
|
66
|
+
|
67
|
+
@end
|
68
|
+
|
69
|
+
////////////////////////////////////////////////////////////
|
70
|
+
|
71
|
+
/** Base class for CCTiledGrid3D actions */
|
72
|
+
@interface CCTiledGrid3DAction : CCGridAction
|
73
|
+
{
|
74
|
+
}
|
75
|
+
|
76
|
+
/** returns the tile that belongs to a certain position of the grid */
|
77
|
+
-(ccQuad3)tile:(CGPoint)position;
|
78
|
+
/** returns the non-transformed tile that belongs to a certain position of the grid */
|
79
|
+
-(ccQuad3)originalTile:(CGPoint)position;
|
80
|
+
/** sets a new tile to a certain position of the grid */
|
81
|
+
-(void)setTile:(CGPoint)position coords:(ccQuad3)coords;
|
82
|
+
|
83
|
+
@end
|
84
|
+
|
85
|
+
////////////////////////////////////////////////////////////
|
86
|
+
|
87
|
+
/** CCAccelDeccelAmplitude action */
|
88
|
+
@interface CCAccelDeccelAmplitude : CCActionInterval
|
89
|
+
{
|
90
|
+
float _rate;
|
91
|
+
CCActionInterval *_other;
|
92
|
+
}
|
93
|
+
|
94
|
+
/** amplitude rate */
|
95
|
+
@property (nonatomic,readwrite) float rate;
|
96
|
+
|
97
|
+
/** creates the action with an inner action that has the amplitude property, and a duration time */
|
98
|
+
+(id)actionWithAction:(CCAction*)action duration:(ccTime)d;
|
99
|
+
/** initializes the action with an inner action that has the amplitude property, and a duration time */
|
100
|
+
-(id)initWithAction:(CCAction*)action duration:(ccTime)d;
|
101
|
+
|
102
|
+
@end
|
103
|
+
|
104
|
+
////////////////////////////////////////////////////////////
|
105
|
+
|
106
|
+
/** CCAccelAmplitude action */
|
107
|
+
@interface CCAccelAmplitude : CCActionInterval
|
108
|
+
{
|
109
|
+
float _rate;
|
110
|
+
CCActionInterval *_other;
|
111
|
+
}
|
112
|
+
|
113
|
+
/** amplitude rate */
|
114
|
+
@property (nonatomic,readwrite) float rate;
|
115
|
+
|
116
|
+
/** creates the action with an inner action that has the amplitude property, and a duration time */
|
117
|
+
+(id)actionWithAction:(CCAction*)action duration:(ccTime)d;
|
118
|
+
/** initializes the action with an inner action that has the amplitude property, and a duration time */
|
119
|
+
-(id)initWithAction:(CCAction*)action duration:(ccTime)d;
|
120
|
+
|
121
|
+
@end
|
122
|
+
|
123
|
+
////////////////////////////////////////////////////////////
|
124
|
+
|
125
|
+
/** CCDeccelAmplitude action */
|
126
|
+
@interface CCDeccelAmplitude : CCActionInterval
|
127
|
+
{
|
128
|
+
float _rate;
|
129
|
+
CCActionInterval *_other;
|
130
|
+
}
|
131
|
+
|
132
|
+
/** amplitude rate */
|
133
|
+
@property (nonatomic,readwrite) float rate;
|
134
|
+
|
135
|
+
/** creates the action with an inner action that has the amplitude property, and a duration time */
|
136
|
+
+(id)actionWithAction:(CCAction*)action duration:(ccTime)d;
|
137
|
+
/** initializes the action with an inner action that has the amplitude property, and a duration time */
|
138
|
+
-(id)initWithAction:(CCAction*)action duration:(ccTime)d;
|
139
|
+
|
140
|
+
@end
|
141
|
+
|
142
|
+
////////////////////////////////////////////////////////////
|
143
|
+
|
144
|
+
/** CCStopGrid action.
|
145
|
+
Don't call this action if another grid action is active.
|
146
|
+
Call if you want to remove the the grid effect. Example:
|
147
|
+
[Sequence actions:[Lens ...], [StopGrid action], nil];
|
148
|
+
*/
|
149
|
+
@interface CCStopGrid : CCActionInstant
|
150
|
+
{
|
151
|
+
}
|
152
|
+
// to make BridgeSupport happy
|
153
|
+
-(void)startWithTarget:(id)aTarget;
|
154
|
+
@end
|
155
|
+
|
156
|
+
////////////////////////////////////////////////////////////
|
157
|
+
|
158
|
+
/** CCReuseGrid action */
|
159
|
+
@interface CCReuseGrid : CCActionInstant
|
160
|
+
{
|
161
|
+
int _times;
|
162
|
+
}
|
163
|
+
/** creates an action with the number of times that the current grid will be reused */
|
164
|
+
+(id) actionWithTimes: (int) times;
|
165
|
+
/** initializes an action with the number of times that the current grid will be reused */
|
166
|
+
-(id) initWithTimes: (int) times;
|
167
|
+
@end
|
@@ -0,0 +1,208 @@
|
|
1
|
+
/*
|
2
|
+
* cocos2d for iPhone: http://www.cocos2d-iphone.org
|
3
|
+
*
|
4
|
+
* Copyright (c) 2009 On-Core
|
5
|
+
*
|
6
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
|
+
* of this software and associated documentation files (the "Software"), to deal
|
8
|
+
* in the Software without restriction, including without limitation the rights
|
9
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10
|
+
* copies of the Software, and to permit persons to whom the Software is
|
11
|
+
* furnished to do so, subject to the following conditions:
|
12
|
+
*
|
13
|
+
* The above copyright notice and this permission notice shall be included in
|
14
|
+
* all copies or substantial portions of the Software.
|
15
|
+
*
|
16
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
17
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
18
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
19
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
20
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
21
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
22
|
+
* THE SOFTWARE.
|
23
|
+
*
|
24
|
+
*/
|
25
|
+
|
26
|
+
|
27
|
+
#import "CCActionGrid.h"
|
28
|
+
|
29
|
+
/** CCWaves3D action */
|
30
|
+
@interface CCWaves3D : CCGrid3DAction
|
31
|
+
{
|
32
|
+
NSUInteger _waves;
|
33
|
+
float _amplitude;
|
34
|
+
float _amplitudeRate;
|
35
|
+
}
|
36
|
+
|
37
|
+
/** amplitude of the wave */
|
38
|
+
@property (nonatomic,readwrite) float amplitude;
|
39
|
+
/** amplitude rate of the wave */
|
40
|
+
@property (nonatomic,readwrite) float amplitudeRate;
|
41
|
+
|
42
|
+
/** creates an action with duration, grid size, waves and amplitud */
|
43
|
+
+(id)actionWithDuration:(ccTime)duration size:(CGSize)gridSize waves:(NSUInteger)wav amplitude:(float)amp;
|
44
|
+
/** initializeds an action with duration, grid size, waves and amplitud */
|
45
|
+
-(id)initWithDuration:(ccTime)duration size:(CGSize)gridSize waves:(NSUInteger)wav amplitude:(float)amp;
|
46
|
+
|
47
|
+
@end
|
48
|
+
|
49
|
+
////////////////////////////////////////////////////////////
|
50
|
+
|
51
|
+
/** CCFlipX3D action */
|
52
|
+
@interface CCFlipX3D : CCGrid3DAction
|
53
|
+
{
|
54
|
+
}
|
55
|
+
|
56
|
+
/** creates the action with duration */
|
57
|
+
+(id) actionWithDuration:(ccTime)d;
|
58
|
+
/** initializes the action with duration */
|
59
|
+
-(id) initWithDuration:(ccTime)d;
|
60
|
+
|
61
|
+
@end
|
62
|
+
|
63
|
+
////////////////////////////////////////////////////////////
|
64
|
+
|
65
|
+
/** CCFlipY3D action */
|
66
|
+
@interface CCFlipY3D : CCFlipX3D
|
67
|
+
{
|
68
|
+
}
|
69
|
+
// Needed for bridge support
|
70
|
+
-(void)update:(ccTime)time;
|
71
|
+
@end
|
72
|
+
|
73
|
+
////////////////////////////////////////////////////////////
|
74
|
+
|
75
|
+
/** CCLens3D action */
|
76
|
+
@interface CCLens3D : CCGrid3DAction
|
77
|
+
{
|
78
|
+
CGPoint _position;
|
79
|
+
float _radius;
|
80
|
+
float _lensEffect;
|
81
|
+
BOOL _dirty;
|
82
|
+
}
|
83
|
+
|
84
|
+
/** lens effect. Defaults to 0.7 - 0 means no effect, 1 is very strong effect */
|
85
|
+
@property (nonatomic,readwrite) float lensEffect;
|
86
|
+
/** lens center position in Points */
|
87
|
+
@property (nonatomic,readwrite) CGPoint position;
|
88
|
+
|
89
|
+
/** creates the action with center position in Points, radius, a grid size and duration */
|
90
|
+
+(id)actionWithDuration:(ccTime)duration size:(CGSize)gridSize position:(CGPoint)pos radius:(float)radius;
|
91
|
+
/** initializes the action with center position in Points, radius, a grid size and duration */
|
92
|
+
-(id)initWithDuration:(ccTime)duration size:(CGSize)gridSize position:(CGPoint)pos radius:(float)radius;
|
93
|
+
|
94
|
+
@end
|
95
|
+
|
96
|
+
////////////////////////////////////////////////////////////
|
97
|
+
|
98
|
+
/** CCRipple3D action */
|
99
|
+
@interface CCRipple3D : CCGrid3DAction
|
100
|
+
{
|
101
|
+
CGPoint _position;
|
102
|
+
float _radius;
|
103
|
+
NSUInteger _waves;
|
104
|
+
float _amplitude;
|
105
|
+
float _amplitudeRate;
|
106
|
+
}
|
107
|
+
|
108
|
+
/** center position in Points */
|
109
|
+
@property (nonatomic,readwrite) CGPoint position;
|
110
|
+
/** amplitude */
|
111
|
+
@property (nonatomic,readwrite) float amplitude;
|
112
|
+
/** amplitude rate */
|
113
|
+
@property (nonatomic,readwrite) float amplitudeRate;
|
114
|
+
|
115
|
+
/** creates the action with a position in points, radius, number of waves, amplitude, a grid size and duration */
|
116
|
+
+(id)actionWithDuration:(ccTime)d size:(CGSize)gridSize position:(CGPoint)pos radius:(float)r waves:(NSInteger)wav amplitude:(float)amp;
|
117
|
+
/** initializes the action with a position in points, radius, number of waves, amplitude, a grid size and duration */
|
118
|
+
-(id)initWithDuration:(ccTime)d size:(CGSize)gridSize position:(CGPoint)pos radius:(float)r waves:(NSInteger)wav amplitude:(float)amp;
|
119
|
+
|
120
|
+
@end
|
121
|
+
|
122
|
+
////////////////////////////////////////////////////////////
|
123
|
+
|
124
|
+
/** CCShaky3D action */
|
125
|
+
@interface CCShaky3D : CCGrid3DAction
|
126
|
+
{
|
127
|
+
int _randrange;
|
128
|
+
BOOL _shakeZ;
|
129
|
+
}
|
130
|
+
|
131
|
+
/** creates the action with a range, shake Z vertices, a grid and duration */
|
132
|
+
+(id)actionWithDuration:(ccTime)duration size:(CGSize)gridSize range:(int)range shakeZ:(BOOL)shakeZ;
|
133
|
+
/** initializes the action with a range, shake Z vertices, a grid and duration */
|
134
|
+
-(id)initWithDuration:(ccTime)duration size:(CGSize)gridSize range:(int)range shakeZ:(BOOL)shakeZ;
|
135
|
+
|
136
|
+
@end
|
137
|
+
|
138
|
+
////////////////////////////////////////////////////////////
|
139
|
+
|
140
|
+
/** CCLiquid action */
|
141
|
+
@interface CCLiquid : CCGrid3DAction
|
142
|
+
{
|
143
|
+
NSUInteger _waves;
|
144
|
+
float _amplitude;
|
145
|
+
float _amplitudeRate;
|
146
|
+
|
147
|
+
}
|
148
|
+
|
149
|
+
/** amplitude */
|
150
|
+
@property (nonatomic,readwrite) float amplitude;
|
151
|
+
/** amplitude rate */
|
152
|
+
@property (nonatomic,readwrite) float amplitudeRate;
|
153
|
+
|
154
|
+
/** creates the action with amplitude, a grid and duration */
|
155
|
+
+(id)actionWithDuration:(ccTime)duration size:(CGSize)gridSize waves:(NSUInteger)wav amplitude:(float)amp;
|
156
|
+
/** initializes the action with amplitude, a grid and duration */
|
157
|
+
-(id)initWithDuration:(ccTime)duration size:(CGSize)gridSize waves:(NSUInteger)wav amplitude:(float)amp;
|
158
|
+
|
159
|
+
@end
|
160
|
+
|
161
|
+
////////////////////////////////////////////////////////////
|
162
|
+
|
163
|
+
/** CCWaves action */
|
164
|
+
@interface CCWaves : CCGrid3DAction
|
165
|
+
{
|
166
|
+
NSUInteger _waves;
|
167
|
+
float _amplitude;
|
168
|
+
float _amplitudeRate;
|
169
|
+
BOOL _vertical;
|
170
|
+
BOOL _horizontal;
|
171
|
+
}
|
172
|
+
|
173
|
+
/** amplitude */
|
174
|
+
@property (nonatomic,readwrite) float amplitude;
|
175
|
+
/** amplitude rate */
|
176
|
+
@property (nonatomic,readwrite) float amplitudeRate;
|
177
|
+
|
178
|
+
/** initializes the action with amplitude, horizontal sin, vertical sin, a grid and duration */
|
179
|
+
+(id)actionWithDuration:(ccTime)duration size:(CGSize)gridSize waves:(NSUInteger)wav amplitude:(float)amp horizontal:(BOOL)h vertical:(BOOL)v;
|
180
|
+
/** creates the action with amplitude, horizontal sin, vertical sin, a grid and duration */
|
181
|
+
-(id)initWithDuration:(ccTime)duration size:(CGSize)gridSize waves:(NSUInteger)wav amplitude:(float)amp horizontal:(BOOL)h vertical:(BOOL)v;
|
182
|
+
|
183
|
+
@end
|
184
|
+
|
185
|
+
////////////////////////////////////////////////////////////
|
186
|
+
|
187
|
+
/** CCTwirl action */
|
188
|
+
@interface CCTwirl : CCGrid3DAction
|
189
|
+
{
|
190
|
+
CGPoint _position;
|
191
|
+
NSUInteger _twirls;
|
192
|
+
float _amplitude;
|
193
|
+
float _amplitudeRate;
|
194
|
+
}
|
195
|
+
|
196
|
+
/** twirl center */
|
197
|
+
@property (nonatomic,readwrite) CGPoint position;
|
198
|
+
/** amplitude */
|
199
|
+
@property (nonatomic,readwrite) float amplitude;
|
200
|
+
/** amplitude rate */
|
201
|
+
@property (nonatomic,readwrite) float amplitudeRate;
|
202
|
+
|
203
|
+
/** creates the action with center position, number of twirls, amplitude, a grid size and duration */
|
204
|
+
+(id)actionWithDuration:(ccTime)duration size:(CGSize)gridSize position:(CGPoint)pos twirls:(NSUInteger)t amplitude:(float)amp;
|
205
|
+
/** initializes the action with center position, number of twirls, amplitude, a grid size and duration */
|
206
|
+
-(id)initWithDuration:(ccTime)duration size:(CGSize)gridSize position:(CGPoint)pos twirls:(NSUInteger)t amplitude:(float)amp;
|
207
|
+
|
208
|
+
@end
|
@@ -0,0 +1,235 @@
|
|
1
|
+
/*
|
2
|
+
* cocos2d for iPhone: http://www.cocos2d-iphone.org
|
3
|
+
*
|
4
|
+
* Copyright (c) 2008-2010 Ricardo Quesada
|
5
|
+
* Copyright (c) 2011 Zynga Inc.
|
6
|
+
*
|
7
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
+
* of this software and associated documentation files (the "Software"), to deal
|
9
|
+
* in the Software without restriction, including without limitation the rights
|
10
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
+
* copies of the Software, and to permit persons to whom the Software is
|
12
|
+
* furnished to do so, subject to the following conditions:
|
13
|
+
*
|
14
|
+
* The above copyright notice and this permission notice shall be included in
|
15
|
+
* all copies or substantial portions of the Software.
|
16
|
+
*
|
17
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
23
|
+
* THE SOFTWARE.
|
24
|
+
*
|
25
|
+
*/
|
26
|
+
|
27
|
+
|
28
|
+
#import "CCAction.h"
|
29
|
+
|
30
|
+
/** Instant actions are immediate actions. They don't have a duration like
|
31
|
+
the CCIntervalAction actions.
|
32
|
+
*/
|
33
|
+
@interface CCActionInstant : CCFiniteTimeAction <NSCopying>
|
34
|
+
{
|
35
|
+
}
|
36
|
+
// XXX Needed for BridgeSupport
|
37
|
+
-(id) init;
|
38
|
+
@end
|
39
|
+
|
40
|
+
/** Show the node
|
41
|
+
*/
|
42
|
+
@interface CCShow : CCActionInstant
|
43
|
+
{
|
44
|
+
}
|
45
|
+
// XXX Needed for BridgeSupport
|
46
|
+
-(void) update:(ccTime)time;
|
47
|
+
@end
|
48
|
+
|
49
|
+
/** Hide the node
|
50
|
+
*/
|
51
|
+
@interface CCHide : CCActionInstant
|
52
|
+
{
|
53
|
+
}
|
54
|
+
-(void) update:(ccTime)time;
|
55
|
+
@end
|
56
|
+
|
57
|
+
/** Toggles the visibility of a node
|
58
|
+
*/
|
59
|
+
@interface CCToggleVisibility : CCActionInstant
|
60
|
+
{
|
61
|
+
}
|
62
|
+
-(void) update:(ccTime)time;
|
63
|
+
@end
|
64
|
+
|
65
|
+
/** Flips the sprite horizontally
|
66
|
+
@since v0.99.0
|
67
|
+
*/
|
68
|
+
@interface CCFlipX : CCActionInstant
|
69
|
+
{
|
70
|
+
BOOL _flipX;
|
71
|
+
}
|
72
|
+
+(id) actionWithFlipX:(BOOL)x;
|
73
|
+
-(id) initWithFlipX:(BOOL)x;
|
74
|
+
@end
|
75
|
+
|
76
|
+
/** Flips the sprite vertically
|
77
|
+
@since v0.99.0
|
78
|
+
*/
|
79
|
+
@interface CCFlipY : CCActionInstant
|
80
|
+
{
|
81
|
+
BOOL _flipY;
|
82
|
+
}
|
83
|
+
+(id) actionWithFlipY:(BOOL)y;
|
84
|
+
-(id) initWithFlipY:(BOOL)y;
|
85
|
+
@end
|
86
|
+
|
87
|
+
/** Places the node in a certain position
|
88
|
+
*/
|
89
|
+
@interface CCPlace : CCActionInstant <NSCopying>
|
90
|
+
{
|
91
|
+
CGPoint _position;
|
92
|
+
}
|
93
|
+
/** creates a Place action with a position */
|
94
|
+
+(id) actionWithPosition: (CGPoint) pos;
|
95
|
+
/** Initializes a Place action with a position */
|
96
|
+
-(id) initWithPosition: (CGPoint) pos;
|
97
|
+
@end
|
98
|
+
|
99
|
+
/** Calls a 'callback'
|
100
|
+
*/
|
101
|
+
@interface CCCallFunc : CCActionInstant <NSCopying>
|
102
|
+
{
|
103
|
+
id _targetCallback;
|
104
|
+
SEL _selector;
|
105
|
+
}
|
106
|
+
|
107
|
+
/** Target that will be called */
|
108
|
+
@property (nonatomic, readwrite, retain) id targetCallback;
|
109
|
+
|
110
|
+
/** creates the action with the callback */
|
111
|
+
+(id) actionWithTarget: (id) t selector:(SEL) s;
|
112
|
+
/** initializes the action with the callback */
|
113
|
+
-(id) initWithTarget: (id) t selector:(SEL) s;
|
114
|
+
/** executes the callback */
|
115
|
+
-(void) execute;
|
116
|
+
@end
|
117
|
+
|
118
|
+
/** Calls a 'callback' with the node as the first argument.
|
119
|
+
N means Node
|
120
|
+
*/
|
121
|
+
@interface CCCallFuncN : CCCallFunc
|
122
|
+
{
|
123
|
+
}
|
124
|
+
// XXX: Needed for BridgeSupport
|
125
|
+
-(void) execute;
|
126
|
+
@end
|
127
|
+
|
128
|
+
typedef void (*CC_CALLBACK_ND)(id, SEL, id, void *);
|
129
|
+
/** Calls a 'callback' with the node as the first argument and the 2nd argument is data.
|
130
|
+
* ND means: Node and Data. Data is void *, so it could be anything.
|
131
|
+
*/
|
132
|
+
@interface CCCallFuncND : CCCallFuncN
|
133
|
+
{
|
134
|
+
void *_data;
|
135
|
+
CC_CALLBACK_ND _callbackMethod;
|
136
|
+
}
|
137
|
+
|
138
|
+
/** Invocation object that has the target#selector and the parameters */
|
139
|
+
@property (nonatomic,readwrite) CC_CALLBACK_ND callbackMethod;
|
140
|
+
|
141
|
+
/** creates the action with the callback and the data to pass as an argument */
|
142
|
+
+(id) actionWithTarget: (id) t selector:(SEL) s data:(void*)d;
|
143
|
+
/** initializes the action with the callback and the data to pass as an argument */
|
144
|
+
-(id) initWithTarget:(id) t selector:(SEL) s data:(void*) d;
|
145
|
+
@end
|
146
|
+
|
147
|
+
/** Calls a 'callback' with an object as the first argument.
|
148
|
+
O means Object.
|
149
|
+
@since v0.99.5
|
150
|
+
*/
|
151
|
+
@interface CCCallFuncO : CCCallFunc
|
152
|
+
{
|
153
|
+
id _object;
|
154
|
+
}
|
155
|
+
/** object to be passed as argument */
|
156
|
+
@property (nonatomic, readwrite, retain) id object;
|
157
|
+
|
158
|
+
/** creates the action with the callback and the object to pass as an argument */
|
159
|
+
+(id) actionWithTarget: (id) t selector:(SEL) s object:(id)object;
|
160
|
+
/** initializes the action with the callback and the object to pass as an argument */
|
161
|
+
-(id) initWithTarget:(id) t selector:(SEL) s object:(id)object;
|
162
|
+
|
163
|
+
@end
|
164
|
+
|
165
|
+
#pragma mark Blocks Support
|
166
|
+
|
167
|
+
/** Executes a callback using a block.
|
168
|
+
*/
|
169
|
+
@interface CCCallBlock : CCActionInstant<NSCopying>
|
170
|
+
{
|
171
|
+
void (^_block)();
|
172
|
+
}
|
173
|
+
|
174
|
+
/** creates the action with the specified block, to be used as a callback.
|
175
|
+
The block will be "copied".
|
176
|
+
*/
|
177
|
+
+(id) actionWithBlock:(void(^)())block;
|
178
|
+
|
179
|
+
/** initialized the action with the specified block, to be used as a callback.
|
180
|
+
The block will be "copied".
|
181
|
+
*/
|
182
|
+
-(id) initWithBlock:(void(^)())block;
|
183
|
+
|
184
|
+
/** executes the callback */
|
185
|
+
-(void) execute;
|
186
|
+
@end
|
187
|
+
|
188
|
+
@class CCNode;
|
189
|
+
|
190
|
+
/** Executes a callback using a block with a single CCNode parameter.
|
191
|
+
*/
|
192
|
+
@interface CCCallBlockN : CCActionInstant<NSCopying>
|
193
|
+
{
|
194
|
+
void (^_block)(CCNode *);
|
195
|
+
}
|
196
|
+
|
197
|
+
/** creates the action with the specified block, to be used as a callback.
|
198
|
+
The block will be "copied".
|
199
|
+
*/
|
200
|
+
+(id) actionWithBlock:(void(^)(CCNode *node))block;
|
201
|
+
|
202
|
+
/** initialized the action with the specified block, to be used as a callback.
|
203
|
+
The block will be "copied".
|
204
|
+
*/
|
205
|
+
-(id) initWithBlock:(void(^)(CCNode *node))block;
|
206
|
+
|
207
|
+
/** executes the callback */
|
208
|
+
-(void) execute;
|
209
|
+
@end
|
210
|
+
|
211
|
+
/** Executes a callback using a block with a single NSObject parameter.
|
212
|
+
@since v2.0
|
213
|
+
*/
|
214
|
+
@interface CCCallBlockO : CCActionInstant<NSCopying>
|
215
|
+
{
|
216
|
+
void (^_block)(id object);
|
217
|
+
id _object;
|
218
|
+
}
|
219
|
+
|
220
|
+
/** object to be passed to the block */
|
221
|
+
@property (nonatomic,retain) id object;
|
222
|
+
|
223
|
+
/** creates the action with the specified block, to be used as a callback.
|
224
|
+
The block will be "copied".
|
225
|
+
*/
|
226
|
+
+(id) actionWithBlock:(void(^)(id object))block object:(id)object;
|
227
|
+
|
228
|
+
/** initialized the action with the specified block, to be used as a callback.
|
229
|
+
The block will be "copied".
|
230
|
+
*/
|
231
|
+
-(id) initWithBlock:(void(^)(id object))block object:(id)object;
|
232
|
+
|
233
|
+
/** executes the callback */
|
234
|
+
-(void) execute;
|
235
|
+
@end
|