Tagged Questions
Cocos2D is a Python based open source framework for building 2D games and graphical applications for Windows, Mac and Linux desktop computers. Cocos2D is published under a BSD License.
7
votes
4answers
22k views
How to draw a line with Cocos2d-iPhone
I'm trying to get to grips with Cocos2d by trying to accomplish simple things. At this point, I have a scene, that scene has a background sprite, and a Layer. I'm trying to draw onto the Layer uding ...
7
votes
2answers
9k views
Best way to display a game score on iPhone with cocos2d?
I am looking to persistently display a game score in an iPhone app using cocos2d. Going off the code that cocos2d shows the FPS the app is running at:
-(void) showFPS
{
frames++;
accumDt += ...
6
votes
2answers
3k views
6
votes
1answer
708 views
RunWebThread taking up 33% of CPU time on iPhone App
I'm making a game for the iPhone using Cocos2D. At the beginning of the game, when there are few sprites, the game runs fine, but when there are many sprites on the screen, the game gets choppy.
...
6
votes
2answers
5k views
Change the background image in cocos2d
I am making a game using cocos2d. in that I want to change the background after each second of time.
I don't know how to do this in cocos2d. I am having 15 different images and one by one each image ...
6
votes
2answers
9k views
how to obtain a CCSprite's width and height in cocos2d for iphone
That's the question xD
Given an instance of a CCSprite in cocos2d in iphone, what method can I use to obtain the image width and height?
Thanks!
Manuel
5
votes
1answer
781 views
Integrating Cocos2D with UIKit
I've looked around, and i've seen very little material on how to integrate cocos2d with UIKit (note: not the other way around). What i mean is... for example... adding a cocos sprite animation inside ...
5
votes
1answer
2k views
Cocos2d handling touch with multiple layers
I've been busy for a few days trying to figure out how to handle touch in my Cocos2d project. The situation is a bit different as normal. I have a few different game layers that have items on it that ...
5
votes
4answers
2k views
iPhone:Learning Cocos2D project
I want to develop a game in a month by using the Cocos2D Open Source game engine. Learning Cocos2D is a bit hard and I don't know how to create my initial project by using the files provided by ...
5
votes
2answers
10k views
how we can show UIViewController and UIView by using cocos2d?
i am trying to build an iphone app by using cocos2d. but i have used four types of classes
like bellow-
@interface MenuScene : Scene {}
@end
@interface FlipView : UIImageView
{
CGPoint ...
4
votes
1answer
110 views
Cocos 2d or not?
it's a decision question.
We are building a vocabulary app. There's a timer and the user should choose the correct synonym of a word before the timer goes off etc. After the timer goes off or the ...
4
votes
1answer
292 views
Moving a Stick figure, anchorpoints, animation, or something else…?
Ok so I am making a game with stick figures with cocos2d in objective c...
Different things need to be animated so please, give me a suggestion of what would be the best way to go about accomplishing ...
4
votes
5answers
368 views
XCode 4 Autocomplete with C++ library?
I am using Cocos2D Box2D template for my project.
When I type , "b2**" the autocomplete doesnt show any Box2D classes. (pressing ESC also doesnt show any )
I have included Box2D.h and Cocos2d.h in ...
4
votes
1answer
159 views
What is the problem with how I am creating and populating a NSArray in Objective C?
I am using cocos2d to populate a NSMutable Array, then creating an NSArray from that array. I do the following code 3 times in a row with different array names, and on the third time Instruments is ...
4
votes
1answer
510 views
how to integrate UIViewcontroller in a cocos2d scene
am having uiviewcontroller for some effects using in camera.
am using cocos2d lot for this project. i want just how to integrate this UIviewcontroller in cocos2d scene.
using uiviewwrapper for ...
4
votes
1answer
270 views
Using the same action on multiple sprites?
I want to create an action once, then add it to multiple sprites. For example, I have a 'monster' that gets a bunch of legs added to its body. Each of these legs are children of the body, and I want ...
4
votes
2answers
927 views
Cocos2D Rotation and Anchor point
The problem that I have is that when ever I change the anchor point sprite automatically rotates with respect to the current anchor point. And I don't want that to happen.
The steps that I followed
...
4
votes
1answer
517 views
Cocos2D complex animations
I am in the middle of a process of porting my game from Flash to iOS, using Cocos2D. I have a working version now and I am glad I could count with cocos for this. However, i seem to have stumbled upon ...
4
votes
1answer
2k views
Create layer mask with custom-shaped hole
I've spent too much time trying to figure this out and simply cannot find a workable solution.
Situation:
1. A picture of 'something' is displayed on the phone.
2. A semi-transparent (e.g. blue) ...
4
votes
3answers
443 views
Are there any tutorials on coding a parser for SVG files to be used by box2D?
I am trying to create an iPhone game with fairly large levels. Hard coding the platforms and physics objects is very time consuming. I have seen some people have made their own parsers for svg files ...
4
votes
6answers
808 views
how to change the lock images to unlock images in cocos2d
am having game with 10 levels. i want to change the second level lock image to unlock when first level is completed.
am using 20 images ( 10 locked and 10 unlocked).
am using cc menus to display ...
4
votes
1answer
2k views
Box2d multiple fixtures and positioning
I'm attempting to create a "U" shape in Box2d (in Cocos2d) by joining 3 rectangles like so: |_|
It sounds like joints are not the correct solution here since I don't want any movement so I have ...
4
votes
2answers
546 views
how to move the object in specific locations in cocos2d
how to move the object in specific locations.
for examples. am having one small bar(width=50, height=10). i have to move this like plunger manually. i want to move only in x cordinates ( limits is ...
4
votes
2answers
2k views
What is a good framework for creating interactive books on the iPad?
I was wondering if anyone knew the best way to create interactive books for the iPad (such as the Alice in Wonderland and Dr. Seuss books currently available in the App Store)? I am looking at using ...
4
votes
2answers
425 views
Cocos2d From iPad to iPhone
I currently have an iPad application built entirely on Cocos2D and Chipmunk. I want to port my app to the iPhone now.
All I can find are tips on how to rebuilt your app for the iPad.
Is there a ...
4
votes
2answers
1k views
How many times do I release an allocated or retained object?
I am making an iPhone game. I want to release all the object that have been allocated or retained. In the dealloc function I am releasing all such objects but then realized sometimes i end up ...
4
votes
1answer
666 views
How to tell if you touched a CCLabel?
How to tell if you touched a CCLabel?
The following code obviously does not work well enough because it only tests for point equality. Naturally touch point will not necessarily be equal to the ...
4
votes
1answer
290 views
iphone app rejection question
My iPhone app was rejected with the following note:
The following non-public APIs are included in your application:
Spi Symbols
__memset_chk
__memmove_chk"
These symbols appear in a small ...
4
votes
1answer
2k views
RPG Game loop and class structure (cocos2D for iPhone)
I'm looking to make an RPG with Cocos2D on the iPhone. I've done a fair bit of research, and I really like the model Cocos2D uses for scenes. I can instantiate a scene, set up my characters etc. and ...
4
votes
2answers
2k views
Cocos2D Director Pause/Resume Issue
I am trying to play a .gif animation in cocos2D. For this i am using the library glgif. Now, to display the animation i am pausing the Director, adding a subview to show the animation and after the ...
4
votes
1answer
3k views
cocos2d sprite animation
How can I change an image position in cocos2d like background-position in css? By position I don't mean the position of background like ccp(200,150), I mean for example, I have an image with ...
4
votes
3answers
3k views
cocos2d in iphone z order
I am working on a game with many sprites in a layer, and once you touch the sprite, it will do something.
my problem is the z order issue, most of my sprites are overlapping and when you touch the ...
4
votes
1answer
4k views
Custom easing action with Cocos2D-iphone
How would one go about creating a custom action in Cocos2D that was able to perform a 'callback' over time, making each call to the callback progressively longer than the last call to it (using ...
4
votes
7answers
19k views
How can I detect touch in cocos2d?
I am developing a 2d game for iPhone by using cocos2d.
I use many small sprite (image) in my game. I want to touch two similar types of sprite(image) and then both sprite(image) will be hidden.
...
4
votes
3answers
6k views
Layer vs Scene in Cocos2d for iPhone game development
Using cocos2d for iPhone game development, I am confused between Layer and Scene.
For example, My simple game have several "UI Pages" like main menu, highscores, game board etc.
So should I use ...
3
votes
1answer
60 views
Cocos2d GestureRecognizer not working after finishing a Level and restarting it
I'm currently building a game with cocos2d and I have the following Problem:
I have a MenuScene, where the user can start the game. When he does so, the gestureRecognizer gets initialized with the ...
3
votes
1answer
92 views
b2shape Ellipse?
I'm trying to create a elliptical object in box2D (Cocos2D). So far I've used b2CircleShape for that but I've realized that it ain't gonna cut it no more, I have to have elliptically shaped body. Is ...
3
votes
2answers
168 views
Angle between two lines is wrong
I want to get angles between two line.
So I used this code.
int posX = (ScreenWidth) >> 1;
int posY = (ScreenHeight) >> 1;
double radians, degrees;
radians = atan2f( y - posY , x - ...
3
votes
1answer
113 views
Broken line at joins in opengl on iphone
I am using cocos2d to draw custom shapes for a game. I have an array of polygon points that I use to plot the border of a polygon using the below opengl code.
glEnable(GL_LINE_SMOOTH);
...
3
votes
2answers
162 views
glDrawArray artifacts
I'm trying to render a grid of texture using glDrawArray and GL_TRIANGLE_STRIP, but there are artifacts when drawing, but distributed unevenly across the screen.
Screenshot of the problem.
This is ...
3
votes
1answer
260 views
Repeating background in cocos2d has black edges!
I am attempting to setup a tiled/repeating background for my iPhone app.
The code "works" in that the background is repeating like it should be but I seem to have a black border around each ...
3
votes
1answer
229 views
How exactly are TMX map files base_64-encoded?
I am writing a game for iOS that uses .tmx map files. I am creating the maps in the application 'Tiled' and then at some point before they get to iOS, I'm parsing them with Perl.
When I save the ...
3
votes
2answers
379 views
Levels - Cocos2d
I have 10 Levels. Just like a normal game, you can't play the next level unless you beat the level before it. The only parts that change on each level is, one sprite and the sprite's position.
How ...
3
votes
2answers
560 views
cocos2d - Showing only part of a sprite — irregular shape
I'm really going crazy trying to figure this out, so any help would be really appreciated. I'm trying to hide most of a sprite and show it gradually. This works fine if I only work with rectangles. ...
3
votes
3answers
5k views
xcode invalid archive in organizer
i get message during archive validation. i've tried most of solutions from other questions. but still failed. (It was ok when i submit it last time in xcode 4.02, then i get rejected. i edited some ...
3
votes
1answer
428 views
How can I implement a virtual joystick for a cocos2d game outside the cocos2d environment?
I am developing an iPad game that uses cocos2d and requires a virtual joystick. I have a prototype up and running using SneakyJoystick.
However, I realized that my game design requires me to use ...
3
votes
1answer
146 views
Allow User's Music to Play when Application is Running - Cocos2d
I'm not completely sure if this is used with Cocos2d, but I would like to know how I could let the user play their own music from their playlists or if my application could randomly choose a song from ...
3
votes
1answer
164 views
syncing sound with CCAnimation
I have a CCSpeed that contains a CCAnimation that dynamically changes it's speed based on stuff that's going on in the game. Is there any way i can get the animation to call a selector each time the ...
3
votes
1answer
626 views
How to do pixel perfect collision on many sprites in cocos2d?
in my app I have a player and many enemies (about 100+)..I don't want to use CGRects because it doesn't fits to the enemies. Is there any example how to do pixel perfect collision detection in cocos2d ...
3
votes
1answer
957 views
Add Cocos2D to project in xCode 4
I'm working in a project that need to have same parts native (cocoa touch) and some parts in cocos2d. I have made the all the native and now I need to integrate cocos2d in the project. My problem is ...