summaryrefslogtreecommitdiff
path: root/src/elements/rime.cpp
blob: 617414b291ad1d1d49d15a146125d6ee7492492a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include "element.h"

int update_RIME(UPDATE_FUNC_ARGS) {
	int r, rx, ry;
	parts[i].vx = 0;
	parts[i].vy = 0;
	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))
			{
				r = pmap[y+ry][x+rx];
				if (!r)
					continue;
				if ((r&0xFF)==PT_SPRK)
				{
					sim->part_change_type(i,x,y,PT_FOG);
					parts[i].life = rand()%50 + 60;
				}
				else if ((r&0xFF)==PT_FOG&&parts[r>>8].life>0)
				{
					sim->part_change_type(i,x,y,PT_FOG);
					parts[i].life = parts[r>>8].life;
				}
			}
	return 0;
}