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

31 lines
733 B
C
Raw Normal View History

#include <element.h>
2011-01-07 17:05:26 -06:00
int update_FRZW(UPDATE_FUNC_ARGS) {
2011-01-10 08:41:03 -06:00
int r, rx, ry;
for (rx=-1; rx<2; rx++)
for (ry=-1; ry<2; ry++)
if (x+rx>=0 && y+ry>0 && x+rx<XRES && y+ry<YRES && (rx || ry))
2011-01-07 17:05:26 -06:00
{
2011-01-10 08:41:03 -06:00
r = pmap[y+ry][x+rx];
if (!r)
2011-01-07 17:05:26 -06:00
continue;
2011-01-10 08:41:03 -06:00
if ((r&0xFF)==PT_WATR&&5>rand()%70)
2011-01-07 17:05:26 -06:00
{
2011-01-10 08:41:03 -06:00
part_change_type(r>>8,x+rx,y+ry,PT_FRZW);
2011-01-07 17:05:26 -06:00
}
}
if (parts[i].life==0&&13>rand()%2500)
{
2011-01-10 08:41:03 -06:00
part_change_type(i,x,y,PT_ICEI);
2011-01-07 17:05:26 -06:00
parts[i].ctype=PT_FRZW;
2011-01-10 08:41:03 -06:00
parts[i].temp = restrict_flt(parts[i].temp-200.0f, MIN_TEMP, MAX_TEMP);
2011-01-07 17:05:26 -06:00
}
else if ((100-(parts[i].life))>rand()%50000)
{
2011-01-10 08:41:03 -06:00
part_change_type(i,x,y,PT_ICEI);
2011-01-07 17:05:26 -06:00
parts[i].ctype=PT_FRZW;
2011-01-10 08:41:03 -06:00
parts[i].temp = restrict_flt(parts[i].temp-200.0f, MIN_TEMP, MAX_TEMP);
2011-01-07 17:05:26 -06:00
}
return 0;
}