Game Design: Tiny Wings + Jetpack Joyride
#1 Members - Reputation: 105
Posted 10 October 2012 - 02:21 PM
Imagine Tiny Wings terrains (slopes and hills) and control (touch to get down to the ground and gain speed on the slopes, release touch at uphills to let your character fly) combined with obstacles à la Jetpack Joyride. Obstacles won't be exactly same as from Jetpack Joyride but as an example, maybe bombs in the air or shooting lasers (in Jetpack Joyride, they use missiles).
I haven't prototyped the game yet, but I sense two problems here.
Problem 1. Obstacles become much harder to avoid as the only control you have over your character's movement is touch to get down to the ground when you want. (think Tiny Wings) You cannot jump at will.
Problem 2. Above problem might be able solved by clever level design by placing obstacles at certain points to provide some challenge but not extreme difficulty. But since the game is an endless runner, designing a placement of each obstacles and terrain is almost impossible or rather oxymoron. Plus anytime the game is played, the obstacles, terrain everything will be the same. This takes away the fun.
I contemplated making the terrain flat and give the character ability to jump at will, but decided against it as I want to explore other possibilities.
What do you guys think? I am open to any suggestions.
-- sfaith
#2 Members - Reputation: 231
Posted 10 October 2012 - 05:10 PM
Current Project: TechnoFlux read all about it on my
#3 Members - Reputation: 105
Posted 10 October 2012 - 08:49 PM
Thanks for your reply.
No, the problem isn't about procedurally generating the map. In fact, it's how endless runners are coded. But the problem is in the gameplay.
Both are iOS games, so here are the videos.
(Jetpack Joyride)
(Tiny Wings)
For Jetpack Joyride, the control you have is you can touch whenever you want to jump (or rather, fly up using your jetpack) so that you can avoid obstacles and whatnot. Release the touch to descend.
For Tiny Wings, the only control you have is touch to fold your wings so that you will gain speed on the slopes, release the touch when you start to go uphill so that you will use the speed you gained and fly off the hills. You won't last long in the air, and the bird will descend itself after awhile but you can touch the screen to descend when you see a favorable hill slope (especially long and steep ones, so that you can fly higher and longer again).
My current design has similar mechanics and physics as Tiny Wings, but with obstacles on the ground (nothing so big and long like in Jetpack Joyride but rather smaller, like bombs) and some in the air. However, with the control and terrains similar to Tiny Wings, I am not sure if it will be easy for players to avoid the obstacles and incoming projectiles in the air as they cannot jump/fly at will.
Both games are on iOS..
-- sfaith
#4 Members - Reputation: 207
Posted 10 October 2012 - 08:52 PM
Procedural graphics is maths, if you think it's fun, refer to http://www.raywender...ny-wings-part-1 . Collision detection and game logic is another story though.
Jetpack is much easier to do. You define your endless (well, might not be really endless, just very long) run with obstacles at intervals. Use obstacle sets, each item in the set has the same difficulty. Place set - interval - set - interval. And when a set is encountered, you place sprites by randomizing obstacles in the set. You can draw up a map using xmind or something to figure out the hierarchical structure of the scene.
Though I should mention that there are already way too many games in this genre. And many of them are in 3d, and have extremely strong graphics, such as Rushing Alice. It might not be easy to gain tractions. And if you think about it, Temple Run is in the same genre too.
Edited by heshiming, 10 October 2012 - 08:52 PM.
#6 Members - Reputation: 230
Posted 11 October 2012 - 03:30 AM
As you said before the problem is that you can't avoid the obstacles because the trajectory of the "bird" depends on the speed of the jump. Maybe you can add two different actions:
- A soft touch to jump a little in the air. With the bird example move the wings a little but not fly.
- Continuous touch to go down as in the original "Tiny wings".
With those actions you can place different kinds of obstacles (ie. trees and holes to jump, and planes or balloons to go down) and generate the level with a procedural approach. But it will be hard to find the right adjustments.
#7 Members - Reputation: 455
Posted 11 October 2012 - 06:14 AM
#8 Members - Reputation: 1228
Posted 11 October 2012 - 06:30 AM
It's actually NOT an endless runner, since its levels are the same every run, and a lot of the gameplay is about learning the levels and finding the flow.
Jetpack joyride, as all endless runners, is more about lighting reflexes (and some luck)
Adding obstacles would limit the number of possible trajectories to take, and run the risk of making it frustrating for the player.
Taking the "wrong" trajectory now means instant death, instead of just a suboptimal jump that can be compensated for later.
Edited by Olof Hedman, 11 October 2012 - 06:34 AM.
#9 Members - Reputation: 105
Posted 11 October 2012 - 08:01 AM
A note on tiny wings.
It's actually NOT an endless runner, since its levels are the same every run, and a lot of the gameplay is about learning the levels and finding the flow.
Hi Oldof Hedman,
Actually the levels are results of procedural generation. They are not the same every run.
#10 Members - Reputation: 1228
Posted 11 October 2012 - 08:59 AM
Hi Oldof Hedman,
Actually the levels are results of procedural generation. They are not the same every run.
But they are...
They might be procedurally generated, but the seed is the same, so the hills of each island are the same each run, and so is the placement of any power-ups.
At least that is how it looks to me... Would be if they change from day to day, but in several playthroughs right now, with quits in between, I'm 100% sure the hills and powerups are the same each run.
That was one of the things that made me enjoy it, since I'm not really a fan of the randomized levels of classic endless runners. (though jetpack joyride is also awesome
Edit:
Ok, seems they do change, but only daily, for graphics and powerups. Hills are supposed to change too, but slower...
Probably has some theme-parameters for each island too, since island two always has these slopes that looks like the beginning of the end slope for example.
Edited by Olof Hedman, 11 October 2012 - 10:00 AM.
#11 Members - Reputation: 323
Posted 12 October 2012 - 08:33 AM
- perhaps, depending on the setting of the game, you could provide a fast dive-bomb downwards or something that would increase speed if you land downhill, but cut your speed if you land uphill.
- Another option would be (not having played Tiny Wings), to allow the user to choose to remain on the hill rather than going airbourne. This would prevent the user from being forced into a fatal obstacle. On the flip side, it would be advised to occasionally have grounded obstacles, so that the player couldn't abuse the control.
I guess my point is that innovation is key to separate from the crowds, even if it's something as trivial as LAN-based multiplayer, where others use the momentum-gaining aspect of Tiny Wings to race each other.






