瀏覽代碼

Melharando dinamica arquivos

capellaresumo 7 年之前
父節點
當前提交
cc2ffd08ac
共有 25 個文件被更改,包括 274 次插入200 次删除
  1. 6 6
      Classes/AppDelegate.cpp
  2. 0 29
      Classes/Ball.h
  3. 13 13
      Classes/BeginScene.cpp
  4. 16 0
      Classes/BeginScene.h
  5. 15 23
      Classes/GameScene.cpp
  6. 1 0
      Classes/GameScene.h
  7. 1 5
      Classes/GameScene/Ball.cpp
  8. 18 0
      Classes/GameScene/Ball.h
  9. 1 1
      Classes/GameScene/BlocksLayer.cpp
  10. 0 0
      Classes/GameScene/BlocksLayer.h
  11. 43 0
      Classes/GameScene/GameScene.h
  12. 13 0
      Classes/GameScene/Paddle.cpp
  13. 19 0
      Classes/GameScene/Paddle.h
  14. 0 20
      Classes/HelloWorldScene.h
  15. 4 3
      Classes/params.h
  16. 93 69
      proj.ios_mac/RedCore.xcodeproj/project.pbxproj
  17. 7 0
      proj.ios_mac/RedCore.xcodeproj/project.xcworkspace/contents.xcworkspacedata
  18. 0 0
      proj.ios_mac/RedCore.xcodeproj/project.xcworkspace/xcshareddata/RedCore2.xcscmblueprint
  19. 二進制
      proj.ios_mac/RedCore.xcodeproj/project.xcworkspace/xcuserdata/capella.xcuserdatad/UserInterfaceState.xcuserstate
  20. 0 0
      proj.ios_mac/RedCore.xcodeproj/xcuserdata/capella.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
  21. 12 12
      proj.ios_mac/RedCore.xcodeproj/xcuserdata/capella.xcuserdatad/xcschemes/RedCore2-desktop.xcscheme
  22. 12 12
      proj.ios_mac/RedCore.xcodeproj/xcuserdata/capella.xcuserdatad/xcschemes/RedCore2-mobile.xcscheme
  23. 0 0
      proj.ios_mac/RedCore.xcodeproj/xcuserdata/capella.xcuserdatad/xcschemes/xcschememanagement.plist
  24. 0 7
      proj.ios_mac/RedCore2.xcodeproj/project.xcworkspace/contents.xcworkspacedata
  25. 二進制
      proj.ios_mac/RedCore2.xcodeproj/project.xcworkspace/xcuserdata/capella.xcuserdatad/UserInterfaceState.xcuserstate

+ 6 - 6
Classes/AppDelegate.cpp

@@ -1,6 +1,5 @@
 #include "AppDelegate.h"
-#include "HelloWorldScene.h"
-#include "GameScene.h"
+#include "BeginScene.h"
 
 // #define USE_AUDIO_ENGINE 1
 #define USE_SIMPLE_AUDIO_ENGINE 1
@@ -37,7 +36,6 @@ AppDelegate::~AppDelegate()  {
 void AppDelegate::initGLContextAttrs() {
     // set OpenGL context attributes: red,green,blue,alpha,depth,stencil
     GLContextAttrs glContextAttrs = {8, 8, 8, 8, 24, 8};
-
     GLView::setGLContextAttrs(glContextAttrs);
 }
 
@@ -93,9 +91,11 @@ bool AppDelegate::applicationDidFinishLaunching() {
     register_all_packages();
 
     // create a scene. it's an autorelease object
-    auto scene = HelloWorld::createScene();
-
-    // run
+//    auto scene = BeginScene::createScene();
+//
+//    // run
+//    director->runWithScene(scene);
+    Scene* scene = BeginScene::createScene();
     director->runWithScene(scene);
 
     return true;

+ 0 - 29
Classes/Ball.h

@@ -1,29 +0,0 @@
-//
-//  Ball.h
-//  RedCore2
-//
-//  Created by Gabriel Capella on 31/05/17.
-//
-//
-
-#ifndef Ball_h
-#define Ball_h
-
-#include "cocos2d.h"
-
-class Ball : public cocos2d::Node {
-    public:
-    
-    virtual bool init();
-    
-    void throwBall();
-
-    
-    // implement the "static create()" method manually
-    CREATE_FUNC(Ball);
-    
-    private:
-    
-};
-
-#endif /* Ball_h */

+ 13 - 13
Classes/HelloWorldScene.cpp → Classes/BeginScene.cpp

@@ -1,19 +1,19 @@
-#include "HelloWorldScene.h"
+#include "BeginScene.h"
 #include "GameScene.h"
 #include "SimpleAudioEngine.h"
-#include "Ball.h"
+#include "GameScene/Ball.h"
 #include "params.h"
 
 USING_NS_CC;
 
-Scene* HelloWorld::createScene() {
+Scene* BeginScene::createScene() {
     auto scene = Scene::createWithPhysics();
     Size visibleSize = Director::getInstance()->getVisibleSize();
     
     //choose whitch part need to draw, Joint, Shape, Contact, None or All
     //scene->getPhysicsWorld()->setDebugDrawMask(PhysicsWorld::DEBUGDRAW_ALL);
     
-    auto layer = HelloWorld::create();
+    auto layer = BeginScene::create();
     scene->addChild(layer);
     
     auto material = PHYSICSBODY_MATERIAL_DEFAULT;
@@ -32,7 +32,7 @@ Scene* HelloWorld::createScene() {
     return scene;
 }
 // on "init" you need to initialize your instance
-bool HelloWorld::init() {
+bool BeginScene::init() {
     //////////////////////////////
     // 1. super init first
     if ( !Layer::init() )
@@ -42,19 +42,19 @@ bool HelloWorld::init() {
     
     auto visibleSize = Director::getInstance()->getVisibleSize();
     Vec2 origin = Director::getInstance()->getVisibleOrigin();
-
+    
     // Adiona o fundo
     auto bg = cocos2d::LayerColor::create(COLOR_back);
     this->addChild(bg);
     
-    auto menu_item_start = MenuItemFont::create("Start", CC_CALLBACK_1(HelloWorld::Play, this));
-
+    auto menu_item_start = MenuItemFont::create("Start", CC_CALLBACK_1(BeginScene::Play, this));
+    
     menu_item_start->setPosition(Point(visibleSize.width / 2, (visibleSize.height*0.25)));
     
     auto *menu = Menu::create(menu_item_start, NULL);
     menu->setPosition(Point(0, 0));
     this->addChild(menu, 10);
-
+    
     for (int i = 0; i < 10; i++) {
         auto ball = Ball::create();
         ball->setPosition(visibleSize.width / 2, BALL_SIZE*2);
@@ -84,7 +84,7 @@ bool HelloWorld::init() {
     last = userdata->getDoubleForKey("time");
     unsigned long int sec = time(NULL);
     diff = 3600 * LOSE_IS + last - sec;
-        
+    
     while (diff < 0 && level > 0) {
         last += 3600.0* ((double) LOSE_IS);
         level--;
@@ -99,16 +99,16 @@ bool HelloWorld::init() {
     char level_text[256];
     if (level != 0) {
         sprintf(level_text,"You are at level %d. In %.1f hour(s) you will regrow a level.", level, diff/3600.0);
-    
+        
         auto textlevel = Label::createWithTTF(level_text, FONT, 20);
         textlevel->setPosition(menu_item_start->getPositionX(), menu_item_start->getPositionY()-60);
         this->addChild(textlevel);
     }
-
+    
     return true;
 }
 
-void HelloWorld::Play(cocos2d::Ref *pSender) {
+void BeginScene::Play(cocos2d::Ref *pSender) {
     auto scene = GameScene::createScene(this->levels);
     Director::getInstance()->replaceScene(scene);
     //Director::getInstance()->end();

+ 16 - 0
Classes/BeginScene.h

@@ -0,0 +1,16 @@
+#ifndef __BEGIN_SCENE_H__
+#define __BEGIN_SCENE_H__
+
+#include "cocos2d.h"
+
+class BeginScene: public cocos2d::Layer {
+    public:
+        static cocos2d::Scene* createScene();
+        virtual bool init();
+        void Play(Ref *pSender);
+        CREATE_FUNC(BeginScene);
+    private:
+        int levels;
+};
+
+#endif // __BEGIN_SCENE_H__

+ 15 - 23
Classes/GameScene.cpp

@@ -8,8 +8,8 @@
 
 #include "GameScene.h"
 #include "SimpleAudioEngine.h"
-#include "BlocksLayer.h"
-#include "Ball.h"
+#include "GameScene/BlocksLayer.h"
+#include "GameScene/Ball.h"
 #include "params.h"
 
 USING_NS_CC;
@@ -18,7 +18,7 @@ Scene* GameScene::createScene(int level) {
     auto scene = Scene::createWithPhysics();
     Size visibleSize = Director::getInstance()->getVisibleSize();
     
-#ifdef DEBUG
+#if DEBUG
     scene->getPhysicsWorld()->setDebugDrawMask(PhysicsWorld::DEBUGDRAW_ALL);
 #endif
     
@@ -76,6 +76,7 @@ bool GameScene::init() {
     }
     
     over = false;
+    last_touch = 0;
     
     // https://www.freesound.org/people/schademans/sounds/13290/
     FileUtils::getInstance()->addSearchPath("res");
@@ -150,7 +151,7 @@ bool GameScene::init() {
 
 void GameScene::addAndThrowBall() {
     Ball* ball = Ball::create();
-    ball->setPosition(width / 2, PADDLE_ALTURA+BALL_SIZE);
+    ball->setPosition(paddle->getPositionX(), PADDLE_ALTURA+BALL_SIZE);
     ball->throwBall();
     balls->addChild(ball, 21);
 }
@@ -160,7 +161,6 @@ bool GameScene::onContactBegin(PhysicsContact& contact) {
     auto nodeB = contact.getShapeB()->getBody()->getNode();
     
     if (nodeA && nodeB && nodeA->getTag() != nodeB->getTag()) {
-        //CCLOG("%d %d", nodeB->getTag(), nodeA->getTag());
         
         if (nodeB->getTag() > nodeA->getTag()) {
             auto tmp = nodeB;
@@ -292,7 +292,7 @@ void GameScene::saveLevel() {
         addChild(ball_draw);
     }
     
-    auto delay = DelayTime::create(rand_0_1()*10.0+3.0);
+    auto delay = DelayTime::create(1.0);
     CallFunc *runCallback = CallFunc::create(CC_CALLBACK_0(GameScene::saveLevel, this));
     auto seq = Sequence::create(delay, runCallback, nullptr);
     runAction(seq);
@@ -320,7 +320,7 @@ void GameScene::tripleBallsAppearance() {
         addChild(ball_draw);
     }
     
-    auto delay = DelayTime::create(rand_0_1()*10.0);
+    auto delay = DelayTime::create(1.0);
     CallFunc *runCallback = CallFunc::create(CC_CALLBACK_0(GameScene::tripleBallsAppearance, this));
     auto seq = Sequence::create(delay, runCallback, nullptr);
     runAction(seq);
@@ -328,12 +328,13 @@ void GameScene::tripleBallsAppearance() {
 
 void GameScene::caseTripleBalls(Node *powerup_ball) {
     alert(MSG_TRIPE_BALLS);
+    while (!over && balls->getChildrenCount() < 3)
+        addAndThrowBall();
     powerup_ball->removeFromParentAndCleanup(true);
 }
 
 void GameScene::paddleBallAppearance() {
     if (rand_0_1() < DROP_RACKET_BALL && over == false){
-        Size visibleSize = Director::getInstance()->getVisibleSize();
         auto ball_draw = DrawNode::create();
         ball_draw->drawDot(Vec2(0, 0), BALL_SIZE/3.0, Color4F(COLOR_blue));
         
@@ -351,7 +352,7 @@ void GameScene::paddleBallAppearance() {
         addChild(ball_draw);
     }
     
-    auto delay = DelayTime::create(rand_0_1()*10.0);
+    auto delay = DelayTime::create(1.0);
     CallFunc *runCallback = CallFunc::create(CC_CALLBACK_0(GameScene::paddleBallAppearance, this));
     auto seq = Sequence::create(delay, runCallback, nullptr);
     runAction(seq);
@@ -363,28 +364,19 @@ void GameScene::paddleBallAppearance() {
  */
 void GameScene::caseRaqueteBall(Node *powerup_ball) {
     if (!over) {
-        char power_text[256];
         
         if (rand_0_1() < 0.5) {
-            if (paddle_size <= PADDLE_WIDTH * 4) {
-                sprintf(power_text, MSG_DOUBLE_PADDLE);
+            if (paddle_size <= PADDLE_WIDTH * 2) {
+                alert(MSG_DOUBLE_PADDLE);
                 paddle_size *= 2;
             }
-        }
-        
-        else {
-            if (paddle_size >= PADDLE_WIDTH / 4) {
-                sprintf(power_text, MSG_HALF_PADDLE);
+        } else {
+            if (paddle_size >= PADDLE_WIDTH / 2) {
+                alert(MSG_HALF_PADDLE);
                 paddle_size /= 2;
             }
         }
         
-        Size visibleSize = Director::getInstance()->getVisibleSize();
-        auto text = Label::createWithTTF(power_text, FONT, 40);
-        text->setPosition(width/2, height/2 + 2);
-        addChild(text);
-        text->runAction(FadeOut::create(3));
-        
         //cria uma nova paddle e substitui a antiga paddle
         auto new_paddle = DrawNode::create();
         float py = PADDLE_HEIGHT/2.0;

+ 1 - 0
Classes/GameScene.h

@@ -36,6 +36,7 @@ class GameScene : public cocos2d::Layer {
         int paddle_size; // tamanho atual da raquete
         cocos2d::Node* balls; // Bolas
         double height, width; // tamanho do quadro
+        int last_touch; // ultima vez que a bola colidiu com algo
 };
 
 

+ 1 - 5
Classes/Ball.cpp → Classes/GameScene/Ball.cpp

@@ -1,11 +1,7 @@
 //
 //  Ball.cpp
-//  RedCore2
+//  RedCore
 //
-//  Created by Gabriel Capella on 31/05/17.
-//
-//
-
 #include "Ball.h"
 #include "params.h"
 #include "SimpleAudioEngine.h"

+ 18 - 0
Classes/GameScene/Ball.h

@@ -0,0 +1,18 @@
+//
+//  Ball.h
+//  RedCore
+//
+
+#ifndef Ball_h
+#define Ball_h
+
+#include "cocos2d.h"
+
+class Ball : public cocos2d::Node {
+    public:
+        virtual bool init();
+        void throwBall();
+        CREATE_FUNC(Ball);
+};
+
+#endif /* Ball_h */

+ 1 - 1
Classes/BlocksLayer.cpp → Classes/GameScene/BlocksLayer.cpp

@@ -7,7 +7,7 @@
 //
 
 #include "BlocksLayer.h"
-#include "params.h"
+#include "../params.h"
 
 USING_NS_CC;
 

+ 0 - 0
Classes/BlocksLayer.h → Classes/GameScene/BlocksLayer.h


+ 43 - 0
Classes/GameScene/GameScene.h

@@ -0,0 +1,43 @@
+//
+//  GameScene.h
+//  RedCore2
+//
+//  Created by Gabriel Capella on 31/05/17.
+//
+//
+
+#ifndef GameScene_h
+#define GameScene_h
+
+#include "cocos2d.h"
+
+class GameScene : public cocos2d::Layer {
+    public:
+        static cocos2d::Scene* createScene(int level);
+        virtual bool init();
+        bool onContactBegin(cocos2d::PhysicsContact& contact);
+        CREATE_FUNC(GameScene);
+        void setLevel(int level);
+        void alert(std::string text); // Mostra alerta
+    private:
+        void caseBallCollision (cocos2d::Node *ball);
+        void caseBallCore (cocos2d::Node *core, cocos2d::Node *ball);
+        void caseSaveLevel(Node *powerup_ball);
+        void NextLevel(cocos2d::Ref *pSender);
+        void saveLevel();
+        void tripleBallsAppearance();
+        void caseTripleBalls(Node *powerup_ball);
+        void paddleBallAppearance();
+        void caseRaqueteBall(Node *powerup_ball);
+        void addAndThrowBall();
+        int level;
+        bool over; // salva se o jogo acabou!
+        cocos2d::DrawNode * paddle;
+        int paddle_size; // tamanho atual da raquete
+        cocos2d::Node* balls; // Bolas
+        double height, width; // tamanho do quadro
+        int last_touch; // ultima vez que a bola colidiu com algo
+};
+
+
+#endif /* GameScene_h */

+ 13 - 0
Classes/GameScene/Paddle.cpp

@@ -0,0 +1,13 @@
+//
+//  BlocksLayer.cpp
+//  RedCore2
+//
+//  Created by Gabriel Capella on 01/06/17.
+//
+//
+
+#include "Paddle.h"
+#include "../params.h"
+
+USING_NS_CC;
+

+ 19 - 0
Classes/GameScene/Paddle.h

@@ -0,0 +1,19 @@
+//
+//  BlocksLayer.h
+//  RedCore2
+//
+//  Created by Gabriel Capella on 01/06/17.
+//
+//
+
+#ifndef Paddle_h
+#define Paddle_h
+
+#include "cocos2d.h"
+
+class Paddle : public cocos2d::Node {
+    
+};
+
+
+#endif /* Paddle_h */

+ 0 - 20
Classes/HelloWorldScene.h

@@ -1,20 +0,0 @@
-#ifndef __HELLOWORLD_SCENE_H__
-#define __HELLOWORLD_SCENE_H__
-
-#include "cocos2d.h"
-
-class HelloWorld : public cocos2d::Layer {
-public:
-    static cocos2d::Scene* createScene();
-
-    virtual bool init();
-    
-    void Play(Ref *pSender);
-    
-    // implement the "static create()" method manually
-    CREATE_FUNC(HelloWorld);
-private:
-    int levels;
-};
-
-#endif // __HELLOWORLD_SCENE_H__

+ 4 - 3
Classes/params.h

@@ -44,9 +44,9 @@
 #define RACKET_BALL_TAG 7
 
 // Probabilities
-#define DROP_LEVEL_SAVE 0.1 // deixar em 0.1
-#define DROP_TRIPLE_BALL 0.1
-#define DROP_RACKET_BALL 0.1
+#define DROP_LEVEL_SAVE 0
+#define DROP_TRIPLE_BALL 1
+#define DROP_RACKET_BALL 0
 
 // Hours to lose level
 #define LOSE_IS 12
@@ -61,6 +61,7 @@
 #define MSG_OVER "Game Over..."
 #define MSG_DOUBLE_PADDLE "Doubled paddle!"
 #define MSG_HALF_PADDLE "Half paddle :("
+#define MSG_LEVEL_BACK "You are at level %d. In %.1f hour(s) you will regrow a level."
 
 // DEBUG
 #define DEBUG 0

+ 93 - 69
proj.ios_mac/RedCore2.xcodeproj/project.pbxproj → proj.ios_mac/RedCore.xcodeproj/project.pbxproj

@@ -21,10 +21,6 @@
 		46880B7E19C43A67006E1F66 /* CloseSelected.png in Resources */ = {isa = PBXBuildFile; fileRef = 46880B7719C43A67006E1F66 /* CloseSelected.png */; };
 		46880B8119C43A67006E1F66 /* HelloWorld.png in Resources */ = {isa = PBXBuildFile; fileRef = 46880B7A19C43A67006E1F66 /* HelloWorld.png */; };
 		46880B8219C43A67006E1F66 /* HelloWorld.png in Resources */ = {isa = PBXBuildFile; fileRef = 46880B7A19C43A67006E1F66 /* HelloWorld.png */; };
-		46880B8819C43A87006E1F66 /* AppDelegate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46880B8419C43A87006E1F66 /* AppDelegate.cpp */; };
-		46880B8919C43A87006E1F66 /* AppDelegate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46880B8419C43A87006E1F66 /* AppDelegate.cpp */; };
-		46880B8A19C43A87006E1F66 /* HelloWorldScene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46880B8619C43A87006E1F66 /* HelloWorldScene.cpp */; };
-		46880B8B19C43A87006E1F66 /* HelloWorldScene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46880B8619C43A87006E1F66 /* HelloWorldScene.cpp */; };
 		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 */; };
@@ -61,12 +57,19 @@
 		521A8EAA19F11F5000D177D7 /* fonts in Resources */ = {isa = PBXBuildFile; fileRef = 521A8EA819F11F5000D177D7 /* fonts */; };
 		52B47A471A53D09C004E4C60 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 52B47A461A53D09B004E4C60 /* Security.framework */; };
 		8262943E1AAF051F00CB7CF7 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8262943D1AAF051F00CB7CF7 /* Security.framework */; };
-		9A2901261EDF997D0057BEAA /* Ball.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A2901241EDF997D0057BEAA /* Ball.cpp */; };
-		9A2901271EDF997D0057BEAA /* Ball.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A2901241EDF997D0057BEAA /* Ball.cpp */; };
-		9A29012B1EDFB78D0057BEAA /* GameScene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A29012A1EDFB78D0057BEAA /* GameScene.cpp */; };
-		9A29012C1EDFB78D0057BEAA /* GameScene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A29012A1EDFB78D0057BEAA /* GameScene.cpp */; };
-		9A29012F1EE02D490057BEAA /* BlocksLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A29012E1EE02D490057BEAA /* BlocksLayer.cpp */; };
-		9A2901301EE02D490057BEAA /* BlocksLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A29012E1EE02D490057BEAA /* BlocksLayer.cpp */; };
+		9A0C87E41EEC7F8E00C16D03 /* GameScene in Resources */ = {isa = PBXBuildFile; fileRef = 9A0C87E31EEC7F8E00C16D03 /* GameScene */; };
+		9AD1A7BF1EEC8E6800423D30 /* AppDelegate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD1A7B71EEC8E6800423D30 /* AppDelegate.cpp */; };
+		9AD1A7C01EEC8E6800423D30 /* AppDelegate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD1A7B71EEC8E6800423D30 /* AppDelegate.cpp */; };
+		9AD1A7C11EEC8E6800423D30 /* BeginScene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD1A7B91EEC8E6800423D30 /* BeginScene.cpp */; };
+		9AD1A7C21EEC8E6800423D30 /* BeginScene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD1A7B91EEC8E6800423D30 /* BeginScene.cpp */; };
+		9AD1A7C51EEC8E6800423D30 /* GameScene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD1A7BC1EEC8E6800423D30 /* GameScene.cpp */; };
+		9AD1A7C61EEC8E6800423D30 /* GameScene.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD1A7BC1EEC8E6800423D30 /* GameScene.cpp */; };
+		9AD1A7DC1EEC912100423D30 /* Ball.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD1A7D51EEC912100423D30 /* Ball.cpp */; };
+		9AD1A7DD1EEC912100423D30 /* Ball.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD1A7D51EEC912100423D30 /* Ball.cpp */; };
+		9AD1A7DE1EEC912100423D30 /* BlocksLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD1A7D71EEC912100423D30 /* BlocksLayer.cpp */; };
+		9AD1A7DF1EEC912100423D30 /* BlocksLayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD1A7D71EEC912100423D30 /* BlocksLayer.cpp */; };
+		9AD1A7E01EEC912100423D30 /* Paddle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD1A7DA1EEC912100423D30 /* Paddle.cpp */; };
+		9AD1A7E11EEC912100423D30 /* Paddle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD1A7DA1EEC912100423D30 /* Paddle.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 */; };
@@ -120,7 +123,7 @@
 		1AC6FAE5180E9839004C840B /* cocos2d_libs.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = cocos2d_libs.xcodeproj; path = ../cocos2d/build/cocos2d_libs.xcodeproj; sourceTree = "<group>"; };
 		1ACB3243164770DE00914215 /* libcurl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libcurl.a; path = ../../cocos2dx/platform/third_party/ios/libraries/libcurl.a; sourceTree = "<group>"; };
 		1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
-		1D6058910D05DD3D006BFB54 /* RedCore2-mobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "RedCore2-mobile.app"; sourceTree = BUILT_PRODUCTS_DIR; };
+		1D6058910D05DD3D006BFB54 /* RedCore-mobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "RedCore-mobile.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; };
 		294D0D631D0D56D500F7F5D4 /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/CoreText.framework; sourceTree = DEVELOPER_DIR; };
@@ -128,10 +131,6 @@
 		46880B7619C43A67006E1F66 /* CloseNormal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CloseNormal.png; sourceTree = "<group>"; };
 		46880B7719C43A67006E1F66 /* CloseSelected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CloseSelected.png; sourceTree = "<group>"; };
 		46880B7A19C43A67006E1F66 /* HelloWorld.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = HelloWorld.png; sourceTree = "<group>"; };
-		46880B8419C43A87006E1F66 /* AppDelegate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AppDelegate.cpp; sourceTree = "<group>"; };
-		46880B8519C43A87006E1F66 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
-		46880B8619C43A87006E1F66 /* HelloWorldScene.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = HelloWorldScene.cpp; sourceTree = "<group>"; };
-		46880B8719C43A87006E1F66 /* HelloWorldScene.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HelloWorldScene.h; sourceTree = "<group>"; };
 		503AE0F617EB97AB00D1A890 /* Icon.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = Icon.icns; sourceTree = "<group>"; };
 		503AE0F717EB97AB00D1A890 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
 		503AE0FA17EB989F00D1A890 /* AppController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppController.h; path = ios/AppController.h; sourceTree = SOURCE_ROOT; };
@@ -144,7 +143,7 @@
 		503AE10417EB98FF00D1A890 /* Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Prefix.pch; path = mac/Prefix.pch; sourceTree = "<group>"; };
 		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 /* RedCore2-desktop.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "RedCore2-desktop.app"; sourceTree = BUILT_PRODUCTS_DIR; };
+		5087E76F17EB910900C73F5D /* RedCore-desktop.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "RedCore-desktop.app"; sourceTree = BUILT_PRODUCTS_DIR; };
 		5087E77217EB970100C73F5D /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
 		5087E77317EB970100C73F5D /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
 		5087E77417EB970100C73F5D /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
@@ -169,13 +168,21 @@
 		521A8EA819F11F5000D177D7 /* fonts */ = {isa = PBXFileReference; lastKnownFileType = folder; path = fonts; sourceTree = "<group>"; };
 		52B47A461A53D09B004E4C60 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.1.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; };
 		8262943D1AAF051F00CB7CF7 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
-		9A2901241EDF997D0057BEAA /* Ball.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Ball.cpp; sourceTree = "<group>"; };
-		9A2901281EDF99AC0057BEAA /* Ball.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Ball.h; sourceTree = "<group>"; };
-		9A2901291EDF9EAB0057BEAA /* params.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = params.h; sourceTree = "<group>"; };
-		9A29012A1EDFB78D0057BEAA /* GameScene.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GameScene.cpp; sourceTree = "<group>"; };
-		9A29012D1EDFB79A0057BEAA /* GameScene.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GameScene.h; sourceTree = "<group>"; };
-		9A29012E1EE02D490057BEAA /* BlocksLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BlocksLayer.cpp; sourceTree = "<group>"; };
-		9A2901311EE02D580057BEAA /* BlocksLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlocksLayer.h; sourceTree = "<group>"; };
+		9A0C87E31EEC7F8E00C16D03 /* GameScene */ = {isa = PBXFileReference; lastKnownFileType = folder; name = GameScene; path = "/Users/gabrielcapella/Dropbox/Graduação/USP-BCC/MAC0463/EP2/RedCore/Classes/GameScene"; sourceTree = "<absolute>"; };
+		9AD1A7B71EEC8E6800423D30 /* AppDelegate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = AppDelegate.cpp; path = ../Classes/AppDelegate.cpp; sourceTree = "<group>"; };
+		9AD1A7B81EEC8E6800423D30 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = ../Classes/AppDelegate.h; sourceTree = "<group>"; };
+		9AD1A7B91EEC8E6800423D30 /* BeginScene.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = BeginScene.cpp; path = ../Classes/BeginScene.cpp; sourceTree = "<group>"; };
+		9AD1A7BA1EEC8E6800423D30 /* BeginScene.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BeginScene.h; path = ../Classes/BeginScene.h; sourceTree = "<group>"; };
+		9AD1A7BC1EEC8E6800423D30 /* GameScene.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = GameScene.cpp; path = ../Classes/GameScene.cpp; sourceTree = "<group>"; };
+		9AD1A7BD1EEC8E6800423D30 /* GameScene.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GameScene.h; path = ../Classes/GameScene.h; sourceTree = "<group>"; };
+		9AD1A7BE1EEC8E6800423D30 /* params.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = params.h; path = ../Classes/params.h; sourceTree = "<group>"; };
+		9AD1A7D51EEC912100423D30 /* Ball.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Ball.cpp; path = ../Classes/GameScene/Ball.cpp; sourceTree = "<group>"; };
+		9AD1A7D61EEC912100423D30 /* Ball.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Ball.h; path = ../Classes/GameScene/Ball.h; sourceTree = "<group>"; };
+		9AD1A7D71EEC912100423D30 /* BlocksLayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = BlocksLayer.cpp; path = ../Classes/GameScene/BlocksLayer.cpp; sourceTree = "<group>"; };
+		9AD1A7D81EEC912100423D30 /* BlocksLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BlocksLayer.h; path = ../Classes/GameScene/BlocksLayer.h; sourceTree = "<group>"; };
+		9AD1A7D91EEC912100423D30 /* GameScene.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GameScene.h; path = ../Classes/GameScene/GameScene.h; sourceTree = "<group>"; };
+		9AD1A7DA1EEC912100423D30 /* Paddle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Paddle.cpp; path = ../Classes/GameScene/Paddle.cpp; sourceTree = "<group>"; };
+		9AD1A7DB1EEC912100423D30 /* Paddle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Paddle.h; path = ../Classes/GameScene/Paddle.h; sourceTree = "<group>"; };
 		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; };
@@ -249,8 +256,8 @@
 		19C28FACFE9D520D11CA2CBB /* Products */ = {
 			isa = PBXGroup;
 			children = (
-				1D6058910D05DD3D006BFB54 /* RedCore2-mobile.app */,
-				5087E76F17EB910900C73F5D /* RedCore2-desktop.app */,
+				1D6058910D05DD3D006BFB54 /* RedCore-mobile.app */,
+				5087E76F17EB910900C73F5D /* RedCore-desktop.app */,
 			);
 			name = Products;
 			sourceTree = "<group>";
@@ -268,7 +275,7 @@
 		29B97314FDCFA39411CA2CEA /* CustomTemplate */ = {
 			isa = PBXGroup;
 			children = (
-				46880B8319C43A87006E1F66 /* Classes */,
+				9AD1A7B61EEC8E5800423D30 /* Classes */,
 				46880B7519C43A67006E1F66 /* Resources */,
 				1AC6FAE5180E9839004C840B /* cocos2d_libs.xcodeproj */,
 				29B97323FDCFA39411CA2CEA /* Frameworks */,
@@ -319,25 +326,6 @@
 			path = ../Resources;
 			sourceTree = "<group>";
 		};
-		46880B8319C43A87006E1F66 /* Classes */ = {
-			isa = PBXGroup;
-			children = (
-				9A2901281EDF99AC0057BEAA /* Ball.h */,
-				9A2901241EDF997D0057BEAA /* Ball.cpp */,
-				9A2901291EDF9EAB0057BEAA /* params.h */,
-				46880B8419C43A87006E1F66 /* AppDelegate.cpp */,
-				46880B8519C43A87006E1F66 /* AppDelegate.h */,
-				46880B8619C43A87006E1F66 /* HelloWorldScene.cpp */,
-				9A29012A1EDFB78D0057BEAA /* GameScene.cpp */,
-				9A29012D1EDFB79A0057BEAA /* GameScene.h */,
-				46880B8719C43A87006E1F66 /* HelloWorldScene.h */,
-				9A29012E1EE02D490057BEAA /* BlocksLayer.cpp */,
-				9A2901311EE02D580057BEAA /* BlocksLayer.h */,
-			);
-			name = Classes;
-			path = ../Classes;
-			sourceTree = "<group>";
-		};
 		503AE0F517EB97AB00D1A890 /* Icons */ = {
 			isa = PBXGroup;
 			children = (
@@ -385,12 +373,41 @@
 			path = ios;
 			sourceTree = SOURCE_ROOT;
 		};
+		9AD1A7B61EEC8E5800423D30 /* Classes */ = {
+			isa = PBXGroup;
+			children = (
+				9AD1A7D41EEC911000423D30 /* GameScene */,
+				9AD1A7BE1EEC8E6800423D30 /* params.h */,
+				9AD1A7BA1EEC8E6800423D30 /* BeginScene.h */,
+				9AD1A7B91EEC8E6800423D30 /* BeginScene.cpp */,
+				9AD1A7BD1EEC8E6800423D30 /* GameScene.h */,
+				9AD1A7BC1EEC8E6800423D30 /* GameScene.cpp */,
+				9AD1A7B81EEC8E6800423D30 /* AppDelegate.h */,
+				9AD1A7B71EEC8E6800423D30 /* AppDelegate.cpp */,
+			);
+			name = Classes;
+			sourceTree = "<group>";
+		};
+		9AD1A7D41EEC911000423D30 /* GameScene */ = {
+			isa = PBXGroup;
+			children = (
+				9AD1A7D51EEC912100423D30 /* Ball.cpp */,
+				9AD1A7D61EEC912100423D30 /* Ball.h */,
+				9AD1A7D71EEC912100423D30 /* BlocksLayer.cpp */,
+				9AD1A7D81EEC912100423D30 /* BlocksLayer.h */,
+				9AD1A7D91EEC912100423D30 /* GameScene.h */,
+				9AD1A7DA1EEC912100423D30 /* Paddle.cpp */,
+				9AD1A7DB1EEC912100423D30 /* Paddle.h */,
+			);
+			name = GameScene;
+			sourceTree = "<group>";
+		};
 /* End PBXGroup section */
 
 /* Begin PBXNativeTarget section */
-		1D6058900D05DD3D006BFB54 /* RedCore2-mobile */ = {
+		1D6058900D05DD3D006BFB54 /* RedCore-mobile */ = {
 			isa = PBXNativeTarget;
-			buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "RedCore2-mobile" */;
+			buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "RedCore-mobile" */;
 			buildPhases = (
 				1D60588D0D05DD3D006BFB54 /* Resources */,
 				1D60588E0D05DD3D006BFB54 /* Sources */,
@@ -401,14 +418,14 @@
 			dependencies = (
 				1AC6FB25180E99E1004C840B /* PBXTargetDependency */,
 			);
-			name = "RedCore2-mobile";
+			name = "RedCore-mobile";
 			productName = iphone;
-			productReference = 1D6058910D05DD3D006BFB54 /* RedCore2-mobile.app */;
+			productReference = 1D6058910D05DD3D006BFB54 /* RedCore-mobile.app */;
 			productType = "com.apple.product-type.application";
 		};
-		5087E73D17EB910900C73F5D /* RedCore2-desktop */ = {
+		5087E73D17EB910900C73F5D /* RedCore-desktop */ = {
 			isa = PBXNativeTarget;
-			buildConfigurationList = 5087E76C17EB910900C73F5D /* Build configuration list for PBXNativeTarget "RedCore2-desktop" */;
+			buildConfigurationList = 5087E76C17EB910900C73F5D /* Build configuration list for PBXNativeTarget "RedCore-desktop" */;
 			buildPhases = (
 				5087E74817EB910900C73F5D /* Resources */,
 				5087E75617EB910900C73F5D /* Sources */,
@@ -419,9 +436,9 @@
 			dependencies = (
 				1AC6FB16180E9959004C840B /* PBXTargetDependency */,
 			);
-			name = "RedCore2-desktop";
+			name = "RedCore-desktop";
 			productName = iphone;
-			productReference = 5087E76F17EB910900C73F5D /* RedCore2-desktop.app */;
+			productReference = 5087E76F17EB910900C73F5D /* RedCore-desktop.app */;
 			productType = "com.apple.product-type.application";
 		};
 /* End PBXNativeTarget section */
@@ -432,7 +449,7 @@
 			attributes = {
 				LastUpgradeCheck = 0820;
 			};
-			buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "RedCore2" */;
+			buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "RedCore" */;
 			compatibilityVersion = "Xcode 3.2";
 			developmentRegion = English;
 			hasScannedForEncodings = 1;
@@ -452,8 +469,8 @@
 			);
 			projectRoot = "";
 			targets = (
-				1D6058900D05DD3D006BFB54 /* RedCore2-mobile */,
-				5087E73D17EB910900C73F5D /* RedCore2-desktop */,
+				1D6058900D05DD3D006BFB54 /* RedCore-mobile */,
+				5087E73D17EB910900C73F5D /* RedCore-desktop */,
 			);
 		};
 /* End PBXProject section */
@@ -504,6 +521,7 @@
 				50EF629617ECD46A001EB2F8 /* Icon-40.png in Resources */,
 				5087E78217EB970100C73F5D /* Icon-144.png in Resources */,
 				3EACC98F19EE6D4300EB3C5E /* res in Resources */,
+				9A0C87E41EEC7F8E00C16D03 /* GameScene in Resources */,
 				50EF629817ECD46A001EB2F8 /* Icon-80.png in Resources */,
 				5087E78417EB970100C73F5D /* Icon-57.png in Resources */,
 				5087E77E17EB970100C73F5D /* Default.png in Resources */,
@@ -533,14 +551,15 @@
 			isa = PBXSourcesBuildPhase;
 			buildActionMask = 2147483647;
 			files = (
-				9A2901261EDF997D0057BEAA /* Ball.cpp in Sources */,
-				46880B8819C43A87006E1F66 /* AppDelegate.cpp in Sources */,
-				46880B8A19C43A87006E1F66 /* HelloWorldScene.cpp in Sources */,
-				9A29012F1EE02D490057BEAA /* BlocksLayer.cpp in Sources */,
+				9AD1A7C51EEC8E6800423D30 /* GameScene.cpp in Sources */,
+				9AD1A7BF1EEC8E6800423D30 /* AppDelegate.cpp in Sources */,
 				503AE10017EB989F00D1A890 /* AppController.mm in Sources */,
-				9A29012B1EDFB78D0057BEAA /* GameScene.cpp in Sources */,
+				9AD1A7DE1EEC912100423D30 /* BlocksLayer.cpp in Sources */,
+				9AD1A7E01EEC912100423D30 /* Paddle.cpp in Sources */,
+				9AD1A7C11EEC8E6800423D30 /* BeginScene.cpp in Sources */,
 				503AE10217EB989F00D1A890 /* RootViewController.mm in Sources */,
 				503AE10117EB989F00D1A890 /* main.m in Sources */,
+				9AD1A7DC1EEC912100423D30 /* Ball.cpp in Sources */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};
@@ -548,12 +567,13 @@
 			isa = PBXSourcesBuildPhase;
 			buildActionMask = 2147483647;
 			files = (
-				9A29012C1EDFB78D0057BEAA /* GameScene.cpp in Sources */,
-				9A2901271EDF997D0057BEAA /* Ball.cpp in Sources */,
-				46880B8919C43A87006E1F66 /* AppDelegate.cpp in Sources */,
+				9AD1A7C21EEC8E6800423D30 /* BeginScene.cpp in Sources */,
+				9AD1A7C01EEC8E6800423D30 /* AppDelegate.cpp in Sources */,
+				9AD1A7C61EEC8E6800423D30 /* GameScene.cpp in Sources */,
 				503AE10517EB98FF00D1A890 /* main.cpp in Sources */,
-				46880B8B19C43A87006E1F66 /* HelloWorldScene.cpp in Sources */,
-				9A2901301EE02D490057BEAA /* BlocksLayer.cpp in Sources */,
+				9AD1A7DD1EEC912100423D30 /* Ball.cpp in Sources */,
+				9AD1A7DF1EEC912100423D30 /* BlocksLayer.cpp in Sources */,
+				9AD1A7E11EEC912100423D30 /* Paddle.cpp in Sources */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};
@@ -599,6 +619,7 @@
 					"$(_COCOS_LIB_IOS_END)",
 				);
 				PRODUCT_BUNDLE_IDENTIFIER = ime.capella.jao.redcore;
+				PRODUCT_NAME = "RedCore-mobile";
 				SDKROOT = iphoneos;
 				STRIP_PNG_TEXT = NO;
 				TARGETED_DEVICE_FAMILY = "1,2";
@@ -632,6 +653,7 @@
 					"$(_COCOS_LIB_IOS_END)",
 				);
 				PRODUCT_BUNDLE_IDENTIFIER = ime.capella.jao.redcore;
+				PRODUCT_NAME = "RedCore-mobile";
 				SDKROOT = iphoneos;
 				STRIP_PNG_TEXT = NO;
 				TARGETED_DEVICE_FAMILY = "1,2";
@@ -667,6 +689,7 @@
 					"$(_COCOS_LIB_MAC_END)",
 				);
 				PRODUCT_BUNDLE_IDENTIFIER = ime.capella.jao.redcore;
+				PRODUCT_NAME = "RedCore-desktop";
 				USER_HEADER_SEARCH_PATHS = "$(_COCOS_HEADER_MAC_BEGIN) $(_COCOS_HEADER_MAC_END)";
 			};
 			name = Debug;
@@ -697,6 +720,7 @@
 					"$(_COCOS_LIB_MAC_END)",
 				);
 				PRODUCT_BUNDLE_IDENTIFIER = ime.capella.jao.redcore;
+				PRODUCT_NAME = "RedCore-desktop";
 				USER_HEADER_SEARCH_PATHS = "$(_COCOS_HEADER_MAC_BEGIN) $(_COCOS_HEADER_MAC_END)";
 			};
 			name = Release;
@@ -788,7 +812,7 @@
 /* End XCBuildConfiguration section */
 
 /* Begin XCConfigurationList section */
-		1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "RedCore2-mobile" */ = {
+		1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "RedCore-mobile" */ = {
 			isa = XCConfigurationList;
 			buildConfigurations = (
 				1D6058940D05DD3E006BFB54 /* Debug */,
@@ -797,7 +821,7 @@
 			defaultConfigurationIsVisible = 0;
 			defaultConfigurationName = Debug;
 		};
-		5087E76C17EB910900C73F5D /* Build configuration list for PBXNativeTarget "RedCore2-desktop" */ = {
+		5087E76C17EB910900C73F5D /* Build configuration list for PBXNativeTarget "RedCore-desktop" */ = {
 			isa = XCConfigurationList;
 			buildConfigurations = (
 				5087E76D17EB910900C73F5D /* Debug */,
@@ -806,7 +830,7 @@
 			defaultConfigurationIsVisible = 0;
 			defaultConfigurationName = Debug;
 		};
-		C01FCF4E08A954540054247B /* Build configuration list for PBXProject "RedCore2" */ = {
+		C01FCF4E08A954540054247B /* Build configuration list for PBXProject "RedCore" */ = {
 			isa = XCConfigurationList;
 			buildConfigurations = (
 				C01FCF4F08A954540054247B /* Debug */,

+ 7 - 0
proj.ios_mac/RedCore.xcodeproj/project.xcworkspace/contents.xcworkspacedata

@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Workspace
+   version = "1.0">
+   <FileRef
+      location = "self:/Users/gabrielcapella/Dropbox/Graduac&#x327;a&#x303;o/USP-BCC/MAC0463/EP2/RedCore/proj.ios_mac/RedCore.xcodeproj">
+   </FileRef>
+</Workspace>

+ 0 - 0
proj.ios_mac/RedCore2.xcodeproj/project.xcworkspace/xcshareddata/RedCore2.xcscmblueprint → proj.ios_mac/RedCore.xcodeproj/project.xcworkspace/xcshareddata/RedCore2.xcscmblueprint


二進制
proj.ios_mac/RedCore.xcodeproj/project.xcworkspace/xcuserdata/capella.xcuserdatad/UserInterfaceState.xcuserstate


+ 0 - 0
proj.ios_mac/RedCore2.xcodeproj/xcuserdata/capella.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist → proj.ios_mac/RedCore.xcodeproj/xcuserdata/capella.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist


+ 12 - 12
proj.ios_mac/RedCore2.xcodeproj/xcuserdata/capella.xcuserdatad/xcschemes/RedCore2-desktop.xcscheme → proj.ios_mac/RedCore.xcodeproj/xcuserdata/capella.xcuserdatad/xcschemes/RedCore2-desktop.xcscheme

@@ -15,9 +15,9 @@
             <BuildableReference
                BuildableIdentifier = "primary"
                BlueprintIdentifier = "5087E73D17EB910900C73F5D"
-               BuildableName = "RedCore2-desktop.app"
-               BlueprintName = "RedCore2-desktop"
-               ReferencedContainer = "container:RedCore2.xcodeproj">
+               BuildableName = "RedCore-desktop.app"
+               BlueprintName = "RedCore-desktop"
+               ReferencedContainer = "container:RedCore.xcodeproj">
             </BuildableReference>
          </BuildActionEntry>
       </BuildActionEntries>
@@ -33,9 +33,9 @@
          <BuildableReference
             BuildableIdentifier = "primary"
             BlueprintIdentifier = "5087E73D17EB910900C73F5D"
-            BuildableName = "RedCore2-desktop.app"
-            BlueprintName = "RedCore2-desktop"
-            ReferencedContainer = "container:RedCore2.xcodeproj">
+            BuildableName = "RedCore-desktop.app"
+            BlueprintName = "RedCore-desktop"
+            ReferencedContainer = "container:RedCore.xcodeproj">
          </BuildableReference>
       </MacroExpansion>
       <AdditionalOptions>
@@ -56,9 +56,9 @@
          <BuildableReference
             BuildableIdentifier = "primary"
             BlueprintIdentifier = "5087E73D17EB910900C73F5D"
-            BuildableName = "RedCore2-desktop.app"
-            BlueprintName = "RedCore2-desktop"
-            ReferencedContainer = "container:RedCore2.xcodeproj">
+            BuildableName = "RedCore-desktop.app"
+            BlueprintName = "RedCore-desktop"
+            ReferencedContainer = "container:RedCore.xcodeproj">
          </BuildableReference>
       </BuildableProductRunnable>
       <AdditionalOptions>
@@ -75,9 +75,9 @@
          <BuildableReference
             BuildableIdentifier = "primary"
             BlueprintIdentifier = "5087E73D17EB910900C73F5D"
-            BuildableName = "RedCore2-desktop.app"
-            BlueprintName = "RedCore2-desktop"
-            ReferencedContainer = "container:RedCore2.xcodeproj">
+            BuildableName = "RedCore-desktop.app"
+            BlueprintName = "RedCore-desktop"
+            ReferencedContainer = "container:RedCore.xcodeproj">
          </BuildableReference>
       </BuildableProductRunnable>
    </ProfileAction>

+ 12 - 12
proj.ios_mac/RedCore2.xcodeproj/xcuserdata/capella.xcuserdatad/xcschemes/RedCore2-mobile.xcscheme → proj.ios_mac/RedCore.xcodeproj/xcuserdata/capella.xcuserdatad/xcschemes/RedCore2-mobile.xcscheme

@@ -15,9 +15,9 @@
             <BuildableReference
                BuildableIdentifier = "primary"
                BlueprintIdentifier = "1D6058900D05DD3D006BFB54"
-               BuildableName = "RedCore2-mobile.app"
-               BlueprintName = "RedCore2-mobile"
-               ReferencedContainer = "container:RedCore2.xcodeproj">
+               BuildableName = "RedCore-mobile.app"
+               BlueprintName = "RedCore-mobile"
+               ReferencedContainer = "container:RedCore.xcodeproj">
             </BuildableReference>
          </BuildActionEntry>
       </BuildActionEntries>
@@ -33,9 +33,9 @@
          <BuildableReference
             BuildableIdentifier = "primary"
             BlueprintIdentifier = "1D6058900D05DD3D006BFB54"
-            BuildableName = "RedCore2-mobile.app"
-            BlueprintName = "RedCore2-mobile"
-            ReferencedContainer = "container:RedCore2.xcodeproj">
+            BuildableName = "RedCore-mobile.app"
+            BlueprintName = "RedCore-mobile"
+            ReferencedContainer = "container:RedCore.xcodeproj">
          </BuildableReference>
       </MacroExpansion>
       <AdditionalOptions>
@@ -56,9 +56,9 @@
          <BuildableReference
             BuildableIdentifier = "primary"
             BlueprintIdentifier = "1D6058900D05DD3D006BFB54"
-            BuildableName = "RedCore2-mobile.app"
-            BlueprintName = "RedCore2-mobile"
-            ReferencedContainer = "container:RedCore2.xcodeproj">
+            BuildableName = "RedCore-mobile.app"
+            BlueprintName = "RedCore-mobile"
+            ReferencedContainer = "container:RedCore.xcodeproj">
          </BuildableReference>
       </BuildableProductRunnable>
       <AdditionalOptions>
@@ -75,9 +75,9 @@
          <BuildableReference
             BuildableIdentifier = "primary"
             BlueprintIdentifier = "1D6058900D05DD3D006BFB54"
-            BuildableName = "RedCore2-mobile.app"
-            BlueprintName = "RedCore2-mobile"
-            ReferencedContainer = "container:RedCore2.xcodeproj">
+            BuildableName = "RedCore-mobile.app"
+            BlueprintName = "RedCore-mobile"
+            ReferencedContainer = "container:RedCore.xcodeproj">
          </BuildableReference>
       </BuildableProductRunnable>
    </ProfileAction>

+ 0 - 0
proj.ios_mac/RedCore2.xcodeproj/xcuserdata/capella.xcuserdatad/xcschemes/xcschememanagement.plist → proj.ios_mac/RedCore.xcodeproj/xcuserdata/capella.xcuserdatad/xcschemes/xcschememanagement.plist


+ 0 - 7
proj.ios_mac/RedCore2.xcodeproj/project.xcworkspace/contents.xcworkspacedata

@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<Workspace
-   version = "1.0">
-   <FileRef
-      location = "self:">
-   </FileRef>
-</Workspace>

二進制
proj.ios_mac/RedCore2.xcodeproj/project.xcworkspace/xcuserdata/capella.xcuserdatad/UserInterfaceState.xcuserstate