diff --git a/spine-cocos2dx/3.2/example/Classes/AppDelegate.cpp b/spine-cocos2dx/3.2/example/Classes/AppDelegate.cpp index ed90b2b75..cfcfd1f67 100644 --- a/spine-cocos2dx/3.2/example/Classes/AppDelegate.cpp +++ b/spine-cocos2dx/3.2/example/Classes/AppDelegate.cpp @@ -19,6 +19,10 @@ bool AppDelegate::applicationDidFinishLaunching () { // initialize director auto director = Director::getInstance(); auto glview = director->getOpenGLView(); + if(!glview) { + glview = GLView::create("My Game"); + director->setOpenGLView(glview); + } // Set the design resolution #if (CC_TARGET_PLATFORM == CC_PLATFORM_WP8) diff --git a/spine-cocos2dx/3.2/example/Classes/AppDelegate.h b/spine-cocos2dx/3.2/example/Classes/AppDelegate.h index 318fc27f4..d50b7e9ff 100644 --- a/spine-cocos2dx/3.2/example/Classes/AppDelegate.h +++ b/spine-cocos2dx/3.2/example/Classes/AppDelegate.h @@ -5,7 +5,7 @@ #include "cocos2d.h" -class AppDelegate: private cocos2d::CCApplication { +class AppDelegate: private cocos2d::Application { public: AppDelegate (); virtual ~AppDelegate (); diff --git a/spine-cocos2dx/3.2/example/Classes/GoblinsExample.cpp b/spine-cocos2dx/3.2/example/Classes/GoblinsExample.cpp index d9954d39e..a2e4d3c89 100644 --- a/spine-cocos2dx/3.2/example/Classes/GoblinsExample.cpp +++ b/spine-cocos2dx/3.2/example/Classes/GoblinsExample.cpp @@ -59,10 +59,10 @@ bool GoblinsExample::init () { EventListenerTouchOneByOne* listener = EventListenerTouchOneByOne::create(); listener->onTouchBegan = [this] (Touch* touch, Event* event) -> bool { - if (!skeletonNode->debugBones) - skeletonNode->debugBones = true; - else if (skeletonNode->timeScale == 1) - skeletonNode->timeScale = 0.3f; + if (!skeletonNode->getDebugBonesEnabled()) + skeletonNode->setDebugBonesEnabled(true); + else if (skeletonNode->getTimeScale() == 1) + skeletonNode->setTimeScale(0.3f); else Director::getInstance()->replaceScene(SpineboyExample::scene()); return true; diff --git a/spine-cocos2dx/3.2/example/Classes/SpineboyExample.cpp b/spine-cocos2dx/3.2/example/Classes/SpineboyExample.cpp index 10a11fc97..42725d6d4 100644 --- a/spine-cocos2dx/3.2/example/Classes/SpineboyExample.cpp +++ b/spine-cocos2dx/3.2/example/Classes/SpineboyExample.cpp @@ -49,20 +49,20 @@ bool SpineboyExample::init () { skeletonNode = SkeletonAnimation::createWithFile("spineboy.json", "spineboy.atlas", 0.6f); - skeletonNode->startListener = [this] (int trackIndex) { - spTrackEntry* entry = spAnimationState_getCurrent(skeletonNode->state, trackIndex); + skeletonNode->setStartListener( [this] (int trackIndex) { + spTrackEntry* entry = spAnimationState_getCurrent(skeletonNode->getState(), trackIndex); const char* animationName = (entry && entry->animation) ? entry->animation->name : 0; log("%d start: %s", trackIndex, animationName); - }; - skeletonNode->endListener = [] (int trackIndex) { + }); + skeletonNode->setEndListener( [] (int trackIndex) { log("%d end", trackIndex); - }; - skeletonNode->completeListener = [] (int trackIndex, int loopCount) { + }); + skeletonNode->setCompleteListener( [] (int trackIndex, int loopCount) { log("%d complete: %d", trackIndex, loopCount); - }; - skeletonNode->eventListener = [] (int trackIndex, spEvent* event) { + }); + skeletonNode->setEventListener( [] (int trackIndex, spEvent* event) { log("%d event: %s, %d, %f, %s", trackIndex, event->data->name, event->intValue, event->floatValue, event->stringValue); - }; + }); skeletonNode->setMix("walk", "jump", 0.2f); skeletonNode->setMix("jump", "run", 0.2f); @@ -70,7 +70,7 @@ bool SpineboyExample::init () { spTrackEntry* jumpEntry = skeletonNode->addAnimation(0, "jump", false, 3); skeletonNode->addAnimation(0, "run", true); - skeletonNode->setStartListener(jumpEntry, [] (int trackIndex) { + skeletonNode->setTrackStartListener(jumpEntry, [] (int trackIndex) { log("jumped!"); }); @@ -85,10 +85,10 @@ bool SpineboyExample::init () { EventListenerTouchOneByOne* listener = EventListenerTouchOneByOne::create(); listener->onTouchBegan = [this] (Touch* touch, Event* event) -> bool { - if (!skeletonNode->debugBones) - skeletonNode->debugBones = true; - else if (skeletonNode->timeScale == 1) - skeletonNode->timeScale = 0.3f; + if (!skeletonNode->getDebugBonesEnabled()) + skeletonNode->setDebugBonesEnabled(true); + else if (skeletonNode->getTimeScale() == 1) + skeletonNode->setTimeScale(0.3f); else Director::getInstance()->replaceScene(GoblinsExample::scene()); return true; diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/Spine.xcodeproj/project.pbxproj b/spine-cocos2dx/3.2/example/proj.ios_mac/Spine.xcodeproj/project.pbxproj new file mode 100644 index 000000000..93aa0e3ec --- /dev/null +++ b/spine-cocos2dx/3.2/example/proj.ios_mac/Spine.xcodeproj/project.pbxproj @@ -0,0 +1,1282 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; }; + 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; }; + 288765A50DF7441C002DB57D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 288765A40DF7441C002DB57D /* CoreGraphics.framework */; }; + 501CF6F8198ACCF60074CC55 /* GoblinsExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 501CF6F6198ACCF60074CC55 /* GoblinsExample.cpp */; }; + 501CF6F9198ACCF60074CC55 /* GoblinsExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 501CF6F6198ACCF60074CC55 /* GoblinsExample.cpp */; }; + 501CF6FA198ACCF60074CC55 /* SpineboyExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 501CF6F7198ACCF60074CC55 /* SpineboyExample.cpp */; }; + 501CF6FB198ACCF60074CC55 /* SpineboyExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 501CF6F7198ACCF60074CC55 /* SpineboyExample.cpp */; }; + 501CF701198ACD200074CC55 /* common in Resources */ = {isa = PBXBuildFile; fileRef = 501CF6FC198ACD200074CC55 /* common */; }; + 501CF702198ACD200074CC55 /* common in Resources */ = {isa = PBXBuildFile; fileRef = 501CF6FC198ACD200074CC55 /* common */; }; + 501CF703198ACD200074CC55 /* ipad in Resources */ = {isa = PBXBuildFile; fileRef = 501CF6FD198ACD200074CC55 /* ipad */; }; + 501CF704198ACD200074CC55 /* ipad in Resources */ = {isa = PBXBuildFile; fileRef = 501CF6FD198ACD200074CC55 /* ipad */; }; + 501CF705198ACD200074CC55 /* ipad-retina in Resources */ = {isa = PBXBuildFile; fileRef = 501CF6FE198ACD200074CC55 /* ipad-retina */; }; + 501CF706198ACD200074CC55 /* ipad-retina in Resources */ = {isa = PBXBuildFile; fileRef = 501CF6FE198ACD200074CC55 /* ipad-retina */; }; + 501CF707198ACD200074CC55 /* iphone in Resources */ = {isa = PBXBuildFile; fileRef = 501CF6FF198ACD200074CC55 /* iphone */; }; + 501CF708198ACD200074CC55 /* iphone in Resources */ = {isa = PBXBuildFile; fileRef = 501CF6FF198ACD200074CC55 /* iphone */; }; + 501CF709198ACD200074CC55 /* iphone-retina in Resources */ = {isa = PBXBuildFile; fileRef = 501CF700198ACD200074CC55 /* iphone-retina */; }; + 501CF70A198ACD200074CC55 /* iphone-retina in Resources */ = {isa = PBXBuildFile; fileRef = 501CF700198ACD200074CC55 /* iphone-retina */; }; + 503AE0F817EB97AB00D1A890 /* Icon.icns in Resources */ = {isa = PBXBuildFile; fileRef = 503AE0F617EB97AB00D1A890 /* Icon.icns */; }; + 503AE10017EB989F00D1A890 /* AppController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 503AE0FB17EB989F00D1A890 /* AppController.mm */; }; + 503AE10117EB989F00D1A890 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 503AE0FC17EB989F00D1A890 /* main.m */; }; + 503AE10217EB989F00D1A890 /* RootViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 503AE0FF17EB989F00D1A890 /* RootViewController.mm */; }; + 503AE10517EB98FF00D1A890 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 503AE10317EB98FF00D1A890 /* main.cpp */; }; + 503AE11217EB99EE00D1A890 /* libcurl.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 503AE11117EB99EE00D1A890 /* libcurl.dylib */; }; + 503AE11B17EB9C5A00D1A890 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 503AE11A17EB9C5A00D1A890 /* IOKit.framework */; }; + 5087E76317EB910900C73F5D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; }; + 5087E76517EB910900C73F5D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 288765A40DF7441C002DB57D /* CoreGraphics.framework */; }; + 5087E76717EB910900C73F5D /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = BF170DB412928DE900B8313A /* libz.dylib */; }; + 5087E76817EB910900C73F5D /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BF1C47EA1293683800B63C5D /* QuartzCore.framework */; }; + 5087E76917EB910900C73F5D /* OpenAL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D44C620B132DFF330009C878 /* OpenAL.framework */; }; + 5087E76A17EB910900C73F5D /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D44C620D132DFF430009C878 /* AVFoundation.framework */; }; + 5087E76B17EB910900C73F5D /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D44C620F132DFF4E0009C878 /* AudioToolbox.framework */; }; + 5087E77D17EB970100C73F5D /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 5087E77217EB970100C73F5D /* Default-568h@2x.png */; }; + 5087E77E17EB970100C73F5D /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 5087E77317EB970100C73F5D /* Default.png */; }; + 5087E77F17EB970100C73F5D /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 5087E77417EB970100C73F5D /* Default@2x.png */; }; + 5087E78017EB970100C73F5D /* Icon-114.png in Resources */ = {isa = PBXBuildFile; fileRef = 5087E77517EB970100C73F5D /* Icon-114.png */; }; + 5087E78117EB970100C73F5D /* Icon-120.png in Resources */ = {isa = PBXBuildFile; fileRef = 5087E77617EB970100C73F5D /* Icon-120.png */; }; + 5087E78217EB970100C73F5D /* Icon-144.png in Resources */ = {isa = PBXBuildFile; fileRef = 5087E77717EB970100C73F5D /* Icon-144.png */; }; + 5087E78317EB970100C73F5D /* Icon-152.png in Resources */ = {isa = PBXBuildFile; fileRef = 5087E77817EB970100C73F5D /* Icon-152.png */; }; + 5087E78417EB970100C73F5D /* Icon-57.png in Resources */ = {isa = PBXBuildFile; fileRef = 5087E77917EB970100C73F5D /* Icon-57.png */; }; + 5087E78517EB970100C73F5D /* Icon-72.png in Resources */ = {isa = PBXBuildFile; fileRef = 5087E77A17EB970100C73F5D /* Icon-72.png */; }; + 5087E78617EB970100C73F5D /* Icon-76.png in Resources */ = {isa = PBXBuildFile; fileRef = 5087E77B17EB970100C73F5D /* Icon-76.png */; }; + 5087E78917EB974C00C73F5D /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5087E78817EB974C00C73F5D /* AppKit.framework */; }; + 5087E78B17EB975400C73F5D /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5087E78A17EB975400C73F5D /* OpenGL.framework */; }; + 508F8521198ACEA6003F3377 /* libbox2d Mac.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 501CF735198ACDA80074CC55 /* libbox2d Mac.a */; }; + 508F8522198ACEA6003F3377 /* libchipmunk Mac.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 501CF733198ACDA80074CC55 /* libchipmunk Mac.a */; }; + 508F8523198ACEA6003F3377 /* libcocos2d Mac.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 501CF725198ACDA80074CC55 /* libcocos2d Mac.a */; }; + 508F8524198ACEA6003F3377 /* libcocosbuilder Mac.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 501CF72D198ACDA80074CC55 /* libcocosbuilder Mac.a */; }; + 508F8525198ACEA6003F3377 /* libcocosdenshion Mac.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 501CF737198ACDA80074CC55 /* libcocosdenshion Mac.a */; }; + 508F8526198ACEA6003F3377 /* libcocostudio Mac.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 501CF72B198ACDA80074CC55 /* libcocostudio Mac.a */; }; + 508F8527198ACEA6003F3377 /* libextension Mac.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 501CF727198ACDA80074CC55 /* libextension Mac.a */; }; + 508F8528198ACEA6003F3377 /* libnetwork Mac.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 501CF731198ACDA80074CC55 /* libnetwork Mac.a */; }; + 508F8529198ACEA6003F3377 /* libui Mac.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 501CF729198ACDA80074CC55 /* libui Mac.a */; }; + 508F852A198ACEBA003F3377 /* libbox2d iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 501CF73F198ACDA80074CC55 /* libbox2d iOS.a */; }; + 508F852B198ACEBA003F3377 /* libchipmunk iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 501CF73D198ACDA80074CC55 /* libchipmunk iOS.a */; }; + 508F852C198ACEBA003F3377 /* libcocos2d iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 501CF739198ACDA80074CC55 /* libcocos2d iOS.a */; }; + 508F852D198ACEBA003F3377 /* libcocosbuilder iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 501CF747198ACDA80074CC55 /* libcocosbuilder iOS.a */; }; + 508F852E198ACEBA003F3377 /* libcocosdenshion iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 501CF741198ACDA80074CC55 /* libcocosdenshion iOS.a */; }; + 508F852F198ACEBA003F3377 /* libcocostudio iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 501CF745198ACDA80074CC55 /* libcocostudio iOS.a */; }; + 508F8530198ACEBA003F3377 /* libextension iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 501CF73B198ACDA80074CC55 /* libextension iOS.a */; }; + 508F8531198ACEBA003F3377 /* libnetwork iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 501CF74B198ACDA80074CC55 /* libnetwork iOS.a */; }; + 508F8532198ACEBA003F3377 /* libui iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 501CF743198ACDA80074CC55 /* libui iOS.a */; }; + 508F853C198ACF26003F3377 /* PolygonBatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 508F8534198ACF26003F3377 /* PolygonBatch.cpp */; }; + 508F853D198ACF26003F3377 /* PolygonBatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 508F8534198ACF26003F3377 /* PolygonBatch.cpp */; }; + 508F853E198ACF26003F3377 /* SkeletonAnimation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 508F8536198ACF26003F3377 /* SkeletonAnimation.cpp */; }; + 508F853F198ACF26003F3377 /* SkeletonAnimation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 508F8536198ACF26003F3377 /* SkeletonAnimation.cpp */; }; + 508F8540198ACF26003F3377 /* SkeletonRenderer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 508F8538198ACF26003F3377 /* SkeletonRenderer.cpp */; }; + 508F8541198ACF26003F3377 /* SkeletonRenderer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 508F8538198ACF26003F3377 /* SkeletonRenderer.cpp */; }; + 508F8542198ACF26003F3377 /* spine-cocos2dx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 508F853A198ACF26003F3377 /* spine-cocos2dx.cpp */; }; + 508F8543198ACF26003F3377 /* spine-cocos2dx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 508F853A198ACF26003F3377 /* spine-cocos2dx.cpp */; }; + 508F85DF198AD01D003F3377 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 508F85B2198AD01D003F3377 /* README.md */; }; + 508F85E0198AD01D003F3377 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 508F85B2198AD01D003F3377 /* README.md */; }; + 508F85E7198AD01D003F3377 /* Animation.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85B8198AD01D003F3377 /* Animation.c */; }; + 508F85E8198AD01D003F3377 /* Animation.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85B8198AD01D003F3377 /* Animation.c */; }; + 508F85E9198AD01D003F3377 /* AnimationState.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85B9198AD01D003F3377 /* AnimationState.c */; }; + 508F85EA198AD01D003F3377 /* AnimationState.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85B9198AD01D003F3377 /* AnimationState.c */; }; + 508F85EB198AD01D003F3377 /* AnimationStateData.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85BA198AD01D003F3377 /* AnimationStateData.c */; }; + 508F85EC198AD01D003F3377 /* AnimationStateData.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85BA198AD01D003F3377 /* AnimationStateData.c */; }; + 508F85ED198AD01D003F3377 /* Atlas.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85BB198AD01D003F3377 /* Atlas.c */; }; + 508F85EE198AD01D003F3377 /* Atlas.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85BB198AD01D003F3377 /* Atlas.c */; }; + 508F85EF198AD01D003F3377 /* AtlasAttachmentLoader.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85BC198AD01D003F3377 /* AtlasAttachmentLoader.c */; }; + 508F85F0198AD01D003F3377 /* AtlasAttachmentLoader.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85BC198AD01D003F3377 /* AtlasAttachmentLoader.c */; }; + 508F85F1198AD01D003F3377 /* Attachment.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85BD198AD01D003F3377 /* Attachment.c */; }; + 508F85F2198AD01D003F3377 /* Attachment.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85BD198AD01D003F3377 /* Attachment.c */; }; + 508F85F3198AD01D003F3377 /* AttachmentLoader.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85BE198AD01D003F3377 /* AttachmentLoader.c */; }; + 508F85F4198AD01D003F3377 /* AttachmentLoader.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85BE198AD01D003F3377 /* AttachmentLoader.c */; }; + 508F85F5198AD01D003F3377 /* Bone.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85BF198AD01D003F3377 /* Bone.c */; }; + 508F85F6198AD01D003F3377 /* Bone.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85BF198AD01D003F3377 /* Bone.c */; }; + 508F85F7198AD01D003F3377 /* BoneData.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85C0198AD01D003F3377 /* BoneData.c */; }; + 508F85F8198AD01D003F3377 /* BoneData.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85C0198AD01D003F3377 /* BoneData.c */; }; + 508F85F9198AD01D003F3377 /* BoundingBoxAttachment.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85C1198AD01D003F3377 /* BoundingBoxAttachment.c */; }; + 508F85FA198AD01D003F3377 /* BoundingBoxAttachment.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85C1198AD01D003F3377 /* BoundingBoxAttachment.c */; }; + 508F85FB198AD01D003F3377 /* Event.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85C2198AD01D003F3377 /* Event.c */; }; + 508F85FC198AD01D003F3377 /* Event.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85C2198AD01D003F3377 /* Event.c */; }; + 508F85FD198AD01D003F3377 /* EventData.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85C3198AD01D003F3377 /* EventData.c */; }; + 508F85FE198AD01D003F3377 /* EventData.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85C3198AD01D003F3377 /* EventData.c */; }; + 508F85FF198AD01D003F3377 /* extension.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85C4198AD01D003F3377 /* extension.c */; }; + 508F8600198AD01D003F3377 /* extension.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85C4198AD01D003F3377 /* extension.c */; }; + 508F8601198AD01D003F3377 /* Json.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85C5198AD01D003F3377 /* Json.c */; }; + 508F8602198AD01D003F3377 /* Json.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85C5198AD01D003F3377 /* Json.c */; }; + 508F8603198AD01D003F3377 /* MeshAttachment.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85C7198AD01D003F3377 /* MeshAttachment.c */; }; + 508F8604198AD01D003F3377 /* MeshAttachment.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85C7198AD01D003F3377 /* MeshAttachment.c */; }; + 508F8605198AD01D003F3377 /* RegionAttachment.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85C8198AD01D003F3377 /* RegionAttachment.c */; }; + 508F8606198AD01D003F3377 /* RegionAttachment.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85C8198AD01D003F3377 /* RegionAttachment.c */; }; + 508F8607198AD01D003F3377 /* Skeleton.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85C9198AD01D003F3377 /* Skeleton.c */; }; + 508F8608198AD01D003F3377 /* Skeleton.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85C9198AD01D003F3377 /* Skeleton.c */; }; + 508F8609198AD01D003F3377 /* SkeletonBounds.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85CA198AD01D003F3377 /* SkeletonBounds.c */; }; + 508F860A198AD01D003F3377 /* SkeletonBounds.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85CA198AD01D003F3377 /* SkeletonBounds.c */; }; + 508F860B198AD01D003F3377 /* SkeletonData.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85CB198AD01D003F3377 /* SkeletonData.c */; }; + 508F860C198AD01D003F3377 /* SkeletonData.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85CB198AD01D003F3377 /* SkeletonData.c */; }; + 508F860D198AD01D003F3377 /* SkeletonJson.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85CC198AD01D003F3377 /* SkeletonJson.c */; }; + 508F860E198AD01D003F3377 /* SkeletonJson.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85CC198AD01D003F3377 /* SkeletonJson.c */; }; + 508F860F198AD01D003F3377 /* Skin.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85CD198AD01D003F3377 /* Skin.c */; }; + 508F8610198AD01D003F3377 /* Skin.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85CD198AD01D003F3377 /* Skin.c */; }; + 508F8611198AD01D003F3377 /* SkinnedMeshAttachment.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85CE198AD01D003F3377 /* SkinnedMeshAttachment.c */; }; + 508F8612198AD01D003F3377 /* SkinnedMeshAttachment.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85CE198AD01D003F3377 /* SkinnedMeshAttachment.c */; }; + 508F8613198AD01D003F3377 /* Slot.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85CF198AD01D003F3377 /* Slot.c */; }; + 508F8614198AD01D003F3377 /* Slot.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85CF198AD01D003F3377 /* Slot.c */; }; + 508F8615198AD01D003F3377 /* SlotData.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85D0198AD01D003F3377 /* SlotData.c */; }; + 508F8616198AD01D003F3377 /* SlotData.c in Sources */ = {isa = PBXBuildFile; fileRef = 508F85D0198AD01D003F3377 /* SlotData.c */; }; + 50EF629617ECD46A001EB2F8 /* Icon-40.png in Resources */ = {isa = PBXBuildFile; fileRef = 50EF629217ECD46A001EB2F8 /* Icon-40.png */; }; + 50EF629717ECD46A001EB2F8 /* Icon-58.png in Resources */ = {isa = PBXBuildFile; fileRef = 50EF629317ECD46A001EB2F8 /* Icon-58.png */; }; + 50EF629817ECD46A001EB2F8 /* Icon-80.png in Resources */ = {isa = PBXBuildFile; fileRef = 50EF629417ECD46A001EB2F8 /* Icon-80.png */; }; + 50EF629917ECD46A001EB2F8 /* Icon-100.png in Resources */ = {isa = PBXBuildFile; fileRef = 50EF629517ECD46A001EB2F8 /* Icon-100.png */; }; + 50EF62A217ECD613001EB2F8 /* Icon-29.png in Resources */ = {isa = PBXBuildFile; fileRef = 50EF62A017ECD613001EB2F8 /* Icon-29.png */; }; + 50EF62A317ECD613001EB2F8 /* Icon-50.png in Resources */ = {isa = PBXBuildFile; fileRef = 50EF62A117ECD613001EB2F8 /* Icon-50.png */; }; + A00E3D5719008BCB00F01AFF /* AppDelegate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A00E3D1919008BCB00F01AFF /* AppDelegate.cpp */; }; + A00E3D5819008BCB00F01AFF /* AppDelegate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A00E3D1919008BCB00F01AFF /* AppDelegate.cpp */; }; + BF171245129291EC00B8313A /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BF170DB012928DE900B8313A /* OpenGLES.framework */; }; + BF1712471292920000B8313A /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = BF170DB412928DE900B8313A /* libz.dylib */; }; + BF1C47F01293687400B63C5D /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BF1C47EA1293683800B63C5D /* QuartzCore.framework */; }; + D44C620C132DFF330009C878 /* OpenAL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D44C620B132DFF330009C878 /* OpenAL.framework */; }; + D44C620E132DFF430009C878 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D44C620D132DFF430009C878 /* AVFoundation.framework */; }; + D44C6210132DFF4E0009C878 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D44C620F132DFF4E0009C878 /* AudioToolbox.framework */; }; + D6B0611B1803AB670077942B /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D6B0611A1803AB670077942B /* CoreMotion.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 501CF724198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 1551A33F158F2AB200E66CFE; + remoteInfo = "libcocos2d Mac"; + }; + 501CF726198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = A03F2FD617814595006731B9; + remoteInfo = "libextension Mac"; + }; + 501CF728198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = B245F13A19766132001920FD; + remoteInfo = "libui Mac"; + }; + 501CF72A198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = B2DB484D1976716E00411E16; + remoteInfo = "libcocostudio Mac"; + }; + 501CF72C198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = B2DB47D2197669A100411E16; + remoteInfo = "libcocosbuilder Mac"; + }; + 501CF72E198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = B2DB490119767F1F00411E16; + remoteInfo = "libspine Mac"; + }; + 501CF730198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = B2DB49C4197686CB00411E16; + remoteInfo = "libnetwork Mac"; + }; + 501CF732198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = A03F2CB81780BD04006731B9; + remoteInfo = "libchipmunk Mac"; + }; + 501CF734198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = A03F2D9B1780BDF7006731B9; + remoteInfo = "libbox2d Mac"; + }; + 501CF736198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = A03F2ED617814268006731B9; + remoteInfo = "libcocosdenshion Mac"; + }; + 501CF738198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = A07A4D641783777C0073F6A7; + remoteInfo = "libcocos2d iOS"; + }; + 501CF73A198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = A07A4EFC1783867C0073F6A7; + remoteInfo = "libextension iOS"; + }; + 501CF73C198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = A07A4F3B178387670073F6A7; + remoteInfo = "libchipmunk iOS"; + }; + 501CF73E198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = A07A4F9E1783876B0073F6A7; + remoteInfo = "libbox2d iOS"; + }; + 501CF740198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = A07A4FB4178387730073F6A7; + remoteInfo = "libcocosdenshion iOS"; + }; + 501CF742198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = B24EEA6619775E92004493CC; + remoteInfo = "libui iOS"; + }; + 501CF744198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = B24EEA6E19775EBB004493CC; + remoteInfo = "libcocostudio iOS"; + }; + 501CF746198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = B24EEA7619775ECE004493CC; + remoteInfo = "libcocosbuilder iOS"; + }; + 501CF748198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = B24EEA7E19775EE1004493CC; + remoteInfo = "libspine iOS"; + }; + 501CF74A198ACDA80074CC55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = B24EEA8619775EF3004493CC; + remoteInfo = "libnetwork iOS"; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 1ACB3243164770DE00914215 /* libcurl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libcurl.a; path = ../../cocos2dx/platform/third_party/ios/libraries/libcurl.a; sourceTree = ""; }; + 1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; + 1D6058910D05DD3D006BFB54 /* Spine iOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Spine iOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; + 288765A40DF7441C002DB57D /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; + 501CF6F3198ACCF60074CC55 /* AppMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppMacros.h; path = ../Classes/AppMacros.h; sourceTree = ""; }; + 501CF6F4198ACCF60074CC55 /* GoblinsExample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GoblinsExample.h; path = ../Classes/GoblinsExample.h; sourceTree = ""; }; + 501CF6F5198ACCF60074CC55 /* SpineboyExample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SpineboyExample.h; path = ../Classes/SpineboyExample.h; sourceTree = ""; }; + 501CF6F6198ACCF60074CC55 /* GoblinsExample.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = GoblinsExample.cpp; path = ../Classes/GoblinsExample.cpp; sourceTree = ""; }; + 501CF6F7198ACCF60074CC55 /* SpineboyExample.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SpineboyExample.cpp; path = ../Classes/SpineboyExample.cpp; sourceTree = ""; }; + 501CF6FC198ACD200074CC55 /* common */ = {isa = PBXFileReference; lastKnownFileType = folder; path = common; sourceTree = ""; }; + 501CF6FD198ACD200074CC55 /* ipad */ = {isa = PBXFileReference; lastKnownFileType = folder; path = ipad; sourceTree = ""; }; + 501CF6FE198ACD200074CC55 /* ipad-retina */ = {isa = PBXFileReference; lastKnownFileType = folder; path = "ipad-retina"; sourceTree = ""; }; + 501CF6FF198ACD200074CC55 /* iphone */ = {isa = PBXFileReference; lastKnownFileType = folder; path = iphone; sourceTree = ""; }; + 501CF700198ACD200074CC55 /* iphone-retina */ = {isa = PBXFileReference; lastKnownFileType = folder; path = "iphone-retina"; sourceTree = ""; }; + 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = cocos2d_libs.xcodeproj; path = "../../../../../cocos2d-x/build/cocos2d_libs.xcodeproj"; sourceTree = ""; }; + 503AE0F617EB97AB00D1A890 /* Icon.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = Icon.icns; sourceTree = ""; }; + 503AE0F717EB97AB00D1A890 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 503AE0FA17EB989F00D1A890 /* AppController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppController.h; path = ios/AppController.h; sourceTree = SOURCE_ROOT; }; + 503AE0FB17EB989F00D1A890 /* AppController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppController.mm; path = ios/AppController.mm; sourceTree = SOURCE_ROOT; }; + 503AE0FC17EB989F00D1A890 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = ios/main.m; sourceTree = SOURCE_ROOT; }; + 503AE0FD17EB989F00D1A890 /* Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Prefix.pch; path = ios/Prefix.pch; sourceTree = SOURCE_ROOT; }; + 503AE0FE17EB989F00D1A890 /* RootViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RootViewController.h; path = ios/RootViewController.h; sourceTree = SOURCE_ROOT; }; + 503AE0FF17EB989F00D1A890 /* RootViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = RootViewController.mm; path = ios/RootViewController.mm; sourceTree = SOURCE_ROOT; }; + 503AE10317EB98FF00D1A890 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = main.cpp; path = mac/main.cpp; sourceTree = ""; }; + 503AE10417EB98FF00D1A890 /* Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Prefix.pch; path = mac/Prefix.pch; sourceTree = ""; }; + 503AE11117EB99EE00D1A890 /* libcurl.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libcurl.dylib; path = usr/lib/libcurl.dylib; sourceTree = SDKROOT; }; + 503AE11A17EB9C5A00D1A890 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; }; + 5087E76F17EB910900C73F5D /* Spine Mac.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Spine Mac.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + 5087E77217EB970100C73F5D /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = ""; }; + 5087E77317EB970100C73F5D /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = ""; }; + 5087E77417EB970100C73F5D /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = ""; }; + 5087E77517EB970100C73F5D /* Icon-114.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-114.png"; sourceTree = ""; }; + 5087E77617EB970100C73F5D /* Icon-120.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-120.png"; sourceTree = ""; }; + 5087E77717EB970100C73F5D /* Icon-144.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-144.png"; sourceTree = ""; }; + 5087E77817EB970100C73F5D /* Icon-152.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-152.png"; sourceTree = ""; }; + 5087E77917EB970100C73F5D /* Icon-57.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-57.png"; sourceTree = ""; }; + 5087E77A17EB970100C73F5D /* Icon-72.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-72.png"; sourceTree = ""; }; + 5087E77B17EB970100C73F5D /* Icon-76.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-76.png"; sourceTree = ""; }; + 5087E77C17EB970100C73F5D /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 5087E78817EB974C00C73F5D /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; }; + 5087E78A17EB975400C73F5D /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; }; + 508F8534198ACF26003F3377 /* PolygonBatch.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PolygonBatch.cpp; sourceTree = ""; }; + 508F8535198ACF26003F3377 /* PolygonBatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PolygonBatch.h; sourceTree = ""; }; + 508F8536198ACF26003F3377 /* SkeletonAnimation.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SkeletonAnimation.cpp; sourceTree = ""; }; + 508F8537198ACF26003F3377 /* SkeletonAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkeletonAnimation.h; sourceTree = ""; }; + 508F8538198ACF26003F3377 /* SkeletonRenderer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SkeletonRenderer.cpp; sourceTree = ""; }; + 508F8539198ACF26003F3377 /* SkeletonRenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkeletonRenderer.h; sourceTree = ""; }; + 508F853A198ACF26003F3377 /* spine-cocos2dx.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "spine-cocos2dx.cpp"; sourceTree = ""; }; + 508F853B198ACF26003F3377 /* spine-cocos2dx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "spine-cocos2dx.h"; sourceTree = ""; }; + 508F859A198AD01D003F3377 /* Animation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Animation.h; sourceTree = ""; }; + 508F859B198AD01D003F3377 /* AnimationState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnimationState.h; sourceTree = ""; }; + 508F859C198AD01D003F3377 /* AnimationStateData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnimationStateData.h; sourceTree = ""; }; + 508F859D198AD01D003F3377 /* Atlas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Atlas.h; sourceTree = ""; }; + 508F859E198AD01D003F3377 /* AtlasAttachmentLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AtlasAttachmentLoader.h; sourceTree = ""; }; + 508F859F198AD01D003F3377 /* Attachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Attachment.h; sourceTree = ""; }; + 508F85A0198AD01D003F3377 /* AttachmentLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AttachmentLoader.h; sourceTree = ""; }; + 508F85A1198AD01D003F3377 /* Bone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Bone.h; sourceTree = ""; }; + 508F85A2198AD01D003F3377 /* BoneData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BoneData.h; sourceTree = ""; }; + 508F85A3198AD01D003F3377 /* BoundingBoxAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BoundingBoxAttachment.h; sourceTree = ""; }; + 508F85A4198AD01D003F3377 /* Event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Event.h; sourceTree = ""; }; + 508F85A5198AD01D003F3377 /* EventData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EventData.h; sourceTree = ""; }; + 508F85A6198AD01D003F3377 /* extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = extension.h; sourceTree = ""; }; + 508F85A7198AD01D003F3377 /* MeshAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MeshAttachment.h; sourceTree = ""; }; + 508F85A8198AD01D003F3377 /* RegionAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RegionAttachment.h; sourceTree = ""; }; + 508F85A9198AD01D003F3377 /* Skeleton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Skeleton.h; sourceTree = ""; }; + 508F85AA198AD01D003F3377 /* SkeletonBounds.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkeletonBounds.h; sourceTree = ""; }; + 508F85AB198AD01D003F3377 /* SkeletonData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkeletonData.h; sourceTree = ""; }; + 508F85AC198AD01D003F3377 /* SkeletonJson.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkeletonJson.h; sourceTree = ""; }; + 508F85AD198AD01D003F3377 /* Skin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Skin.h; sourceTree = ""; }; + 508F85AE198AD01D003F3377 /* SkinnedMeshAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkinnedMeshAttachment.h; sourceTree = ""; }; + 508F85AF198AD01D003F3377 /* Slot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Slot.h; sourceTree = ""; }; + 508F85B0198AD01D003F3377 /* SlotData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SlotData.h; sourceTree = ""; }; + 508F85B1198AD01D003F3377 /* spine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spine.h; sourceTree = ""; }; + 508F85B2198AD01D003F3377 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 508F85B8198AD01D003F3377 /* Animation.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Animation.c; sourceTree = ""; }; + 508F85B9198AD01D003F3377 /* AnimationState.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AnimationState.c; sourceTree = ""; }; + 508F85BA198AD01D003F3377 /* AnimationStateData.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AnimationStateData.c; sourceTree = ""; }; + 508F85BB198AD01D003F3377 /* Atlas.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Atlas.c; sourceTree = ""; }; + 508F85BC198AD01D003F3377 /* AtlasAttachmentLoader.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AtlasAttachmentLoader.c; sourceTree = ""; }; + 508F85BD198AD01D003F3377 /* Attachment.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Attachment.c; sourceTree = ""; }; + 508F85BE198AD01D003F3377 /* AttachmentLoader.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AttachmentLoader.c; sourceTree = ""; }; + 508F85BF198AD01D003F3377 /* Bone.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Bone.c; sourceTree = ""; }; + 508F85C0198AD01D003F3377 /* BoneData.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BoneData.c; sourceTree = ""; }; + 508F85C1198AD01D003F3377 /* BoundingBoxAttachment.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BoundingBoxAttachment.c; sourceTree = ""; }; + 508F85C2198AD01D003F3377 /* Event.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Event.c; sourceTree = ""; }; + 508F85C3198AD01D003F3377 /* EventData.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = EventData.c; sourceTree = ""; }; + 508F85C4198AD01D003F3377 /* extension.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = extension.c; sourceTree = ""; }; + 508F85C5198AD01D003F3377 /* Json.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Json.c; sourceTree = ""; }; + 508F85C6198AD01D003F3377 /* Json.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Json.h; sourceTree = ""; }; + 508F85C7198AD01D003F3377 /* MeshAttachment.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = MeshAttachment.c; sourceTree = ""; }; + 508F85C8198AD01D003F3377 /* RegionAttachment.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = RegionAttachment.c; sourceTree = ""; }; + 508F85C9198AD01D003F3377 /* Skeleton.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Skeleton.c; sourceTree = ""; }; + 508F85CA198AD01D003F3377 /* SkeletonBounds.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SkeletonBounds.c; sourceTree = ""; }; + 508F85CB198AD01D003F3377 /* SkeletonData.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SkeletonData.c; sourceTree = ""; }; + 508F85CC198AD01D003F3377 /* SkeletonJson.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SkeletonJson.c; sourceTree = ""; }; + 508F85CD198AD01D003F3377 /* Skin.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Skin.c; sourceTree = ""; }; + 508F85CE198AD01D003F3377 /* SkinnedMeshAttachment.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SkinnedMeshAttachment.c; sourceTree = ""; }; + 508F85CF198AD01D003F3377 /* Slot.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Slot.c; sourceTree = ""; }; + 508F85D0198AD01D003F3377 /* SlotData.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SlotData.c; sourceTree = ""; }; + 50EF629217ECD46A001EB2F8 /* Icon-40.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-40.png"; sourceTree = ""; }; + 50EF629317ECD46A001EB2F8 /* Icon-58.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-58.png"; sourceTree = ""; }; + 50EF629417ECD46A001EB2F8 /* Icon-80.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-80.png"; sourceTree = ""; }; + 50EF629517ECD46A001EB2F8 /* Icon-100.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-100.png"; sourceTree = ""; }; + 50EF62A017ECD613001EB2F8 /* Icon-29.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-29.png"; sourceTree = ""; }; + 50EF62A117ECD613001EB2F8 /* Icon-50.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-50.png"; sourceTree = ""; }; + A00E3D1919008BCB00F01AFF /* AppDelegate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = AppDelegate.cpp; path = ../Classes/AppDelegate.cpp; sourceTree = ""; }; + A00E3D1A19008BCB00F01AFF /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = ../Classes/AppDelegate.h; sourceTree = ""; }; + BF170DB012928DE900B8313A /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; }; + BF170DB412928DE900B8313A /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; }; + BF1C47EA1293683800B63C5D /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; }; + D44C620B132DFF330009C878 /* OpenAL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenAL.framework; path = System/Library/Frameworks/OpenAL.framework; sourceTree = SDKROOT; }; + D44C620D132DFF430009C878 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; }; + D44C620F132DFF4E0009C878 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; }; + D6B0611A1803AB670077942B /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk/System/Library/Frameworks/CoreMotion.framework; sourceTree = DEVELOPER_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 1D60588F0D05DD3D006BFB54 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 508F852A198ACEBA003F3377 /* libbox2d iOS.a in Frameworks */, + 508F852B198ACEBA003F3377 /* libchipmunk iOS.a in Frameworks */, + 508F852C198ACEBA003F3377 /* libcocos2d iOS.a in Frameworks */, + 508F852D198ACEBA003F3377 /* libcocosbuilder iOS.a in Frameworks */, + 508F852E198ACEBA003F3377 /* libcocosdenshion iOS.a in Frameworks */, + 508F852F198ACEBA003F3377 /* libcocostudio iOS.a in Frameworks */, + 508F8530198ACEBA003F3377 /* libextension iOS.a in Frameworks */, + 508F8531198ACEBA003F3377 /* libnetwork iOS.a in Frameworks */, + 508F8532198ACEBA003F3377 /* libui iOS.a in Frameworks */, + D6B0611B1803AB670077942B /* CoreMotion.framework in Frameworks */, + 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */, + 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */, + 288765A50DF7441C002DB57D /* CoreGraphics.framework in Frameworks */, + BF171245129291EC00B8313A /* OpenGLES.framework in Frameworks */, + BF1712471292920000B8313A /* libz.dylib in Frameworks */, + BF1C47F01293687400B63C5D /* QuartzCore.framework in Frameworks */, + D44C620C132DFF330009C878 /* OpenAL.framework in Frameworks */, + D44C620E132DFF430009C878 /* AVFoundation.framework in Frameworks */, + D44C6210132DFF4E0009C878 /* AudioToolbox.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 5087E75C17EB910900C73F5D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 508F8521198ACEA6003F3377 /* libbox2d Mac.a in Frameworks */, + 508F8522198ACEA6003F3377 /* libchipmunk Mac.a in Frameworks */, + 508F8523198ACEA6003F3377 /* libcocos2d Mac.a in Frameworks */, + 508F8524198ACEA6003F3377 /* libcocosbuilder Mac.a in Frameworks */, + 508F8525198ACEA6003F3377 /* libcocosdenshion Mac.a in Frameworks */, + 508F8526198ACEA6003F3377 /* libcocostudio Mac.a in Frameworks */, + 508F8527198ACEA6003F3377 /* libextension Mac.a in Frameworks */, + 508F8528198ACEA6003F3377 /* libnetwork Mac.a in Frameworks */, + 508F8529198ACEA6003F3377 /* libui Mac.a in Frameworks */, + 503AE11217EB99EE00D1A890 /* libcurl.dylib in Frameworks */, + 5087E76717EB910900C73F5D /* libz.dylib in Frameworks */, + 503AE11B17EB9C5A00D1A890 /* IOKit.framework in Frameworks */, + 5087E78B17EB975400C73F5D /* OpenGL.framework in Frameworks */, + 5087E78917EB974C00C73F5D /* AppKit.framework in Frameworks */, + 5087E76317EB910900C73F5D /* Foundation.framework in Frameworks */, + 5087E76517EB910900C73F5D /* CoreGraphics.framework in Frameworks */, + 5087E76817EB910900C73F5D /* QuartzCore.framework in Frameworks */, + 5087E76917EB910900C73F5D /* OpenAL.framework in Frameworks */, + 5087E76A17EB910900C73F5D /* AVFoundation.framework in Frameworks */, + 5087E76B17EB910900C73F5D /* AudioToolbox.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 080E96DDFE201D6D7F000001 /* ios */ = { + isa = PBXGroup; + children = ( + 5087E77117EB970100C73F5D /* Icons */, + 503AE0FA17EB989F00D1A890 /* AppController.h */, + 503AE0FB17EB989F00D1A890 /* AppController.mm */, + 503AE0FC17EB989F00D1A890 /* main.m */, + 503AE0FD17EB989F00D1A890 /* Prefix.pch */, + 503AE0FE17EB989F00D1A890 /* RootViewController.h */, + 503AE0FF17EB989F00D1A890 /* RootViewController.mm */, + ); + name = ios; + path = Classes; + sourceTree = ""; + }; + 15AA9C4015B7EC450033D6C2 /* Classes */ = { + isa = PBXGroup; + children = ( + 501CF6F3198ACCF60074CC55 /* AppMacros.h */, + 501CF6F4198ACCF60074CC55 /* GoblinsExample.h */, + 501CF6F5198ACCF60074CC55 /* SpineboyExample.h */, + 501CF6F6198ACCF60074CC55 /* GoblinsExample.cpp */, + 501CF6F7198ACCF60074CC55 /* SpineboyExample.cpp */, + A00E3D1919008BCB00F01AFF /* AppDelegate.cpp */, + A00E3D1A19008BCB00F01AFF /* AppDelegate.h */, + ); + name = Classes; + path = ../classes; + sourceTree = ""; + }; + 19C28FACFE9D520D11CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + 1D6058910D05DD3D006BFB54 /* Spine iOS.app */, + 5087E76F17EB910900C73F5D /* Spine Mac.app */, + ); + name = Products; + sourceTree = ""; + }; + 29B97314FDCFA39411CA2CEA /* CustomTemplate */ = { + isa = PBXGroup; + children = ( + 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */, + 508F858E198AD01D003F3377 /* spine-c */, + 508F8533198ACF26003F3377 /* spine-cocos2dx */, + 15AA9C4015B7EC450033D6C2 /* Classes */, + 29B97323FDCFA39411CA2CEA /* Frameworks */, + 080E96DDFE201D6D7F000001 /* ios */, + 503AE10617EB990700D1A890 /* mac */, + 19C28FACFE9D520D11CA2CBB /* Products */, + 78C7DDAA14EBA5050085D0C2 /* Resources */, + ); + name = CustomTemplate; + sourceTree = ""; + }; + 29B97323FDCFA39411CA2CEA /* Frameworks */ = { + isa = PBXGroup; + children = ( + D6B0611A1803AB670077942B /* CoreMotion.framework */, + 503AE11A17EB9C5A00D1A890 /* IOKit.framework */, + 503AE11117EB99EE00D1A890 /* libcurl.dylib */, + 5087E78A17EB975400C73F5D /* OpenGL.framework */, + 5087E78817EB974C00C73F5D /* AppKit.framework */, + 1ACB3243164770DE00914215 /* libcurl.a */, + BF170DB412928DE900B8313A /* libz.dylib */, + D44C620F132DFF4E0009C878 /* AudioToolbox.framework */, + D44C620D132DFF430009C878 /* AVFoundation.framework */, + 288765A40DF7441C002DB57D /* CoreGraphics.framework */, + 1D30AB110D05D00D00671497 /* Foundation.framework */, + D44C620B132DFF330009C878 /* OpenAL.framework */, + BF170DB012928DE900B8313A /* OpenGLES.framework */, + BF1C47EA1293683800B63C5D /* QuartzCore.framework */, + 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 501CF70C198ACDA80074CC55 /* Products */ = { + isa = PBXGroup; + children = ( + 501CF725198ACDA80074CC55 /* libcocos2d Mac.a */, + 501CF727198ACDA80074CC55 /* libextension Mac.a */, + 501CF729198ACDA80074CC55 /* libui Mac.a */, + 501CF72B198ACDA80074CC55 /* libcocostudio Mac.a */, + 501CF72D198ACDA80074CC55 /* libcocosbuilder Mac.a */, + 501CF72F198ACDA80074CC55 /* libspine Mac.a */, + 501CF731198ACDA80074CC55 /* libnetwork Mac.a */, + 501CF733198ACDA80074CC55 /* libchipmunk Mac.a */, + 501CF735198ACDA80074CC55 /* libbox2d Mac.a */, + 501CF737198ACDA80074CC55 /* libcocosdenshion Mac.a */, + 501CF739198ACDA80074CC55 /* libcocos2d iOS.a */, + 501CF73B198ACDA80074CC55 /* libextension iOS.a */, + 501CF73D198ACDA80074CC55 /* libchipmunk iOS.a */, + 501CF73F198ACDA80074CC55 /* libbox2d iOS.a */, + 501CF741198ACDA80074CC55 /* libcocosdenshion iOS.a */, + 501CF743198ACDA80074CC55 /* libui iOS.a */, + 501CF745198ACDA80074CC55 /* libcocostudio iOS.a */, + 501CF747198ACDA80074CC55 /* libcocosbuilder iOS.a */, + 501CF749198ACDA80074CC55 /* libspine iOS.a */, + 501CF74B198ACDA80074CC55 /* libnetwork iOS.a */, + ); + name = Products; + sourceTree = ""; + }; + 503AE0F517EB97AB00D1A890 /* Icons */ = { + isa = PBXGroup; + children = ( + 503AE0F617EB97AB00D1A890 /* Icon.icns */, + 503AE0F717EB97AB00D1A890 /* Info.plist */, + ); + name = Icons; + path = mac; + sourceTree = SOURCE_ROOT; + }; + 503AE10617EB990700D1A890 /* mac */ = { + isa = PBXGroup; + children = ( + 503AE0F517EB97AB00D1A890 /* Icons */, + 503AE10317EB98FF00D1A890 /* main.cpp */, + 503AE10417EB98FF00D1A890 /* Prefix.pch */, + ); + name = mac; + sourceTree = ""; + }; + 5087E77117EB970100C73F5D /* Icons */ = { + isa = PBXGroup; + children = ( + 5087E77217EB970100C73F5D /* Default-568h@2x.png */, + 5087E77317EB970100C73F5D /* Default.png */, + 5087E77417EB970100C73F5D /* Default@2x.png */, + 50EF62A017ECD613001EB2F8 /* Icon-29.png */, + 50EF62A117ECD613001EB2F8 /* Icon-50.png */, + 50EF629217ECD46A001EB2F8 /* Icon-40.png */, + 50EF629317ECD46A001EB2F8 /* Icon-58.png */, + 50EF629417ECD46A001EB2F8 /* Icon-80.png */, + 50EF629517ECD46A001EB2F8 /* Icon-100.png */, + 5087E77517EB970100C73F5D /* Icon-114.png */, + 5087E77617EB970100C73F5D /* Icon-120.png */, + 5087E77717EB970100C73F5D /* Icon-144.png */, + 5087E77817EB970100C73F5D /* Icon-152.png */, + 5087E77917EB970100C73F5D /* Icon-57.png */, + 5087E77A17EB970100C73F5D /* Icon-72.png */, + 5087E77B17EB970100C73F5D /* Icon-76.png */, + 5087E77C17EB970100C73F5D /* Info.plist */, + ); + name = Icons; + path = ios; + sourceTree = SOURCE_ROOT; + }; + 508F8533198ACF26003F3377 /* spine-cocos2dx */ = { + isa = PBXGroup; + children = ( + 508F8534198ACF26003F3377 /* PolygonBatch.cpp */, + 508F8535198ACF26003F3377 /* PolygonBatch.h */, + 508F8536198ACF26003F3377 /* SkeletonAnimation.cpp */, + 508F8537198ACF26003F3377 /* SkeletonAnimation.h */, + 508F8538198ACF26003F3377 /* SkeletonRenderer.cpp */, + 508F8539198ACF26003F3377 /* SkeletonRenderer.h */, + 508F853A198ACF26003F3377 /* spine-cocos2dx.cpp */, + 508F853B198ACF26003F3377 /* spine-cocos2dx.h */, + ); + name = "spine-cocos2dx"; + path = ../../src/spine; + sourceTree = ""; + }; + 508F858E198AD01D003F3377 /* spine-c */ = { + isa = PBXGroup; + children = ( + 508F85B2198AD01D003F3377 /* README.md */, + 508F8598198AD01D003F3377 /* include */, + 508F85B6198AD01D003F3377 /* src */, + ); + name = "spine-c"; + path = "../../../../spine-c"; + sourceTree = ""; + }; + 508F8598198AD01D003F3377 /* include */ = { + isa = PBXGroup; + children = ( + 508F8599198AD01D003F3377 /* spine */, + ); + path = include; + sourceTree = ""; + }; + 508F8599198AD01D003F3377 /* spine */ = { + isa = PBXGroup; + children = ( + 508F859A198AD01D003F3377 /* Animation.h */, + 508F859B198AD01D003F3377 /* AnimationState.h */, + 508F859C198AD01D003F3377 /* AnimationStateData.h */, + 508F859D198AD01D003F3377 /* Atlas.h */, + 508F859E198AD01D003F3377 /* AtlasAttachmentLoader.h */, + 508F859F198AD01D003F3377 /* Attachment.h */, + 508F85A0198AD01D003F3377 /* AttachmentLoader.h */, + 508F85A1198AD01D003F3377 /* Bone.h */, + 508F85A2198AD01D003F3377 /* BoneData.h */, + 508F85A3198AD01D003F3377 /* BoundingBoxAttachment.h */, + 508F85A4198AD01D003F3377 /* Event.h */, + 508F85A5198AD01D003F3377 /* EventData.h */, + 508F85A6198AD01D003F3377 /* extension.h */, + 508F85A7198AD01D003F3377 /* MeshAttachment.h */, + 508F85A8198AD01D003F3377 /* RegionAttachment.h */, + 508F85A9198AD01D003F3377 /* Skeleton.h */, + 508F85AA198AD01D003F3377 /* SkeletonBounds.h */, + 508F85AB198AD01D003F3377 /* SkeletonData.h */, + 508F85AC198AD01D003F3377 /* SkeletonJson.h */, + 508F85AD198AD01D003F3377 /* Skin.h */, + 508F85AE198AD01D003F3377 /* SkinnedMeshAttachment.h */, + 508F85AF198AD01D003F3377 /* Slot.h */, + 508F85B0198AD01D003F3377 /* SlotData.h */, + 508F85B1198AD01D003F3377 /* spine.h */, + ); + path = spine; + sourceTree = ""; + }; + 508F85B6198AD01D003F3377 /* src */ = { + isa = PBXGroup; + children = ( + 508F85B7198AD01D003F3377 /* spine */, + ); + path = src; + sourceTree = ""; + }; + 508F85B7198AD01D003F3377 /* spine */ = { + isa = PBXGroup; + children = ( + 508F85B8198AD01D003F3377 /* Animation.c */, + 508F85B9198AD01D003F3377 /* AnimationState.c */, + 508F85BA198AD01D003F3377 /* AnimationStateData.c */, + 508F85BB198AD01D003F3377 /* Atlas.c */, + 508F85BC198AD01D003F3377 /* AtlasAttachmentLoader.c */, + 508F85BD198AD01D003F3377 /* Attachment.c */, + 508F85BE198AD01D003F3377 /* AttachmentLoader.c */, + 508F85BF198AD01D003F3377 /* Bone.c */, + 508F85C0198AD01D003F3377 /* BoneData.c */, + 508F85C1198AD01D003F3377 /* BoundingBoxAttachment.c */, + 508F85C2198AD01D003F3377 /* Event.c */, + 508F85C3198AD01D003F3377 /* EventData.c */, + 508F85C4198AD01D003F3377 /* extension.c */, + 508F85C5198AD01D003F3377 /* Json.c */, + 508F85C6198AD01D003F3377 /* Json.h */, + 508F85C7198AD01D003F3377 /* MeshAttachment.c */, + 508F85C8198AD01D003F3377 /* RegionAttachment.c */, + 508F85C9198AD01D003F3377 /* Skeleton.c */, + 508F85CA198AD01D003F3377 /* SkeletonBounds.c */, + 508F85CB198AD01D003F3377 /* SkeletonData.c */, + 508F85CC198AD01D003F3377 /* SkeletonJson.c */, + 508F85CD198AD01D003F3377 /* Skin.c */, + 508F85CE198AD01D003F3377 /* SkinnedMeshAttachment.c */, + 508F85CF198AD01D003F3377 /* Slot.c */, + 508F85D0198AD01D003F3377 /* SlotData.c */, + ); + path = spine; + sourceTree = ""; + }; + 78C7DDAA14EBA5050085D0C2 /* Resources */ = { + isa = PBXGroup; + children = ( + 501CF6FC198ACD200074CC55 /* common */, + 501CF6FD198ACD200074CC55 /* ipad */, + 501CF6FE198ACD200074CC55 /* ipad-retina */, + 501CF6FF198ACD200074CC55 /* iphone */, + 501CF700198ACD200074CC55 /* iphone-retina */, + ); + name = Resources; + path = ../Resources; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 1D6058900D05DD3D006BFB54 /* Spine iOS */ = { + isa = PBXNativeTarget; + buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "Spine iOS" */; + buildPhases = ( + 1D60588D0D05DD3D006BFB54 /* Resources */, + 1D60588E0D05DD3D006BFB54 /* Sources */, + 1D60588F0D05DD3D006BFB54 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Spine iOS"; + productName = iphone; + productReference = 1D6058910D05DD3D006BFB54 /* Spine iOS.app */; + productType = "com.apple.product-type.application"; + }; + 5087E73D17EB910900C73F5D /* Spine Mac */ = { + isa = PBXNativeTarget; + buildConfigurationList = 5087E76C17EB910900C73F5D /* Build configuration list for PBXNativeTarget "Spine Mac" */; + buildPhases = ( + 5087E74817EB910900C73F5D /* Resources */, + 5087E75617EB910900C73F5D /* Sources */, + 5087E75C17EB910900C73F5D /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Spine Mac"; + productName = iphone; + productReference = 5087E76F17EB910900C73F5D /* Spine Mac.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 29B97313FDCFA39411CA2CEA /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0500; + }; + buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Spine" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 1; + knownRegions = ( + English, + Japanese, + French, + German, + ); + mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */; + projectDirPath = ""; + projectReferences = ( + { + ProductGroup = 501CF70C198ACDA80074CC55 /* Products */; + ProjectRef = 501CF70B198ACDA80074CC55 /* cocos2d_libs.xcodeproj */; + }, + ); + projectRoot = ""; + targets = ( + 1D6058900D05DD3D006BFB54 /* Spine iOS */, + 5087E73D17EB910900C73F5D /* Spine Mac */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXReferenceProxy section */ + 501CF725198ACDA80074CC55 /* libcocos2d Mac.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libcocos2d Mac.a"; + remoteRef = 501CF724198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 501CF727198ACDA80074CC55 /* libextension Mac.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libextension Mac.a"; + remoteRef = 501CF726198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 501CF729198ACDA80074CC55 /* libui Mac.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libui Mac.a"; + remoteRef = 501CF728198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 501CF72B198ACDA80074CC55 /* libcocostudio Mac.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libcocostudio Mac.a"; + remoteRef = 501CF72A198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 501CF72D198ACDA80074CC55 /* libcocosbuilder Mac.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libcocosbuilder Mac.a"; + remoteRef = 501CF72C198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 501CF72F198ACDA80074CC55 /* libspine Mac.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libspine Mac.a"; + remoteRef = 501CF72E198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 501CF731198ACDA80074CC55 /* libnetwork Mac.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libnetwork Mac.a"; + remoteRef = 501CF730198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 501CF733198ACDA80074CC55 /* libchipmunk Mac.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libchipmunk Mac.a"; + remoteRef = 501CF732198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 501CF735198ACDA80074CC55 /* libbox2d Mac.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libbox2d Mac.a"; + remoteRef = 501CF734198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 501CF737198ACDA80074CC55 /* libcocosdenshion Mac.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libcocosdenshion Mac.a"; + remoteRef = 501CF736198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 501CF739198ACDA80074CC55 /* libcocos2d iOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libcocos2d iOS.a"; + remoteRef = 501CF738198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 501CF73B198ACDA80074CC55 /* libextension iOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libextension iOS.a"; + remoteRef = 501CF73A198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 501CF73D198ACDA80074CC55 /* libchipmunk iOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libchipmunk iOS.a"; + remoteRef = 501CF73C198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 501CF73F198ACDA80074CC55 /* libbox2d iOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libbox2d iOS.a"; + remoteRef = 501CF73E198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 501CF741198ACDA80074CC55 /* libcocosdenshion iOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libcocosdenshion iOS.a"; + remoteRef = 501CF740198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 501CF743198ACDA80074CC55 /* libui iOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libui iOS.a"; + remoteRef = 501CF742198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 501CF745198ACDA80074CC55 /* libcocostudio iOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libcocostudio iOS.a"; + remoteRef = 501CF744198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 501CF747198ACDA80074CC55 /* libcocosbuilder iOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libcocosbuilder iOS.a"; + remoteRef = 501CF746198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 501CF749198ACDA80074CC55 /* libspine iOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libspine iOS.a"; + remoteRef = 501CF748198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 501CF74B198ACDA80074CC55 /* libnetwork iOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libnetwork iOS.a"; + remoteRef = 501CF74A198ACDA80074CC55 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + +/* Begin PBXResourcesBuildPhase section */ + 1D60588D0D05DD3D006BFB54 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 5087E78117EB970100C73F5D /* Icon-120.png in Resources */, + 5087E78617EB970100C73F5D /* Icon-76.png in Resources */, + 5087E77F17EB970100C73F5D /* Default@2x.png in Resources */, + 50EF629917ECD46A001EB2F8 /* Icon-100.png in Resources */, + 5087E78317EB970100C73F5D /* Icon-152.png in Resources */, + 5087E77D17EB970100C73F5D /* Default-568h@2x.png in Resources */, + 5087E78517EB970100C73F5D /* Icon-72.png in Resources */, + 501CF701198ACD200074CC55 /* common in Resources */, + 50EF62A317ECD613001EB2F8 /* Icon-50.png in Resources */, + 5087E78017EB970100C73F5D /* Icon-114.png in Resources */, + 50EF62A217ECD613001EB2F8 /* Icon-29.png in Resources */, + 50EF629617ECD46A001EB2F8 /* Icon-40.png in Resources */, + 501CF703198ACD200074CC55 /* ipad in Resources */, + 5087E78217EB970100C73F5D /* Icon-144.png in Resources */, + 50EF629817ECD46A001EB2F8 /* Icon-80.png in Resources */, + 501CF709198ACD200074CC55 /* iphone-retina in Resources */, + 5087E78417EB970100C73F5D /* Icon-57.png in Resources */, + 501CF705198ACD200074CC55 /* ipad-retina in Resources */, + 5087E77E17EB970100C73F5D /* Default.png in Resources */, + 50EF629717ECD46A001EB2F8 /* Icon-58.png in Resources */, + 501CF707198ACD200074CC55 /* iphone in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 5087E74817EB910900C73F5D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 501CF70A198ACD200074CC55 /* iphone-retina in Resources */, + 503AE0F817EB97AB00D1A890 /* Icon.icns in Resources */, + 501CF708198ACD200074CC55 /* iphone in Resources */, + 501CF706198ACD200074CC55 /* ipad-retina in Resources */, + 501CF702198ACD200074CC55 /* common in Resources */, + 501CF704198ACD200074CC55 /* ipad in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 1D60588E0D05DD3D006BFB54 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 508F8605198AD01D003F3377 /* RegionAttachment.c in Sources */, + 508F85F1198AD01D003F3377 /* Attachment.c in Sources */, + 503AE10017EB989F00D1A890 /* AppController.mm in Sources */, + 508F8613198AD01D003F3377 /* Slot.c in Sources */, + 503AE10217EB989F00D1A890 /* RootViewController.mm in Sources */, + 508F853C198ACF26003F3377 /* PolygonBatch.cpp in Sources */, + 508F85EF198AD01D003F3377 /* AtlasAttachmentLoader.c in Sources */, + 508F85FF198AD01D003F3377 /* extension.c in Sources */, + 508F8615198AD01D003F3377 /* SlotData.c in Sources */, + 508F85FD198AD01D003F3377 /* EventData.c in Sources */, + 503AE10117EB989F00D1A890 /* main.m in Sources */, + 508F85F7198AD01D003F3377 /* BoneData.c in Sources */, + 508F853E198ACF26003F3377 /* SkeletonAnimation.cpp in Sources */, + 508F85EB198AD01D003F3377 /* AnimationStateData.c in Sources */, + 508F860F198AD01D003F3377 /* Skin.c in Sources */, + 508F860B198AD01D003F3377 /* SkeletonData.c in Sources */, + 508F8601198AD01D003F3377 /* Json.c in Sources */, + 508F860D198AD01D003F3377 /* SkeletonJson.c in Sources */, + 508F8607198AD01D003F3377 /* Skeleton.c in Sources */, + 508F8603198AD01D003F3377 /* MeshAttachment.c in Sources */, + 508F85E9198AD01D003F3377 /* AnimationState.c in Sources */, + 508F8542198ACF26003F3377 /* spine-cocos2dx.cpp in Sources */, + 508F85FB198AD01D003F3377 /* Event.c in Sources */, + 508F85F5198AD01D003F3377 /* Bone.c in Sources */, + 508F85F3198AD01D003F3377 /* AttachmentLoader.c in Sources */, + 508F85F9198AD01D003F3377 /* BoundingBoxAttachment.c in Sources */, + 508F8611198AD01D003F3377 /* SkinnedMeshAttachment.c in Sources */, + 508F85E7198AD01D003F3377 /* Animation.c in Sources */, + 501CF6FA198ACCF60074CC55 /* SpineboyExample.cpp in Sources */, + 501CF6F8198ACCF60074CC55 /* GoblinsExample.cpp in Sources */, + 508F8540198ACF26003F3377 /* SkeletonRenderer.cpp in Sources */, + 508F85DF198AD01D003F3377 /* README.md in Sources */, + 508F85ED198AD01D003F3377 /* Atlas.c in Sources */, + 508F8609198AD01D003F3377 /* SkeletonBounds.c in Sources */, + A00E3D5719008BCB00F01AFF /* AppDelegate.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 5087E75617EB910900C73F5D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 508F85FE198AD01D003F3377 /* EventData.c in Sources */, + 508F860A198AD01D003F3377 /* SkeletonBounds.c in Sources */, + 508F85EA198AD01D003F3377 /* AnimationState.c in Sources */, + 508F8606198AD01D003F3377 /* RegionAttachment.c in Sources */, + 508F8608198AD01D003F3377 /* Skeleton.c in Sources */, + 508F8543198ACF26003F3377 /* spine-cocos2dx.cpp in Sources */, + 508F85E0198AD01D003F3377 /* README.md in Sources */, + 508F85F2198AD01D003F3377 /* Attachment.c in Sources */, + A00E3D5819008BCB00F01AFF /* AppDelegate.cpp in Sources */, + 508F8600198AD01D003F3377 /* extension.c in Sources */, + 508F8541198ACF26003F3377 /* SkeletonRenderer.cpp in Sources */, + 508F85F4198AD01D003F3377 /* AttachmentLoader.c in Sources */, + 508F8610198AD01D003F3377 /* Skin.c in Sources */, + 508F860E198AD01D003F3377 /* SkeletonJson.c in Sources */, + 508F85EC198AD01D003F3377 /* AnimationStateData.c in Sources */, + 508F85FC198AD01D003F3377 /* Event.c in Sources */, + 508F8602198AD01D003F3377 /* Json.c in Sources */, + 508F8614198AD01D003F3377 /* Slot.c in Sources */, + 508F85F0198AD01D003F3377 /* AtlasAttachmentLoader.c in Sources */, + 508F853F198ACF26003F3377 /* SkeletonAnimation.cpp in Sources */, + 501CF6FB198ACCF60074CC55 /* SpineboyExample.cpp in Sources */, + 508F85E8198AD01D003F3377 /* Animation.c in Sources */, + 501CF6F9198ACCF60074CC55 /* GoblinsExample.cpp in Sources */, + 508F853D198ACF26003F3377 /* PolygonBatch.cpp in Sources */, + 508F85EE198AD01D003F3377 /* Atlas.c in Sources */, + 503AE10517EB98FF00D1A890 /* main.cpp in Sources */, + 508F8616198AD01D003F3377 /* SlotData.c in Sources */, + 508F85F8198AD01D003F3377 /* BoneData.c in Sources */, + 508F85FA198AD01D003F3377 /* BoundingBoxAttachment.c in Sources */, + 508F85F6198AD01D003F3377 /* Bone.c in Sources */, + 508F860C198AD01D003F3377 /* SkeletonData.c in Sources */, + 508F8604198AD01D003F3377 /* MeshAttachment.c in Sources */, + 508F8612198AD01D003F3377 /* SkinnedMeshAttachment.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 1D6058940D05DD3E006BFB54 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = YES; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COMPRESS_PNG_FILES = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = ios/Prefix.pch; + GCC_PREPROCESSOR_DEFINITIONS = ( + USE_FILE32API, + CC_TARGET_OS_IPHONE, + "COCOS2D_DEBUG=1", + "CC_ENABLE_CHIPMUNK_INTEGRATION=1", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/../../cocos2dx/cocos/platform/ios", + "$(SRCROOT)/../../cocos2dx/cocos/platform/ios/Simulation", + ); + INFOPLIST_FILE = ios/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 5.0; + LIBRARY_SEARCH_PATHS = ""; + PRODUCT_NAME = "Spine iOS"; + PROVISIONING_PROFILE = ""; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + USER_HEADER_SEARCH_PATHS = ""; + }; + name = Debug; + }; + 1D6058950D05DD3E006BFB54 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = YES; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COMPRESS_PNG_FILES = NO; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = ios/Prefix.pch; + GCC_PREPROCESSOR_DEFINITIONS = ( + USE_FILE32API, + CC_TARGET_OS_IPHONE, + "CC_ENABLE_CHIPMUNK_INTEGRATION=1", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/../../cocos2dx/cocos/platform/ios", + "$(SRCROOT)/../../cocos2dx/cocos/platform/ios/Simulation", + ); + INFOPLIST_FILE = ios/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 5.0; + LIBRARY_SEARCH_PATHS = ""; + PRODUCT_NAME = "Spine iOS"; + PROVISIONING_PROFILE = ""; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + USER_HEADER_SEARCH_PATHS = ""; + }; + name = Release; + }; + 5087E76D17EB910900C73F5D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = YES; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "c++0x"; + CLANG_CXX_LIBRARY = "libc++"; + GCC_DYNAMIC_NO_PIC = NO; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = mac/Prefix.pch; + GCC_PREPROCESSOR_DEFINITIONS = ( + USE_FILE32API, + CC_TARGET_OS_MAC, + "COCOS2D_DEBUG=1", + "CC_ENABLE_CHIPMUNK_INTEGRATION=1", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/../../cocos2dx/cocos/platform/mac", + "$(SRCROOT)/../../cocos2dx/external/glfw3/include/mac", + ); + INFOPLIST_FILE = mac/Info.plist; + LIBRARY_SEARCH_PATHS = ""; + PRODUCT_NAME = "Spine Mac"; + USER_HEADER_SEARCH_PATHS = ""; + }; + name = Debug; + }; + 5087E76E17EB910900C73F5D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = YES; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_CXX_LANGUAGE_STANDARD = "c++0x"; + CLANG_CXX_LIBRARY = "libc++"; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = mac/Prefix.pch; + GCC_PREPROCESSOR_DEFINITIONS = ( + USE_FILE32API, + CC_TARGET_OS_MAC, + "CC_ENABLE_CHIPMUNK_INTEGRATION=1", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/../../cocos2dx/cocos/platform/mac", + "$(SRCROOT)/../../cocos2dx/external/glfw3/include/mac", + ); + INFOPLIST_FILE = mac/Info.plist; + LIBRARY_SEARCH_PATHS = ""; + PRODUCT_NAME = "Spine Mac"; + USER_HEADER_SEARCH_PATHS = ""; + }; + name = Release; + }; + C01FCF4F08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_CXX_LANGUAGE_STANDARD = "c++0x"; + CLANG_CXX_LIBRARY = "libc++"; + COPY_PHASE_STRIP = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/../../src/", + "$(SRCROOT)/../../../../spine-c/include/", + "$(SRCROOT)/../../cocos2dx/cocos/", + "$(SRCROOT)/../../cocos2dx/cocos/audio/include", + "$(SRCROOT)/../../cocos2dx/cocos/editor-support", + "$(SRCROOT)/../../cocos2dx/extensions", + "$(SRCROOT)/../../cocos2dx/cocos/external/chipmunk/include/chipmunk", + ); + MACOSX_DEPLOYMENT_TARGET = 10.7; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = macosx; + }; + name = Debug; + }; + C01FCF5008A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_CXX_LANGUAGE_STANDARD = "c++0x"; + CLANG_CXX_LIBRARY = "libc++"; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/../../src/", + "$(SRCROOT)/../../../../spine-c/include/", + "$(SRCROOT)/../../cocos2dx/cocos/", + "$(SRCROOT)/../../cocos2dx/cocos/audio/include", + "$(SRCROOT)/../../cocos2dx/cocos/editor-support", + "$(SRCROOT)/../../cocos2dx/extensions", + "$(SRCROOT)/../../cocos2dx/cocos/external/chipmunk/include/chipmunk", + ); + MACOSX_DEPLOYMENT_TARGET = 10.7; + OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = macosx; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "Spine iOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 1D6058940D05DD3E006BFB54 /* Debug */, + 1D6058950D05DD3E006BFB54 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 5087E76C17EB910900C73F5D /* Build configuration list for PBXNativeTarget "Spine Mac" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5087E76D17EB910900C73F5D /* Debug */, + 5087E76E17EB910900C73F5D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Spine" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4F08A954540054247B /* Debug */, + C01FCF5008A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; +/* End XCConfigurationList section */ + }; + rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; +} diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/Spine.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/spine-cocos2dx/3.2/example/proj.ios_mac/Spine.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 000000000..ad40db401 --- /dev/null +++ b/spine-cocos2dx/3.2/example/proj.ios_mac/Spine.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/Spine.xcodeproj/project.xcworkspace/xcshareddata/LiquidFun-EyeCandy.xccheckout b/spine-cocos2dx/3.2/example/proj.ios_mac/Spine.xcodeproj/project.xcworkspace/xcshareddata/LiquidFun-EyeCandy.xccheckout new file mode 100644 index 000000000..ab72cd1ac --- /dev/null +++ b/spine-cocos2dx/3.2/example/proj.ios_mac/Spine.xcodeproj/project.xcworkspace/xcshareddata/LiquidFun-EyeCandy.xccheckout @@ -0,0 +1,65 @@ + + + + + IDESourceControlProjectFavoriteDictionaryKey + + IDESourceControlProjectIdentifier + B3CCF19C-E4C5-4852-BB2F-071FA2695AA3 + IDESourceControlProjectName + LiquidFun-EyeCandy + IDESourceControlProjectOriginsDictionary + + 67B433A6-30D1-4FC7-A6BC-1342ACD5461E + https://github.com/cocos2d/cocos2d-x.git + EC2B3E94-DC54-49C4-9ACD-0BF71EB32912 + ssh://github.com/cocos2d/cocos2d-x-samples.git + FCCAD2A1-262A-4D6F-9C67-401CCA162576 + https://github.com/google/liquidfun.git + + IDESourceControlProjectPath + samples/LiquidFun-EyeCandy/proj.ios_mac/LiquidFun-EyeCandy.xcodeproj/project.xcworkspace + IDESourceControlProjectRelativeInstallPathDictionary + + 67B433A6-30D1-4FC7-A6BC-1342ACD5461E + ../../../../../libs/cocos2d-x + EC2B3E94-DC54-49C4-9ACD-0BF71EB32912 + ../../../../.. + FCCAD2A1-262A-4D6F-9C67-401CCA162576 + ../../../../../libs/liquidfun + + IDESourceControlProjectURL + ssh://github.com/cocos2d/cocos2d-x-samples.git + IDESourceControlProjectVersion + 110 + IDESourceControlProjectWCCIdentifier + EC2B3E94-DC54-49C4-9ACD-0BF71EB32912 + IDESourceControlProjectWCConfigurations + + + IDESourceControlRepositoryExtensionIdentifierKey + public.vcs.git + IDESourceControlWCCIdentifierKey + 67B433A6-30D1-4FC7-A6BC-1342ACD5461E + IDESourceControlWCCName + cocos2d-x + + + IDESourceControlRepositoryExtensionIdentifierKey + public.vcs.git + IDESourceControlWCCIdentifierKey + EC2B3E94-DC54-49C4-9ACD-0BF71EB32912 + IDESourceControlWCCName + cocos2d-x-samples + + + IDESourceControlRepositoryExtensionIdentifierKey + public.vcs.git + IDESourceControlWCCIdentifierKey + FCCAD2A1-262A-4D6F-9C67-401CCA162576 + IDESourceControlWCCName + liquidfun + + + + diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/Spine.xcodeproj/project.xcworkspace/xcshareddata/LiquidFun.xccheckout b/spine-cocos2dx/3.2/example/proj.ios_mac/Spine.xcodeproj/project.xcworkspace/xcshareddata/LiquidFun.xccheckout new file mode 100644 index 000000000..c284086dc --- /dev/null +++ b/spine-cocos2dx/3.2/example/proj.ios_mac/Spine.xcodeproj/project.xcworkspace/xcshareddata/LiquidFun.xccheckout @@ -0,0 +1,53 @@ + + + + + IDESourceControlProjectFavoriteDictionaryKey + + IDESourceControlProjectIdentifier + 914B3927-E3E8-403A-A93A-57E91FACE59B + IDESourceControlProjectName + LiquidFun + IDESourceControlProjectOriginsDictionary + + 9A2CF9E6-5F93-47F4-AC6D-D357E95A37C7 + ssh://github.com/ricardoquesada/cocos2d-x-samples.git + E93FBFD5-B671-403D-B201-19755156E843 + https://github.com/cocos2d/cocos2d-x.git + + IDESourceControlProjectPath + samples/LiquidFun/proj.ios_mac/LiquidFun.xcodeproj/project.xcworkspace + IDESourceControlProjectRelativeInstallPathDictionary + + 9A2CF9E6-5F93-47F4-AC6D-D357E95A37C7 + ../../../../.. + E93FBFD5-B671-403D-B201-19755156E843 + ../../../../../libs/cocos2d-x + + IDESourceControlProjectURL + ssh://github.com/ricardoquesada/cocos2d-x-samples.git + IDESourceControlProjectVersion + 110 + IDESourceControlProjectWCCIdentifier + 9A2CF9E6-5F93-47F4-AC6D-D357E95A37C7 + IDESourceControlProjectWCConfigurations + + + IDESourceControlRepositoryExtensionIdentifierKey + public.vcs.git + IDESourceControlWCCIdentifierKey + E93FBFD5-B671-403D-B201-19755156E843 + IDESourceControlWCCName + cocos2d-x + + + IDESourceControlRepositoryExtensionIdentifierKey + public.vcs.git + IDESourceControlWCCIdentifierKey + 9A2CF9E6-5F93-47F4-AC6D-D357E95A37C7 + IDESourceControlWCCName + cocos2d-x-samples + + + + diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/AppController.h b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/AppController.h new file mode 100644 index 000000000..978e6e36c --- /dev/null +++ b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/AppController.h @@ -0,0 +1,12 @@ +#import + +@class RootViewController; + +@interface AppController : NSObject { + UIWindow *window; +} + +@property(nonatomic, readonly) RootViewController* viewController; + +@end + diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/AppController.mm b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/AppController.mm new file mode 100644 index 000000000..e1e807c39 --- /dev/null +++ b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/AppController.mm @@ -0,0 +1,142 @@ +/**************************************************************************** + Copyright (c) 2010 cocos2d-x.org + + http://www.cocos2d-x.org + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#import "AppController.h" +#import "CCEAGLView.h" +#import "cocos2d.h" +#import "AppDelegate.h" +#import "RootViewController.h" + +@implementation AppController + +#pragma mark - +#pragma mark Application lifecycle + +// cocos2d application instance +static AppDelegate s_sharedApplication; + +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { + + // Override point for customization after application launch. + + // Add the view controller's view to the window and display. + window = [[UIWindow alloc] initWithFrame: [[UIScreen mainScreen] bounds]]; + + // Init the CCEAGLView + CCEAGLView *eaglView = [CCEAGLView viewWithFrame: [window bounds] + pixelFormat: kEAGLColorFormatRGB565 + depthFormat: GL_DEPTH24_STENCIL8_OES + preserveBackbuffer: NO + sharegroup: nil + multiSampling: NO + numberOfSamples: 0]; + + // Use RootViewController manage CCEAGLView + _viewController = [[RootViewController alloc] initWithNibName:nil bundle:nil]; + _viewController.wantsFullScreenLayout = YES; + _viewController.view = eaglView; + + // Set RootViewController to window + if ( [[UIDevice currentDevice].systemVersion floatValue] < 6.0) + { + // warning: addSubView doesn't work on iOS6 + [window addSubview: _viewController.view]; + } + else + { + // use this method on ios6 + [window setRootViewController:_viewController]; + } + + [window makeKeyAndVisible]; + + [[UIApplication sharedApplication] setStatusBarHidden:true]; + + // IMPORTANT: Setting the GLView should be done after creating the RootViewController + cocos2d::GLView *glview = cocos2d::GLView::createWithEAGLView(eaglView); + cocos2d::Director::getInstance()->setOpenGLView(glview); + + cocos2d::Application::getInstance()->run(); + + return YES; +} + + +- (void)applicationWillResignActive:(UIApplication *)application { + /* + Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. + Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. + */ + //We don't need to call this method any more. It will interupt user defined game pause&resume logic + /* cocos2d::Director::getInstance()->pause(); */ +} + +- (void)applicationDidBecomeActive:(UIApplication *)application { + /* + Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. + */ + //We don't need to call this method any more. It will interupt user defined game pause&resume logic + /* cocos2d::Director::getInstance()->resume(); */ +} + +- (void)applicationDidEnterBackground:(UIApplication *)application { + /* + Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. + If your application supports background execution, called instead of applicationWillTerminate: when the user quits. + */ + cocos2d::Application::getInstance()->applicationDidEnterBackground(); +} + +- (void)applicationWillEnterForeground:(UIApplication *)application { + /* + Called as part of transition from the background to the inactive state: here you can undo many of the changes made on entering the background. + */ + cocos2d::Application::getInstance()->applicationWillEnterForeground(); +} + +- (void)applicationWillTerminate:(UIApplication *)application { + /* + Called when the application is about to terminate. + See also applicationDidEnterBackground:. + */ +} + + +#pragma mark - +#pragma mark Memory management + +- (void)applicationDidReceiveMemoryWarning:(UIApplication *)application { + /* + Free up as much memory as possible by purging cached data objects that can be recreated (or reloaded from disk) later. + */ +} + + +- (void)dealloc { + [window release]; + [super dealloc]; +} + + +@end diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Default-568h@2x.png b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Default-568h@2x.png new file mode 100644 index 000000000..66c6d1cea Binary files /dev/null and b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Default-568h@2x.png differ diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Default.png b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Default.png new file mode 100644 index 000000000..dcb80725d Binary files /dev/null and b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Default.png differ diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Default@2x.png b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Default@2x.png new file mode 100644 index 000000000..84689888a Binary files /dev/null and b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Default@2x.png differ diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-100.png b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-100.png new file mode 100644 index 000000000..ef38d4500 Binary files /dev/null and b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-100.png differ diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-114.png b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-114.png new file mode 100644 index 000000000..c3807861a Binary files /dev/null and b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-114.png differ diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-120.png b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-120.png new file mode 100644 index 000000000..a5b49ccbb Binary files /dev/null and b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-120.png differ diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-144.png b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-144.png new file mode 100644 index 000000000..1526615c0 Binary files /dev/null and b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-144.png differ diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-152.png b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-152.png new file mode 100644 index 000000000..8aa82506d Binary files /dev/null and b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-152.png differ diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-29.png b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-29.png new file mode 100644 index 000000000..0500184c8 Binary files /dev/null and b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-29.png differ diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-40.png b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-40.png new file mode 100644 index 000000000..775685dac Binary files /dev/null and b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-40.png differ diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-50.png b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-50.png new file mode 100644 index 000000000..ac381bc20 Binary files /dev/null and b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-50.png differ diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-57.png b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-57.png new file mode 100644 index 000000000..4fcc6fddf Binary files /dev/null and b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-57.png differ diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-58.png b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-58.png new file mode 100644 index 000000000..f0f8b7fe9 Binary files /dev/null and b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-58.png differ diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-72.png b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-72.png new file mode 100644 index 000000000..2c573c8df Binary files /dev/null and b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-72.png differ diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-76.png b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-76.png new file mode 100644 index 000000000..8a1fa1850 Binary files /dev/null and b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-76.png differ diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-80.png b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-80.png new file mode 100644 index 000000000..d9c7ab446 Binary files /dev/null and b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Icon-80.png differ diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Info.plist b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Info.plist new file mode 100644 index 000000000..aff7e3c69 --- /dev/null +++ b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Info.plist @@ -0,0 +1,70 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleDisplayName + ${PRODUCT_NAME} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + Icon-57.png + CFBundleIconFiles + + Icon-29 + Icon-80 + Icon-58 + Icon-120 + Icon.png + Icon@2x.png + Icon-57.png + Icon-114.png + Icon-72.png + Icon-144.png + + CFBundleIconFiles~ipad + + Icon-29 + Icon-50 + Icon-58 + Icon-80 + Icon-40 + Icon-100 + Icon-152 + Icon-76 + Icon-120 + Icon.png + Icon@2x.png + Icon-57.png + Icon-114.png + Icon-72.png + Icon-144.png + + CFBundleIdentifier + org.cocos2d-x.${PRODUCT_NAME:rfc1034identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 1.0 + LSRequiresIPhoneOS + + UIAppFonts + + UIPrerenderedIcon + + UISupportedInterfaceOrientations + + UIInterfaceOrientationLandscapeRight + UIInterfaceOrientationLandscapeLeft + + + diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Prefix.pch b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Prefix.pch new file mode 100644 index 000000000..5b4e2fd9e --- /dev/null +++ b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/Prefix.pch @@ -0,0 +1,8 @@ +// +// Prefix header for all source files of the 'iphone' target in the 'iphone' project +// + +#ifdef __OBJC__ + #import + #import +#endif diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/RootViewController.h b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/RootViewController.h new file mode 100644 index 000000000..a1669019e --- /dev/null +++ b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/RootViewController.h @@ -0,0 +1,34 @@ +/**************************************************************************** + Copyright (c) 2013 cocos2d-x.org + Copyright (c) 2013-2014 Chukong Technologies Inc. + + http://www.cocos2d-x.org + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#import + + +@interface RootViewController : UIViewController { + +} +- (BOOL) prefersStatusBarHidden; + +@end diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/RootViewController.mm b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/RootViewController.mm new file mode 100644 index 000000000..b7d78629a --- /dev/null +++ b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/RootViewController.mm @@ -0,0 +1,108 @@ +/**************************************************************************** + Copyright (c) 2013 cocos2d-x.org + Copyright (c) 2013-2014 Chukong Technologies Inc. + + http://www.cocos2d-x.org + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#import "RootViewController.h" +#import "cocos2d.h" +#import "CCEAGLView.h" + +@implementation RootViewController + +/* + // The designated initializer. Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad. +- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { + if ((self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil])) { + // Custom initialization + } + return self; +} +*/ + +/* +// Implement loadView to create a view hierarchy programmatically, without using a nib. +- (void)loadView { +} +*/ + +/* +// Implement viewDidLoad to do additional setup after loading the view, typically from a nib. +- (void)viewDidLoad { + [super viewDidLoad]; +} + +*/ +// Override to allow orientations other than the default portrait orientation. +// This method is deprecated on ios6 +- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { + return UIInterfaceOrientationIsLandscape( interfaceOrientation ); +} + +// For ios6, use supportedInterfaceOrientations & shouldAutorotate instead +- (NSUInteger) supportedInterfaceOrientations{ +#ifdef __IPHONE_6_0 + return UIInterfaceOrientationMaskAllButUpsideDown; +#endif +} + +- (BOOL) shouldAutorotate { + return YES; +} + +- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation { + [super didRotateFromInterfaceOrientation:fromInterfaceOrientation]; + + cocos2d::GLView *glview = cocos2d::Director::getInstance()->getOpenGLView(); + CCEAGLView *eaglview = (CCEAGLView*) glview->getEAGLView(); + + CGSize s = CGSizeMake([eaglview getWidth], [eaglview getHeight]); + + cocos2d::Application::getInstance()->applicationScreenSizeChanged((int) s.width, (int) s.height); +} + +//fix not hide status on ios7 +- (BOOL)prefersStatusBarHidden +{ + return YES; +} + +- (void)didReceiveMemoryWarning { + // Releases the view if it doesn't have a superview. + [super didReceiveMemoryWarning]; + + // Release any cached data, images, etc that aren't in use. +} + +- (void)viewDidUnload { + [super viewDidUnload]; + // Release any retained subviews of the main view. + // e.g. self.myOutlet = nil; +} + + +- (void)dealloc { + [super dealloc]; +} + + +@end diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/ios/main.m b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/main.m new file mode 100644 index 000000000..8daa43e01 --- /dev/null +++ b/spine-cocos2dx/3.2/example/proj.ios_mac/ios/main.m @@ -0,0 +1,9 @@ +#import + +int main(int argc, char *argv[]) { + + NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; + int retVal = UIApplicationMain(argc, argv, nil, @"AppController"); + [pool release]; + return retVal; +} diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/mac/Icon.icns b/spine-cocos2dx/3.2/example/proj.ios_mac/mac/Icon.icns new file mode 100644 index 000000000..2040fc6fe Binary files /dev/null and b/spine-cocos2dx/3.2/example/proj.ios_mac/mac/Icon.icns differ diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/mac/Info.plist b/spine-cocos2dx/3.2/example/proj.ios_mac/mac/Info.plist new file mode 100644 index 000000000..a73feb76e --- /dev/null +++ b/spine-cocos2dx/3.2/example/proj.ios_mac/mac/Info.plist @@ -0,0 +1,36 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + Icon + CFBundleIdentifier + org.cocos2d-x.${PRODUCT_NAME:rfc1034identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + LSApplicationCategoryType + public.app-category.games + LSMinimumSystemVersion + ${MACOSX_DEPLOYMENT_TARGET} + NSHumanReadableCopyright + Copyright © 2013. All rights reserved. + NSMainNibFile + MainMenu + NSPrincipalClass + NSApplication + + diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/mac/Prefix.pch b/spine-cocos2dx/3.2/example/proj.ios_mac/mac/Prefix.pch new file mode 100644 index 000000000..46c36a7e9 --- /dev/null +++ b/spine-cocos2dx/3.2/example/proj.ios_mac/mac/Prefix.pch @@ -0,0 +1,7 @@ +// +// Prefix header for all source files of the 'Paralaxer' target in the 'Paralaxer' project +// + +#ifdef __OBJC__ + #import +#endif diff --git a/spine-cocos2dx/3.2/example/proj.ios_mac/mac/main.cpp b/spine-cocos2dx/3.2/example/proj.ios_mac/mac/main.cpp new file mode 100644 index 000000000..96f027e13 --- /dev/null +++ b/spine-cocos2dx/3.2/example/proj.ios_mac/mac/main.cpp @@ -0,0 +1,34 @@ +/**************************************************************************** + Copyright (c) 2010 cocos2d-x.org + + http://www.cocos2d-x.org + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#include "AppDelegate.h" +#include "cocos2d.h" + +USING_NS_CC; + +int main(int argc, char *argv[]) +{ + AppDelegate app; + return Application::getInstance()->run(); +}