Fuzzy wrote:See this line?
- Code: Select all
for (i=0; i<=100; i++){ // performs loop 100 times. The array size didn't matter as
Well, you can simplify it.
- Code: Select all
for(i=0; i<sizeof(array)-1; i++)
Using the number 100 is for demonstration purposes only (and this is the old version).
The new version uses actorcount(creep) in that space. This way we will avoid running the loop more than we need to.
(not actually in that space, another actor calculates it based off creep spawn/death, in this way actorcount will be calculated only 'actorcount("creep")x2 times perlevel....

Some of the other loops do not utilize the full array; for instance, the targetid array is used by both towers and homing missiles, but homing missiles use 100-199 in the array, while towers use 0-99.
The targetid array is actually 1000 currently, because other objects may use parts of it, too.
The new version is underway, has little or no bugs, and is fully documented. It is well over halfway complete, and will be posted when finished.
The new engine can be altered to make rts/golem games too.