summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Updated build versioning script for git 0.5Starla Insigna2013-01-071-2/+14
|
* Created score barStarla Insigna2013-01-0411-62/+211
| | | | Closes #190
* Made pausing easierStarla Insigna2013-01-044-31/+62
| | | | | | You can now pause by tapping in the top half of the screen in any mode that supports pausing. Closes #199
* Added stars to selection screenStarla Insigna2013-01-041-0/+27
| | | | Closes #231
* Added third star to Collect and added failsafe for GameModeInfo's init in ↵Starla Insigna2013-01-042-1/+9
| | | | case numOfStars is over 3
* Added NSLog -> TFLog macro (for TestFlight)Starla Insigna2013-01-035-3/+3
|
* Upgraded TestFlight SDK to v1.2Starla Insigna2013-01-033-14/+80
|
* Fixed freezing issue with selection screenStarla Insigna2013-01-033-5/+3
|
* Pulled in trunk changes because the iOS 6 bug was making it impossible to testStarla Insigna2013-01-029-45/+132
|\
| * Fixed cart driving wrong direction and made all game modes available for ↵ HEAD v0.4.10 masterStarla Insigna2012-12-252-7/+8
| | | | | | | | testing purposes
| * Fixed rotation bug with iOS 6 and made highscores landscape v0.4.9Starla Insigna2012-12-253-14/+19
| |
| * Added support for gyroscope-based movement v0.4.8Starla Insigna2011-10-176-19/+89
| | | | | | | | Closes #230
| * Made the cart in Jump mode fall more quicklyStarla Insigna2011-09-121-1/+1
| | | | | | | | Closes #229
| * Made falling objects on the wave destroy at the ledges v0.4.7Starla Insigna2011-09-113-21/+20
| | | | | | | | | | | | Previously, falling objects on the wave floated through the ledges--now they destroy when they touch the ledges just like objects not on the wave. Falling objects also now only fall straight downward if they were dropped while the wave was active. Closes #221
| * Jump: Disallowed going offscreen after going below ledge level and then ↵Starla Insigna2011-09-111-0/+3
| | | | | | | | | | | | riding back up on the wave Fixes #228
* | Removed locked game modes from selection screenStarla Insigna2013-01-028-86/+48
| | | | | | | | | | | | Also removed cluttering attributes "unlockCondition" and "starsToUnlock" from GameModeInfo because they're really not that generalized (and unlockCondition doesn't really make sense if locked game modes are invisible anyway). starsToUnlock can be replaced by simply putting if statements in to GameModeManager's setStars: and then unlocking modes based off that. Completing the tutorial also now unlocks both Collect AND Jump. The idea is that we should make more than just Collect available at the start, and have only a few super hidden game modes that are unlockable; hence locked game modes being invisible.
* | Created a game mode managerStarla Insigna2011-11-3018-140/+406
| | | | | | | | | | | | | | | | There is now one location for information relating to each GameMode instead of several places, so that info can be easily updated and propagated to, for instance, GameModeSelectionLayer. GameModes can also be specified by an info instance each owns. There's also a way to get an ordered list of game modes. The three star game mode unlocking system has also been added. Closes #213
* | Reworked falling objectsStarla Insigna2011-09-1025-444/+272
|/ | | | Previously, every type of falling object had to have its own class that defined the object type's sprite, weight, and reaction to the cart/floor. This was pretty messy considering how many object types may only be used in one game mode--for instance, the many power ups in Power mode, once it's created, will never be used outside of Power mode. So, to increase customizability and decrease class clutter, game modes now use a FallingObjectFactory to define recipes (basically a sprite filename, a weight and an identifier) that can easily be built throughout the game mode using the identifier. FallingObjectDelegate is now used for all reactions to the cart/floor, rather than defining a standard reaction in the FallingObject subclass and then putting extra stuff in FallingObjectDelegate.
* Jump: Allowed cart to be pushed off side of screen when below ledges v0.4.6Starla Insigna2011-09-103-3/+23
| | | | Closes #227
* Modified frequency of point multipliers as the player catches themStarla Insigna2011-09-101-4/+5
| | | | Closes #226
* Fixed behavior of falling objects as wave endsStarla Insigna2011-09-101-1/+1
| | | | Fixes #224
* Modified behavior of falling objects in Jump v0.4.5Starla Insigna2011-09-106-3/+53
| | | | | | Also increased the distance between ledges as the game goes on, and changed the sound point multipliers make when you catch them. Closes #221, #223
* Added point multipliersStarla Insigna2011-09-107-23/+108
| | | | | | There is support for point multipliers for any game mode, but only Jump currently utilizes it. Closes #222
* Added play again button to game over screenStarla Insigna2011-09-092-5/+35
| | | | Closes #218
* Disabled swiping during selection screen transitionStarla Insigna2011-09-091-0/+1
| | | | Fixes #219
* Fixed negative lives behaviorStarla Insigna2011-09-092-2/+2
| | | | | | The negative lives glitch was being caused by players being killed by two different things at once--a.k.a. being hit by a rock and falling off a ledge in Jump. The problem was that both game modes would only show the game over screen if the player had zero lives, not for negative lives. This has been fixed. Fixes #220
* Jump: Fixed zero-width ledge bugStarla Insigna2011-09-051-1/+5
| | | | | | While this had no affect on the player, the game would sometimes randomly generate zero-width ledges when spawning ledges, which caused a whole ton of problems with the graphic generation and CCTexture2D and was the reason that the console was spammed with so many error messages when nothing bad seemed to be happening. The game would output the errors, drop the zero-width ledge and continue on as if nothing had happened. Fixes #217
* Prevented objects from spawning directly above you on the wave in Jump v0.4.4Starla Insigna2011-09-051-3/+65
| | | | Closes #216
* Made general memory fixesStarla Insigna2011-09-054-7/+23
| | | | | | This revision should also hopefully fix the undefined behavior GameOverScene bug--if it, I'll reopen the ticket and continue investigating. Fixes #215
* Added default ledges to JumpStarla Insigna2011-09-051-0/+6
| | | | | | Previously, in Jump, when the game mode was created, one static ledge would always be generated safely under the player, and then when tick was first called, it would fill in the rest of the screen with ledges. While this did use to work fine, now that the game modes transition in, the player can see the ledges being added in when the transition ends so now there are two default ledges present when the level starts. Refs #204
* Added zoom/fade transition to selection screenStarla Insigna2011-09-054-3/+94
| | | | Refs #207
* Made game automatically pause when resigning active stateStarla Insigna2011-09-051-7/+7
| | | | Previously, the game paused when it entered the background. Now, it pauses when the game is about to become inactive, which is the proper thing to do.
* Fixed jumping while paused in Jump modeStarla Insigna2011-09-052-10/+23
| | | | Refs #204 and fixes #214
* Tweaked difficulty of Jump modeStarla Insigna2011-09-052-42/+10
| | | | | | The rate of dropped items now increases progressively like the speed of ledge scrolling. The scores at which two rocks and three rocks start appearing have also doubled. Refs #204
* Added back support for the armv6 architecture v0.4.3Starla Insigna2011-09-041-3/+12
|
* Fixed display of Jump mode highscoresStarla Insigna2011-09-041-2/+2
| | | | Refs #204
* Updated Jump unlocking condition message v0.4.2Starla Insigna2011-09-041-1/+1
| | | | Refs #204
* Decreased Jump unlocking score to 3000Starla Insigna2011-09-041-6/+9
| | | | Refs #204
* Fixed a bug that submitted Jump highscores to the Collect global highscore list v0.4.1Starla Insigna2011-09-041-1/+8
| | | | Refs #204
* Added Jump lists to highscore viewer v0.4Starla Insigna2011-09-042-12/+47
| | | | Refs #204
* Pulled in jump modeStarla Insigna2011-09-043-5/+13
|\
| * Upgraded TestFlight SDK to v0.6Starla Insigna2011-09-023-5/+13
| |
* | Pulled in jump modeStarla Insigna2011-09-041-1/+1
|\|
| * Fixed selection screen highscore label bugStarla Insigna2011-08-251-1/+1
| | | | | | | | | | | | This is pretty much the same as the bug that was fixed in r15--CCSprite textures need different cache keys when they change, otherwise they won't change. Fixes #212
* | Implemented Jump mode (BETA) jumpStarla Insigna2011-09-0412-21/+423
| | | | | | | | | | | | Dear god this is beta. I think I'll release a build for the testers soon so I can see what people think and then hammer out the bugs. Refs #204
* | Added Jump to selection screenStarla Insigna2011-08-2510-10/+816
| | | | | | | | | | | | It currently uses a temporary picture and is unlockable after reaching 5000 points in Collect, at which point a little notification appears at the top of the screen telling you that you've unlocked a new game mode. Also fixed a bug in GameMode with the iteration of objects that would cause the rest of tick to not be called because objects were removed from the set while it was being iterated over. Refs #204
* | Merged in changes from default branchStarla Insigna2011-08-246-0/+148
|\ \ | |/ |/|
| * Improved jumping gesture detectionStarla Insigna2011-08-172-7/+6
| | | | | | | | | | | | Previously, when determining if the player had swiped upward for a jump in the Jump game mode, the game checked that the player had touched and moved upward a certain amount, with less than a certain amount of variance in horizontal position. However, this did not work well with the deeply-ingrained rotation aspect of the game, so the game was programmed to widen this allowed horizontal variance when the device was rotated. This really did not work too well, so now the game calculates an "expected" angle from the bottom of the screen based on rotation that it determines to point upward and also the angle of the player's swipe from the bottom of the screen. If the swipe angle falls within 45 degrees (π/4 radians) of the expected angle, the cart jumps. Really quite awesome if you ask me. :P Refs #204
| * Started Jump game modeStarla Insigna2011-08-178-1/+158
| | | | | | | | | | | | So far, Jump exists as a blank world where the player can control the cart (including the ability to jump by swiping upwards) and where the water level rises for a bit and then falls, taking the cart with it. Refs #204
* | Added support for multiple local highscore listsStarla Insigna2011-08-249-90/+117
| | | | | | | | | | | | This revision increments the database version to 2. Also fixed a small problem with GameModeSelection that aligned the highscore text incorrectly.