Page 1 of 1

Pickin' Sticks iPod version (vids up)

Posted: Wed Mar 17, 2010 2:48 pm
by Innerscope


Hey everyone, I was on LusikkaMage's site the other day and I found out there was a pickin' sticks for almost every platform except iPhone/iPod touch. (i mean, there was even one for ColecoVision :lol: )
So I decided to make my own version! (partly because I wanted to try out the cocos2d framework v0.99 as well)

Image
Image
Image

Here's the source as well (commented as much as I could):
http://syntropymac.googlecode.com/files ... Sticks.zip

enjoy!

Re: Pickin' Sticks iPod version

Posted: Wed Mar 17, 2010 2:52 pm
by Sanshin77
That's really cool, I wanna see a video :P Moosader should add this to the Pickin' Sticks site...

Re: Pickin' Sticks iPod version

Posted: Wed Mar 17, 2010 6:39 pm
by eatcomics
Awesome! I bet she will add it. Get us a video, cause I don't currently have an ipod touch!

Re: Pickin' Sticks iPod version

Posted: Wed Mar 17, 2010 6:48 pm
by GroundUpEngine
:lol: Awesome port dude!

Re: Pickin' Sticks iPod version

Posted: Wed Mar 17, 2010 7:00 pm
by Falco Girgis
Coolest version by far!

I'll get started on the Dreamcast/PSP builds. jk.

Re: Pickin' Sticks iPod version

Posted: Wed Mar 17, 2010 8:33 pm
by ibly31
NICE! Haha I installed your provisioning profile onto my ipod and ran it(which confused me, i thought that i would have to have a device that was registered under your devices...). You did an amazing job. I especially love the accelerometer features, although it makes it kind of hard to play when they go off the screen. But you can just as simply place it on a flat surface so I guess its allright. Just wondering, how did you do the animation from the title to the game(the 3 slices)?

Re: Pickin' Sticks iPod version

Posted: Wed Mar 17, 2010 9:00 pm
by davidthefat
Now try making a 3d pick up sticks with a physics engine...

Re: Pickin' Sticks iPod version

Posted: Wed Mar 17, 2010 9:18 pm
by Moosader
Sanshin77 wrote:That's really cool, I wanna see a video :P Moosader should add this to the Pickin' Sticks site...
I will, going to redo the pickin' sticks page so it's not such a bitch to update.


I really like the graphics, ha. Neat~

Re: Pickin' Sticks iPod version

Posted: Thu Mar 18, 2010 3:53 am
by Innerscope
GyroVorbis wrote:Coolest version by far!

I'll get started on the Dreamcast/PSP builds. jk.
:lol: (when you release libGyro somebody else should, I think that would be pretty cool)
ibly31 wrote:NICE! Haha I installed your provisioning profile onto my ipod and ran it(which confused me, i thought that i would have to have a device that was registered under your devices...). You did an amazing job. I especially love the accelerometer features, although it makes it kind of hard to play when they go off the screen. But you can just as simply place it on a flat surface so I guess its allright. Just wondering, how did you do the animation from the title to the game(the 3 slices)?
Yea, I'm not quite sure how that would work as well. (in regards to the provisioning profile) I was thinking people would just alter the plist file, but if you used mine, that works too. With the accelerometer, I was thinking it was a bit too sensitive myself, of course you can easily change the constant (0.5) to a larger number in the stick implementation file.
The animation from the title to the game is part of the framework. (cocos2d) It's called CCSplitColsTransition which inherits CCTransitionScene.

Code: Select all

	[[CCDirector sharedDirector] replaceScene:[CCSplitColsTransition 
											   transitionWithDuration:1 
											   scene:[PickinSticksScene scene]]];
It sends the director object a replaceScene message which takes a scene as the parameter (well any subclass of scene which would include sceneTransition, etc)
The replacement scene (the PickinSticksScene instance) is sent in a transitionWithDuration message to the CCSplitColsTransition class object along with the duration. (1 sec in this case)
For something that fits nicely into one line of code it's pretty cool. 8-)
Moosader wrote:
Sanshin77 wrote:That's really cool, I wanna see a video :P Moosader should add this to the Pickin' Sticks site...
I will, going to redo the pickin' sticks page so it's not such a bitch to update.


I really like the graphics, ha. Neat~
awesome, thanks!

Re: Pickin' Sticks iPod version

Posted: Thu Mar 18, 2010 6:05 am
by ibly31
Yeah I went into the Info.plist and changed com.whateverwastherebefore.pickinsticks to com.ibly31.pickinsticks.

Re: Pickin' Sticks iPod version

Posted: Thu Mar 18, 2010 6:12 am
by MrDeathNote
That's epic man, totally bitchin.