Tagged Questions
10
votes
4answers
3k views
Worms style destructible terrain
I want to prototype an idea for a game I have. The idea for this game is that the player will dig through the ground, creating tunnels and finding treasure.
I'm looking to create 'worms style' ...
6
votes
6answers
1k views
Multiple texture images blended together onto 3D ground
How do computer games render their ground? I will be using a heightmap for geometry (though I will later optimize it) but I am wondering what the best technique is, for example, to 'paint' my ground; ...
4
votes
5answers
409 views
Does anyone have good resources on 3D procedural generation of terrain or fractal terrain generation?
See title. Any help is appreciated!
3
votes
1answer
126 views
Is there a raycasting library in C++ that is simple and open source?
I'm looking for a library that will let me cast a ray into a scene model (it happens to be a terrain model in our case) and return the point of intersection in the scene. It does not have to be ...
3
votes
3answers
990 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, ...
2
votes
2answers
509 views
2D terrain generation
How is the terrain in games like "Moon buggy", "Route 960" or similar made ?
I dont't mean the "Scorch" or "Worms" like terrain with many peaks, but I look for a way to generate smooth terain with ...
2
votes
3answers
159 views
Best way to store terrain state?
I am building a game using canvas.
I have terrain that is generated randomly on game initilisation. The terrain is destroyable via the weaponry in the game.
Here is an example of the terrain I want ...
2
votes
1answer
1k views
Box2d - Bike Game - Terrain
I'm using Box2d for a Bike Physics Game, Box2d lets you have fixtures that are convex polygons with 8 points or less, would anyone know of an easier way have a complicated concave terrain, other that ...
2
votes
1answer
651 views
How to calculate the slope of a point on a terrain data (e.g. Digital Elevation Matrix)
I want to implement a 3D car racing game and I need to approximate the magnitude and the direction of the slope of any arbitrary point on a terrain.
Terrain Data Format:
- heights[ ][ ]: 2D array of ...
1
vote
2answers
66 views
3d Tiled terrain
I'm trying to create tiled terrain in 3D with XNA. I checked tutorials on how to doit(Riemers and Allens). Allens tutorial has an exact result I want to achieve, however I'm not sure about performance ...
1
vote
0answers
31 views
Storing pixel based world data
I am making a 2d game with destructable terrain. It will be on iOS but I am looking for ideas or pseudocode, not actual code. I'm wondering how to store a large amount of data. (It will be a large ...
1
vote
1answer
1k views
2d terrain generation in real time
I'm trying to create a game similar to this (Note:When you click 'play', there are SFX in the game which you can't seem to turn off, so you may want to check volume). In particular, I'm interested in ...
1
vote
6answers
654 views
Game Terrain Database Model
I am developing a game for the web. The map of this game will be a minimum of 2000km by 2000km. I want to be able to encode elevation and terrain type at some level of granularity - 100m X 100m for ...
0
votes
0answers
79 views
jMonkeyEngine3 (jME3) Level Of Detail for terrain
I am trying to do terrain generation in jMonkeyEnging, and have followed the tutorial (http://jmonkeyengine.org/wiki/doku.php/jme3:beginner:hello_terrain) but have run into a slight problem. At last ...
0
votes
2answers
461 views
Terrain and Collision in a Game
I am attempting to create a new Game in which a vehicle drives along the ground, but also has the capability to use thrusters to become temporarily airborne.
I am relatively new to game programming, ...
-2
votes
2answers
121 views
2d Block game terrain generation? [closed]
I'm making this game, Looks like this:
Now, the grass and dirt you see, are all out of 20x20 blocks, images.
How will I make hills, and caves in this?