![]() |
can you speak C? fractal terrain? vga? tga?
There is a utility called DomMap which generates random maps for Dominions (raw C code, source code available). It was written for Dominions 1 where the map images were 16 colors. A few of us have updated bits and pieces so that it works with Dom2 but there is more that I would like to see touched up.
The fractal routine sems to generate alot of variable heighth points but then it squeezes them into 16 colors. Id like to have that part "undone" and see if we cant get a vga smoothing look (I can provide visual examples of all of this if it helps). There are other things we could use but thats a main point for me. |
Re: can you speak C? fractal terrain? vga? tga?
Probably not - but I wouldn't mind looking. I take it there is some C source to start with? And would there be a reference on fractals that the original programmer used when writing his code?
|
Re: can you speak C? fractal terrain? vga? tga?
DomMap is available for download from my site. Go have a look-see.
|
Re: can you speak C? fractal terrain? vga? tga?
Quote:
|
Re: can you speak C? fractal terrain? vga? tga?
I'll see about taking a look, if I have the time and energy - map conVersion / extraction utilities were among the programs I developed in my previous life, albeit (because of X quirks and needing a bunch of overlays) the maps were all in 256 color mode. |
Re: can you speak C? fractal terrain? vga? tga?
As the one who tweaked (not much more than that) dommap so as to move it from dom1 to dom2 format, I can say that the fractal algorithms are basically undocumented.
|
Re: can you speak C? fractal terrain? vga? tga?
Quote:
|
Re: can you speak C? fractal terrain? vga? tga?
Well, it's pretty ugly coding, and it doesn't play well with the prettifying script, but I've hacked something together. Have a look here:
http://home.Online.no/~rmoldskr/Dominions/DomMap.zip |
Re: can you speak C? fractal terrain? vga? tga?
Quote:
http://www.dom2minions.com/~dominion/full_fract.jpg Now I need to see if it messed up the #terrain code EDITED: Ok the terrain is fine. WHile you were in there did you happen to notice anything that would make it run alittle "nicer"? The automatic generation scripts have to be carefully scheduled on my system to avoid trying to run when other cpu/memory hogs are running. |
Re: can you speak C? fractal terrain? vga? tga?
I'm afraid not - I didn't really look at the inner loops in much detail. I added a third fractal map, though; which will slow things down a little.
|
Re: can you speak C? fractal terrain? vga? tga?
Heh... I always wanted to conquer the Great Blue Plains... http://forum.shrapnelgames.com/images/smilies/happy.gif
It looks promising, though. |
Re: can you speak C? fractal terrain? vga? tga?
Does look much better. Strange effect though. It still scatters dots for each terrain type then seems to smooth that color quite nicely. The overall effect might be excellent if we could shift the color of the original pixellations off of their EGA choices. Instead of tan-brown for plains, make it a light green. Instead of cyan for swamp make it a blue-green. Dark green for forest and shamrock green for farms? Then the pixeallation wouldnt be so obvious.
The dark-brown mountains are ok I guess. The tan-brown or yellowish could become waste. What you think? |
Re: can you speak C? fractal terrain? vga? tga?
I dug up a blur.c once but never did figure out how to get it to skip the white pixels (and maybe the two colors of border also). Think it could be worked in?
Heehee. Just let me know when Ive gotten carried away. I can keep coming up with suggested add-ons forever. http://forum.shrapnelgames.com/images/smilies/happy.gif |
Re: can you speak C? fractal terrain? vga? tga?
At the moment, the colours used are hard-coded in colour_map[] in targa.c; someone should look into making them configurable.
|
Re: can you speak C? fractal terrain? vga? tga?
OK same subject, new thread.
Now that this works (quite nicely, thank you Leif), should this be a new program? The old one allowed for solid-color provinces which was even uglier than the defualt but was an advantage for some map-makers. I suspect that this one wont allow that very well. Should we decalre this project to be DomMapVGA ?? |
Re: can you speak C? fractal terrain? vga? tga?
Quote:
|
Re: can you speak C? fractal terrain? vga? tga?
Quote:
I really should try to clean that up. |
Re: can you speak C? fractal terrain? vga? tga?
Im very happy with the change in this program. At the moment Im messing with the colors it uses but the effects are great. I had the "chaos" run use it...
http://www.dom2minions.com/~dominion...s/00_index.jpg To see the jpg view or grab the tga/map for play go to http://www.dom2minions.com/~dominion...s2/RandomMaps/ since I dont have it as nicely webbed as the other groupings. I tried running it for the tiny/small/medium/large/huge/epic maps but I paintakingly came up with a level of pixellation that made those maps slightly less ugly. Now I have to rewrite the routines to drop that pixel efect way down to allow for this nice vga smoothing. Interesting notes for anyone playing with the color codes.... <font class="small">Code:</font><hr /><pre> static long color_map[] = { 0xC58F54, /* WATER */ 0x4E7283, /* WATER */ 0x5B4524, /* MOUNTAIN */ 0xC8BE51, /* FARMLAND */ 0x708841, /* FOREST */ 0x34969F, /* SWAMP */ 0xC4B0A4, /* TUNDRA */ 0xAD9374, /* WASTELAND */ 0xC3572C, /* BORDER1 */ 0x2C87C3, /* BORDER2 */ 0xFFFFFF /* CAPITAL */ }; </pre><hr /> The first WATER is misnamed. Its actually PLAINS which is the default terrain. The TUNDRA stumped me for abit since there isnt a tundra in the terrain settings. The .map file makes it a dual mountains/waste province. Thats kinda nice. |
Re: can you speak C? fractal terrain? vga? tga?
Quote:
|
Re: can you speak C? fractal terrain? vga? tga?
I've updated the DomMap.zip with the ability to turn the new shading on and off and changing the various colours through command-line parameters.
|
Re: can you speak C? fractal terrain? vga? tga?
Quote:
I understand the elevation reference. Whats the "shadow map" reference? Possibly something like the effect we got from using the "bumps" filter? A bit of texturizing so that the color-by-elevation was more landscapey and less smooth? (I havent played with it yet to see) This is turning out SO nice compared to what I found in all my hunts for a random generator, that it might want to be used outside of the Dom2 community. Would it be hard to add a switch to turn off the dominion items such as capitals and borders? |
Re: can you speak C? fractal terrain? vga? tga?
Hmmm the default border color for the water provinces should probably be changed. The MapEdit tool uses red borders to find provinces. I asked and Johan says that he thinks its any color where both gg and bb are below the setting of rr. So we should be able to use red for land provinces and something like a pinkish purple for water which would look pretty good.
|
Re: can you speak C? fractal terrain? vga? tga?
Quote:
Pretty much, yes. Quote:
To allow for more dramatic shading/brightening, I added an additional "shadows map" which is also used to shade the colours. By changing the factors for the elevation and the shadow shading and brightening, you can change from a very subtle to a more dramatic (but less natural) shading. Quote:
|
Re: can you speak C? fractal terrain? vga? tga?
Quote:
|
Re: can you speak C? fractal terrain? vga? tga?
Quote:
|
Re: can you speak C? fractal terrain? vga? tga?
Quote:
|
Re: can you speak C? fractal terrain? vga? tga?
Hmmm I seem to be having problems getting the border to change. There were two places in the code for the border colors. Is the variable changing both?
|
Re: can you speak C? fractal terrain? vga? tga?
Quote:
here is some of the code PRIOR to the Last change when you made the colors into command-line variables. <font class="small">Code:</font><hr /><pre> static long BORDER_COLOR_A = 0xFF0000; static long BORDER_COLOR_B = 0xFF0000; static long CAPITAL_COLOR = 0xFFFFFF; /* * Colors for each type of terrain. */ static long color_map[] = { 0x32CD32, /* PLAINS DEFAULT Lime Green was C58F54 misnammed WATER */ 0x4682B4, /* WATER was 4E7283 now Steel Blue */ 0x5B4524, /* MOUNTAIN */ 0x7CFC00, /* FARMLAND was 0xC8BE51 now LawnGreen */ 0x228B22, /* FOREST was 0x708841 now Forest Green */ 0x20B2AA, /* SWAMP was 34969F now Light Sea Green */ 0x808080, /* TUNDRA was C4B0A4 now Gray */ 0xBC8F8F, /* WASTELAND was AD9374 now Rosey Brown */ 0xFF0000, /* BORDER1 was C3572C now Red */ 0xFF0000, /* BORDER2 was 2C87C3 now Orange */ 0xFFFFFF /* CAPITAL do NOT change this one */ }; </pre><hr /> I dont read C very well. Looking at your new code I can kindof follow what happened with the color_map variables. But I dont see where the things like "static long BORDER_COLOR_A" went to. Is this maybe why I cant seem to get the border colors to accept? |
Re: can you speak C? fractal terrain? vga? tga?
Hmm. It works for me. Are you sure you're using the latest code? Except that the land and sea colours are reversed, there doesn't seem to be a problem in setting them from the command line.
|
All times are GMT -4. The time now is 05:11 AM. |
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©1999 - 2025, Shrapnel Games, Inc. - All Rights Reserved.