Programmatic generation of content (graphics, sounds, level-design,...) using random or pseudo-random processes, usually on the fly.

learn more… | top users | synonyms

0
votes
0answers
13 views

How to create side scrollable 2d terrain in unity?

Hi iam trying to build a game in which the skater will skate on the irregular terrain which is 2D and side scrolling. Iam not getting how to instantiate a terrain dynamically and in different shapes ...
2
votes
2answers
44 views

Particle Deposition Terrain Generation

I'm using Particle Deposition to try and create some volcano-like mountains procedurally but all I'm getting out of it is pyramid-like structures. Is anyone familiar with the algorithm that might be ...
0
votes
1answer
44 views

How to use noise to generate varied terrain biome style

I'm currently using value noise I believe it is called in combination with fractal Brownian motion to generate terrain in a 3D environment. I generate a 2D height-map from the noise, with values ...
-2
votes
0answers
44 views

Generating Photoshop “clouds” in Java for heightMaps

I've looked everywhere(I really did) for a perlin noise library in Java, but all I find is in C++ and no source code is attached so I can't translate it! I'm basically trying to get a slice of 1 high ...
0
votes
0answers
133 views

Procedural Generation of City Streets?

I've read up on L-Systems, read Parish & Muller and Kelly & McCabe, and tried implementing this, but I'm really not having any luck at all (all my streets tend to go in one direction, never ...
1
vote
1answer
164 views

artefacts during heightmap generation using plasma style fractal

I've spent a few hours today researching how random terrain generation tends to be done and after reading about the plasma fractal (midpoint displacement and diamond square algo's) I decided to try ...
-1
votes
3answers
136 views

Random float [0-1] to n random floats [0-1] [closed]

If I have a set of random floats (0.0f - 1.0f) around a sphere (or even on a 2D grid would work too), each of which only differ by about 0.1f from their neighbors, is there a way to transform these ...
1
vote
1answer
63 views

Speeding up Random position of objects on a grid

Currently I doing the following and I am certain it is a slow way of doing it. Basically I run through a grid and determine if a) a star is present and b) what type is there if one is. What I think I ...
2
votes
1answer
554 views

Tweaking Heightmap Generation For Hexagon Grids

Currently I'm working on a little project just for a bit of fun. It is a C++, WinAPI application using OpenGL. I hope it will turn into a RTS Game played on a hexagon grid and when I get the basic ...
2
votes
2answers
104 views

What term describes procedural/fractal generation where coordinates are generated without knowledge of other coordinates?

Both Cellular Automata and Midpoint Displacement rely on information about the grid itself as it's being generated to be able to finish the generation process. Perlin/Simplex Noise are the only ...
0
votes
2answers
327 views

Procedurally generated texture for Particle with three.js

My goal is to create a particle system that involve procedurally generated texture for each particle (vertices), but I find it difficult to create a prototype of such particle system that works under ...
3
votes
1answer
192 views

How can I generate and play back procedural sounds (square wave, etc.) in Lazarus/Free Pascal?

How can I play and synthesize custom waves in Lazarus/Free Pascal? The solution has to be realtime-friendly, as it is for a game engine. It should be also multi-platform, so it can be used on win32, ...
4
votes
2answers
486 views

How is L-systems for road networks modified?

Greetings each and all! I'm currently looking into procedural generation of a road network and stumbled upon the L-system algorithm. From what I understand from various scientific papers on the ...
1
vote
1answer
663 views

What's faster for 3D? Perlin or Simplex noise?

Okay, there are a lot of comparisons between Perlin and Simplex noise to be found on the web. But I really couldn't find one where there was a simple processing time comparison between both for three ...
0
votes
1answer
192 views

Flash Stage3D: Render/Update procedural textures?

I need to update the texture of a 3D object frequently. (it is a procedurally generated pattern, so it cannot be cached, it has to be dynamically generated each frame) What is the fastest way of ...
1
vote
0answers
58 views

Is there an algorithmic way to find the scaling factor for a given simplex noise dimension?

Here is one implementation in C# of the simplex noise algorithm You'll notice that each noise function (2d, 3d, and 4d) scales the corner contributions to fit in the -1 to 1 range (this is the magic ...
1
vote
2answers
114 views

How can I remove the extra tiles in this grid?

I'm working on a tile-based 2D game and having a minor issue with the map generation. The general concept is that it creates one room by default and then builds off of any existing rooms until X ...
1
vote
4answers
167 views

java multithreading performance scaling

can you explain this nonsense to me? i have a method that basically fills up an array with mathematical operations. there's no I/O involved or anything. now, this method takes about 50 seconds to run, ...
4
votes
3answers
5k views

Random 2D Tile-Map Generating Algorithm

Can anyone tell me a way to generate island structures or hill structures like in minecraft? I'm just searching for a proper THEORY for that random-shape generating, but it should keep a defined base ...
3
votes
3answers
119 views

I need a javascript function that maps two coordinates to a pseudo-random value between 0 and 1

Additional requirements: Input of the function are two numbers, not necessarily integers Speed is the major concern; it should be as fast as possible Doesn't have to be secure, as long as its output ...
0
votes
0answers
127 views

How do I create,track and isolate patches of terrain on a procedural planet mesh?

I've been trying to build a procedural planet renderer in directx and so far I've got a cube where I transform it's vertices to spherical coordinates and I can use heightmaps on it's sides and have ...
6
votes
2answers
726 views

Looping through a formula that describes a spiral to generate XY coordinates

I'm trying to generate a spiral galaxy in the form of xy (2D) coordinates -- but math is not my strong suit. I've gleaned the following from an excellent source on spirals: The radius r(t) and ...
6
votes
2answers
404 views

How can I sample from a complex or compound distribution in Haskell?

I'm trying to generate random masses for hypothetical planets in Haskell. I want to produce these masses by sampling a bi-modal distribution (ideally the superposition of two normal distributions: one ...
0
votes
0answers
79 views

algorithm to generate sample video data with transition?

I want to generate sample video using procedural method so that it gives nice color transitions between frames. I came up with following code snippet,but wondering whether there's any nice algorithms ...
0
votes
0answers
347 views

Random level generation for sidescrolling platformer [closed]

I'm creating a game in Java with Slick and I've gotten to a point where I want to make my levels randomly generated. That's the problem. I've been fiddling with creating random levels using a ...
0
votes
1answer
133 views

Generating tileable 2D texture from non-tileable 3D texture

I am working on a library for procedural texture generation (https://github.com/mikera/clisk) which is starting to come together quite nicely. I'm now trying to work out good ways of producing ...
2
votes
0answers
168 views

Android - Determine tile bitmap based on surrounding tiles

I have been working on a tile-based terrain generation system , and have run into a bit of a snag. I am hoping to create a series of transition tiles that will mark the transition between water and ...
2
votes
2answers
912 views

Displacing Vertices in the Vertex shader

My code creates a grid of lots of vertices and then displaces them by a random noise value in height in the vertex shader. Moving around using glTranslated(-camera.x, -camera.y, -camera.z); works ...
1
vote
1answer
489 views

Lining up terrain chunks (Diamond-square algorithm)

I'm programming a terrain engine that uses Minecraft-esque chunks. The chunks are generated seperately using the Diamond-square algorithm. The problem is that these chunks aren't lining up, they're ...
1
vote
1answer
126 views

Flip an array of Cellular Automata data into a music score (like WolframTones)

Ok, so using some basic principles of Cellular Automata, I've managed to get a program running which generates a set of data calculated from rules. Each cell is a boolean. Currently I am storing it ...
0
votes
1answer
202 views

3D randomized generation of planets

For a project, I'm doing creation of planets in 3D space, based around a center "homeworld", that are randomly generated in all directions from the origin. I've looked at procedural generation and ...
0
votes
1answer
854 views

Procedural Map Generation

I really want to start doing a tile game, and I've started Cocos2d because of the popularity of it and the availability of tutorials and resources. But I really want to try out some procedural map ...
3
votes
1answer
547 views

HTML5 Canvas: Rotated Pattern Fill

As a learning project I'm attempting to re-create the procedurally generated hills from Tiny Wings using the HTML5 canvas. My goal is to generate textures like the hill in this picture: Thus far, I ...
0
votes
1answer
483 views

Procedurally generating a building interior for a 2D platformer [closed]

I want to generate some levels for my platformer game which takes place inside an underwater base. Therefore, the levels should consist of several major "domes" linked together by narrow corridors, ...
3
votes
1answer
798 views

C# XNA generate MIDI

I wish to play MIDI like notes from the C# XNA program. I don't actually need to construct a MIDI file, just have the ability to start and stop notes or play them for a given time. play("flute", ...
2
votes
2answers
681 views

Procedurally Generating a Massive Universe

I'm creating a text-based game, and trying to implement procedural world generation. My initial plan was a bit haphazard: each universe has a 3D array of galaxies, of solar systems, which then in ...
9
votes
4answers
3k views

JavaScript simplex / perlin noise

I'm trying to create a perlin / simplex / value noise function in JavaScript that will give results similar to the following: (Note: this image has already had a treshold applied. I want it without ...
0
votes
1answer
613 views

How to implement the diamond-square algorithm?

I was reading this: http://www.gameprogrammer.com/fractal.html#diamond And it says: This is the starting-point for the iterative subdivision routine, which is in two steps: The diamond ...
2
votes
1answer
140 views

What are the potential problems with this multithreaded procedural generation algorithm?

I know this is game design related, but I have read the StackOverflow FAQ and it states software algorithm questions can be asked here. If this is better off in game design then I hope someone can ...
1
vote
1answer
608 views

How to divide a runtime procedural generated world into chunks

I've been thinking of making a top-down 2D game with a pseudo-infinite runtime procedural generated world. I've read several articles about procedural generation and, maybe I've misread or ...
2
votes
2answers
687 views

Smoothing issue with Diamond-Square algorithm

I am using the diamond-square algorithm to generate random terrain. It works fine except I get these large cone shapes either sticking out of or into the terrain. The problem seems to be that every ...
7
votes
2answers
1k views

Galaxy Generation Algorithm

I'm trying to generate a set of points (represented by a Vector struct) that roughly models a spiral galaxy. The C# code I've been playing with is below; but I can only seem to get it to generate a ...
0
votes
4answers
901 views

OpenGL: Texture size and video memory

I'm making a Worms-style bitmap destructible terrain game using OpenGL. I'd like to know where the limitiations in terms of video memory are for the size of the worlds. Currently, I use blocks of ...
4
votes
3answers
209 views

What languages or methods allow graphics & music demos to fit in 64kb EXEs?

How is it possible that in a 64kb compiled exe, these programs can generate such crazy visuals, complete with matching music? An example: Ars Nova By Phantom Lord (YouTube video of the demo running) ...
0
votes
1answer
199 views

Generating random points to build a procedural line

I want to randomly generate points. Well at least there should be a limitation on the y-axis. Later I connect the points to a line which should proceed in a simple animation. You can imagine this as a ...
3
votes
3answers
5k views

How is a 3d perlin noise function used to generate terrain?

I can wrap my head around using a 2d perlin noise function to generate the height value but I don't understand why a 3d perlin noise function would be used. In Notch's blog, ...
3
votes
2answers
950 views

Help with using the perlin noise library libnoise

When I call libnoise's getvalue function with x, y, and z as integers I always get 0 back as a result. Is this normal? When I try 1.25, 0.75, 0.5 as in the tutorial ...
1
vote
1answer
294 views

Straight line to curved

I am trying to come up with a technique to generate a height map for a meteor crater. I'm trying to keep is small and simple at the moment, and have a simple algorithm where the centre of the crater ...
31
votes
1answer
2k views

Optimizing numerical array performance in Haskell

I'm working on a terrain generation algorithm for a MineCraft-like world. Currently, I'm using simplex noise based on the implementation in the paper 'Simplex Noise Demystified' [PDF], since simplex ...
14
votes
2answers
8k views

2D tile map generation

I'm developing a 2D tile engine and at this moment I'm working on map generation algorithms. I tried the basic ones usually involved in simple heightmap generation like hill generation perlin noise ...

1 2