04:27 jim4 why haven't you added wc1 support? this project sucks. i'm only going to use freecraft
05:06 jim4 finished wc1 support yet? i've been waiting for 6 years
05:10 jim4 new things scare me
cad-20131209-2d230.png (511.3 KiB) Viewed 12016 times
I see that the attachments have resumed work.
04:27 jim4 why haven't you added wc1 support? this project sucks. i'm only going to use freecraft
05:06 jim4 finished wc1 support yet? i've been waiting for 6 years
05:10 jim4 new things scare me
Then after you make them all you have work out how to program it in the lua files...is that difficult, or should I just do my tileset in the same order as an existing one?
AFAIK, original Warcraft 2 tiling algorithm (the one you get by disassembling editor) uses 4 corners, instead of sides, to do tiling, and also has tiling hierarchy, with mud being top parent (mud->grass->forest, mud->water->dark_water, mud->rock)
I.e. it checks if corner is surrounded by same tile type, creating a 4-bit bitmask including each corner's state and looks it up a 16-entry array of corner permutations. If there is no such permutation, it degrades the tile to it's hierarchical parent.
Major problem with such tiling is that there is less lumber than forest tiles, leading to map disbalances. Something like a single tree tile would have fixed it.