2011-01-28 13:34:16 -06:00
|
|
|
#include <element.h>
|
2011-01-07 08:13:13 -06:00
|
|
|
|
|
|
|
int update_SPAWN(UPDATE_FUNC_ARGS) {
|
2011-07-14 04:37:34 -05:00
|
|
|
if (!player[27])
|
|
|
|
create_part(-1, x, y, PT_STKM);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int update_STKM(UPDATE_FUNC_ARGS)
|
|
|
|
{
|
|
|
|
run_stickman(player, UPDATE_FUNC_SUBCALL_ARGS);
|
2011-01-07 08:13:13 -06:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-07-14 04:37:34 -05:00
|
|
|
int run_stickman(float* playerp, UPDATE_FUNC_ARGS) {
|
2011-01-10 08:41:03 -06:00
|
|
|
int r, rx, ry;
|
2011-01-07 08:13:13 -06:00
|
|
|
float pp, d;
|
|
|
|
float dt = 0.9;///(FPSB*FPSB); //Delta time in square
|
2011-06-24 17:20:01 -05:00
|
|
|
|
|
|
|
if ((parts[i].ctype>0 && parts[i].ctype<PT_NUM && ptypes[parts[i].ctype].falldown>0) || parts[i].ctype==SPC_AIR || parts[i].ctype == PT_NEUT || parts[i].ctype == PT_PHOT)
|
2011-07-14 04:37:34 -05:00
|
|
|
playerp[2] = parts[i].ctype;
|
2011-06-24 17:20:01 -05:00
|
|
|
|
2011-01-07 08:13:13 -06:00
|
|
|
//Tempirature handling
|
|
|
|
if (parts[i].temp<243)
|
|
|
|
parts[i].life -= 1;
|
|
|
|
if ((parts[i].temp<309.6f) && (parts[i].temp>=243))
|
|
|
|
parts[i].temp += 1;
|
|
|
|
|
|
|
|
//Death
|
2011-07-14 04:37:34 -05:00
|
|
|
if (parts[i].life<1 || (pv[y/CELL][x/CELL]>=4.5f && playerp[2] != SPC_AIR) ) //If his HP is less that 0 or there is very big wind...
|
2011-01-07 08:13:13 -06:00
|
|
|
{
|
|
|
|
for (r=-2; r<=1; r++)
|
|
|
|
{
|
2011-07-14 04:37:34 -05:00
|
|
|
create_part(-1, x+r, y-2, playerp[2]);
|
|
|
|
create_part(-1, x+r+1, y+2, playerp[2]);
|
|
|
|
create_part(-1, x-2, y+r+1, playerp[2]);
|
|
|
|
create_part(-1, x+2, y+r, playerp[2]);
|
2011-01-07 08:13:13 -06:00
|
|
|
}
|
|
|
|
kill_part(i); //Kill him
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
parts[i].vy += -0.7*dt; //Head up!
|
|
|
|
|
|
|
|
//Verlet integration
|
2011-07-14 04:37:34 -05:00
|
|
|
pp = 2*playerp[3]-playerp[5]+playerp[19]*dt*dt;;
|
|
|
|
playerp[5] = playerp[3];
|
|
|
|
playerp[3] = pp;
|
|
|
|
pp = 2*playerp[4]-playerp[6]+playerp[20]*dt*dt;;
|
|
|
|
playerp[6] = playerp[4];
|
|
|
|
playerp[4] = pp;
|
|
|
|
|
|
|
|
pp = 2*playerp[7]-playerp[9]+playerp[21]*dt*dt;;
|
|
|
|
playerp[9] = playerp[7];
|
|
|
|
playerp[7] = pp;
|
|
|
|
pp = 2*playerp[8]-playerp[10]+(playerp[22]+1)*dt*dt;;
|
|
|
|
playerp[10] = playerp[8];
|
|
|
|
playerp[8] = pp;
|
|
|
|
|
|
|
|
pp = 2*playerp[11]-playerp[13]+playerp[23]*dt*dt;;
|
|
|
|
playerp[13] = playerp[11];
|
|
|
|
playerp[11] = pp;
|
|
|
|
pp = 2*playerp[12]-playerp[14]+playerp[24]*dt*dt;;
|
|
|
|
playerp[14] = playerp[12];
|
|
|
|
playerp[12] = pp;
|
|
|
|
|
|
|
|
pp = 2*playerp[15]-playerp[17]+playerp[25]*dt*dt;;
|
|
|
|
playerp[17] = playerp[15];
|
|
|
|
playerp[15] = pp;
|
|
|
|
pp = 2*playerp[16]-playerp[18]+(playerp[26]+1)*dt*dt;;
|
|
|
|
playerp[18] = playerp[16];
|
|
|
|
playerp[16] = pp;
|
2011-01-07 08:13:13 -06:00
|
|
|
|
|
|
|
//Setting acceleration to 0
|
2011-07-14 04:37:34 -05:00
|
|
|
playerp[19] = 0;
|
|
|
|
playerp[20] = 0;
|
2011-01-07 08:13:13 -06:00
|
|
|
|
2011-07-14 04:37:34 -05:00
|
|
|
playerp[21] = 0;
|
|
|
|
playerp[22] = 0;
|
2011-01-07 08:13:13 -06:00
|
|
|
|
2011-07-14 04:37:34 -05:00
|
|
|
playerp[23] = 0;
|
|
|
|
playerp[24] = 0;
|
2011-01-07 08:13:13 -06:00
|
|
|
|
2011-07-14 04:37:34 -05:00
|
|
|
playerp[25] = 0;
|
|
|
|
playerp[26] = 0;
|
2011-01-07 08:13:13 -06:00
|
|
|
|
|
|
|
//Go left
|
2011-07-27 04:38:42 -05:00
|
|
|
if (((int)(playerp[0])&0x01) == 0x01)
|
2011-01-07 08:13:13 -06:00
|
|
|
{
|
2011-07-27 04:38:42 -05:00
|
|
|
if (playerp[7]>playerp[15])
|
2011-01-07 08:13:13 -06:00
|
|
|
{
|
2011-07-27 04:38:42 -05:00
|
|
|
if (!eval_move(PT_DUST, playerp[7], playerp[8], NULL))
|
2011-01-07 08:13:13 -06:00
|
|
|
{
|
2011-07-14 04:37:34 -05:00
|
|
|
playerp[21] = -3;
|
2011-07-27 04:38:42 -05:00
|
|
|
playerp[19] = -1;
|
|
|
|
playerp[22] = -3;
|
2011-01-07 08:13:13 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-07-27 04:38:42 -05:00
|
|
|
if (!eval_move(PT_DUST, playerp[15], playerp[16], NULL))
|
2011-01-07 08:13:13 -06:00
|
|
|
{
|
2011-07-27 04:38:42 -05:00
|
|
|
playerp[25] = -3;
|
2011-07-14 04:37:34 -05:00
|
|
|
playerp[19] = -1;
|
2011-07-27 04:38:42 -05:00
|
|
|
playerp[26] = -3;
|
2011-01-07 08:13:13 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Go right
|
2011-07-27 04:38:42 -05:00
|
|
|
if (((int)(playerp[0])&0x02) == 0x02)
|
2011-01-07 08:13:13 -06:00
|
|
|
{
|
2011-07-27 04:38:42 -05:00
|
|
|
if (playerp[7]<playerp[15])
|
2011-01-07 08:13:13 -06:00
|
|
|
{
|
2011-07-27 04:38:42 -05:00
|
|
|
if (!eval_move(PT_DUST, playerp[7], playerp[8], NULL))
|
2011-01-07 08:13:13 -06:00
|
|
|
{
|
2011-07-14 04:37:34 -05:00
|
|
|
playerp[21] = 3;
|
2011-07-27 04:38:42 -05:00
|
|
|
playerp[19] = 1;
|
|
|
|
playerp[22] = -3;
|
2011-01-07 08:13:13 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-07-27 04:38:42 -05:00
|
|
|
if (!eval_move(PT_DUST, playerp[15], playerp[16], NULL))
|
2011-01-07 08:13:13 -06:00
|
|
|
{
|
2011-07-27 04:38:42 -05:00
|
|
|
playerp[25] = 3;
|
2011-07-14 04:37:34 -05:00
|
|
|
playerp[19] = 1;
|
2011-07-27 04:38:42 -05:00
|
|
|
playerp[26] = -3;
|
2011-01-07 08:13:13 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Jump
|
2011-07-27 04:38:42 -05:00
|
|
|
if (((int)(playerp[0])&0x04) == 0x04 &&
|
|
|
|
(!eval_move(PT_DUST, playerp[7], playerp[8], NULL) || !eval_move(PT_DUST, playerp[15], playerp[16], NULL)))
|
2011-01-07 08:13:13 -06:00
|
|
|
{
|
2011-07-27 04:38:42 -05:00
|
|
|
parts[i].vy = -5;
|
|
|
|
playerp[22] -= 1;
|
|
|
|
playerp[26] -= 1;
|
2011-01-07 08:13:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
//Charge detector wall if foot inside
|
2011-07-14 04:37:34 -05:00
|
|
|
if (bmap[(int)(playerp[8]+0.5)/CELL][(int)(playerp[7]+0.5)/CELL]==WL_DETECT)
|
|
|
|
set_emap((int)playerp[7]/CELL, (int)playerp[8]/CELL);
|
|
|
|
if (bmap[(int)(playerp[16]+0.5)/CELL][(int)(playerp[15]+0.5)/CELL]==WL_DETECT)
|
|
|
|
set_emap((int)(playerp[15]+0.5)/CELL, (int)(playerp[16]+0.5)/CELL);
|
2011-01-07 08:13:13 -06:00
|
|
|
|
|
|
|
//Searching for particles near head
|
2011-01-10 08:41:03 -06:00
|
|
|
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 08:13:13 -06:00
|
|
|
{
|
2011-01-10 08:41:03 -06:00
|
|
|
r = pmap[y+ry][x+rx];
|
2011-03-19 07:00:53 -05:00
|
|
|
if (!r || (r>>8)>=NPART)
|
|
|
|
r = photons[y+ry][x+rx];
|
2011-05-26 11:19:40 -05:00
|
|
|
|
|
|
|
if ((!r || (r>>8)>=NPART) && !bmap[(y+ry)/CELL][(x+rx)/CELL])
|
2011-01-10 08:41:03 -06:00
|
|
|
continue;
|
2011-05-26 11:19:40 -05:00
|
|
|
|
2011-03-19 07:00:53 -05:00
|
|
|
if (ptypes[r&0xFF].falldown!=0 || (r&0xFF) == PT_NEUT || (r&0xFF) == PT_PHOT)
|
2011-01-10 08:41:03 -06:00
|
|
|
{
|
2011-07-14 04:37:34 -05:00
|
|
|
playerp[2] = r&0xFF; //Current element
|
2011-01-10 08:41:03 -06:00
|
|
|
}
|
|
|
|
if ((r&0xFF) == PT_PLNT && parts[i].life<100) //Plant gives him 5 HP
|
|
|
|
{
|
|
|
|
if (parts[i].life<=95)
|
|
|
|
parts[i].life += 5;
|
|
|
|
else
|
|
|
|
parts[i].life = 100;
|
|
|
|
kill_part(r>>8);
|
|
|
|
}
|
2011-01-07 08:13:13 -06:00
|
|
|
|
2011-01-10 08:41:03 -06:00
|
|
|
if ((r&0xFF) == PT_NEUT)
|
|
|
|
{
|
2011-06-22 10:24:23 -05:00
|
|
|
if (parts[i].life<=100) parts[i].life -= (102-parts[i].life)/2;
|
|
|
|
else parts[i].life *= 0.9f;
|
2011-01-10 08:41:03 -06:00
|
|
|
kill_part(r>>8);
|
|
|
|
}
|
|
|
|
if (bmap[(ry+y)/CELL][(rx+x)/CELL]==WL_FAN)
|
2011-07-14 04:37:34 -05:00
|
|
|
playerp[2] = SPC_AIR;
|
2011-01-07 08:13:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
//Head position
|
2011-07-14 04:37:34 -05:00
|
|
|
rx = x + 3*((((int)playerp[1])&0x02) == 0x02) - 3*((((int)playerp[1])&0x01) == 0x01);
|
|
|
|
ry = y - 3*(playerp[1] == 0);
|
2011-01-07 08:13:13 -06:00
|
|
|
|
|
|
|
//Spawn
|
2011-07-14 04:37:34 -05:00
|
|
|
if (((int)(playerp[0])&0x08) == 0x08)
|
2011-01-07 08:13:13 -06:00
|
|
|
{
|
2011-01-10 08:41:03 -06:00
|
|
|
ry -= 2*(rand()%2)+1;
|
|
|
|
r = pmap[ry][rx];
|
2011-01-07 08:13:13 -06:00
|
|
|
if (!((r>>8)>=NPART))
|
|
|
|
{
|
2011-01-13 15:24:19 -06:00
|
|
|
if (ptypes[r&0xFF].state == ST_SOLID)
|
2011-01-07 08:13:13 -06:00
|
|
|
{
|
2011-01-10 08:41:03 -06:00
|
|
|
create_part(-1, rx, ry, PT_SPRK);
|
2011-01-07 08:13:13 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-03-19 07:00:53 -05:00
|
|
|
int np = -1;
|
2011-07-14 04:37:34 -05:00
|
|
|
if (playerp[2] == SPC_AIR)
|
|
|
|
create_parts(rx + 3*((((int)playerp[1])&0x02) == 0x02) - 3*((((int)playerp[1])&0x01) == 0x01), ry, 4, 4, SPC_AIR);
|
2011-01-07 08:13:13 -06:00
|
|
|
else
|
2011-07-14 04:37:34 -05:00
|
|
|
np = create_part(-1, rx, ry, playerp[2]);
|
|
|
|
if ( (np < NPART) && np>=0 && playerp[2] != PT_PHOT && playerp[2] != SPC_AIR)
|
2011-07-27 04:58:22 -05:00
|
|
|
{
|
2011-07-14 04:37:34 -05:00
|
|
|
parts[np].vx = parts[np].vx + 5*((((int)playerp[1])&0x02) == 0x02) - 5*(((int)(playerp[1])&0x01) == 0x01);
|
2011-07-27 04:58:22 -05:00
|
|
|
parts[i].vx -= (ptypes[(int)playerp[2]].weight*parts[np].vx)/1000;
|
|
|
|
}
|
2011-07-14 04:37:34 -05:00
|
|
|
if ((np < NPART) && np>=0 && playerp[2] == PT_PHOT)
|
2011-01-07 08:13:13 -06:00
|
|
|
{
|
|
|
|
int random = abs(rand()%3-1)*3;
|
|
|
|
if (random==0)
|
|
|
|
{
|
2011-03-19 07:00:53 -05:00
|
|
|
kill_part(np);
|
2011-01-07 08:13:13 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-03-19 07:00:53 -05:00
|
|
|
parts[np].vy = 0;
|
2011-07-14 04:37:34 -05:00
|
|
|
if (((int)playerp[1])&(0x01|0x02))
|
|
|
|
parts[np].vx = (((((int)playerp[1])&0x02) == 0x02) - (((int)(playerp[1])&0x01) == 0x01))*random;
|
2011-03-19 07:00:53 -05:00
|
|
|
else
|
|
|
|
parts[np].vx = random;
|
2011-01-07 08:13:13 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Simulation of joints
|
2011-07-14 04:37:34 -05:00
|
|
|
d = 25/(pow((playerp[3]-playerp[7]), 2) + pow((playerp[4]-playerp[8]), 2)+25) - 0.5; //Fast distance
|
|
|
|
playerp[7] -= (playerp[3]-playerp[7])*d;
|
|
|
|
playerp[8] -= (playerp[4]-playerp[8])*d;
|
|
|
|
playerp[3] += (playerp[3]-playerp[7])*d;
|
|
|
|
playerp[4] += (playerp[4]-playerp[8])*d;
|
|
|
|
|
|
|
|
d = 25/(pow((playerp[11]-playerp[15]), 2) + pow((playerp[12]-playerp[16]), 2)+25) - 0.5;
|
|
|
|
playerp[15] -= (playerp[11]-playerp[15])*d;
|
|
|
|
playerp[16] -= (playerp[12]-playerp[16])*d;
|
|
|
|
playerp[11] += (playerp[11]-playerp[15])*d;
|
|
|
|
playerp[12] += (playerp[12]-playerp[16])*d;
|
|
|
|
|
|
|
|
d = 36/(pow((playerp[3]-parts[i].x), 2) + pow((playerp[4]-parts[i].y), 2)+36) - 0.5;
|
|
|
|
parts[i].vx -= (playerp[3]-parts[i].x)*d;
|
|
|
|
parts[i].vy -= (playerp[4]-parts[i].y)*d;
|
|
|
|
playerp[3] += (playerp[3]-parts[i].x)*d;
|
|
|
|
playerp[4] += (playerp[4]-parts[i].y)*d;
|
|
|
|
|
|
|
|
d = 36/(pow((playerp[11]-parts[i].x), 2) + pow((playerp[12]-parts[i].y), 2)+36) - 0.5;
|
|
|
|
parts[i].vx -= (playerp[11]-parts[i].x)*d;
|
|
|
|
parts[i].vy -= (playerp[12]-parts[i].y)*d;
|
|
|
|
playerp[11] += (playerp[11]-parts[i].x)*d;
|
|
|
|
playerp[12] += (playerp[12]-parts[i].y)*d;
|
2011-01-07 08:13:13 -06:00
|
|
|
|
2011-07-27 04:38:42 -05:00
|
|
|
if (!eval_move(PT_DUST, playerp[7], playerp[8], NULL))
|
2011-01-07 08:13:13 -06:00
|
|
|
{
|
2011-07-27 04:38:42 -05:00
|
|
|
playerp[7] = playerp[9];
|
|
|
|
playerp[8] = playerp[10];
|
2011-01-07 08:13:13 -06:00
|
|
|
}
|
|
|
|
|
2011-07-27 04:38:42 -05:00
|
|
|
if (!eval_move(PT_DUST, playerp[15], playerp[16], NULL))
|
2011-01-07 08:13:13 -06:00
|
|
|
{
|
2011-07-27 04:38:42 -05:00
|
|
|
playerp[15] = playerp[17];
|
|
|
|
playerp[16] = playerp[18];
|
|
|
|
}
|
2011-01-07 08:13:13 -06:00
|
|
|
|
2011-07-27 04:38:42 -05:00
|
|
|
//This makes stick man "pop" from obstacles
|
|
|
|
if (!eval_move(PT_DUST, playerp[7], playerp[8], NULL))
|
|
|
|
{
|
|
|
|
float t;
|
|
|
|
t = playerp[7]; playerp[7] = playerp[9]; playerp[9] = t;
|
|
|
|
t = playerp[8]; playerp[8] = playerp[10]; playerp[10] = t;
|
|
|
|
}
|
2011-01-07 08:13:13 -06:00
|
|
|
|
2011-07-27 04:38:42 -05:00
|
|
|
if (!eval_move(PT_DUST, playerp[15], playerp[16], NULL))
|
|
|
|
{
|
|
|
|
float t;
|
|
|
|
t = playerp[15]; playerp[15] = playerp[17]; playerp[17] = t;
|
|
|
|
t = playerp[16]; playerp[16] = playerp[18]; playerp[18] = t;
|
2011-01-07 08:13:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
//Keeping legs distance
|
2011-07-14 04:37:34 -05:00
|
|
|
if (pow((playerp[7] - playerp[15]), 2)<16 && pow((playerp[8]-playerp[16]), 2)<1)
|
2011-01-07 08:13:13 -06:00
|
|
|
{
|
2011-07-14 04:37:34 -05:00
|
|
|
playerp[21] -= 0.2;
|
|
|
|
playerp[25] += 0.2;
|
2011-01-07 08:13:13 -06:00
|
|
|
}
|
|
|
|
|
2011-07-14 04:37:34 -05:00
|
|
|
if (pow((playerp[3] - playerp[11]), 2)<16 && pow((playerp[4]-playerp[12]), 2)<1)
|
2011-01-07 08:13:13 -06:00
|
|
|
{
|
2011-07-14 04:37:34 -05:00
|
|
|
playerp[19] -= 0.2;
|
|
|
|
playerp[23] += 0.2;
|
2011-01-07 08:13:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
//If legs touch something
|
2011-07-14 04:37:34 -05:00
|
|
|
r = pmap[(int)(playerp[8]+0.5)][(int)(playerp[7]+0.5)];
|
2011-01-07 08:13:13 -06:00
|
|
|
if ((r&0xFF)==PT_SPRK && r && (r>>8)<NPART) //If on charge
|
|
|
|
{
|
|
|
|
parts[i].life -= (int)(rand()/1000)+38;
|
|
|
|
}
|
|
|
|
|
2011-01-10 08:41:03 -06:00
|
|
|
if (r>0 && (r>>8)<NPART)
|
2011-01-07 08:13:13 -06:00
|
|
|
{
|
2011-01-10 08:41:03 -06:00
|
|
|
if (parts[r>>8].temp>=323 || parts[r>>8].temp<=243) //If hot or cold
|
2011-01-07 08:13:13 -06:00
|
|
|
{
|
|
|
|
parts[i].life -= 2;
|
2011-07-14 04:37:34 -05:00
|
|
|
playerp[26] -= 1;
|
2011-01-07 08:13:13 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((r&0xFF)==PT_ACID) //If on acid
|
|
|
|
parts[i].life -= 5;
|
|
|
|
|
|
|
|
if ((r&0xFF)==PT_PLUT) //If on plut
|
|
|
|
parts[i].life -= 1;
|
|
|
|
|
2011-07-14 04:37:34 -05:00
|
|
|
r = pmap[(int)(playerp[16]+0.5)][(int)(playerp[15]+0.5)];
|
2011-01-07 08:13:13 -06:00
|
|
|
if ((r&0xFF)==PT_SPRK && r && (r>>8)<NPART) //If on charge
|
|
|
|
{
|
|
|
|
parts[i].life -= (int)(rand()/1000)+38;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r>0 && (r>>8)<NPART) //If hot or cold
|
|
|
|
{
|
|
|
|
if (parts[r>>8].temp>=323 || parts[r>>8].temp<=243)
|
|
|
|
{
|
|
|
|
parts[i].life -= 2;
|
2011-07-14 04:37:34 -05:00
|
|
|
playerp[22] -= 1;
|
2011-01-07 08:13:13 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((r&0xFF)==PT_ACID) //If on acid
|
|
|
|
parts[i].life -= 5;
|
|
|
|
|
|
|
|
if ((r&0xFF)==PT_PLUT) //If on plut
|
|
|
|
parts[i].life -= 1;
|
|
|
|
|
2011-07-14 04:37:34 -05:00
|
|
|
parts[i].ctype = playerp[2];
|
2011-01-07 10:18:22 -06:00
|
|
|
return 0;
|
2011-01-07 08:13:13 -06:00
|
|
|
}
|