joybox 1.0.0 → 1.1.0
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.
- data/.travis.yml +3 -0
- data/Gemfile +2 -2
- data/Gemfile.lock +4 -4
- data/README.md +66 -22
- data/Rakefile +22 -4
- data/app/ios/app_delegate.rb +48 -0
- data/app/osx/app_delegate.rb +26 -0
- data/app/osx/layers/game_layer.rb +5 -0
- data/app/osx/menu.rb +51 -0
- data/command/command/image.rb +26 -0
- data/command/command/string.rb +15 -0
- data/command/command/template.rb +59 -0
- data/command/command/tmx.rb +75 -0
- data/command/joybox_generate_command.rb +64 -110
- data/command/joybox_retina_command.rb +87 -0
- data/command/{joybox/templates → templates}/layer.erb +0 -0
- data/command/{joybox/templates → templates}/layer_spec.erb +0 -0
- data/command/{joybox/templates → templates}/scene.erb +0 -0
- data/command/{joybox/templates → templates}/scene_spec.erb +0 -0
- data/command/{joybox/templates → templates}/sprite.erb +0 -0
- data/command/{joybox/templates → templates}/sprite_spec.erb +0 -0
- data/ext/extconf.rb +34 -0
- data/joybox.gemspec +103 -50
- data/lib/joybox.rb +2 -0
- data/lib/joybox/joybox-ios.rb +18 -3
- data/lib/joybox/joybox-osx.rb +18 -2
- data/lib/joybox/version.rb +1 -1
- data/motion/joybox-ios/common/cg_point.rb +46 -16
- data/motion/joybox-ios/common/device.rb +56 -0
- data/motion/joybox-ios/common/ui_touch.rb +0 -2
- data/motion/joybox-ios/configuration/configuration.rb +10 -40
- data/motion/joybox-ios/configuration/file_utils.rb +0 -4
- data/motion/joybox-ios/configuration/gl_view.rb +14 -20
- data/motion/joybox-ios/configuration/texture_2d.rb +0 -4
- data/motion/joybox-ios/core/layer.rb +2 -8
- data/motion/joybox-ios/debug/proxy_view.rb +5 -5
- data/motion/joybox-ios/debug/{node.rb → repl.rb} +25 -19
- data/motion/joybox-ios/director.rb +15 -4
- data/motion/joybox-osx/common/ats_point.rb +45 -15
- data/motion/joybox-osx/common/device.rb +30 -0
- data/motion/joybox-osx/common/ns_event.rb +0 -1
- data/motion/joybox-osx/configuration/configuration.rb +6 -26
- data/motion/joybox-osx/configuration/gl_view.rb +16 -14
- data/motion/joybox-osx/core/layer.rb +45 -26
- data/motion/joybox-osx/debug/proxy_view.rb +5 -5
- data/motion/joybox-osx/debug/{node.rb → repl.rb} +13 -7
- data/motion/joybox-osx/director.rb +4 -3
- data/motion/joybox/actions/animate.rb +0 -1
- data/motion/joybox/actions/bezier.rb +2 -9
- data/motion/joybox/actions/blink.rb +1 -4
- data/motion/joybox/actions/callback.rb +19 -0
- data/motion/joybox/actions/d3/flip.rb +27 -0
- data/motion/joybox/actions/d3/jump.rb +30 -0
- data/motion/joybox/actions/d3/lens.rb +30 -0
- data/motion/joybox/actions/d3/shake.rb +32 -0
- data/motion/joybox/actions/d3/shatter.rb +30 -0
- data/motion/joybox/actions/d3/wave.rb +33 -0
- data/motion/joybox/actions/delay.rb +19 -0
- data/motion/joybox/actions/ease.rb +3 -21
- data/motion/joybox/actions/fade.rb +30 -6
- data/motion/joybox/actions/jump.rb +0 -5
- data/motion/joybox/actions/liquid.rb +28 -0
- data/motion/joybox/actions/move.rb +2 -9
- data/motion/joybox/actions/place.rb +0 -2
- data/motion/joybox/actions/repeat.rb +0 -2
- data/motion/joybox/actions/rotate.rb +2 -9
- data/motion/joybox/actions/scale.rb +2 -9
- data/motion/joybox/actions/sequence.rb +0 -1
- data/motion/joybox/actions/shuffle.rb +26 -0
- data/motion/joybox/actions/skew.rb +2 -11
- data/motion/joybox/actions/spawn.rb +0 -1
- data/motion/joybox/actions/split.rb +24 -0
- data/motion/joybox/actions/tint.rb +0 -5
- data/motion/joybox/actions/turn.rb +24 -0
- data/motion/joybox/actions/twirl.rb +30 -0
- data/motion/joybox/actions/visibility.rb +21 -0
- data/motion/joybox/actions/wave.rb +32 -0
- data/motion/joybox/animations/animation.rb +7 -11
- data/motion/joybox/audio/audio.rb +31 -0
- data/motion/joybox/audio/audio_effect.rb +69 -0
- data/motion/joybox/audio/background_audio.rb +77 -0
- data/motion/joybox/common/{gc_size.rb → cg_size.rb} +13 -12
- data/motion/joybox/common/color.rb +4 -13
- data/motion/joybox/common/initialize.rb +11 -0
- data/motion/joybox/common/ns_array.rb +15 -0
- data/motion/joybox/common/ns_string.rb +7 -0
- data/motion/joybox/common/numeric.rb +13 -4
- data/motion/joybox/common/screen.rb +4 -12
- data/motion/joybox/configuration/debug.rb +29 -0
- data/motion/joybox/core/layer.rb +0 -24
- data/motion/joybox/core/layer_color.rb +47 -0
- data/motion/joybox/core/node.rb +18 -8
- data/motion/joybox/core/scene.rb +0 -5
- data/motion/joybox/core/sprite.rb +43 -25
- data/motion/joybox/core/sprite_batch.rb +15 -6
- data/motion/joybox/core/sprite_frame_cache.rb +9 -58
- data/motion/joybox/debug/physics.rb +40 -0
- data/motion/joybox/debug/physics_draw.rb +191 -0
- data/motion/joybox/joybox.rb +9 -1
- data/motion/joybox/macros.rb +13 -13
- data/motion/joybox/physics/aabb.rb +28 -0
- data/motion/joybox/physics/body.rb +163 -68
- data/motion/joybox/physics/chain_shape.rb +71 -0
- data/motion/joybox/physics/circle_shape.rb +31 -0
- data/motion/joybox/physics/edge_shape.rb +37 -0
- data/motion/joybox/physics/filter.rb +17 -0
- data/motion/joybox/physics/fixture.rb +52 -0
- data/motion/joybox/physics/mass_data.rb +19 -0
- data/motion/joybox/physics/physics_sprite.rb +50 -16
- data/motion/joybox/physics/polygon_shape.rb +54 -0
- data/motion/joybox/physics/profile.rb +14 -0
- data/motion/joybox/physics/ray_cast_input.rb +30 -0
- data/motion/joybox/physics/ray_cast_output.rb +17 -0
- data/motion/joybox/physics/shape.rb +61 -0
- data/motion/joybox/physics/transform.rb +17 -0
- data/motion/joybox/physics/world.rb +101 -30
- data/motion/joybox/tmx/object_layer.rb +12 -0
- data/motion/joybox/tmx/tile_layer.rb +74 -0
- data/motion/joybox/tmx/tile_map.rb +112 -0
- data/motion/joybox/tmx/tile_set.rb +26 -0
- data/motion/joybox/tmx/tmx.rb +16 -0
- data/motion/joybox/ui/label.rb +44 -16
- data/motion/joybox/ui/menu.rb +7 -9
- data/motion/joybox/ui/menu_image.rb +11 -8
- data/motion/joybox/ui/menu_label.rb +14 -13
- data/resources/Default-568h@2x.png +0 -0
- data/resources/animation_frames-hd.plist +126 -0
- data/resources/animation_frames-ipadhd.plist +126 -0
- data/resources/animation_frames.plist +126 -0
- data/resources/animation_sprite_sheet-hd.png +0 -0
- data/resources/animation_sprite_sheet-ipadhd.png +0 -0
- data/resources/animation_sprite_sheet.png +0 -0
- data/resources/fps_images-hd.png +0 -0
- data/resources/fps_images-ipadhd.png +0 -0
- data/resources/fps_images.png +0 -0
- data/resources/sprite.png +0 -0
- data/resources/sprite_inverted.png +0 -0
- data/resources/sprite_sheet.png +0 -0
- data/spec/motion/joybox-ios/common/screen_spec.rb +21 -0
- data/spec/{main_spec.rb → motion/joybox-ios/main_spec.rb} +6 -2
- data/spec/motion/joybox-ios/ui/label_spec.rb +20 -0
- data/spec/motion/joybox-ios/ui/menu_label_spec.rb +15 -0
- data/spec/motion/joybox-ios/ui/menu_spec.rb +87 -0
- data/spec/motion/joybox-osx/common/screen_spec.rb +21 -0
- data/spec/motion/joybox-osx/main_spec.rb +13 -0
- data/spec/motion/joybox-osx/ui/label_spec.rb +18 -0
- data/spec/motion/joybox-osx/ui/menu_label_spec.rb +13 -0
- data/spec/motion/joybox-osx/ui/menu_spec.rb +87 -0
- data/spec/motion/joybox/actions/actions_spec.rb +11 -0
- data/spec/motion/joybox/actions/bezier_spec.rb +37 -0
- data/spec/motion/joybox/actions/blink_spec.rb +16 -0
- data/spec/motion/joybox/actions/fade_spec.rb +49 -0
- data/spec/motion/joybox/actions/jump_spec.rb +37 -0
- data/spec/motion/joybox/actions/move_spec.rb +37 -0
- data/spec/motion/joybox/actions/place_spec.rb +12 -0
- data/spec/motion/joybox/actions/rotate_spec.rb +35 -0
- data/spec/motion/joybox/actions/scale_spec.rb +43 -0
- data/spec/motion/joybox/actions/skew_spec.rb +43 -0
- data/spec/motion/joybox/common/cg_size_spec.rb +29 -0
- data/spec/motion/joybox/common/color_spec.rb +31 -0
- data/spec/motion/joybox/common/ns_string_spec.rb +8 -0
- data/spec/motion/joybox/common/numeric_spec.rb +13 -0
- data/spec/motion/joybox/core/node_spec.rb +36 -0
- data/spec/motion/joybox/core/sprite_batch_spec.rb +34 -0
- data/spec/motion/joybox/core/sprite_frame_cache_spec.rb +111 -0
- data/spec/motion/joybox/core/sprite_spec.rb +121 -0
- data/spec/motion/joybox/macros_spec.rb +280 -0
- data/spec/motion/joybox/physics/aabb_spec.rb +17 -0
- data/spec/motion/joybox/physics/body_spec.rb +318 -0
- data/spec/motion/joybox/physics/chain_shape_spec.rb +80 -0
- data/spec/motion/joybox/physics/circle_shape_spec.rb +63 -0
- data/spec/motion/joybox/physics/edge_shape_spec.rb +48 -0
- data/spec/motion/joybox/physics/fixture_spec.rb +106 -0
- data/spec/motion/joybox/physics/mass_data_spec.rb +13 -0
- data/spec/motion/joybox/physics/physics_sprite_spec.rb +50 -0
- data/spec/motion/joybox/physics/polygon_shape_spec.rb +92 -0
- data/spec/motion/joybox/physics/ray_cast_input_spec.rb +17 -0
- data/spec/motion/joybox/physics/ray_cast_output_spec.rb +13 -0
- data/spec/motion/joybox/physics/shape_spec.rb +50 -0
- data/spec/motion/joybox/physics/transform_spec.rb +13 -0
- data/spec/motion/joybox/physics/world_spec.rb +228 -0
- data/spec/motion/joybox/ui/label_spec.rb +53 -0
- data/spec/motion/joybox/ui/menu_image_spec.rb +51 -0
- data/spec/motion/joybox/ui/menu_label_spec.rb +68 -0
- data/spec/motion/joybox/ui/menu_spec.rb +26 -0
- data/spec/spec_helpers/cg_point.rb +5 -0
- data/spec/spec_helpers/cg_point_spec.rb +14 -0
- data/template/joybox-ios-example-repl/files/.gitignore +16 -0
- data/template/joybox-ios/files/.gitignore +16 -0
- data/template/joybox-osx-example-repl/files/.gitignore +16 -0
- data/template/joybox-osx/files/.gitignore +16 -0
- data/vendor/vendor-ios/box_2d/box_2d.bridgesupport +1201 -85
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DAABB.h +21 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DBody.h +58 -13
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DBodyDef.h +44 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DBodyTypes.h +20 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DChainShape.h +29 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DCircleShape.h +7 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DColor.h +23 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DContactFilter.h +24 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DContactListener.h +1 -1
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DDestructionListener.h +24 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DDraw.h +54 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DEdgeShape.h +13 -2
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DFilter.h +23 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DFixture.h +47 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DFixtureDef.h +29 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DMassData.h +23 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DPolygonShape.h +14 -1
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DProfile.h +31 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DQueryCallback.h +24 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DRayCastCallback.h +24 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DRayCastInput.h +23 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DRayCastOutput.h +21 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DShape.h +23 -3
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DShapeTypes.h +22 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DTransform.h +21 -0
- data/vendor/vendor-ios/box_2d/box_2d_include/B2DWorld.h +40 -19
- data/vendor/vendor-ios/box_2d/libBox2D.a +0 -0
- data/vendor/vendor-ios/cocos_2d/cocos_2d.bridgesupport +808 -1578
- data/vendor/vendor-ios/cocos_2d/cocos_2d_include/CCActionEase.h +47 -0
- data/vendor/vendor-ios/cocos_2d/cocos_2d_include/CCFontDefinition.h +85 -0
- data/vendor/vendor-ios/cocos_2d/cocos_2d_include/CCLabelTTF.h +54 -6
- data/vendor/vendor-ios/cocos_2d/cocos_2d_include/CCMenuItem.h +1 -0
- data/vendor/vendor-ios/cocos_2d/cocos_2d_include/CCTMXLayer.h +2 -2
- data/vendor/vendor-ios/cocos_2d/cocos_2d_include/CCTexture2D.h +4 -0
- data/vendor/vendor-ios/cocos_2d/cocos_2d_include/ccTypes.h +51 -1
- data/vendor/vendor-ios/cocos_2d/libcocos2d.a +0 -0
- data/vendor/vendor-ios/cocos_builder_reader/cocos_builder_reader.bridgesupport +510 -0
- data/vendor/vendor-ios/cocos_builder_reader/cocos_builder_reader_include/CCBAnimationManager.h +149 -0
- data/vendor/vendor-ios/cocos_builder_reader/cocos_builder_reader_include/CCBKeyframe.h +40 -0
- data/vendor/vendor-ios/cocos_builder_reader/cocos_builder_reader_include/CCBReader.h +176 -0
- data/vendor/vendor-ios/cocos_builder_reader/cocos_builder_reader_include/CCBSequence.h +49 -0
- data/vendor/vendor-ios/cocos_builder_reader/cocos_builder_reader_include/CCBSequenceProperty.h +38 -0
- data/vendor/vendor-ios/cocos_builder_reader/cocos_builder_reader_include/CCNode+CCBRelativePositioning.h +65 -0
- data/vendor/vendor-ios/cocos_builder_reader/libCocosBuilderReader.a +0 -0
- data/vendor/vendor-ios/cocos_denshion/cocos_denshion.bridgesupport +1001 -0
- data/vendor/vendor-ios/cocos_denshion/cocos_denshion_include/CDAudioManager.h +243 -0
- data/vendor/vendor-ios/cocos_denshion/cocos_denshion_include/CDConfig.h +60 -0
- data/vendor/vendor-ios/cocos_denshion/cocos_denshion_include/CDOpenALSupport.h +77 -0
- data/vendor/vendor-ios/cocos_denshion/cocos_denshion_include/CDXMacOSXSupport.h +232 -0
- data/vendor/vendor-ios/cocos_denshion/cocos_denshion_include/CDXPropertyModifierAction.h +45 -0
- data/vendor/vendor-ios/cocos_denshion/cocos_denshion_include/CocosDenshion.h +440 -0
- data/vendor/vendor-ios/cocos_denshion/cocos_denshion_include/SimpleAudioEngine.h +90 -0
- data/vendor/vendor-ios/cocos_denshion/libCocosDenshion.a +0 -0
- data/vendor/vendor-ios/kazmath/kazmath.bridgesupport +865 -0
- data/vendor/vendor-ios/kazmath/kazmath_include/GL/mat4stack.h +51 -0
- data/vendor/vendor-ios/kazmath/kazmath_include/GL/matrix.h +58 -0
- data/vendor/vendor-ios/kazmath/kazmath_include/aabb.h +53 -0
- data/vendor/vendor-ios/kazmath/kazmath_include/kazmath.h +39 -0
- data/vendor/vendor-ios/kazmath/kazmath_include/mat3.h +75 -0
- data/vendor/vendor-ios/kazmath/kazmath_include/mat4.h +93 -0
- data/vendor/vendor-ios/kazmath/kazmath_include/neon_matrix_impl.h +41 -0
- data/vendor/vendor-ios/kazmath/kazmath_include/plane.h +70 -0
- data/vendor/vendor-ios/kazmath/kazmath_include/quaternion.h +113 -0
- data/vendor/vendor-ios/kazmath/kazmath_include/ray2.h +50 -0
- data/vendor/vendor-ios/kazmath/kazmath_include/utility.h +74 -0
- data/vendor/vendor-ios/kazmath/kazmath_include/vec2.h +64 -0
- data/vendor/vendor-ios/kazmath/kazmath_include/vec3.h +68 -0
- data/vendor/vendor-ios/kazmath/kazmath_include/vec4.h +68 -0
- data/vendor/vendor-ios/kazmath/libkazmath.a +0 -0
- data/vendor/vendor-osx/box_2d/box_2d.bridgesupport +1199 -83
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DAABB.h +21 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DBody.h +58 -13
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DBodyDef.h +44 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DBodyTypes.h +20 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DChainShape.h +29 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DCircleShape.h +7 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DColor.h +23 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DContactFilter.h +24 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DContactListener.h +1 -1
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DDestructionListener.h +24 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DDraw.h +54 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DEdgeShape.h +13 -2
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DFilter.h +23 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DFixture.h +47 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DFixtureDef.h +29 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DMassData.h +23 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DPolygonShape.h +14 -1
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DProfile.h +31 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DQueryCallback.h +24 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DRayCastCallback.h +24 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DRayCastInput.h +23 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DRayCastOutput.h +21 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DShape.h +23 -3
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DShapeTypes.h +22 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DTransform.h +21 -0
- data/vendor/vendor-osx/box_2d/box_2d_include/B2DWorld.h +40 -19
- data/vendor/vendor-osx/box_2d/libBox2D.a +0 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d.bridgesupport +2820 -2633
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCActionEase.h +47 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCFontDefinition.h +85 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCLabelTTF.h +54 -6
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCMenuItem.h +1 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCTMXLayer.h +2 -2
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/CCTexture2D.h +4 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Platforms/iOS/CCDirectorIOS.h +111 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Platforms/iOS/CCES2Renderer.h +83 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Platforms/iOS/CCESRenderer.h +54 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Platforms/iOS/CCGLView.h +175 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Platforms/iOS/CCTouchDelegateProtocol.h +75 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Platforms/iOS/CCTouchDispatcher.h +120 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/Platforms/iOS/CCTouchHandler.h +93 -0
- data/vendor/vendor-osx/cocos_2d/cocos_2d_include/ccTypes.h +65 -1
- data/vendor/vendor-osx/cocos_2d/libcocos2d.a +0 -0
- data/vendor/vendor-osx/cocos_builder_reader/cocos_builder_reader.bridgesupport +510 -0
- data/vendor/vendor-osx/cocos_builder_reader/cocos_builder_reader_include/CCBAnimationManager.h +149 -0
- data/vendor/vendor-osx/cocos_builder_reader/cocos_builder_reader_include/CCBKeyframe.h +40 -0
- data/vendor/vendor-osx/cocos_builder_reader/cocos_builder_reader_include/CCBReader.h +176 -0
- data/vendor/vendor-osx/cocos_builder_reader/cocos_builder_reader_include/CCBSequence.h +49 -0
- data/vendor/vendor-osx/cocos_builder_reader/cocos_builder_reader_include/CCBSequenceProperty.h +38 -0
- data/vendor/vendor-osx/cocos_builder_reader/cocos_builder_reader_include/CCNode+CCBRelativePositioning.h +65 -0
- data/vendor/vendor-osx/cocos_builder_reader/libCocosBuilderReader.a +0 -0
- data/vendor/vendor-osx/cocos_denshion/cocos_denshion.bridgesupport +1001 -0
- data/vendor/vendor-osx/cocos_denshion/cocos_denshion_include/CDAudioManager.h +243 -0
- data/vendor/vendor-osx/cocos_denshion/cocos_denshion_include/CDConfig.h +60 -0
- data/vendor/vendor-osx/cocos_denshion/cocos_denshion_include/CDOpenALSupport.h +77 -0
- data/vendor/vendor-osx/cocos_denshion/cocos_denshion_include/CDXMacOSXSupport.h +232 -0
- data/vendor/vendor-osx/cocos_denshion/cocos_denshion_include/CDXPropertyModifierAction.h +45 -0
- data/vendor/vendor-osx/cocos_denshion/cocos_denshion_include/CocosDenshion.h +440 -0
- data/vendor/vendor-osx/cocos_denshion/cocos_denshion_include/SimpleAudioEngine.h +90 -0
- data/vendor/vendor-osx/cocos_denshion/libCocosDenshion.a +0 -0
- data/vendor/vendor-osx/kazmath/kazmath.bridgesupport +865 -0
- data/vendor/vendor-osx/kazmath/kazmath_include/GL/mat4stack.h +51 -0
- data/vendor/vendor-osx/kazmath/kazmath_include/GL/matrix.h +58 -0
- data/vendor/vendor-osx/kazmath/kazmath_include/aabb.h +53 -0
- data/vendor/vendor-osx/kazmath/kazmath_include/kazmath.h +39 -0
- data/vendor/vendor-osx/kazmath/kazmath_include/mat3.h +75 -0
- data/vendor/vendor-osx/kazmath/kazmath_include/mat4.h +93 -0
- data/vendor/vendor-osx/kazmath/kazmath_include/neon_matrix_impl.h +41 -0
- data/vendor/vendor-osx/kazmath/kazmath_include/plane.h +70 -0
- data/vendor/vendor-osx/kazmath/kazmath_include/quaternion.h +113 -0
- data/vendor/vendor-osx/kazmath/kazmath_include/ray2.h +50 -0
- data/vendor/vendor-osx/kazmath/kazmath_include/utility.h +74 -0
- data/vendor/vendor-osx/kazmath/kazmath_include/vec2.h +64 -0
- data/vendor/vendor-osx/kazmath/kazmath_include/vec3.h +68 -0
- data/vendor/vendor-osx/kazmath/kazmath_include/vec4.h +68 -0
- data/vendor/vendor-osx/kazmath/libkazmath.a +0 -0
- metadata +353 -57
- checksums.yaml +0 -15
- data/bin/joybox +0 -49
- data/command/joybox/USAGE +0 -24
- data/motion/joybox-ios/configuration/debug.rb +0 -27
- data/motion/joybox-ios/debug/debug.rb +0 -10
- data/motion/joybox-osx/configuration/debug.rb +0 -27
- data/motion/joybox-osx/configuration/sprite_view.rb +0 -91
- data/motion/joybox-osx/debug/debug.rb +0 -10
- data/motion/joybox/core/ns_object.rb +0 -8
- data/spec/lib/joybox/cocos2d/cocos2d_spec.rb +0 -7
- data/spec/lib/joybox/cocos2d/macros_spec.rb +0 -37
- data/vendor/vendor-ios/cocos_2d/cocos_2d_include/cocos2d-ios-exceptions.bridgesupport +0 -39
- data/vendor/vendor-ios/cocos_2d/cocos_2d_include/gen_cocos2d_bridgesupport.sh +0 -17
- data/vendor/vendor-ios/cocos_2d/cocos_2d_include/gen_cocos2d_complement.sh +0 -17
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
//
|
|
2
|
+
// CCNode+CCBRelativePositioning.h
|
|
3
|
+
// CocosBuilderExample
|
|
4
|
+
//
|
|
5
|
+
// Created by Viktor Lidholt on 7/6/12.
|
|
6
|
+
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
7
|
+
//
|
|
8
|
+
|
|
9
|
+
#import "cocos2d.h"
|
|
10
|
+
|
|
11
|
+
enum
|
|
12
|
+
{
|
|
13
|
+
kCCBPositionTypeRelativeBottomLeft,
|
|
14
|
+
kCCBPositionTypeRelativeTopLeft,
|
|
15
|
+
kCCBPositionTypeRelativeTopRight,
|
|
16
|
+
kCCBPositionTypeRelativeBottomRight,
|
|
17
|
+
kCCBPositionTypePercent,
|
|
18
|
+
kCCBPositionTypeMultiplyResolution,
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
enum
|
|
22
|
+
{
|
|
23
|
+
kCCBSizeTypeAbsolute,
|
|
24
|
+
kCCBSizeTypePercent,
|
|
25
|
+
kCCBSizeTypeRelativeContainer,
|
|
26
|
+
kCCBSizeTypeHorizontalPercent,
|
|
27
|
+
kCCBSizeTypeVerticalPercent,
|
|
28
|
+
kCCBSizeTypeMultiplyResolution,
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
enum
|
|
32
|
+
{
|
|
33
|
+
kCCBScaleTypeAbsolute,
|
|
34
|
+
kCCBScaleTypeMultiplyResolution
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
extern float ccbResolutionScale;
|
|
38
|
+
|
|
39
|
+
@interface CCNode (CCBRelativePositioning)
|
|
40
|
+
|
|
41
|
+
- (float) resolutionScale;
|
|
42
|
+
|
|
43
|
+
#pragma mark Positions
|
|
44
|
+
|
|
45
|
+
- (CGPoint) absolutePositionFromRelative:(CGPoint)pt type:(int)type parentSize:(CGSize)containerSize propertyName:(NSString*) propertyName;
|
|
46
|
+
- (void) setRelativePosition:(CGPoint)pt type:(int)type parentSize:(CGSize)containerSize propertyName:(NSString*) propertyName;
|
|
47
|
+
- (void) setRelativePosition:(CGPoint)position type:(int)type parentSize:(CGSize)parentSize;
|
|
48
|
+
- (void) setRelativePosition:(CGPoint)position type:(int)type;
|
|
49
|
+
|
|
50
|
+
#pragma mark Content Size
|
|
51
|
+
|
|
52
|
+
- (void) setRelativeSize:(CGSize)size type:(int)type parentSize:(CGSize)containerSize propertyName:(NSString*) propertyName;
|
|
53
|
+
- (void) setRelativeSize:(CGSize)size type:(int)type parentSize:(CGSize)parentSize;
|
|
54
|
+
- (void) setRelativeSize:(CGSize)size type:(int)type;
|
|
55
|
+
|
|
56
|
+
#pragma mark Scale
|
|
57
|
+
|
|
58
|
+
- (void) setRelativeScaleX:(float)x Y:(float)y type:(int)type propertyName:(NSString*)propertyName;
|
|
59
|
+
- (void) setRelativeScaleX:(float)x Y:(float)y type:(int)type;
|
|
60
|
+
|
|
61
|
+
#pragma mark Floats
|
|
62
|
+
|
|
63
|
+
- (void) setRelativeFloat:(float)f type:(int)type propertyName:(NSString*)propertyName;
|
|
64
|
+
|
|
65
|
+
@end
|
|
Binary file
|
|
@@ -0,0 +1,1001 @@
|
|
|
1
|
+
<?xml version='1.0'?>
|
|
2
|
+
<signatures version='1.0'>
|
|
3
|
+
<struct type='{_bufferInfo="bufferId"I"bufferState"i"bufferData"^v"format"i"sizeInBytes"i"frequencyInHertz"i}' name='bufferInfo'>
|
|
4
|
+
<field type='I' name='bufferId' declared_type='ALuint'/>
|
|
5
|
+
<field type='i' name='bufferState' declared_type='int'/>
|
|
6
|
+
<field type='^v' name='bufferData' declared_type='void*'/>
|
|
7
|
+
<field type='i' name='format' declared_type='ALenum'/>
|
|
8
|
+
<field type='i' name='sizeInBytes' declared_type='ALsizei'/>
|
|
9
|
+
<field type='i' name='frequencyInHertz' declared_type='ALsizei'/>
|
|
10
|
+
</struct>
|
|
11
|
+
<struct type='{_sourceGroup="startIndex"i"currentIndex"i"totalSources"i"enabled"B"nonInterruptible"B"sourceStatuses"^i}' name='sourceGroup'>
|
|
12
|
+
<field type='i' name='startIndex' declared_type='int'/>
|
|
13
|
+
<field type='i' name='currentIndex' declared_type='int'/>
|
|
14
|
+
<field type='i' name='totalSources' declared_type='int'/>
|
|
15
|
+
<field type='B' name='enabled' declared_type='_Bool'/>
|
|
16
|
+
<field type='B' name='nonInterruptible' declared_type='_Bool'/>
|
|
17
|
+
<field type='^i' name='sourceStatuses' declared_type='int*'/>
|
|
18
|
+
</struct>
|
|
19
|
+
<struct type='{_sourceInfo="usable"B"sourceId"I"attachedBufferId"I}' name='sourceInfo'>
|
|
20
|
+
<field type='B' name='usable' declared_type='_Bool'/>
|
|
21
|
+
<field type='I' name='sourceId' declared_type='ALuint'/>
|
|
22
|
+
<field type='I' name='attachedBufferId' declared_type='ALuint'/>
|
|
23
|
+
</struct>
|
|
24
|
+
<constant type='@' name='AVAudioSessionCategoryAmbient' const='true' declared_type='NSString*'/>
|
|
25
|
+
<constant type='@' name='AVAudioSessionCategoryAudioProcessing' const='true' declared_type='NSString*'/>
|
|
26
|
+
<constant type='@' name='AVAudioSessionCategoryPlayAndRecord' const='true' declared_type='NSString*'/>
|
|
27
|
+
<constant type='@' name='AVAudioSessionCategoryPlayback' const='true' declared_type='NSString*'/>
|
|
28
|
+
<constant type='@' name='AVAudioSessionCategoryRecord' const='true' declared_type='NSString*'/>
|
|
29
|
+
<constant type='@' name='AVAudioSessionCategorySoloAmbient' const='true' declared_type='NSString*'/>
|
|
30
|
+
<constant type='@' name='kCDN_AsynchLoadComplete' const='true' declared_type='NSString*'/>
|
|
31
|
+
<constant type='@' name='kCDN_AudioManagerInitialised' const='true' declared_type='NSString*'/>
|
|
32
|
+
<constant type='@' name='kCDN_BadAlContext' const='true' declared_type='NSString*'/>
|
|
33
|
+
<constant type='i' name='kCDNoBuffer' const='true' declared_type='int'/>
|
|
34
|
+
<constant type='f' name='kCD_GainDefault' const='true' declared_type='float'/>
|
|
35
|
+
<constant type='f' name='kCD_PanDefault' const='true' declared_type='float'/>
|
|
36
|
+
<constant type='f' name='kCD_PanFullLeft' const='true' declared_type='float'/>
|
|
37
|
+
<constant type='f' name='kCD_PanFullRight' const='true' declared_type='float'/>
|
|
38
|
+
<constant type='f' name='kCD_PitchDefault' const='true' declared_type='float'/>
|
|
39
|
+
<constant type='f' name='kCD_PitchHigherOneOctave' const='true' declared_type='float'/>
|
|
40
|
+
<constant type='f' name='kCD_PitchLowerOneOctave' const='true' declared_type='float'/>
|
|
41
|
+
<string_constant name='COCOSDENSHION_VERSION' value='Aphex.rc'/>
|
|
42
|
+
<enum name='AVAudioSessionInterruptionFlags_ShouldResume' value='1'/>
|
|
43
|
+
<enum name='AVAudioSessionSetActiveFlags_NotifyOthersOnDeactivation' value='1'/>
|
|
44
|
+
<enum name='CD_BS_EMPTY' value='0'/>
|
|
45
|
+
<enum name='CD_BS_FAILED' value='2'/>
|
|
46
|
+
<enum name='CD_BS_LOADED' value='1'/>
|
|
47
|
+
<enum name='CD_BUFFERS_INCREMENT' value='16'/>
|
|
48
|
+
<enum name='CD_BUFFERS_START' value='64'/>
|
|
49
|
+
<enum name='CD_IGNORE_AUDIO_SESSION' value='200211438'/>
|
|
50
|
+
<enum name='CD_MUTE' value='267312043'/>
|
|
51
|
+
<enum name='CD_NO_SOURCE' value='267313068'/>
|
|
52
|
+
<enum name='CD_SAMPLE_RATE_BASIC' value='8000'/>
|
|
53
|
+
<enum name='CD_SAMPLE_RATE_DEFAULT' value='44100'/>
|
|
54
|
+
<enum name='CD_SAMPLE_RATE_HIGH' value='44100'/>
|
|
55
|
+
<enum name='CD_SAMPLE_RATE_LOW' value='16000'/>
|
|
56
|
+
<enum name='CD_SAMPLE_RATE_MID' value='22050'/>
|
|
57
|
+
<enum name='CD_SOURCE_LIMIT' value='32'/>
|
|
58
|
+
<enum name='kAMM_FxOnly' value='0'/>
|
|
59
|
+
<enum name='kAMM_FxPlusMusic' value='1'/>
|
|
60
|
+
<enum name='kAMM_FxPlusMusicIfNoOtherAudio' value='2'/>
|
|
61
|
+
<enum name='kAMM_MediaPlayback' value='3'/>
|
|
62
|
+
<enum name='kAMM_PlayAndRecord' value='4'/>
|
|
63
|
+
<enum name='kAMRBDoNothing' value='0'/>
|
|
64
|
+
<enum name='kAMRBStop' value='2'/>
|
|
65
|
+
<enum name='kAMRBStopPlay' value='1'/>
|
|
66
|
+
<enum name='kAMStateInitialised' value='2'/>
|
|
67
|
+
<enum name='kAMStateInitialising' value='1'/>
|
|
68
|
+
<enum name='kAMStateUninitialised' value='0'/>
|
|
69
|
+
<enum name='kASC_Left' value='0'/>
|
|
70
|
+
<enum name='kASC_Right' value='1'/>
|
|
71
|
+
<enum name='kAudioSessionProperty_AudioRoute' value='1'/>
|
|
72
|
+
<enum name='kAudioSessionProperty_OtherAudioIsPlaying' value='0'/>
|
|
73
|
+
<enum name='kIT_Exponential' value='2'/>
|
|
74
|
+
<enum name='kIT_Linear' value='0'/>
|
|
75
|
+
<enum name='kIT_SCurve' value='1'/>
|
|
76
|
+
<enum name='kLAS_Init' value='0'/>
|
|
77
|
+
<enum name='kLAS_Loaded' value='1'/>
|
|
78
|
+
<enum name='kLAS_Paused' value='3'/>
|
|
79
|
+
<enum name='kLAS_Playing' value='2'/>
|
|
80
|
+
<enum name='kLAS_Stopped' value='4'/>
|
|
81
|
+
<function name='AudioSessionGetProperty'>
|
|
82
|
+
<arg type='L' name='inID' declared_type='UInt32'/>
|
|
83
|
+
<arg type='^I' name='ioDataSize' declared_type='UInt32*'/>
|
|
84
|
+
<arg type='^v' name='outData' declared_type='void*'/>
|
|
85
|
+
<retval type='l' declared_type='OSStatus'/>
|
|
86
|
+
</function>
|
|
87
|
+
<function name='CDGetOpenALAudioData'>
|
|
88
|
+
<arg type='^{__CFURL=}' name='inFileURL' declared_type='CFURLRef'/>
|
|
89
|
+
<arg type='^i' name='outDataSize' declared_type='ALsizei*'/>
|
|
90
|
+
<arg type='^i' name='outDataFormat' declared_type='ALenum*'/>
|
|
91
|
+
<arg type='^i' name='outSampleRate' declared_type='ALsizei*'/>
|
|
92
|
+
<retval type='^v' declared_type='void*'/>
|
|
93
|
+
</function>
|
|
94
|
+
<function name='CDloadCafAudioData'>
|
|
95
|
+
<arg type='^{__CFURL=}' name='inFileURL' declared_type='CFURLRef'/>
|
|
96
|
+
<arg type='^i' name='outDataSize' declared_type='ALsizei*'/>
|
|
97
|
+
<arg type='^i' name='outDataFormat' declared_type='ALenum*'/>
|
|
98
|
+
<arg type='^i' name='outSampleRate' declared_type='ALsizei*'/>
|
|
99
|
+
<retval type='^v' declared_type='void*'/>
|
|
100
|
+
</function>
|
|
101
|
+
<function name='CDloadWaveAudioData'>
|
|
102
|
+
<arg type='^{__CFURL=}' name='inFileURL' declared_type='CFURLRef'/>
|
|
103
|
+
<arg type='^i' name='outDataSize' declared_type='ALsizei*'/>
|
|
104
|
+
<arg type='^i' name='outDataFormat' declared_type='ALenum*'/>
|
|
105
|
+
<arg type='^i' name='outSampleRate' declared_type='ALsizei*'/>
|
|
106
|
+
<retval type='^v' declared_type='void*'/>
|
|
107
|
+
</function>
|
|
108
|
+
<class name='AVAudioPlayer'>
|
|
109
|
+
<method selector='averagePowerForChannel:'>
|
|
110
|
+
<arg type='I' name='channelNumber' index='0' declared_type='NSUInteger'/>
|
|
111
|
+
<retval type='f' declared_type='float'/>
|
|
112
|
+
</method>
|
|
113
|
+
<method selector='currentTime'>
|
|
114
|
+
<retval type='d' declared_type='NSTimeInterval'/>
|
|
115
|
+
</method>
|
|
116
|
+
<method selector='data'>
|
|
117
|
+
<retval type='@' declared_type='NSData*'/>
|
|
118
|
+
</method>
|
|
119
|
+
<method selector='delegate'>
|
|
120
|
+
<retval type='@' declared_type='id'/>
|
|
121
|
+
</method>
|
|
122
|
+
<method selector='deviceCurrentTime'>
|
|
123
|
+
<retval type='d' declared_type='NSTimeInterval'/>
|
|
124
|
+
</method>
|
|
125
|
+
<method selector='duration'>
|
|
126
|
+
<retval type='d' declared_type='NSTimeInterval'/>
|
|
127
|
+
</method>
|
|
128
|
+
<method selector='initWithContentsOfURL:error:'>
|
|
129
|
+
<arg type='@' name='theUrl' index='0' declared_type='NSURL*'/>
|
|
130
|
+
<arg type='^@' name='outError' index='1' declared_type='NSError**'/>
|
|
131
|
+
<retval type='@' declared_type='id'/>
|
|
132
|
+
</method>
|
|
133
|
+
<method selector='initWithData:error:'>
|
|
134
|
+
<arg type='@' name='theData' index='0' declared_type='NSData*'/>
|
|
135
|
+
<arg type='^@' name='outError' index='1' declared_type='NSError**'/>
|
|
136
|
+
<retval type='@' declared_type='id'/>
|
|
137
|
+
</method>
|
|
138
|
+
<method selector='isMeteringEnabled'>
|
|
139
|
+
<retval type='B' declared_type='BOOL'/>
|
|
140
|
+
</method>
|
|
141
|
+
<method selector='isPlaying'>
|
|
142
|
+
<retval type='B' declared_type='BOOL'/>
|
|
143
|
+
</method>
|
|
144
|
+
<method selector='numberOfChannels'>
|
|
145
|
+
<retval type='I' declared_type='NSUInteger'/>
|
|
146
|
+
</method>
|
|
147
|
+
<method selector='numberOfLoops'>
|
|
148
|
+
<retval type='i' declared_type='NSInteger'/>
|
|
149
|
+
</method>
|
|
150
|
+
<method selector='pan'>
|
|
151
|
+
<retval type='f' declared_type='float'/>
|
|
152
|
+
</method>
|
|
153
|
+
<method selector='pause'>
|
|
154
|
+
<retval type='v' declared_type='void'/>
|
|
155
|
+
</method>
|
|
156
|
+
<method selector='peakPowerForChannel:'>
|
|
157
|
+
<arg type='I' name='channelNumber' index='0' declared_type='NSUInteger'/>
|
|
158
|
+
<retval type='f' declared_type='float'/>
|
|
159
|
+
</method>
|
|
160
|
+
<method selector='play'>
|
|
161
|
+
<retval type='B' declared_type='BOOL'/>
|
|
162
|
+
</method>
|
|
163
|
+
<method selector='playAtTime:'>
|
|
164
|
+
<arg type='d' name='time' index='0' declared_type='NSTimeInterval'/>
|
|
165
|
+
<retval type='B' declared_type='BOOL'/>
|
|
166
|
+
</method>
|
|
167
|
+
<method selector='prepareToPlay'>
|
|
168
|
+
<retval type='B' declared_type='BOOL'/>
|
|
169
|
+
</method>
|
|
170
|
+
<method selector='setCurrentTime:'>
|
|
171
|
+
<arg type='d' name='currentTime' index='0' declared_type='NSTimeInterval'/>
|
|
172
|
+
<retval type='v' declared_type='void'/>
|
|
173
|
+
</method>
|
|
174
|
+
<method selector='setDelegate:'>
|
|
175
|
+
<arg type='@' name='delegate' index='0' declared_type='id'/>
|
|
176
|
+
<retval type='v' declared_type='void'/>
|
|
177
|
+
</method>
|
|
178
|
+
<method selector='setMeteringEnabled:'>
|
|
179
|
+
<arg type='B' name='meteringEnabled' index='0' declared_type='BOOL'/>
|
|
180
|
+
<retval type='v' declared_type='void'/>
|
|
181
|
+
</method>
|
|
182
|
+
<method selector='setNumberOfLoops:'>
|
|
183
|
+
<arg type='i' name='numberOfLoops' index='0' declared_type='NSInteger'/>
|
|
184
|
+
<retval type='v' declared_type='void'/>
|
|
185
|
+
</method>
|
|
186
|
+
<method selector='setPan:'>
|
|
187
|
+
<arg type='f' name='pan' index='0' declared_type='float'/>
|
|
188
|
+
<retval type='v' declared_type='void'/>
|
|
189
|
+
</method>
|
|
190
|
+
<method selector='setVolume:'>
|
|
191
|
+
<arg type='f' name='volume' index='0' declared_type='float'/>
|
|
192
|
+
<retval type='v' declared_type='void'/>
|
|
193
|
+
</method>
|
|
194
|
+
<method selector='stop'>
|
|
195
|
+
<retval type='v' declared_type='void'/>
|
|
196
|
+
</method>
|
|
197
|
+
<method selector='updateMeters'>
|
|
198
|
+
<retval type='v' declared_type='void'/>
|
|
199
|
+
</method>
|
|
200
|
+
<method selector='url'>
|
|
201
|
+
<retval type='@' declared_type='NSURL*'/>
|
|
202
|
+
</method>
|
|
203
|
+
<method selector='volume'>
|
|
204
|
+
<retval type='f' declared_type='float'/>
|
|
205
|
+
</method>
|
|
206
|
+
</class>
|
|
207
|
+
<class name='AVAudioSession'>
|
|
208
|
+
<method selector='category'>
|
|
209
|
+
<retval type='@' declared_type='NSString*'/>
|
|
210
|
+
</method>
|
|
211
|
+
<method selector='currentHardwareInputNumberOfChannels'>
|
|
212
|
+
<retval type='i' declared_type='NSInteger'/>
|
|
213
|
+
</method>
|
|
214
|
+
<method selector='currentHardwareOutputNumberOfChannels'>
|
|
215
|
+
<retval type='i' declared_type='NSInteger'/>
|
|
216
|
+
</method>
|
|
217
|
+
<method selector='currentHardwareSampleRate'>
|
|
218
|
+
<retval type='d' declared_type='double'/>
|
|
219
|
+
</method>
|
|
220
|
+
<method selector='delegate'>
|
|
221
|
+
<retval type='@' declared_type='id'/>
|
|
222
|
+
</method>
|
|
223
|
+
<method selector='inputIsAvailable'>
|
|
224
|
+
<retval type='B' declared_type='BOOL'/>
|
|
225
|
+
</method>
|
|
226
|
+
<method selector='preferredHardwareSampleRate'>
|
|
227
|
+
<retval type='d' declared_type='double'/>
|
|
228
|
+
</method>
|
|
229
|
+
<method selector='preferredIOBufferDuration'>
|
|
230
|
+
<retval type='d' declared_type='NSTimeInterval'/>
|
|
231
|
+
</method>
|
|
232
|
+
<method selector='setActive:error:'>
|
|
233
|
+
<arg type='B' name='beActive' index='0' declared_type='BOOL'/>
|
|
234
|
+
<arg type='^@' name='outError' index='1' declared_type='NSError**'/>
|
|
235
|
+
<retval type='B' declared_type='BOOL'/>
|
|
236
|
+
</method>
|
|
237
|
+
<method selector='setActive:withFlags:error:'>
|
|
238
|
+
<arg type='B' name='beActive' index='0' declared_type='BOOL'/>
|
|
239
|
+
<arg type='i' name='flags' index='1' declared_type='NSInteger'/>
|
|
240
|
+
<arg type='^@' name='outError' index='2' declared_type='NSError**'/>
|
|
241
|
+
<retval type='B' declared_type='BOOL'/>
|
|
242
|
+
</method>
|
|
243
|
+
<method selector='setCategory:error:'>
|
|
244
|
+
<arg type='@' name='theCategory' index='0' declared_type='NSString*'/>
|
|
245
|
+
<arg type='^@' name='outError' index='1' declared_type='NSError**'/>
|
|
246
|
+
<retval type='B' declared_type='BOOL'/>
|
|
247
|
+
</method>
|
|
248
|
+
<method selector='setDelegate:'>
|
|
249
|
+
<arg type='@' name='delegate' index='0' declared_type='id'/>
|
|
250
|
+
<retval type='v' declared_type='void'/>
|
|
251
|
+
</method>
|
|
252
|
+
<method selector='setPreferredHardwareSampleRate:error:'>
|
|
253
|
+
<arg type='d' name='sampleRate' index='0' declared_type='double'/>
|
|
254
|
+
<arg type='^@' name='outError' index='1' declared_type='NSError**'/>
|
|
255
|
+
<retval type='B' declared_type='BOOL'/>
|
|
256
|
+
</method>
|
|
257
|
+
<method selector='setPreferredIOBufferDuration:error:'>
|
|
258
|
+
<arg type='d' name='duration' index='0' declared_type='NSTimeInterval'/>
|
|
259
|
+
<arg type='^@' name='outError' index='1' declared_type='NSError**'/>
|
|
260
|
+
<retval type='B' declared_type='BOOL'/>
|
|
261
|
+
</method>
|
|
262
|
+
<method class_method='true' selector='sharedInstance'>
|
|
263
|
+
<retval type='@' declared_type='id'/>
|
|
264
|
+
</method>
|
|
265
|
+
</class>
|
|
266
|
+
<class name='CDAsynchBufferLoader'>
|
|
267
|
+
<method selector='init:soundEngine:'>
|
|
268
|
+
<arg type='@' name='loadRequests' index='0' declared_type='NSArray*'/>
|
|
269
|
+
<arg type='@' name='theSoundEngine' index='1' declared_type='CDSoundEngine*'/>
|
|
270
|
+
<retval type='@' declared_type='id'/>
|
|
271
|
+
</method>
|
|
272
|
+
</class>
|
|
273
|
+
<class name='CDAudioInterruptTargetGroup'>
|
|
274
|
+
<method selector='addAudioInterruptTarget:'>
|
|
275
|
+
<arg type='@' name='interruptibleTarget' index='0' declared_type='NSObject*'/>
|
|
276
|
+
<retval type='v' declared_type='void'/>
|
|
277
|
+
</method>
|
|
278
|
+
</class>
|
|
279
|
+
<class name='CDAudioManager'>
|
|
280
|
+
<method selector='applicationDidBecomeActive'>
|
|
281
|
+
<retval type='v' declared_type='void'/>
|
|
282
|
+
</method>
|
|
283
|
+
<method selector='applicationWillResignActive'>
|
|
284
|
+
<retval type='v' declared_type='void'/>
|
|
285
|
+
</method>
|
|
286
|
+
<method selector='audioSessionInterrupted'>
|
|
287
|
+
<retval type='v' declared_type='void'/>
|
|
288
|
+
</method>
|
|
289
|
+
<method selector='audioSessionResumed'>
|
|
290
|
+
<retval type='v' declared_type='void'/>
|
|
291
|
+
</method>
|
|
292
|
+
<method selector='audioSourceForChannel:'>
|
|
293
|
+
<arg type='i' name='channel' index='0' declared_type='tAudioSourceChannel'/>
|
|
294
|
+
<retval type='@' declared_type='CDLongAudioSource*'/>
|
|
295
|
+
</method>
|
|
296
|
+
<method selector='audioSourceLoad:channel:'>
|
|
297
|
+
<arg type='@' name='filePath' index='0' declared_type='NSString*'/>
|
|
298
|
+
<arg type='i' name='channel' index='1' declared_type='tAudioSourceChannel'/>
|
|
299
|
+
<retval type='@' declared_type='CDLongAudioSource*'/>
|
|
300
|
+
</method>
|
|
301
|
+
<method selector='backgroundMusic'>
|
|
302
|
+
<retval type='@' declared_type='CDLongAudioSource*'/>
|
|
303
|
+
</method>
|
|
304
|
+
<method class_method='true' selector='configure:'>
|
|
305
|
+
<arg type='i' name='mode' index='0' declared_type='tAudioManagerMode'/>
|
|
306
|
+
<retval type='v' declared_type='void'/>
|
|
307
|
+
</method>
|
|
308
|
+
<method class_method='true' selector='end'>
|
|
309
|
+
<retval type='v' declared_type='void'/>
|
|
310
|
+
</method>
|
|
311
|
+
<method selector='init:'>
|
|
312
|
+
<arg type='i' name='mode' index='0' declared_type='tAudioManagerMode'/>
|
|
313
|
+
<retval type='@' declared_type='id'/>
|
|
314
|
+
</method>
|
|
315
|
+
<method class_method='true' selector='initAsynchronously:'>
|
|
316
|
+
<arg type='i' name='mode' index='0' declared_type='tAudioManagerMode'/>
|
|
317
|
+
<retval type='v' declared_type='void'/>
|
|
318
|
+
</method>
|
|
319
|
+
<method selector='isBackgroundMusicPlaying'>
|
|
320
|
+
<retval type='B' declared_type='BOOL'/>
|
|
321
|
+
</method>
|
|
322
|
+
<method selector='isDeviceMuted'>
|
|
323
|
+
<retval type='B' declared_type='BOOL'/>
|
|
324
|
+
</method>
|
|
325
|
+
<method selector='isOtherAudioPlaying'>
|
|
326
|
+
<retval type='B' declared_type='BOOL'/>
|
|
327
|
+
</method>
|
|
328
|
+
<method selector='pauseBackgroundMusic'>
|
|
329
|
+
<retval type='v' declared_type='void'/>
|
|
330
|
+
</method>
|
|
331
|
+
<method selector='playBackgroundMusic:loop:'>
|
|
332
|
+
<arg type='@' name='filePath' index='0' declared_type='NSString*'/>
|
|
333
|
+
<arg type='B' name='loop' index='1' declared_type='BOOL'/>
|
|
334
|
+
<retval type='v' declared_type='void'/>
|
|
335
|
+
</method>
|
|
336
|
+
<method selector='preloadBackgroundMusic:'>
|
|
337
|
+
<arg type='@' name='filePath' index='0' declared_type='NSString*'/>
|
|
338
|
+
<retval type='v' declared_type='void'/>
|
|
339
|
+
</method>
|
|
340
|
+
<method selector='resumeBackgroundMusic'>
|
|
341
|
+
<retval type='v' declared_type='void'/>
|
|
342
|
+
</method>
|
|
343
|
+
<method selector='rewindBackgroundMusic'>
|
|
344
|
+
<retval type='v' declared_type='void'/>
|
|
345
|
+
</method>
|
|
346
|
+
<method selector='setBackgroundMusicCompletionListener:selector:'>
|
|
347
|
+
<arg type='@' name='listener' index='0' declared_type='id'/>
|
|
348
|
+
<arg type=':' name='selector' index='1' declared_type='SEL'/>
|
|
349
|
+
<retval type='v' declared_type='void'/>
|
|
350
|
+
</method>
|
|
351
|
+
<method selector='setMode:'>
|
|
352
|
+
<arg type='i' name='mode' index='0' declared_type='tAudioManagerMode'/>
|
|
353
|
+
<retval type='v' declared_type='void'/>
|
|
354
|
+
</method>
|
|
355
|
+
<method selector='setResignBehavior:autoHandle:'>
|
|
356
|
+
<arg type='i' name='resignBehavior' index='0' declared_type='tAudioManagerResignBehavior'/>
|
|
357
|
+
<arg type='B' name='autoHandle' index='1' declared_type='BOOL'/>
|
|
358
|
+
<retval type='v' declared_type='void'/>
|
|
359
|
+
</method>
|
|
360
|
+
<method class_method='true' selector='sharedManager'>
|
|
361
|
+
<retval type='@' declared_type='CDAudioManager*'/>
|
|
362
|
+
</method>
|
|
363
|
+
<method class_method='true' selector='sharedManagerState'>
|
|
364
|
+
<retval type='i' declared_type='tAudioManagerState'/>
|
|
365
|
+
</method>
|
|
366
|
+
<method selector='soundEngine'>
|
|
367
|
+
<retval type='@' declared_type='CDSoundEngine*'/>
|
|
368
|
+
</method>
|
|
369
|
+
<method selector='stopBackgroundMusic'>
|
|
370
|
+
<retval type='v' declared_type='void'/>
|
|
371
|
+
</method>
|
|
372
|
+
<method selector='willPlayBackgroundMusic'>
|
|
373
|
+
<retval type='B' declared_type='BOOL'/>
|
|
374
|
+
</method>
|
|
375
|
+
</class>
|
|
376
|
+
<class name='CDBufferLoadRequest'>
|
|
377
|
+
<method selector='filePath'>
|
|
378
|
+
<retval type='@' declared_type='NSString*'/>
|
|
379
|
+
</method>
|
|
380
|
+
<method selector='init:filePath:'>
|
|
381
|
+
<arg type='i' name='theSoundId' index='0' declared_type='int'/>
|
|
382
|
+
<arg type='@' name='theFilePath' index='1' const='true' declared_type='NSString*'/>
|
|
383
|
+
<retval type='@' declared_type='id'/>
|
|
384
|
+
</method>
|
|
385
|
+
<method selector='soundId'>
|
|
386
|
+
<retval type='i' declared_type='int'/>
|
|
387
|
+
</method>
|
|
388
|
+
</class>
|
|
389
|
+
<class name='CDBufferManager'>
|
|
390
|
+
<method selector='bufferForFile:create:'>
|
|
391
|
+
<arg type='@' name='filePath' index='0' declared_type='NSString*'/>
|
|
392
|
+
<arg type='B' name='create' index='1' declared_type='BOOL'/>
|
|
393
|
+
<retval type='i' declared_type='int'/>
|
|
394
|
+
</method>
|
|
395
|
+
<method selector='initWithEngine:'>
|
|
396
|
+
<arg type='@' name='theSoundEngine' index='0' declared_type='CDSoundEngine*'/>
|
|
397
|
+
<retval type='@' declared_type='id'/>
|
|
398
|
+
</method>
|
|
399
|
+
<method selector='releaseBufferForFile:'>
|
|
400
|
+
<arg type='@' name='filePath' index='0' declared_type='NSString*'/>
|
|
401
|
+
<retval type='v' declared_type='void'/>
|
|
402
|
+
</method>
|
|
403
|
+
</class>
|
|
404
|
+
<class name='CDFloatInterpolator'>
|
|
405
|
+
<method selector='end'>
|
|
406
|
+
<retval type='f' declared_type='float'/>
|
|
407
|
+
</method>
|
|
408
|
+
<method selector='init:startVal:endVal:'>
|
|
409
|
+
<arg type='i' name='type' index='0' declared_type='tCDInterpolationType'/>
|
|
410
|
+
<arg type='f' name='startVal' index='1' declared_type='float'/>
|
|
411
|
+
<arg type='f' name='endVal' index='2' declared_type='float'/>
|
|
412
|
+
<retval type='@' declared_type='id'/>
|
|
413
|
+
</method>
|
|
414
|
+
<method selector='interpolate:'>
|
|
415
|
+
<arg type='f' name='t' index='0' declared_type='float'/>
|
|
416
|
+
<retval type='f' declared_type='float'/>
|
|
417
|
+
</method>
|
|
418
|
+
<method selector='interpolationType'>
|
|
419
|
+
<retval type='i' declared_type='tCDInterpolationType'/>
|
|
420
|
+
</method>
|
|
421
|
+
<method selector='setEnd:'>
|
|
422
|
+
<arg type='f' name='end' index='0' declared_type='float'/>
|
|
423
|
+
<retval type='v' declared_type='void'/>
|
|
424
|
+
</method>
|
|
425
|
+
<method selector='setInterpolationType:'>
|
|
426
|
+
<arg type='i' name='interpolationType' index='0' declared_type='tCDInterpolationType'/>
|
|
427
|
+
<retval type='v' declared_type='void'/>
|
|
428
|
+
</method>
|
|
429
|
+
<method selector='setStart:'>
|
|
430
|
+
<arg type='f' name='start' index='0' declared_type='float'/>
|
|
431
|
+
<retval type='v' declared_type='void'/>
|
|
432
|
+
</method>
|
|
433
|
+
<method selector='start'>
|
|
434
|
+
<retval type='f' declared_type='float'/>
|
|
435
|
+
</method>
|
|
436
|
+
</class>
|
|
437
|
+
<class name='CDLongAudioSource'>
|
|
438
|
+
<method selector='audioSourceFilePath'>
|
|
439
|
+
<retval type='@' declared_type='NSString*'/>
|
|
440
|
+
</method>
|
|
441
|
+
<method selector='audioSourcePlayer'>
|
|
442
|
+
<retval type='@' declared_type='AVAudioPlayer*'/>
|
|
443
|
+
</method>
|
|
444
|
+
<method selector='backgroundMusic'>
|
|
445
|
+
<retval type='B' declared_type='BOOL'/>
|
|
446
|
+
</method>
|
|
447
|
+
<method selector='delegate'>
|
|
448
|
+
<retval type='@' declared_type='id'/>
|
|
449
|
+
</method>
|
|
450
|
+
<method selector='isPlaying'>
|
|
451
|
+
<retval type='B' declared_type='BOOL'/>
|
|
452
|
+
</method>
|
|
453
|
+
<method selector='load:'>
|
|
454
|
+
<arg type='@' name='filePath' index='0' declared_type='NSString*'/>
|
|
455
|
+
<retval type='v' declared_type='void'/>
|
|
456
|
+
</method>
|
|
457
|
+
<method selector='numberOfLoops'>
|
|
458
|
+
<retval type='i' declared_type='NSInteger'/>
|
|
459
|
+
</method>
|
|
460
|
+
<method selector='pause'>
|
|
461
|
+
<retval type='v' declared_type='void'/>
|
|
462
|
+
</method>
|
|
463
|
+
<method selector='play'>
|
|
464
|
+
<retval type='v' declared_type='void'/>
|
|
465
|
+
</method>
|
|
466
|
+
<method selector='resume'>
|
|
467
|
+
<retval type='v' declared_type='void'/>
|
|
468
|
+
</method>
|
|
469
|
+
<method selector='rewind'>
|
|
470
|
+
<retval type='v' declared_type='void'/>
|
|
471
|
+
</method>
|
|
472
|
+
<method selector='setBackgroundMusic:'>
|
|
473
|
+
<arg type='B' name='backgroundMusic' index='0' declared_type='BOOL'/>
|
|
474
|
+
<retval type='v' declared_type='void'/>
|
|
475
|
+
</method>
|
|
476
|
+
<method selector='setDelegate:'>
|
|
477
|
+
<arg type='@' name='delegate' index='0' declared_type='id'/>
|
|
478
|
+
<retval type='v' declared_type='void'/>
|
|
479
|
+
</method>
|
|
480
|
+
<method selector='setNumberOfLoops:'>
|
|
481
|
+
<arg type='i' name='numberOfLoops' index='0' declared_type='NSInteger'/>
|
|
482
|
+
<retval type='v' declared_type='void'/>
|
|
483
|
+
</method>
|
|
484
|
+
<method selector='setVolume:'>
|
|
485
|
+
<arg type='f' name='volume' index='0' declared_type='float'/>
|
|
486
|
+
<retval type='v' declared_type='void'/>
|
|
487
|
+
</method>
|
|
488
|
+
<method selector='stop'>
|
|
489
|
+
<retval type='v' declared_type='void'/>
|
|
490
|
+
</method>
|
|
491
|
+
<method selector='volume'>
|
|
492
|
+
<retval type='f' declared_type='float'/>
|
|
493
|
+
</method>
|
|
494
|
+
</class>
|
|
495
|
+
<class name='CDPropertyModifier'>
|
|
496
|
+
<method selector='_allowableType'>
|
|
497
|
+
<retval type='#' declared_type='Class'/>
|
|
498
|
+
</method>
|
|
499
|
+
<method selector='_getTargetProperty'>
|
|
500
|
+
<retval type='f' declared_type='float'/>
|
|
501
|
+
</method>
|
|
502
|
+
<method selector='_setTargetProperty:'>
|
|
503
|
+
<arg type='f' name='newVal' index='0' declared_type='float'/>
|
|
504
|
+
<retval type='v' declared_type='void'/>
|
|
505
|
+
</method>
|
|
506
|
+
<method selector='_stopTarget'>
|
|
507
|
+
<retval type='v' declared_type='void'/>
|
|
508
|
+
</method>
|
|
509
|
+
<method selector='endValue'>
|
|
510
|
+
<retval type='f' declared_type='float'/>
|
|
511
|
+
</method>
|
|
512
|
+
<method selector='init:interpolationType:startVal:endVal:'>
|
|
513
|
+
<arg type='@' name='theTarget' index='0' declared_type='id'/>
|
|
514
|
+
<arg type='i' name='type' index='1' declared_type='tCDInterpolationType'/>
|
|
515
|
+
<arg type='f' name='startVal' index='2' declared_type='float'/>
|
|
516
|
+
<arg type='f' name='endVal' index='3' declared_type='float'/>
|
|
517
|
+
<retval type='@' declared_type='id'/>
|
|
518
|
+
</method>
|
|
519
|
+
<method selector='interpolationType'>
|
|
520
|
+
<retval type='i' declared_type='tCDInterpolationType'/>
|
|
521
|
+
</method>
|
|
522
|
+
<method selector='modify:'>
|
|
523
|
+
<arg type='f' name='t' index='0' declared_type='float'/>
|
|
524
|
+
<retval type='v' declared_type='void'/>
|
|
525
|
+
</method>
|
|
526
|
+
<method selector='setEndValue:'>
|
|
527
|
+
<arg type='f' name='endValue' index='0' declared_type='float'/>
|
|
528
|
+
<retval type='v' declared_type='void'/>
|
|
529
|
+
</method>
|
|
530
|
+
<method selector='setInterpolationType:'>
|
|
531
|
+
<arg type='i' name='interpolationType' index='0' declared_type='tCDInterpolationType'/>
|
|
532
|
+
<retval type='v' declared_type='void'/>
|
|
533
|
+
</method>
|
|
534
|
+
<method selector='setStartValue:'>
|
|
535
|
+
<arg type='f' name='startValue' index='0' declared_type='float'/>
|
|
536
|
+
<retval type='v' declared_type='void'/>
|
|
537
|
+
</method>
|
|
538
|
+
<method selector='setStopTargetWhenComplete:'>
|
|
539
|
+
<arg type='B' name='stopTargetWhenComplete' index='0' declared_type='BOOL'/>
|
|
540
|
+
<retval type='v' declared_type='void'/>
|
|
541
|
+
</method>
|
|
542
|
+
<method selector='startValue'>
|
|
543
|
+
<retval type='f' declared_type='float'/>
|
|
544
|
+
</method>
|
|
545
|
+
<method selector='stopTargetWhenComplete'>
|
|
546
|
+
<retval type='B' declared_type='BOOL'/>
|
|
547
|
+
</method>
|
|
548
|
+
</class>
|
|
549
|
+
<class name='CDSoundEngine'>
|
|
550
|
+
<method selector='_soundSourcePreRelease:'>
|
|
551
|
+
<arg type='@' name='soundSource' index='0' declared_type='CDSoundSource*'/>
|
|
552
|
+
<retval type='v' declared_type='void'/>
|
|
553
|
+
</method>
|
|
554
|
+
<method selector='asynchLoadProgress'>
|
|
555
|
+
<retval type='f' declared_type='float'/>
|
|
556
|
+
</method>
|
|
557
|
+
<method selector='bufferDurationInSeconds:'>
|
|
558
|
+
<arg type='i' name='soundId' index='0' declared_type='int'/>
|
|
559
|
+
<retval type='f' declared_type='float'/>
|
|
560
|
+
</method>
|
|
561
|
+
<method selector='bufferFrequencyInHertz:'>
|
|
562
|
+
<arg type='i' name='soundId' index='0' declared_type='int'/>
|
|
563
|
+
<retval type='i' declared_type='ALsizei'/>
|
|
564
|
+
</method>
|
|
565
|
+
<method selector='bufferSizeInBytes:'>
|
|
566
|
+
<arg type='i' name='soundId' index='0' declared_type='int'/>
|
|
567
|
+
<retval type='i' declared_type='ALsizei'/>
|
|
568
|
+
</method>
|
|
569
|
+
<method selector='defineSourceGroups:'>
|
|
570
|
+
<arg type='@' name='sourceGroupDefinitions' index='0' declared_type='NSArray*'/>
|
|
571
|
+
<retval type='v' declared_type='void'/>
|
|
572
|
+
</method>
|
|
573
|
+
<method selector='defineSourceGroups:total:'>
|
|
574
|
+
<arg type='^i' name='sourceGroupDefinitions' index='0' declared_type='int*'/>
|
|
575
|
+
<arg type='I' name='total' index='1' declared_type='NSUInteger'/>
|
|
576
|
+
<retval type='v' declared_type='void'/>
|
|
577
|
+
</method>
|
|
578
|
+
<method selector='functioning'>
|
|
579
|
+
<retval type='B' declared_type='BOOL'/>
|
|
580
|
+
</method>
|
|
581
|
+
<method selector='getGainWorks'>
|
|
582
|
+
<retval type='B' declared_type='BOOL'/>
|
|
583
|
+
</method>
|
|
584
|
+
<method selector='init'>
|
|
585
|
+
<retval type='@' declared_type='id'/>
|
|
586
|
+
</method>
|
|
587
|
+
<method selector='lastErrorCode'>
|
|
588
|
+
<retval type='i' declared_type='ALenum'/>
|
|
589
|
+
</method>
|
|
590
|
+
<method selector='loadBuffer:filePath:'>
|
|
591
|
+
<arg type='i' name='soundId' index='0' declared_type='int'/>
|
|
592
|
+
<arg type='@' name='filePath' index='1' declared_type='NSString*'/>
|
|
593
|
+
<retval type='B' declared_type='BOOL'/>
|
|
594
|
+
</method>
|
|
595
|
+
<method selector='loadBufferFromData:soundData:format:size:freq:'>
|
|
596
|
+
<arg type='i' name='soundId' index='0' declared_type='int'/>
|
|
597
|
+
<arg type='^v' name='soundData' index='1' declared_type='ALvoid*'/>
|
|
598
|
+
<arg type='i' name='format' index='2' declared_type='ALenum'/>
|
|
599
|
+
<arg type='i' name='size' index='3' declared_type='ALsizei'/>
|
|
600
|
+
<arg type='i' name='freq' index='4' declared_type='ALsizei'/>
|
|
601
|
+
<retval type='B' declared_type='BOOL'/>
|
|
602
|
+
</method>
|
|
603
|
+
<method selector='loadBuffersAsynchronously:'>
|
|
604
|
+
<arg type='@' name='loadRequests' index='0' declared_type='NSArray*'/>
|
|
605
|
+
<retval type='v' declared_type='void'/>
|
|
606
|
+
</method>
|
|
607
|
+
<method selector='masterGain'>
|
|
608
|
+
<retval type='f' declared_type='ALfloat'/>
|
|
609
|
+
</method>
|
|
610
|
+
<method selector='openALContext'>
|
|
611
|
+
<retval type='^{ALCcontext_struct=}' declared_type='ALCcontext*'/>
|
|
612
|
+
</method>
|
|
613
|
+
<method selector='playSound:sourceGroupId:pitch:pan:gain:loop:'>
|
|
614
|
+
<arg type='i' name='soundId' index='0' declared_type='int'/>
|
|
615
|
+
<arg type='i' name='sourceGroupId' index='1' declared_type='int'/>
|
|
616
|
+
<arg type='f' name='pitch' index='2' declared_type='float'/>
|
|
617
|
+
<arg type='f' name='pan' index='3' declared_type='float'/>
|
|
618
|
+
<arg type='f' name='gain' index='4' declared_type='float'/>
|
|
619
|
+
<arg type='B' name='loop' index='5' declared_type='BOOL'/>
|
|
620
|
+
<retval type='I' declared_type='ALuint'/>
|
|
621
|
+
</method>
|
|
622
|
+
<method selector='setAsynchLoadProgress:'>
|
|
623
|
+
<arg type='f' name='asynchLoadProgress' index='0' declared_type='float'/>
|
|
624
|
+
<retval type='v' declared_type='void'/>
|
|
625
|
+
</method>
|
|
626
|
+
<method selector='setMasterGain:'>
|
|
627
|
+
<arg type='f' name='masterGain' index='0' declared_type='ALfloat'/>
|
|
628
|
+
<retval type='v' declared_type='void'/>
|
|
629
|
+
</method>
|
|
630
|
+
<method class_method='true' selector='setMixerSampleRate:'>
|
|
631
|
+
<arg type='f' name='sampleRate' index='0' declared_type='Float32'/>
|
|
632
|
+
<retval type='v' declared_type='void'/>
|
|
633
|
+
</method>
|
|
634
|
+
<method selector='setSourceGroupEnabled:enabled:'>
|
|
635
|
+
<arg type='i' name='sourceGroupId' index='0' declared_type='int'/>
|
|
636
|
+
<arg type='B' name='enabled' index='1' declared_type='BOOL'/>
|
|
637
|
+
<retval type='v' declared_type='void'/>
|
|
638
|
+
</method>
|
|
639
|
+
<method selector='setSourceGroupNonInterruptible:isNonInterruptible:'>
|
|
640
|
+
<arg type='i' name='sourceGroupId' index='0' declared_type='int'/>
|
|
641
|
+
<arg type='B' name='isNonInterruptible' index='1' declared_type='BOOL'/>
|
|
642
|
+
<retval type='v' declared_type='void'/>
|
|
643
|
+
</method>
|
|
644
|
+
<method selector='soundSourceForSound:sourceGroupId:'>
|
|
645
|
+
<arg type='i' name='soundId' index='0' declared_type='int'/>
|
|
646
|
+
<arg type='i' name='sourceGroupId' index='1' declared_type='int'/>
|
|
647
|
+
<retval type='@' declared_type='CDSoundSource*'/>
|
|
648
|
+
</method>
|
|
649
|
+
<method selector='sourceGroupEnabled:'>
|
|
650
|
+
<arg type='i' name='sourceGroupId' index='0' declared_type='int'/>
|
|
651
|
+
<retval type='B' declared_type='BOOL'/>
|
|
652
|
+
</method>
|
|
653
|
+
<method selector='sourceGroupTotal'>
|
|
654
|
+
<retval type='I' declared_type='NSUInteger'/>
|
|
655
|
+
</method>
|
|
656
|
+
<method selector='sourceTotal'>
|
|
657
|
+
<retval type='i' declared_type='int'/>
|
|
658
|
+
</method>
|
|
659
|
+
<method selector='stopAllSounds'>
|
|
660
|
+
<retval type='v' declared_type='void'/>
|
|
661
|
+
</method>
|
|
662
|
+
<method selector='stopSound:'>
|
|
663
|
+
<arg type='I' name='sourceId' index='0' declared_type='ALuint'/>
|
|
664
|
+
<retval type='v' declared_type='void'/>
|
|
665
|
+
</method>
|
|
666
|
+
<method selector='stopSourceGroup:'>
|
|
667
|
+
<arg type='i' name='sourceGroupId' index='0' declared_type='int'/>
|
|
668
|
+
<retval type='v' declared_type='void'/>
|
|
669
|
+
</method>
|
|
670
|
+
<method selector='unloadBuffer:'>
|
|
671
|
+
<arg type='i' name='soundId' index='0' declared_type='int'/>
|
|
672
|
+
<retval type='B' declared_type='BOOL'/>
|
|
673
|
+
</method>
|
|
674
|
+
</class>
|
|
675
|
+
<class name='CDSoundSource'>
|
|
676
|
+
<method selector='durationInSeconds'>
|
|
677
|
+
<retval type='f' declared_type='float'/>
|
|
678
|
+
</method>
|
|
679
|
+
<method selector='gain'>
|
|
680
|
+
<retval type='f' declared_type='float'/>
|
|
681
|
+
</method>
|
|
682
|
+
<method selector='init:sourceIndex:soundEngine:'>
|
|
683
|
+
<arg type='I' name='theSourceId' index='0' declared_type='ALuint'/>
|
|
684
|
+
<arg type='i' name='index' index='1' declared_type='int'/>
|
|
685
|
+
<arg type='@' name='engine' index='2' declared_type='CDSoundEngine*'/>
|
|
686
|
+
<retval type='@' declared_type='id'/>
|
|
687
|
+
</method>
|
|
688
|
+
<method selector='isPlaying'>
|
|
689
|
+
<retval type='B' declared_type='BOOL'/>
|
|
690
|
+
</method>
|
|
691
|
+
<method selector='lastError'>
|
|
692
|
+
<retval type='i' declared_type='ALenum'/>
|
|
693
|
+
</method>
|
|
694
|
+
<method selector='looping'>
|
|
695
|
+
<retval type='B' declared_type='BOOL'/>
|
|
696
|
+
</method>
|
|
697
|
+
<method selector='pan'>
|
|
698
|
+
<retval type='f' declared_type='float'/>
|
|
699
|
+
</method>
|
|
700
|
+
<method selector='pitch'>
|
|
701
|
+
<retval type='f' declared_type='float'/>
|
|
702
|
+
</method>
|
|
703
|
+
<method selector='setGain:'>
|
|
704
|
+
<arg type='f' name='gain' index='0' declared_type='float'/>
|
|
705
|
+
<retval type='v' declared_type='void'/>
|
|
706
|
+
</method>
|
|
707
|
+
<method selector='setLooping:'>
|
|
708
|
+
<arg type='B' name='looping' index='0' declared_type='BOOL'/>
|
|
709
|
+
<retval type='v' declared_type='void'/>
|
|
710
|
+
</method>
|
|
711
|
+
<method selector='setPan:'>
|
|
712
|
+
<arg type='f' name='pan' index='0' declared_type='float'/>
|
|
713
|
+
<retval type='v' declared_type='void'/>
|
|
714
|
+
</method>
|
|
715
|
+
<method selector='setPitch:'>
|
|
716
|
+
<arg type='f' name='pitch' index='0' declared_type='float'/>
|
|
717
|
+
<retval type='v' declared_type='void'/>
|
|
718
|
+
</method>
|
|
719
|
+
<method selector='setSoundId:'>
|
|
720
|
+
<arg type='i' name='soundId' index='0' declared_type='int'/>
|
|
721
|
+
<retval type='v' declared_type='void'/>
|
|
722
|
+
</method>
|
|
723
|
+
<method selector='soundId'>
|
|
724
|
+
<retval type='i' declared_type='int'/>
|
|
725
|
+
</method>
|
|
726
|
+
</class>
|
|
727
|
+
<class name='CDUtilities'>
|
|
728
|
+
<method class_method='true' selector='fullPathFromRelativePath:'>
|
|
729
|
+
<arg type='@' name='relPath' index='0' declared_type='NSString*'/>
|
|
730
|
+
<retval type='@' declared_type='NSString*'/>
|
|
731
|
+
</method>
|
|
732
|
+
</class>
|
|
733
|
+
<class name='CDXPropertyModifierAction'>
|
|
734
|
+
<method class_method='true' selector='actionWithDuration:modifier:'>
|
|
735
|
+
<arg type='@' name='t' index='0' declared_type='id'/>
|
|
736
|
+
<arg type='@' name='aModifier' index='1' declared_type='CDPropertyModifier*'/>
|
|
737
|
+
<retval type='@' declared_type='id'/>
|
|
738
|
+
</method>
|
|
739
|
+
<method class_method='true' selector='fadeBackgroundMusic:finalVolume:curveType:shouldStop:'>
|
|
740
|
+
<arg type='@' name='t' index='0' declared_type='id'/>
|
|
741
|
+
<arg type='f' name='endVol' index='1' declared_type='float'/>
|
|
742
|
+
<arg type='i' name='curve' index='2' declared_type='tCDInterpolationType'/>
|
|
743
|
+
<arg type='B' name='stop' index='3' declared_type='BOOL'/>
|
|
744
|
+
<retval type='v' declared_type='void'/>
|
|
745
|
+
</method>
|
|
746
|
+
<method class_method='true' selector='fadeSoundEffect:finalVolume:curveType:shouldStop:effect:'>
|
|
747
|
+
<arg type='@' name='t' index='0' declared_type='id'/>
|
|
748
|
+
<arg type='f' name='endVol' index='1' declared_type='float'/>
|
|
749
|
+
<arg type='i' name='curve' index='2' declared_type='tCDInterpolationType'/>
|
|
750
|
+
<arg type='B' name='stop' index='3' declared_type='BOOL'/>
|
|
751
|
+
<arg type='@' name='effect' index='4' declared_type='CDSoundSource*'/>
|
|
752
|
+
<retval type='v' declared_type='void'/>
|
|
753
|
+
</method>
|
|
754
|
+
<method class_method='true' selector='fadeSoundEffects:finalVolume:curveType:shouldStop:'>
|
|
755
|
+
<arg type='@' name='t' index='0' declared_type='id'/>
|
|
756
|
+
<arg type='f' name='endVol' index='1' declared_type='float'/>
|
|
757
|
+
<arg type='i' name='curve' index='2' declared_type='tCDInterpolationType'/>
|
|
758
|
+
<arg type='B' name='stop' index='3' declared_type='BOOL'/>
|
|
759
|
+
<retval type='v' declared_type='void'/>
|
|
760
|
+
</method>
|
|
761
|
+
<method selector='initWithDuration:modifier:'>
|
|
762
|
+
<arg type='@' name='t' index='0' declared_type='id'/>
|
|
763
|
+
<arg type='@' name='aModifier' index='1' declared_type='CDPropertyModifier*'/>
|
|
764
|
+
<retval type='@' declared_type='id'/>
|
|
765
|
+
</method>
|
|
766
|
+
</class>
|
|
767
|
+
<class name='NSObject'>
|
|
768
|
+
<method selector='audioPlayerBeginInterruption:'>
|
|
769
|
+
<arg type='@' name='player' index='0' declared_type='AVAudioPlayer*'/>
|
|
770
|
+
<retval type='v' declared_type='void'/>
|
|
771
|
+
</method>
|
|
772
|
+
<method selector='audioPlayerDecodeErrorDidOccur:error:'>
|
|
773
|
+
<arg type='@' name='player' index='0' declared_type='AVAudioPlayer*'/>
|
|
774
|
+
<arg type='@' name='error' index='1' declared_type='NSError*'/>
|
|
775
|
+
<retval type='v' declared_type='void'/>
|
|
776
|
+
</method>
|
|
777
|
+
<method selector='audioPlayerDidFinishPlaying:successfully:'>
|
|
778
|
+
<arg type='@' name='player' index='0' declared_type='AVAudioPlayer*'/>
|
|
779
|
+
<arg type='B' name='flag' index='1' declared_type='BOOL'/>
|
|
780
|
+
<retval type='v' declared_type='void'/>
|
|
781
|
+
</method>
|
|
782
|
+
<method selector='audioPlayerEndInterruption:'>
|
|
783
|
+
<arg type='@' name='player' index='0' declared_type='AVAudioPlayer*'/>
|
|
784
|
+
<retval type='v' declared_type='void'/>
|
|
785
|
+
</method>
|
|
786
|
+
<method selector='audioPlayerEndInterruption:withFlags:'>
|
|
787
|
+
<arg type='@' name='player' index='0' declared_type='AVAudioPlayer*'/>
|
|
788
|
+
<arg type='I' name='flags' index='1' declared_type='NSUInteger'/>
|
|
789
|
+
<retval type='v' declared_type='void'/>
|
|
790
|
+
</method>
|
|
791
|
+
<method selector='beginInterruption'>
|
|
792
|
+
<retval type='v' declared_type='void'/>
|
|
793
|
+
</method>
|
|
794
|
+
<method selector='cdAudioSourceDidFinishPlaying:'>
|
|
795
|
+
<arg type='@' name='audioSource' index='0' declared_type='CDLongAudioSource*'/>
|
|
796
|
+
<retval type='v' declared_type='void'/>
|
|
797
|
+
</method>
|
|
798
|
+
<method selector='cdAudioSourceFileDidChange:'>
|
|
799
|
+
<arg type='@' name='audioSource' index='0' declared_type='CDLongAudioSource*'/>
|
|
800
|
+
<retval type='v' declared_type='void'/>
|
|
801
|
+
</method>
|
|
802
|
+
<method selector='enabled'>
|
|
803
|
+
<retval type='B' declared_type='BOOL'/>
|
|
804
|
+
</method>
|
|
805
|
+
<method selector='endInterruption'>
|
|
806
|
+
<retval type='v' declared_type='void'/>
|
|
807
|
+
</method>
|
|
808
|
+
<method selector='endInterruptionWithFlags:'>
|
|
809
|
+
<arg type='I' name='flags' index='0' declared_type='NSUInteger'/>
|
|
810
|
+
<retval type='v' declared_type='void'/>
|
|
811
|
+
</method>
|
|
812
|
+
<method selector='inputIsAvailableChanged:'>
|
|
813
|
+
<arg type='B' name='isInputAvailable' index='0' declared_type='BOOL'/>
|
|
814
|
+
<retval type='v' declared_type='void'/>
|
|
815
|
+
</method>
|
|
816
|
+
<method selector='mute'>
|
|
817
|
+
<retval type='B' declared_type='BOOL'/>
|
|
818
|
+
</method>
|
|
819
|
+
<method selector='pause'>
|
|
820
|
+
<retval type='B' declared_type='BOOL'/>
|
|
821
|
+
</method>
|
|
822
|
+
<method selector='play'>
|
|
823
|
+
<retval type='B' declared_type='BOOL'/>
|
|
824
|
+
</method>
|
|
825
|
+
<method selector='rewind'>
|
|
826
|
+
<retval type='B' declared_type='BOOL'/>
|
|
827
|
+
</method>
|
|
828
|
+
<method selector='setEnabled:'>
|
|
829
|
+
<arg type='B' name='enabledValue' index='0' declared_type='BOOL'/>
|
|
830
|
+
<retval type='v' declared_type='void'/>
|
|
831
|
+
</method>
|
|
832
|
+
<method selector='setMute:'>
|
|
833
|
+
<arg type='B' name='muteValue' index='0' declared_type='BOOL'/>
|
|
834
|
+
<retval type='v' declared_type='void'/>
|
|
835
|
+
</method>
|
|
836
|
+
<method selector='stop'>
|
|
837
|
+
<retval type='B' declared_type='BOOL'/>
|
|
838
|
+
</method>
|
|
839
|
+
</class>
|
|
840
|
+
<class name='SimpleAudioEngine'>
|
|
841
|
+
<method selector='backgroundMusicVolume'>
|
|
842
|
+
<retval type='f' declared_type='float'/>
|
|
843
|
+
</method>
|
|
844
|
+
<method selector='effectsVolume'>
|
|
845
|
+
<retval type='f' declared_type='float'/>
|
|
846
|
+
</method>
|
|
847
|
+
<method class_method='true' selector='end'>
|
|
848
|
+
<retval type='v' declared_type='void'/>
|
|
849
|
+
</method>
|
|
850
|
+
<method selector='isBackgroundMusicPlaying'>
|
|
851
|
+
<retval type='B' declared_type='BOOL'/>
|
|
852
|
+
</method>
|
|
853
|
+
<method selector='pauseBackgroundMusic'>
|
|
854
|
+
<retval type='v' declared_type='void'/>
|
|
855
|
+
</method>
|
|
856
|
+
<method selector='playBackgroundMusic:'>
|
|
857
|
+
<arg type='@' name='filePath' index='0' declared_type='NSString*'/>
|
|
858
|
+
<retval type='v' declared_type='void'/>
|
|
859
|
+
</method>
|
|
860
|
+
<method selector='playBackgroundMusic:loop:'>
|
|
861
|
+
<arg type='@' name='filePath' index='0' declared_type='NSString*'/>
|
|
862
|
+
<arg type='B' name='loop' index='1' declared_type='BOOL'/>
|
|
863
|
+
<retval type='v' declared_type='void'/>
|
|
864
|
+
</method>
|
|
865
|
+
<method selector='playEffect:'>
|
|
866
|
+
<arg type='@' name='filePath' index='0' declared_type='NSString*'/>
|
|
867
|
+
<retval type='I' declared_type='ALuint'/>
|
|
868
|
+
</method>
|
|
869
|
+
<method selector='playEffect:pitch:pan:gain:'>
|
|
870
|
+
<arg type='@' name='filePath' index='0' declared_type='NSString*'/>
|
|
871
|
+
<arg type='f' name='pitch' index='1' declared_type='Float32'/>
|
|
872
|
+
<arg type='f' name='pan' index='2' declared_type='Float32'/>
|
|
873
|
+
<arg type='f' name='gain' index='3' declared_type='Float32'/>
|
|
874
|
+
<retval type='I' declared_type='ALuint'/>
|
|
875
|
+
</method>
|
|
876
|
+
<method selector='preloadBackgroundMusic:'>
|
|
877
|
+
<arg type='@' name='filePath' index='0' declared_type='NSString*'/>
|
|
878
|
+
<retval type='v' declared_type='void'/>
|
|
879
|
+
</method>
|
|
880
|
+
<method selector='preloadEffect:'>
|
|
881
|
+
<arg type='@' name='filePath' index='0' declared_type='NSString*'/>
|
|
882
|
+
<retval type='v' declared_type='void'/>
|
|
883
|
+
</method>
|
|
884
|
+
<method selector='resumeBackgroundMusic'>
|
|
885
|
+
<retval type='v' declared_type='void'/>
|
|
886
|
+
</method>
|
|
887
|
+
<method selector='rewindBackgroundMusic'>
|
|
888
|
+
<retval type='v' declared_type='void'/>
|
|
889
|
+
</method>
|
|
890
|
+
<method selector='setBackgroundMusicVolume:'>
|
|
891
|
+
<arg type='f' name='backgroundMusicVolume' index='0' declared_type='float'/>
|
|
892
|
+
<retval type='v' declared_type='void'/>
|
|
893
|
+
</method>
|
|
894
|
+
<method selector='setEffectsVolume:'>
|
|
895
|
+
<arg type='f' name='effectsVolume' index='0' declared_type='float'/>
|
|
896
|
+
<retval type='v' declared_type='void'/>
|
|
897
|
+
</method>
|
|
898
|
+
<method class_method='true' selector='sharedEngine'>
|
|
899
|
+
<retval type='@' declared_type='SimpleAudioEngine*'/>
|
|
900
|
+
</method>
|
|
901
|
+
<method selector='soundSourceForFile:'>
|
|
902
|
+
<arg type='@' name='filePath' index='0' declared_type='NSString*'/>
|
|
903
|
+
<retval type='@' declared_type='CDSoundSource*'/>
|
|
904
|
+
</method>
|
|
905
|
+
<method selector='stopBackgroundMusic'>
|
|
906
|
+
<retval type='v' declared_type='void'/>
|
|
907
|
+
</method>
|
|
908
|
+
<method selector='stopEffect:'>
|
|
909
|
+
<arg type='I' name='soundId' index='0' declared_type='ALuint'/>
|
|
910
|
+
<retval type='v' declared_type='void'/>
|
|
911
|
+
</method>
|
|
912
|
+
<method selector='unloadEffect:'>
|
|
913
|
+
<arg type='@' name='filePath' index='0' declared_type='NSString*'/>
|
|
914
|
+
<retval type='v' declared_type='void'/>
|
|
915
|
+
</method>
|
|
916
|
+
<method selector='willPlayBackgroundMusic'>
|
|
917
|
+
<retval type='B' declared_type='BOOL'/>
|
|
918
|
+
</method>
|
|
919
|
+
</class>
|
|
920
|
+
<informal_protocol name='AVAudioPlayerDelegate'>
|
|
921
|
+
<method type='v12@0:4@8' selector='audioPlayerBeginInterruption:'>
|
|
922
|
+
<arg type='@' name='player' index='0' declared_type='AVAudioPlayer*'/>
|
|
923
|
+
<retval type='v' declared_type='void'/>
|
|
924
|
+
</method>
|
|
925
|
+
<method type='v16@0:4@8@12' selector='audioPlayerDecodeErrorDidOccur:error:'>
|
|
926
|
+
<arg type='@' name='player' index='0' declared_type='AVAudioPlayer*'/>
|
|
927
|
+
<arg type='@' name='error' index='1' declared_type='NSError*'/>
|
|
928
|
+
<retval type='v' declared_type='void'/>
|
|
929
|
+
</method>
|
|
930
|
+
<method type='v16@0:4@8B12' selector='audioPlayerDidFinishPlaying:successfully:'>
|
|
931
|
+
<arg type='@' name='player' index='0' declared_type='AVAudioPlayer*'/>
|
|
932
|
+
<arg type='B' name='flag' index='1' declared_type='BOOL'/>
|
|
933
|
+
<retval type='v' declared_type='void'/>
|
|
934
|
+
</method>
|
|
935
|
+
<method type='v12@0:4@8' selector='audioPlayerEndInterruption:'>
|
|
936
|
+
<arg type='@' name='player' index='0' declared_type='AVAudioPlayer*'/>
|
|
937
|
+
<retval type='v' declared_type='void'/>
|
|
938
|
+
</method>
|
|
939
|
+
<method type='v16@0:4@8I12' selector='audioPlayerEndInterruption:withFlags:'>
|
|
940
|
+
<arg type='@' name='player' index='0' declared_type='AVAudioPlayer*'/>
|
|
941
|
+
<arg type='I' name='flags' index='1' declared_type='NSUInteger'/>
|
|
942
|
+
<retval type='v' declared_type='void'/>
|
|
943
|
+
</method>
|
|
944
|
+
</informal_protocol>
|
|
945
|
+
<informal_protocol name='AVAudioSessionDelegate'>
|
|
946
|
+
<method type='v8@0:4' selector='beginInterruption'>
|
|
947
|
+
<retval type='v' declared_type='void'/>
|
|
948
|
+
</method>
|
|
949
|
+
<method type='v8@0:4' selector='endInterruption'>
|
|
950
|
+
<retval type='v' declared_type='void'/>
|
|
951
|
+
</method>
|
|
952
|
+
<method type='v12@0:4I8' selector='endInterruptionWithFlags:'>
|
|
953
|
+
<arg type='I' name='flags' index='0' declared_type='NSUInteger'/>
|
|
954
|
+
<retval type='v' declared_type='void'/>
|
|
955
|
+
</method>
|
|
956
|
+
<method type='v12@0:4B8' selector='inputIsAvailableChanged:'>
|
|
957
|
+
<arg type='B' name='isInputAvailable' index='0' declared_type='BOOL'/>
|
|
958
|
+
<retval type='v' declared_type='void'/>
|
|
959
|
+
</method>
|
|
960
|
+
</informal_protocol>
|
|
961
|
+
<informal_protocol name='CDAudioInterruptProtocol'>
|
|
962
|
+
<method type='B8@0:4' selector='enabled'>
|
|
963
|
+
<retval type='B' declared_type='BOOL'/>
|
|
964
|
+
</method>
|
|
965
|
+
<method type='B8@0:4' selector='mute'>
|
|
966
|
+
<retval type='B' declared_type='BOOL'/>
|
|
967
|
+
</method>
|
|
968
|
+
<method type='v12@0:4B8' selector='setEnabled:'>
|
|
969
|
+
<arg type='B' name='enabledValue' index='0' declared_type='BOOL'/>
|
|
970
|
+
<retval type='v' declared_type='void'/>
|
|
971
|
+
</method>
|
|
972
|
+
<method type='v12@0:4B8' selector='setMute:'>
|
|
973
|
+
<arg type='B' name='muteValue' index='0' declared_type='BOOL'/>
|
|
974
|
+
<retval type='v' declared_type='void'/>
|
|
975
|
+
</method>
|
|
976
|
+
</informal_protocol>
|
|
977
|
+
<informal_protocol name='CDAudioTransportProtocol'>
|
|
978
|
+
<method type='B8@0:4' selector='pause'>
|
|
979
|
+
<retval type='B' declared_type='BOOL'/>
|
|
980
|
+
</method>
|
|
981
|
+
<method type='B8@0:4' selector='play'>
|
|
982
|
+
<retval type='B' declared_type='BOOL'/>
|
|
983
|
+
</method>
|
|
984
|
+
<method type='B8@0:4' selector='rewind'>
|
|
985
|
+
<retval type='B' declared_type='BOOL'/>
|
|
986
|
+
</method>
|
|
987
|
+
<method type='B8@0:4' selector='stop'>
|
|
988
|
+
<retval type='B' declared_type='BOOL'/>
|
|
989
|
+
</method>
|
|
990
|
+
</informal_protocol>
|
|
991
|
+
<informal_protocol name='CDLongAudioSourceDelegate'>
|
|
992
|
+
<method type='v12@0:4@8' selector='cdAudioSourceDidFinishPlaying:'>
|
|
993
|
+
<arg type='@' name='audioSource' index='0' declared_type='CDLongAudioSource*'/>
|
|
994
|
+
<retval type='v' declared_type='void'/>
|
|
995
|
+
</method>
|
|
996
|
+
<method type='v12@0:4@8' selector='cdAudioSourceFileDidChange:'>
|
|
997
|
+
<arg type='@' name='audioSource' index='0' declared_type='CDLongAudioSource*'/>
|
|
998
|
+
<retval type='v' declared_type='void'/>
|
|
999
|
+
</method>
|
|
1000
|
+
</informal_protocol>
|
|
1001
|
+
</signatures>
|