The-Powder-Toy/src/elements/thrm.c

30 lines
745 B
C
Raw Normal View History

#include <element.h>
2011-01-07 10:18:22 -06:00
int update_THRM(UPDATE_FUNC_ARGS) {
2011-01-09 13:23:05 -06:00
int r, rx, ry;
for (rx=-2; rx<3; rx++)
for (ry=-2; ry<3; ry++)
if (x+rx>=0 && y+ry>0 && x+rx<XRES && y+ry<YRES && (rx || ry))
2011-01-07 10:18:22 -06:00
{
2011-01-09 13:23:05 -06:00
r = pmap[y+ry][x+rx];
2011-01-07 10:18:22 -06:00
if ((r>>8)>=NPART || !r)
continue;
2011-01-09 13:23:05 -06:00
if (((r&0xFF)==PT_FIRE || (r&0xFF)==PT_PLSM || (r&0xFF)==PT_LAVA)) // TODO: could this go in update_PYRO?
2011-01-07 10:18:22 -06:00
{
if (1>(rand()%500)) {
2011-01-09 13:23:05 -06:00
part_change_type(i,x,y,PT_LAVA);
2011-01-07 10:18:22 -06:00
parts[i].ctype = PT_BMTL;
parts[i].temp = 3500.0f;
pv[y/CELL][x/CELL] += 50.0f;
} else {
2011-01-09 13:23:05 -06:00
part_change_type(i,x,y,PT_LAVA);
2011-01-07 10:18:22 -06:00
parts[i].life = 400;
parts[i].ctype = PT_THRM;
parts[i].temp = 3500.0f;
parts[i].tmp = 20;
}
}
}
return 0;
}