Hmm, Pardox's RMG looks pretty sweet. Probably sweeter than what I could finish before being drafted into the military

And it doesn't look like there's anything specific for me to do that he didn't already. (Since he has wrap around maps, and you said he has icons)
So perhaps I should just work on my RMG for fun when I feel like it?
Quote:
I'd really separate those things into a good, fast, efficient map generator and a .map interpreter / commenter. No need for yet another complex unhandy bloat program.
|
I agree. (Which is why if I had done that, I would have made it as another program)
Quote:
It's a well-known rule that implementing something from scratch is probably to be better for yourself and the program than to take stuff from somebody else and then try to understand how it works and patch it in places to add functionality. But having a reference is good in any case. Comments are optional as long as function names and variables are sensibly chosen and there's clear indentation.
|
That's true to some extent, but not universal law.
For example, if you picked up my code, you could have "stolen" fractal.cpp and fractal.hpp and used them as-is on any program, since they provide a pretty much self-contained "package" for generating fractal heightmaps.
Quote:
Maps like this would be great if they would wrap top-bottom for Tower and left-right for Pipeline.
|
If paradox's generator can generate wrap-around maps (which it can according to what you've shown me), then I'm guessing that it would be trivial to generate wrap-around towers and pipes.
Quote:
Which reminds me. Does your generator mark off bad starting locations? Is that configurable as to the number of neighbors for consideration? Does it not mix land and sea neighbors in that count?
|
Of course, it does nothing yet, but it would be fairly easy to do such a thing, as it will be forced to generate a map of neighbours to generate a .map file, so just counting the number of same-terrain neighbours is easy.
Quote:
By the way, seperate parameter files will be great. It will make it easy for me to script randomization within acceptable parameters between runs.
|
I think the best solution would be taking one command line parameter as the name of the config file (and default to something if there is no parameter given), don't you think?
Though thinking about it thoroughly, I have to give a "warning", to be as customizable as possible will also give pretty big config files. (for example, if you wanted to control the color of every possible combination of terrain tags you'd have to manually define colors for ~70 different combinations. [theoretically you'd have 8388607 combinations, but most of them don't really make sense together, or don't really deserver their own color. nor would they be possible.] )
Or are you talking about separate files for separate parts of the data? (like a file for colors, a file for thresholds, a file for heightmap settings etc.)
Re: Honeybadger
Your community map thread doesn't seem to jive well with my random maps, since you have people predefine what their provinces are like, and you aren't guaranteed to get a map that fits their desires. A more sensible approach for using a random map would be to select one map and then give sections of it to certain people.
(This applies to any random map, not just my own)