Content generators in video games are getting more and more prominent and I want to make my own algorithmic content generator. I want it to procedurally generate a random environment that can be continually explored.
I'm looking for a descriptive tutorial that describes how to create a content generator and content generating algorithms for video games. I've read through this tutorial (a tutorial similar to what I'm trying to create) but it's too high level and doesn't ever describe how to create the content generator using a specific programming language.
I'd prefer the tutorial to be written for C/C++/C# because I have had the most experience with those languages. It doesn't really matter, though.
To "make my own algorithmic content generator" doesn't mean having someone else's code served on a silverplate does it?
I suggest you absorb the ideas in that (excellent) article, make an effort to understand the pseudocode and then write your own program in your favourite language. Otherwise it will not be your own, just a modified version of what some else already did.
Last edited by nuzzle; October 28th, 2011 at 09:06 PM.
To "make my own algorithmic content generator" doesn't mean having someone else's code served on a silverplate does it?
I suggest you absorb the ideas in that (excellent) article, make an effort to understand the pseudocode and then write your own program in your favourite language. Otherwise it will not be your own, just a modified version of what some else already did.
That makes sense. I should do it in that manner because when I look at pre-written code, my own iteration of it is often almost the same.
Bookmarks