User Tag List

Results 1 to 7 of 7

Thread: endless runner random level generation

  1. #1
    No Products Registered

    Join Date
    May 2016
    Posts
    4
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    endless runner random level generation

    hi
    is it possible to randomly create multiple pre made levels in endless runner games. for eg: lets say i have created 100 levels i want to randomly pick the levels everytime i start the game . when i start over game again i ll start with completely random levels in endless mode. i know one can procedurally generate random objects but i think in pre made levels i have more control.thanks in advance. like the below game
    Images attachées Images attachées

  2. #2
    Clickteam Clickteam
    Jeff's Avatar
    Join Date
    Jun 2006
    Location
    Oregon
    Posts
    11,826
    Mentioned
    8 Post(s)
    Tagged
    2 Thread(s)
    Sure --

    You have a couple options

    Lots of work and bigger file size
    Each level is a frame and you jump over to that frame

    Lots of work but smaller file size
    Build a level editor type of system.
    You would then store your level data in an object (array, text, ini something like that)
    Read in the level you want the editor to build and then display it to the player.

    Nice thing about this is you could just update the saved levels and load them into the game.
    You could also expose the editor tools to the players and have them create levels.

    But building a level editor is an advanced useage -- There should be some examples around on the forums/clickstore I believe.

  3. #3
    Clicker

    Fusion 2.5 DeveloperAndroid Export ModuleiOS Export ModuleSWF Export Module

    Join Date
    Oct 2006
    Posts
    270
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You could go for something like procedurely random.

    Let's say your level generator chooses a number 1-10, then puts that piece on the board. Then it goes to the next piece, and does the same thing. This would limit your availability on tile variety, as all 10 tiles would need to connect in a way that is passable, no matter the combination. This is the way most game do it, and it makes it very hard to have the same levels (Although, if you change the random seed of the level, you can actually control what random level it generates, but no chance specify how it does it. Good for puzzle games)

    Now lets say that each of these pieces is a level chunk. I would build a list of pieces (10,1,3,5,6) and load that at level start, essentially controlling what chunks are displayed. This give you the speed of only having to setup a few objects (Good for the android exporter), but costs you some flexibility. Metroid and Zelda for the NES used a similar system if you want to look into it. You can feed the list that everything is generated off of with Random data, Preset data, or a combination of the two.

  4. #4
    No Products Registered

    Join Date
    May 2016
    Posts
    4
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks very much jeff. jumping frames cause any time delay,loading screen or its instant transition which doesnt interrupt endless mode?

  5. #5
    Clickteam Clickteam
    Jeff's Avatar
    Join Date
    Jun 2006
    Location
    Oregon
    Posts
    11,826
    Mentioned
    8 Post(s)
    Tagged
    2 Thread(s)
    Oh yes I didn't think you meant the players would be endlessly playing all the levels.
    For some reason I thought endlessly thru one level. (But your game sounds funner then that )

    In this case I would do the level editor type of solution and build the levels as the user needs them.
    Its going to be a lot of work but interesting -- I am sure it can be done.

  6. #6
    No Products Registered

    Join Date
    May 2016
    Posts
    4
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks shabadage

  7. #7
    No Products Registered

    Join Date
    May 2016
    Posts
    4
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks again jeff

Similar Threads

  1. Endless Runner Game - Tutorial
    By Sparckman in forum Guides, Tutorials, Examples, Widgets
    Replies: 1
    Last Post: 9th March 2016, 04:10 PM
  2. Endless scrolling frame 7 endless runner
    By nyme in forum Fusion 2.5
    Replies: 1
    Last Post: 23rd November 2015, 09:53 PM
  3. Qubester Source (endless runner)
    By DMike in forum WIP & Released Games & Apps
    Replies: 0
    Last Post: 25th July 2015, 05:53 AM
  4. Endless Runner Help
    By Zorcano in forum Multimedia Fusion 2 - Technical Support
    Replies: 1
    Last Post: 6th May 2014, 07:58 AM
  5. 2D Platformer Random Level Generation
    By Top_of_the_Temple in forum Multimedia Fusion 2 - Technical Support
    Replies: 6
    Last Post: 7th November 2012, 11:10 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •