From 59d9071e87d281c8430f8a7485ea1b7fd0e1d73d Mon Sep 17 00:00:00 2001 From: jacksonmj Date: Thu, 28 Apr 2011 16:52:13 +0100 Subject: [PATCH] Make damp sponge much less flammable Also make evaporation cool the sponge better --- src/elements/spng.c | 54 +++++++++++++++++++++++++++++++-------------- 1 file changed, 38 insertions(+), 16 deletions(-) diff --git a/src/elements/spng.c b/src/elements/spng.c index 5bc7e9578..5ace1d6b5 100644 --- a/src/elements/spng.c +++ b/src/elements/spng.c @@ -1,7 +1,7 @@ #include int update_SPNG(UPDATE_FUNC_ARGS) { - int r, trade, rx, ry, tmp; + int r, trade, rx, ry, tmp, np; if (pv[y/CELL][x/CELL]<=3&&pv[y/CELL][x/CELL]>=-3&&parts[i].temp<=374.0f) { for (rx=-1; rx<2; rx++) @@ -62,21 +62,31 @@ int update_SPNG(UPDATE_FUNC_ARGS) { } } } - for (rx=-1; rx<2; rx++) - for (ry=-1; ry<2; ry++) - if (x+rx>=0 && y+ry>0 && x+rx>8)>=NPART || !r) - continue; - if ((r&0xFF)==PT_FIRE&&parts[i].life>0) + tmp = 0; + if (parts[i].life>0) + { + for (rx=-1; rx<2; rx++) + for (ry=-1; ry<2; ry++) + if (x+rx>=0 && y+ry>0 && x+rx>8)>=NPART || !r) + continue; + if ((r&0xFF)==PT_FIRE) + { + tmp++; + if (parts[r>>8].life>60) + parts[r>>8].life -= parts[r>>8].life/60; + else if (parts[r>>8].life>2) + parts[r>>8].life--; + } } - } - if (parts[i].temp>=374) + } + if (tmp && parts[i].life>3) + parts[i].life -= parts[i].life/3; + if (tmp>1) + tmp = tmp/2; + if (tmp || parts[i].temp>=374) for (rx=-1; rx<2; rx++) for (ry=-1; ry<2; ry++) if (x+rx>=0 && y+ry>0 && x+rx=1)//if nothing then create steam { - create_part(-1,x+rx,y+ry,PT_WTRV); + np = create_part(-1,x+rx,y+ry,PT_WTRV); + if (np>-1) + { + parts[np].temp = parts[i].temp; + tmp--; + } parts[i].life--; - parts[i].temp -= 40.0f; + parts[i].temp -= 20.0f; } } + if (tmp>0) + { + if (parts[i].life>tmp) + parts[i].life -= tmp; + else + parts[i].life = 0; + } return 0; }