Apolyton Archive  |  Preserved copy of the Apolyton Civilization Site and its forums as they stood in September 2005. Read-only; nothing here can be posted to or replied to.  |  Forum index |  About this archive |  The 1998–2001 UBB forums
Today on Apolyton WARDELL INTERVIEW PROMO A.C.S. HISTORY CHAPTER 4 GET CIV4 /w FREE PLUS! A.C.S. PHOTO GALLERY GET A.O.M. V1.1
Apolyton Civilization Forums
main| civ2| civ3| civ4| smac| ctp2| ron| moo3| galciv| galciv2| alt| about|
ApolytonPLUS | register | search | faq | new posts | pm (-/-) | upload | members
hall of fame new! | civgroups | civgroups news | interviews | the column | radio | chat | directory | news | store | PLUS
Apolyton Civilization Forums : Powered by vBulletin version 2.0.3 Apolyton Civilization Forums > Alternative Civs > Clash of Civilizations > Map Graphics Thread part III
Show a Printable Version | Email This Page to Someone! | Receive updates to this thread | Report this to Apolyton news!
04.Sep: `FC` 2.0.5 COMPLETED AND RELEASED
27.Jul: `FC` 2.0.4 COMPLETED AND RELEASED
16.Jul: `FC` 2.0.3 COMPLETED AND RELEASED

bottom of page
  
Author
Thread   
Pages (5): [ 1   2   3   4   5   ]
< Last Thread     Next Thread > Post New Thread     Post A Reply
xxjiggawhoxx is offline xxjiggawhoxx
Settler
Dallas, Tx
Dec 2002
time: 23:17
  Old Post 05-02-2003 08:46
Edit/Delete Message Reply w/Quote
#61 Report this post to a moderator
Howdy Put an end to popups!

I'm new and I'm offering to do some graphics for this game. The first thing I noticed when Mark sent me some of the files was that you people need to ORGANIZE!!! The forty-some bizillion files for the different tiles is way too much! And the Units should all be on one file. I mean the number of tiles is great, but they need to all be in one large file with some sort of key like Civ2 has. I read some of you talking about this earlier but I'm hungry right now so I just skimmed it.

I usually make cities or terrain improvement icons, so whatever you people need I could experiment on. Just email me a list or write it on here and I'll check back later.

Ok last thing: The way they organize files in Freeciv is the same as Civ2, and they use a grid system which if you mess with graphics on that game at all you already know how to alter it. Heres the tag on a settler 0, 0, "u.settlers" its in the row 0 and column 0 and its identified in the rulespec as 'u.settlers,' which specifies its defense, attack, move, etc.. Thats how it should be done, in my opinion, but I'm not really a part of this game yet, so I'm just throwing you the idea.

So ok, if you want about ten or so things made in the next few weeks I could do that, but I don't have much spare time..

vovan is offline vovan
Emperor

Oct 2001
time: 06:17
  Old Post 05-02-2003 09:06
Edit/Delete Message Reply w/Quote
#62 Report this post to a moderator
Put an end to popups!

Hi there J. (Hope you don't mind me abbreviating your name like that. )

I was looking at the image files and thinking that exact same thing. They need to be sorted out. However, I myself am not quite sure how easy it would be to put all the similar images into one file - i.e. all tiles in one file, all cities in one file, unit graphics, and such. That is the way it is done in most of the strategy games. (In all TBS's I know of, as a matter of fact.) But that needs to be discussed among the programmers. (I really don't mean to sound elitist or anything.)

The problem here is this: the games, like Civ3, SMAC, and such, in which all the similar graphics are collected in one file in the form of a table, are written in C++. And graphics files for it already include the functionality to cut out "subimages" out of big images. So, you could simply say: take image "tiles.pcx", cut out of it the rectangle (0,0,64,32) (for instance) and plug that into my variable imgDesertTile. (Where you get the coordinates from, say the settings file, as you described.) Thus, such things are very easily implemented in C++. But, I don't know if such functionality exists in any Java packages. And I am fairly confident that we would not be able to wirte that functionality had we been forced to. (OK, I will speak for myself - I would not be able to implement that.) But if somebody knows that there is such a package and is ready to devote some time to rewriting the graphics "engine" (which will probably need to be done eventually any way), they are more than welcome to.

But if not, it would still be nice to organise the images by at least putting them into different subfolders of the images folder - such as tiles, units, etc..

vovan is offline vovan
Emperor

Oct 2001
time: 06:17
  Old Post 05-02-2003 09:15
Edit/Delete Message Reply w/Quote
#63 Report this post to a moderator
Full PM-box? Change here!

I've done some quick searching of the Java API, and I think I found some classes to read the pieces of an image:

http://java.sun.com/j2se/1.4.1/docs...(int, int, int)

In general, it seems that the javax.imageio package seems to be it.

Richard Bruns is offline Richard Bruns
King
NC, USA
Nov 1999
time: 06:17
  Old Post 05-02-2003 15:29 Visit Richard Bruns's homepage!
Edit/Delete Message Reply w/Quote
#64 Report this post to a moderator
Support Apolyton buy from Amazon

I like having all the files seperate. That way they are much more portable and the game is not limited to a fixed number of graphics. The Civ2 graphics editing was quite inflexible, and the system of seperate files for each graphic is IMO much better. I certainly wouldn´t want anyone to waste coding time to change to a less flexible system.

However, I agree that different types of pictures could be in different folders. Splitting the images into terrain, units, and misc folders would be nice.

LDiCesare is offline LDiCesare
King
La Ferté sous Jouarre France
Jan 2001
time: 05:17
  Old Post 06-02-2003 01:46
Edit/Delete Message Reply w/Quote
#65 Report this post to a moderator
Remove this text

I also want the files to be separate. At least for units. Variants of a terain, I could understand to have them in a file, but I don't really like it.
I am pretty sure it is possible to do some image clipping with java API.

Here are the downsides with single file image for units, those I encountered when modding civ2, not my own programmer bias:
Finding the correct coordinates in the grid is tirign for the mouse.
Moving one unit from one place to another requires a buffer and is difficult for me.
Merging 2 or 3 files is extremely painful.
There is a limit on the number of units available (easily fixed since we don't have to have a fixed size for the image).
Screwing one file screws all the units.

With the system you suggest, you have to tie the image name to a coordinate, which means additional trouble as you have to be able to count, from zero, the number of units in the image.

I agree that we could make use of subdirectories, for units, land, etc.

Mark_Everson is offline Mark_Everson
Clash of Civilizations Project Lead
Canton, MI
Jan 1970
time: 00:17
Cool  Old Post 06-02-2003 06:44 Visit Mark_Everson's homepage!
Edit/Delete Message Reply w/Quote
#66 Report this post to a moderator
Re: Howdy Support Apolyton, buy Alpha Centauri

Hi xxjiggawhoxx, I officially welcome you to our humble project!

quote:
Originally posted by xxjiggawhoxx
I'm new and I'm offering to do some graphics for this game. The first thing I noticed when Mark sent me some of the files was that you people need to ORGANIZE!!! The forty-some bizillion files for the different tiles is way too much! And the Units should all be on one file. I mean the number of tiles is great, but they need to all be in one large file with some sort of key like Civ2 has. I read some of you talking about this earlier but I'm hungry right now so I just skimmed it.


Sounds like the concensus for now is to put a package structure for the files, but leave the separate images. I think that is best short-term in any case since we don't want to make wrenching changes in the graphics handling at this point with so many other things going on.

Hope that works for you and everyone else!

quote:
I usually make cities or terrain improvement icons, so whatever you people need I could experiment on. Just email me a list or write it on here and I'll check back later.

So ok, if you want about ten or so things made in the next few weeks I could do that, but I don't have much spare time..


There are already like 4 requests in the unit graphics thread if you're interested. I think that would be the most valuable thing at the moment. Different city images for different stages in the game could certainly be useful in the near-term also. Looking forward to seeing what you can do!

xxjiggawhoxx is offline xxjiggawhoxx
Settler
Dallas, Tx
Dec 2002
time: 23:17
  Old Post 07-02-2003 08:42
Edit/Delete Message Reply w/Quote
#67 Report this post to a moderator
Browse Apolyton AD-FREE

quote:
I like having all the files seperate. That way they are much more portable and the game is not limited to a fixed number of graphics. The Civ2 graphics editing was quite inflexible, and the system of seperate files for each graphic is IMO much better. I certainly wouldn´t want anyone to waste coding time to change to a less flexible system.


It seemed a bunch easier to me, but I'm unfamiliar with this whole seperate tile thing.

quote:
Finding the correct coordinates in the grid is tirign for the mouse.
Moving one unit from one place to another requires a buffer and is difficult for me.
Merging 2 or 3 files is extremely painful.There is a limit on the number of units available (easily fixed since we don't have to have a fixed size for the image).
Screwing one file screws all the units.


I don't understand the first one...
I wouldn't know about that, but isnt there a buffer for what you have now?
Oh since it takes about three hours and you only have to do it once, instead of coding more and more for each new tile? With the freeciv type filesystem, you just edit two files and you can add as many as you want.
I guess, if you know nothing about editing picture files...


quote:
With the system you suggest, you have to tie the image name to a coordinate, which means additional trouble as you have to be able to count, from zero, the number of units in the image.


..Zero is such a big number

Ok, well I was just expressing my opinion. Anyway I'm in the process of making a site, so I'll post my progress on there and link it here I guess.. Ok my site is now http://www.angelfire.com/empire2/xxxjiggawhoxxx

When I finish it I should have 70 cities.. The styles are Southern European, Russian/Northern Euro, Arab, African, Chineese, Japaneese/Outlying islands. This is for the Ancient Era. The Rennisance I was going to make three types. Africa/Arab, Euro, Jap/Chineese. Then Industrial Era, Computer Age, Future (like the Diamond Age in CTP2), Underwater. If you don't use all (or any) of these it won't break my heart. I think they look pretty good so far, I am almost finished with the Southern European style. Alrighty have fun making graphics.... Oh and are we going to make terrain improvements in the future or not? I don't mean like irrigation, I mean like ports, oil rigs, radar etc... Oh my name is Tyler, btw, so you can call me that or jackass or you know whatever fits.

LDiCesare is offline LDiCesare
King
La Ferté sous Jouarre France
Jan 2001
time: 05:17
  Old Post 07-02-2003 12:50
Edit/Delete Message Reply w/Quote
#68 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations

quote:
I wouldn't know about that, but isnt there a buffer for what you have now?
Oh since it takes about three hours and you only have to do it once, instead of coding more and more for each new tile? With the freeciv type filesystem, you just edit two files and you can add as many as you want.
I guess, if you know nothing about editing picture files...

I mean when I edit civ2 units files, I copy paste a lot, which means I need to clip, and that is not easy for me to clip correctly the units. I find it extremely painful.
Adding an image in either system goes this way:
Civ2: Edit units.gif, edit the rules.txt so the unit is in the rigjt place.
Freeciv: Edit the units file. Edit the units so they reference the right coordinates.
Clash: Edit a brand new image. To me the fact that I don't have to put it in an existing frame is a plus. Edit the images.xml or scenario file to give the image a name, and link all units to that name. You can then change unit images by editing the images.xml file.

I am a drawer, not a computer one, but I know how to make a drawing, and I know that it is far better for me to start from a blank sheet than a cluttered one. I would have to copy paste my picture into an existing file, which is painful for me. Adding a directory structure to the images however, makes things simpler.

xxjiggawhoxx is offline xxjiggawhoxx
Settler
Dallas, Tx
Dec 2002
time: 23:17
  Old Post 09-02-2003 09:32
Edit/Delete Message Reply w/Quote
#69 Report this post to a moderator
Support Apolyton, buy Alpha Centauri

Yeah, yeah I guess...

Last edited by xxjiggawhoxx on 09-02-2003 at 13:56

xxjiggawhoxx is offline xxjiggawhoxx
Settler
Dallas, Tx
Dec 2002
time: 23:17
  Old Post 09-02-2003 14:02
Edit/Delete Message Reply w/Quote
#70 Report this post to a moderator
Support Apolyton, buy Civilization III: Complete

Heres some mountains I made sometime between 10-4. I don't know if theyre the right size for the tiles, but if the graphics engine sets mountains ontop of a tile and then lets them overlap, I think it'll work... I dunno I was just bored and I think I have insomnia. Need sleep. Download it if youre interested in new stuff. Its a ton better than the mountain thats already in the game.... Night night

Lalala its now 5:20 the new file will be on my next post...

Last edited by xxjiggawhoxx on 09-02-2003 at 16:16

Mark_Everson is offline Mark_Everson
Clash of Civilizations Project Lead
Canton, MI
Jan 1970
time: 00:17
  Old Post 09-02-2003 16:08 Visit Mark_Everson's homepage!
Edit/Delete Message Reply w/Quote
#71 Report this post to a moderator
Suffering from ads?

Hi Tyler, the mountains look pretty cool! Why would they need to be overlays? They fill the entire tile pretty much.

IMO we need tiles that have less vertical element to them, since the ones you have will tend to cover much of any neighboring tile. Maybe a compromize between the sort of height you have in the sample mountains and what is in there now would work.

xxjiggawhoxx is offline xxjiggawhoxx
Settler
Dallas, Tx
Dec 2002
time: 23:17
  Old Post 09-02-2003 16:22
Edit/Delete Message Reply w/Quote
#72 Report this post to a moderator
Increase Your PM Length

Hmm I didnt think about it covering up other tiles... I forgot that they'll cover up units and tiles behind it... I can shrink 'um I guess. I'll do it later though.

Anyway here are the new mountains. I made 5 or 6 more for the snow/tundra type terrain. (Is the object of this game to get it to look as real as possible or what?.. I usually hate the fake looking graphics on some games, but they need to look a bit cartoonish I think.) Btw, anytime I make graphics I'm gonna bunch them up by terrain type, and if they're to be used then I'll go through the trouble of seperating them. Ok, it's really, really, really late now and I should go to sleep. (or is it early?)

Attachment: terrain001.bmp
This has been downloaded 25 time(s).

Last edited by xxjiggawhoxx on 09-02-2003 at 16:49

xxjiggawhoxx is offline xxjiggawhoxx
Settler
Dallas, Tx
Dec 2002
time: 23:17
  Old Post 10-02-2003 01:16
Edit/Delete Message Reply w/Quote
#73 Report this post to a moderator
Put an end to popups!

Okies I redid the mountains like Mark said. I didn't resize them to make them shorter, however I alligned them to where the top of the mountain was in the top corner of the tile, so there should be some overlapping, but not much. This is as much as I'm gonna do with mountains for now, cuz I'm really sick of looking at them. Heres the new download.

(Is there a way to attach it and put the image on the post or not?)

Attachment: terrain001.5.bmp
This has been downloaded 20 time(s).

Martin the Dane is offline Martin the Dane
Prince
Aarhus, Denmark
Feb 2000
time: 06:17
  Old Post 25-02-2003 19:06 Visit Martin the Dane's homepage!
Edit/Delete Message Reply w/Quote
#74 Report this post to a moderator
Support Apolyton, buy Civilization III: Complete

quote:
(Is there a way to attach it and put the image on the post or not?)
Yes Tyler, just attach it as .gif, .jpg, or .png

Forgot to mention: nice mountains, I like 'em

Last edited by Martin the Dane on 25-02-2003 at 19:12

xxjiggawhoxx is offline xxjiggawhoxx
Settler
Dallas, Tx
Dec 2002
time: 23:17
  Old Post 29-05-2003 20:07
Edit/Delete Message Reply w/Quote
#75 Report this post to a moderator
Support Apolyton, buy Call to Power 2

Hey guys, I'm back from my extended vacation of school (also couldn't remember what my password was), and now I'm on summer vacation , so I can draw some more. I'll probably start by doing all the tiles in the style I had started a long time ago. I had all the pictures somewhere, so I'll go ahead and do that, and even if you don't use it for the game they still work for Civ2 or Freeciv, so they're basically for me. I skimmed over what you all were writing, and it seems like you're busy with resources, so I'll help with that if you need. I think what would be even better once the game is completed is if all the artists that worked on it made their own tilesets and graphics. More variety = more fun! Anyway I've got to go apply for a job so I'll see y'all later.

Mark_Everson is offline Mark_Everson
Clash of Civilizations Project Lead
Canton, MI
Jan 1970
time: 00:17
  Old Post 31-05-2003 03:29 Visit Mark_Everson's homepage!
Edit/Delete Message Reply w/Quote
#76 Report this post to a moderator
Support Apolyton, buy Civilization III: Complete

Great to have you back! Looking forward to seeing your work in Clash. I can send you the latest version of the testbed if you'd like, so you can stick the images in yourself to test them. Just email me if you want it.

Gary Thomas is offline Gary Thomas
Prince
New Zealand
Mar 2001
time: 17:17
  Old Post 05-06-2003 07:22
Edit/Delete Message Reply w/Quote
#77 Report this post to a moderator
Lose 30 kilos (of popups)

As far as putting all the tiles or units in one file, that is, essentially, a matter of taste. It does have some advantages for loading, since you need to open only one file handle. Once read in, the tiles can remain in one large image, or be disassembled and stored separately. It doesn't really make any difference. Java can pick out sub-images quite happily.

We did have someone who was keen on putting the images together (particularly the coastal ones) but he didn't do it. It never seemed to be a high priority for me (and still isn't).

The small number of images we have now hardly justify a whole lot of coding purely for the sake of some rather vague notion of organization.

When the number of separate images reaches around 2000, then perhaps we should organize. Even then sub-directories would do it.

On the other hand the existing system was explicitly designed so that an artist, with no programing ability, could change the images around to see how they looked. This is why the image index file exists. And this is the reason for the present system.

An odd thing about Clash. It has now reached the stage where virtully everything in it has been hashed over, discussed, voted on, and settled one way or another.

Disorganized is really the last word I would use. Short of resources? Yes. Let down by people who say they will do things then don't? Yes. But disorganized? No.

Cheers

alms66 is offline alms66
Prince
Louisiana
Oct 1999
time: 23:17
  Old Post 03-04-2004 13:03
Edit/Delete Message Reply w/Quote
#78 Report this post to a moderator
Support Apolyton or Terrorists Win

It appears Clash will definitely be going to polygons in the future, so I'm not sure how much this would ultimately help, but I'll post it anyway. I'm sure someone has thought of some of this already, it just may not have been done yet.

I haven't looked at the code, but I assume there is a tile ID member in there. What you need to do is add a graphic number member as well. This allows you to have several tile graphics for each type of terrain and identify them by tile type (grassland, plains, mountains, etc.) using tileID and by the tile graphic in the template or by filename if there are no templates as is the case now. Nothing new, I know, but by doing it this way, you open up the possibility of an infinite number of tiles. And why is this a good thing? Well for grassland, plains, tundra and desert 3 of each gives the map enough variety, without confusing or cluttering it. For hills and mountains, 5 or more varieties really adds alot to the look of the overall map (we had 7 in EIT, but it looked good with 5 too, the artist went back and added 2 later). But the main place having more than one image improves the look of the game, as I'm sure all of us know, is in the coastal tiles. With EIT we had 30, and it truly gave a stunning feel to the map. Almost as if you were looking at a real map of a real place. Let's just say it does wonders for player immersion.

When first creating the map then, you determine tile ID normally, and based on the number of tile graphics you have for that terrain type (let's call that number x), generate a random number between 1 and x and assign that as the graphic number. Obviously, don't hard code x, scan for it. Also, the graphic number isn't generated every time, it stays the same after creation, so the map doesn't look slightly different each time you load the game, obviously.

If Clash ever switches to using graphical templates I'd suggest the following layout:

ggg
ppp
ttt
mmmmm
hhhhh
cccccccccc....etc

with g=grassland, p=plains, t=tundra, m=mountains, h=hills, & c=coastal. With this layout, it's easy to add more tiles, even more tile types, which happened to us once.

So this has all been very straight forward, logical, and while no one may have thought to do it exactly this way, it's all been done before. So why did I waste all this time and space spelling it out? Because of the text file you need in conjunction with all the above to work some magic.

First of all, let me say that we never actually got around to doing this part, we decided to tack it on to the end of the list of things to do, simply because we had the above working already and this adds extra eye candy and player immersion. It's not an essential component, but I think it will be well worth doing it. OK, so the text file has a heading for each tile type, and under that heading you have several columns of numbers (the tile graphic numbers). Each column is a grouping of tiles you'd like to keep together for random number generation purposes. For example, EIT had 30 coastal graphics for each direction. Some were drawn as beach, some as rocky coasts, some with cliffs, etc. So it looked something like this:

#COASTAL_SE#
1 .5 . 6.13
2 .7 .10.15
3 .8 .11.16
4 .9 .12.17
23.19.14
24.20.18
27.21.25
28.22.26

The first column was those grouped together as beach, and were placed anywhere the other conditions didn't exist. The second column was placed next to mountain or hill tiles because they had the cliffs. The third column, the rocky coast, went in the same locations the cliffs would be placed (using a random determination of cliffs or rocky coast). And the fourth column was the arctic column that was placed in the arctic, with icebergs and seals on the beach, etc.

So when determining the graphic number, don't apply the random number generated, match it to the number in the column and apply that number. For example, from the coastal snip above, placing an arctic tile I would need to generate a random number 1-4 since there are 4 numbers in that column, let's say a 3 came up. That would mean the graphic number member for that particular tile would be 16, so the file coastal_16 would be loaded and displayed there with all it's icebergs, seals and igloos.

Another good use for this system would be for forest overlays, especially since Clash will feature deforestation, though it can also represent partially forested areas without human intervention. Basically set it up like so:

#Forest#
1.6 .11.16
2.7 .12.17
3.8 .13.18
4.9 .14.19
5.10.15.20...and so on.

having the first column be 100% cover, the second 95%, the third 90%, etc.

Any comments/questions?

yellowdaddy is offline yellowdaddy
Prince
Saoir-Ebhor, Sasainn a tuath, Rialtas Aontach
Apr 2003
time: 05:17
  Old Post 04-04-2004 00:04 Visit yellowdaddy's homepage!
Edit/Delete Message Reply w/Quote
#79 Report this post to a moderator
spreading cities... Support Apolyton

how might this affect my "organic settlement" overlays idea...?

Me:
quote:
what about the ideas i've put forward on that front? areas of settlement/urbanisation as collections of little buildings which can form a range of city shapes, and


Mark E:
quote:
I think your cocept is intriguing. However, I found the examples currently on your web page to be hard to discern from the terrain. Since cities need to be easily-resolved when placed on a wide range of terrain tiles, that isn't a trivial problem. Also, the coding infrastructure to handle something like that does not yet exist. But we did plan to do similar things for tile graphics for forests, where deforestation would show nearly-continuous thinning of trees. So I expect that the code to handle such things will be there at some point. However it's not a priority at the moment. That is why I expect Gary is asking for the traditional whole-tile cities for the moment. We will be using them for a significant amount of time I expect.



Me:
quote:
The idea of having Flora, Fauna and Urban overlays growing, spreading, changing organically is truly an original and exciting game feature if implemented.There'll be implications for the military model as well as the economic model I imagin.
Gone are the days where you move a 1 square-filling mobile unit onto a 1 square-filling static unit (city) with two dimensional results, Bring on the polygon map and organic settlements!

Fair enough it's for the future, but I'll squeeze in a little digression, just as a mental note, i can shift it to a city overlays thread when we've got something relevant to D8 to post on one:

{How would you attack a swathe of mountain villages or }
{scattered farmsteads! you'd need to really develop the Task }
{Force idea, so you could add mongol horde-style raids perhaps.}
{different strategies too for coastal and riparian linear }
{settlements. }
{I suppose you'd need to assign admin centres or city }
{centres, as you click and draw your internal administration }
{borders, so that there is some defined place for an enemy to }
{capture, or which could potentially revolt and set up as another}
{citystate or part of another nationstate. }
{ }
{I think this would be a fascinating break from Civ where you }
{have strategic wars instead of just one-on-one unit battles. }
{ }
{When campaigning against sparse settlements and straggly }
{areas of settlement, you could capture each building one by }
{one, and thus have a defined area of control on the map, and }
{even end up in a stalemate where a large city is divided }
{between enemies. }
{ }
{As for the issue of visibility of these tiny buildings, well , one }
{solution is to have an urban background overlay - it needn't be }
{solid either - a grey/brown tint. And for the houses use more }
{contrast and shadows - i'll amend them. }



from here

-----------------------------------------------------------------------------------

I think the world has about or at least 12 (land) biomes worth having in a game:

Ice and Snow
Tundra
Boreal Forest
Deciduous Forest
Temperate Rainforest
Temperate Grassland
Savannah (Tropical Grassland)
Scrub (Dry forest)
Rocky Desert (including mountains)
Dunes
Tropical Rainforest (Jungle)
Temperate Marsh (Marsh/Bog)
Tropical Swamp
Moorland (including hills)

(I'm less keen on having "mountains" and forested hills as separate biomes)

plus:
Atoll/Reef
Sandbanks
Deep Sea
Shallow Sea
Freshwater

coastal:
sand beach
pebble beach
mud cliff
rocky cliff
rocks
mangrove
lagoon
spit

I had a list somewhere... add you're tuppence (2 cents if you're Johnny Foreigner! )

LDiCesare is offline LDiCesare
King
La Ferté sous Jouarre France
Jan 2001
time: 05:17
  Old Post 04-04-2004 00:04
Edit/Delete Message Reply w/Quote
#80 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations

Adding a pointer to which graphics we use instead of just terrain is perfetly ok. The main limitations are:
-Graphics (eince we don't have many tiles or variants, there was no need to have variants in the code).
-Features spanning more than one tile.
These are usually mountains and rivers, though between tile rivers don't necessarily need it. Mountain ranges require some tuning to get two-tiles and such (as was done in civ2 ToT if I remember well).

As for having numbers, naming conventions for the tiles and graphics: We use a set of xml files (you can dig them in the jar of the demos) which precise all kinds of things, including terrain. Having a list of graphics for one kind of terrain is quite straightforward. We may want to either let the program find a random one or let the map designer precise the variant when making the xml file (this would require a map editor but it will still end as a xml file).

yellowdaddy is offline yellowdaddy
Prince
Saoir-Ebhor, Sasainn a tuath, Rialtas Aontach
Apr 2003
time: 05:17
  Old Post 04-04-2004 17:26 Visit yellowdaddy's homepage!
Edit/Delete Message Reply w/Quote
#81 Report this post to a moderator
Put an end to popups!

quote:
Mountain ranges require some tuning to get two-tiles and such (as was done in civ2 ToT if I remember well).


yes joined-up mountain ranges... what a let down in Civ 3 where they did those bizarre Guangxi-style peaks: sticking them side by side does not a mountain range make.

alms66 is offline alms66
Prince
Louisiana
Oct 1999
time: 23:17
  Old Post 23-05-2004 14:34
Edit/Delete Message Reply w/Quote
#82 Report this post to a moderator
Get a bigger avatar today!

I'd be willing to do some tile graphics. I'm no good with humans and animals, but for things like trees, mountains, hills, etc., I can do a fairly good job. Is Clash able to handle only one size of tile? If so, I could just use the existing ones as a guide. But I seem to remember that any tile size divisible by two would work, or am I crazy?

Last edited by alms66 on 26-05-2004 at 12:04

PresidentMarcos is offline PresidentMarcos
Warlord

May 2003
time: 21:17
  Old Post 26-05-2004 07:02
Edit/Delete Message Reply w/Quote
#83 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations

What about wastelands?

Gary Thomas is offline Gary Thomas
Prince
New Zealand
Mar 2001
time: 17:17
  Old Post 26-05-2004 08:33
Edit/Delete Message Reply w/Quote
#84 Report this post to a moderator
Get a bigger avatar today!

It all works off one size at present, though the program actually scales them.

I desperately need river segments, running along the edges of the diamond shaped "squares" for my new scenario "The Dawn of Civilization, Chapter 2, Eridu". The rivers are of course the Euphrates and the Tigris. I also need a tile for irrigated land of the type found in Sumeria.

Cheers

alms66 is offline alms66
Prince
Louisiana
Oct 1999
time: 23:17
  Old Post 26-05-2004 12:12
Edit/Delete Message Reply w/Quote
#85 Report this post to a moderator
Support Apolyton buy from Amazon

Wastelands? As in what exactly. Give me some real-world example of a wasteland.

I'll take a stab at the irrigation, then rivers after. I guess just one variation would suffice for now, right? Also, the irrigation will work as an overlay, correct?

Max Sinister is offline Max Sinister
Warlord

Nov 2003
time: 05:17
  Old Post 26-05-2004 17:43 Visit Max Sinister's homepage!
Edit/Delete Message Reply w/Quote
#86 Report this post to a moderator
Avatar Enlargement: We've got the solution

About Wasteland:
Farmland that has been exploited for too much time and became infertile?
Bare rocks?
Salted lands (a big problem in hot regions where fields have to be irrigated, like in Egypt, f.e.)?
Polluted / poisoned lands?
Or even radioactive? If it's for a scenario playing during the dawn of history, certainly not...

PresidentMarcos is offline PresidentMarcos
Warlord

May 2003
time: 21:17
  Old Post 27-05-2004 03:41
Edit/Delete Message Reply w/Quote
#87 Report this post to a moderator
Inflate your Upload Space

Well, a general wasteland. Like, the Sahara after the cow-keepers got at it. Not quite a desert, but for the time being, barren and not a very nice place for life to thrive.

alms66 is offline alms66
Prince
Louisiana
Oct 1999
time: 23:17
  Old Post 27-05-2004 05:16
Edit/Delete Message Reply w/Quote
#88 Report this post to a moderator
Put an end to popups!

I can give the wasteland a try.

First things first though, What is the transparent color for the images? My editor says absolute black, RGB(0,0,0), but when I use that color, it shows up in the game, which makes the image less than purty.

Gary Thomas is offline Gary Thomas
Prince
New Zealand
Mar 2001
time: 17:17
  Old Post 27-05-2004 09:26
Edit/Delete Message Reply w/Quote
#89 Report this post to a moderator
Support Apolyton, buy Civilization 2

The irrigation won't be an overlay, largely because the irrigation itself will pretty much cover the underlying terrain with nice green crops.

Rivers need six varieties:

1. right along the north-west edge
2. right along the north-east edge
3. halfway along the north-west edge from the north end
4. halfway along the north-west edge from the west end
5. halfway along the north-east edge from the north end
6. halfway along the north-east edge from the east end

In this context "halfway" actually means nearly all the way but petering out before the actual corner.

A few squiggly tributaries extending into the squares might be a nice touch, but not too far.

Cheers

Gary Thomas is offline Gary Thomas
Prince
New Zealand
Mar 2001
time: 17:17
  Old Post 27-05-2004 09:28
Edit/Delete Message Reply w/Quote
#90 Report this post to a moderator
Support Apolyton, buy Alpha Centauri

I do not belive that we need a wasteland different from a desert, at the present stage of development of the game. I would rank a forested hill much higher in priority.

Cheers

 
Pages (5): [ 1   2   3   4   5   ]
< Last Thread     Next Thread > Post New Thread     Post A Reply
All times are GMT. The time now is 05:17.
Apolyton Time is 00:17.
    top of page
Rate This Thread:
Forum Jump:
Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is ON
vB code is ON
Smilies are ON
[IMG] code is ON
 




Contact Us - Apolyton Civilization Site - Support Us!

Building a better Apolyton through better information. Click here and take our poll!
Non-US visitors, click here!

Powered by: vBulletin Version 2.0.3
Copyright ©2000, 2001, Jelsoft Enterprises Limited.

Page generated in 0.0915 seconds (94.77% PHP - 5.23% MySQL) with 30 queries
Page Loading Time:

Support Apolyton: Amazon USA | Amazon UK | Amazon DE | Amazon FR |
Support Apolyton and get FREE PLUS, Buy from Chips&Bits: Galactic Civilizations | Galactic Civilizations: Deluxe Edition | Call to Power 2 | Civilization: The Boardgame | GURPS/ Alpha Centauri | Alpha Centauri | Civilization IV | Civilization III: Complete |


Front Page | Civilization IV | Civilization III | Civilization II | Call to Power II | Alpha Centauri | Master of Orion III
Rise of Nations | Galactic Civilizations | Galactic Civilizations II | Misc
Alt.Civs | Civ I | C:CtP I | About | News | Directory | Apolyton Store | Forums | Chat | Columns | Interviews | Newsletter
Scenario League | CSC | Clash of Civs | Spanish Site | CtP Maps | Cradle of Civ | WesW's Ctp1/2 Site | Civ3 Haven

apolyton.net | apolyton.com | civilization2.net | civilization3.net | civilization4.net | civilizationiv.info | calltopower.net | galciv.net | galciv2.net | moo3.net