posted February 15, 2000 11:23 PM
Tudor,Hmm.. let me chew on the numbers a sec...
First: Use patches instead of the entire terrain. Seumas says Tread Marks uses terrain maps of 1024x1024 pixels, but that is cut into an 8x8 grid of patches which are only 64x64 pixels.
Now, given a 64x64 patch, the variance tree (at full depth) should be no more than 13 (14 is actually redundant). This is 8K of memory for one tree times 2 trees per patch = 16K of RAM.
I store only 9 levels (I think Seumas said he ignored the last 3, so his would be 10). This is 512 bytes x2 per patch = 1024K of RAM.
I also got a few odd artifacts with 12 levels, this may be an error in my code, but it was significantly slower to calculate the variance trees, and not worth the added detail.
--Bryan