summaryrefslogtreecommitdiff
path: root/src/elements/pipe.c
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-11-17 19:43:59 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-11-17 19:43:59 (GMT)
commite3594aba9e05c6865d396418c028049cda92c2f3 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /src/elements/pipe.c
parentfb43f7d23e99765ae093fc45608901cb5907d1d8 (diff)
downloadpowder-e3594aba9e05c6865d396418c028049cda92c2f3.zip
powder-e3594aba9e05c6865d396418c028049cda92c2f3.tar.gz
Remove old code
Diffstat (limited to 'src/elements/pipe.c')
-rw-r--r--src/elements/pipe.c563
1 files changed, 0 insertions, 563 deletions
diff --git a/src/elements/pipe.c b/src/elements/pipe.c
deleted file mode 100644
index 9502d38..0000000
--- a/src/elements/pipe.c
+++ /dev/null
@@ -1,563 +0,0 @@
-/*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include <element.h>
-
-#define PFLAG_NORMALSPEED 0x00010000
-
-// parts[].tmp flags
-// trigger flags to be processed this frame (trigger flags for next frame are shifted 3 bits to the left):
-#define PPIP_TMPFLAG_TRIGGER_ON 0x10000000
-#define PPIP_TMPFLAG_TRIGGER_OFF 0x08000000
-#define PPIP_TMPFLAG_TRIGGER_REVERSE 0x04000000
-#define PPIP_TMPFLAG_TRIGGERS 0x1C000000
-// current status of the pipe
-#define PPIP_TMPFLAG_PAUSED 0x02000000
-#define PPIP_TMPFLAG_REVERSED 0x01000000
-// 0x000000FF element
-// 0x00000100 is single pixel pipe
-// 0x00000200 will transfer like a single pixel pipe when in forward mode
-// 0x00001C00 forward single pixel pipe direction
-// 0x00002000 will transfer like a single pixel pipe when in reverse mode
-// 0x0001C000 reverse single pixel pipe direction
-
-signed char pos_1_rx[] = {-1,-1,-1, 0, 0, 1, 1, 1};
-signed char pos_1_ry[] = {-1, 0, 1,-1, 1,-1, 0, 1};
-
-int ppip_changed = 0;
-
-void PPIP_flood_trigger(int x, int y, int sparkedBy)
-{
- int coord_stack_limit = XRES*YRES;
- unsigned short (*coord_stack)[2];
- int coord_stack_size = 0;
- int x1, x2;
-
- // Separate flags for on and off in case PPIP is sparked by PSCN and NSCN on the same frame
- // - then PSCN can override NSCN and behaviour is not dependent on particle order
- int prop = 0;
- if (sparkedBy==PT_PSCN) prop = PPIP_TMPFLAG_TRIGGER_ON << 3;
- else if (sparkedBy==PT_NSCN) prop = PPIP_TMPFLAG_TRIGGER_OFF << 3;
- else if (sparkedBy==PT_INST) prop = PPIP_TMPFLAG_TRIGGER_REVERSE << 3;
-
- if (prop==0 || (pmap[y][x]&0xFF)!=PT_PPIP || (parts[pmap[y][x]>>8].tmp & prop))
- return;
-
- coord_stack = malloc(sizeof(unsigned short)*2*coord_stack_limit);
- coord_stack[coord_stack_size][0] = x;
- coord_stack[coord_stack_size][1] = y;
- coord_stack_size++;
-
- do
- {
- coord_stack_size--;
- x = coord_stack[coord_stack_size][0];
- y = coord_stack[coord_stack_size][1];
- x1 = x2 = x;
- // go left as far as possible
- while (x1>=CELL)
- {
- if ((pmap[y][x1-1]&0xFF)!=PT_PPIP)
- {
- break;
- }
- x1--;
- }
- // go right as far as possible
- while (x2<XRES-CELL)
- {
- if ((pmap[y][x2+1]&0xFF)!=PT_PPIP)
- {
- break;
- }
- x2++;
- }
- // fill span
- for (x=x1; x<=x2; x++)
- {
- if (!(parts[pmap[y][x]>>8].tmp & prop))
- ppip_changed = 1;
- parts[pmap[y][x]>>8].tmp |= prop;
- }
-
- // add adjacent pixels to stack
- // +-1 to x limits to include diagonally adjacent pixels
- // Don't need to check x bounds here, because already limited to [CELL, XRES-CELL]
- if (y>=CELL+1)
- for (x=x1-1; x<=x2+1; x++)
- if ((pmap[y-1][x]&0xFF)==PT_PPIP && !(parts[pmap[y-1][x]>>8].tmp & prop))
- {
- coord_stack[coord_stack_size][0] = x;
- coord_stack[coord_stack_size][1] = y-1;
- coord_stack_size++;
- if (coord_stack_size>=coord_stack_limit)
- {
- free(coord_stack);
- return;
- }
- }
- if (y<YRES-CELL-1)
- for (x=x1-1; x<=x2+1; x++)
- if ((pmap[y+1][x]&0xFF)==PT_PPIP && !(parts[pmap[y+1][x]>>8].tmp & prop))
- {
- coord_stack[coord_stack_size][0] = x;
- coord_stack[coord_stack_size][1] = y+1;
- coord_stack_size++;
- if (coord_stack_size>=coord_stack_limit)
- {
- free(coord_stack);
- return;
- }
- }
- } while (coord_stack_size>0);
- free(coord_stack);
-}
-
-void PIPE_transfer_pipe_to_part(particle *pipe, particle *part)
-{
- part->type = (pipe->tmp & 0xFF);
- part->temp = pipe->temp;
- part->life = pipe->tmp2;
- part->tmp = pipe->pavg[0];
- part->ctype = pipe->pavg[1];
- pipe->tmp &= ~0xFF;
-
- if (!ptypes[part->type].properties & TYPE_ENERGY)
- {
- part->vx = 0.0f;
- part->vy = 0.0f;
- }
- else if (part->type == PT_PHOT && part->ctype == 0x40000000)
- part->ctype = 0x3FFFFFFF;
- part->tmp2 = 0;
- part->flags = 0;
- part->dcolour = 0;
-}
-
-void PIPE_transfer_part_to_pipe(particle *part, particle *pipe)
-{
- pipe->tmp = (pipe->tmp&~0xFF) | part->type;
- pipe->temp = part->temp;
- pipe->tmp2 = part->life;
- pipe->pavg[0] = part->tmp;
- pipe->pavg[1] = part->ctype;
-}
-
-void PIPE_transfer_pipe_to_pipe(particle *src, particle *dest)
-{
- dest->tmp = (dest->tmp&~0xFF) | (src->tmp&0xFF);
- dest->temp = src->temp;
- dest->tmp2 = src->tmp2;
- dest->pavg[0] = src->pavg[0];
- dest->pavg[1] = src->pavg[1];
- src->tmp &= ~0xFF;
-}
-
-
-void pushParticle(int i, int count, int original)
-{
- int rndstore, rnd, rx, ry, r, x, y, np, q, notctype=(((parts[i].ctype)%3)+2);
- if ((parts[i].tmp&0xFF) == 0 || count >= 2)//don't push if there is nothing there, max speed of 2 per frame
- return;
- x = (int)(parts[i].x+0.5f);
- y = (int)(parts[i].y+0.5f);
- if( !(parts[i].tmp&0x200) )
- {
- //normal random push
- rndstore = rand();
- // RAND_MAX is at least 32767 on all platforms i.e. pow(8,5)-1
- // so can go 5 cycles without regenerating rndstore
- for (q=0; q<3; q++)//try to push 3 times
- {
- rnd = rndstore&7;
- rndstore = rndstore>>3;
- rx = pos_1_rx[rnd];
- ry = pos_1_ry[rnd];
- if (x+rx>=0 && y+ry>=0 && x+rx<XRES && y+ry<YRES)
- {
- r = pmap[y+ry][x+rx];
- if (!r)
- continue;
- else if (((r&0xFF)==PT_PIPE || (r&0xFF) == PT_PPIP) && parts[r>>8].ctype!=notctype && (parts[r>>8].tmp&0xFF)==0)
- {
- PIPE_transfer_pipe_to_pipe(parts+i, parts+(r>>8));
- if (r>>8 > original)
- parts[r>>8].flags |= PFLAG_NORMALSPEED;//skip particle push, normalizes speed
- count++;
- pushParticle(r>>8,count,original);
- }
- else if ((r&0xFF) == PT_PRTI) //Pass particles into PRTI for a pipe speed increase
- {
- int nnx;
- for (nnx=0; nnx<80; nnx++)
- if (!portalp[parts[r>>8].tmp][count][nnx].type)
- {
- PIPE_transfer_pipe_to_part(parts+i, &(portalp[parts[r>>8].tmp][count][nnx]));
- count++;
- break;
- }
- }
- }
- }
- }
- else //predefined 1 pixel thick pipe movement
- {
- int coords = 7 - ((parts[i].tmp>>10)&7);
- r = pmap[y+ pos_1_ry[coords]][x+ pos_1_rx[coords]];
- if (((r&0xFF)==PT_PIPE || (r&0xFF) == PT_PPIP) && parts[r>>8].ctype!=notctype && (parts[r>>8].tmp&0xFF)==0)
- {
- PIPE_transfer_pipe_to_pipe(parts+i, parts+(r>>8));
- if (r>>8 > original)
- parts[r>>8].flags |= PFLAG_NORMALSPEED;//skip particle push, normalizes speed
- count++;
- pushParticle(r>>8,count,original);
- }
- else if ((r&0xFF) == PT_PRTI) //Pass particles into PRTI for a pipe speed increase
- {
- int nnx;
- for (nnx=0; nnx<80; nnx++)
- if (!portalp[parts[r>>8].tmp][count][nnx].type)
- {
- PIPE_transfer_pipe_to_part(parts+i, &(portalp[parts[r>>8].tmp][count][nnx]));
- count++;
- break;
- }
- }
- else if ((r&0xFF) == PT_NONE) //Move particles out of pipe automatically, much faster at ends
- {
- rx = pos_1_rx[coords];
- ry = pos_1_ry[coords];
- np = create_part(-1,x+rx,y+ry,parts[i].tmp&0xFF);
- if (np!=-1)
- {
- PIPE_transfer_pipe_to_part(parts+i, parts+np);
- }
- }
- }
- return;
-}
-
-int update_PIPE(UPDATE_FUNC_ARGS) {
- int r, rx, ry, np;
- int rnd, rndstore;
- if (parts[i].tmp & PPIP_TMPFLAG_TRIGGERS)
- {
- int pause_changed = 0;
- if (parts[i].tmp & PPIP_TMPFLAG_TRIGGER_ON) // TRIGGER_ON overrides TRIGGER_OFF
- {
- if (parts[i].tmp & PPIP_TMPFLAG_PAUSED)
- pause_changed = 1;
- parts[i].tmp &= ~PPIP_TMPFLAG_PAUSED;
- }
- else if (parts[i].tmp & PPIP_TMPFLAG_TRIGGER_OFF)
- {
- if (!(parts[i].tmp & PPIP_TMPFLAG_PAUSED))
- pause_changed = 1;
- parts[i].tmp |= PPIP_TMPFLAG_PAUSED;
- }
- if (pause_changed)
- {
- int rx, ry, r;
- 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))
- {
- r = pmap[y+ry][x+rx];
- if ((r&0xFF) == PT_BRCK)
- {
- if (parts[i].tmp & PPIP_TMPFLAG_PAUSED)
- parts[r>>8].tmp = 0;
- else
- parts[r>>8].tmp = 1; //make surrounding BRCK glow
- }
- }
- }
- }
-
- if (parts[i].tmp & PPIP_TMPFLAG_TRIGGER_REVERSE)
- {
- parts[i].tmp ^= PPIP_TMPFLAG_REVERSED;
- if (parts[i].ctype == 2) //Switch colors so it goes in reverse
- parts[i].ctype = 4;
- else if (parts[i].ctype == 4)
- parts[i].ctype = 2;
- if (parts[i].tmp & 0x100) //Switch one pixel pipe direction
- {
- int coords = (parts[i].tmp>>13)&0xF;
- int coords2 = (parts[i].tmp>>9)&0xF;
- parts[i].tmp &= ~0x1FE00;
- parts[i].tmp |= coords<<9;
- parts[i].tmp |= coords2<<13;
- }
- }
-
- parts[i].tmp &= ~PPIP_TMPFLAG_TRIGGERS;
- }
-
- if (parts[i].ctype>=2 && parts[i].ctype<=4 && !(parts[i].tmp & PPIP_TMPFLAG_PAUSED))
- {
- if (parts[i].life==3)
- {
- int lastneighbor = -1;
- int neighborcount = 0;
- int count = 0;
- // make automatic pipe pattern
- 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_PIPE || (r&0xFF) == PT_PPIP)&&parts[r>>8].ctype==1)
- {
- parts[r>>8].ctype = (((parts[i].ctype)%3)+2);//reverse
- parts[r>>8].life = 6;
- if ( parts[i].tmp&0x100)//is a single pixel pipe
- {
- parts[r>>8].tmp |= 0x200;//will transfer to a single pixel pipe
- parts[r>>8].tmp |= count<<10;//coords of where it came from
- parts[i].tmp |= ((7-count)<<14);
- parts[i].tmp |= 0x2000;
- }
- neighborcount ++;
- lastneighbor = r>>8;
- }
- else if (((r&0xFF)==PT_PIPE || (r&0xFF) == PT_PPIP)&&parts[r>>8].ctype!=(((parts[i].ctype-1)%3)+2))
- {
- neighborcount ++;
- lastneighbor = r>>8;
- }
- count++;
- }
- if(neighborcount == 1)
- parts[lastneighbor].tmp |= 0x100;
- }
- else
- {
- if (parts[i].flags&PFLAG_NORMALSPEED)//skip particle push to prevent particle number being higher causing speed up
- {
- parts[i].flags &= ~PFLAG_NORMALSPEED;
- }
- else
- {
- pushParticle(i,0,i);
- }
-
- if (nt)//there is something besides PIPE around current particle
- {
- rndstore = rand();
- rnd = rndstore&7;
- rndstore = rndstore>>3;
- rx = pos_1_rx[rnd];
- ry = pos_1_ry[rnd];
- if (x+rx>=0 && y+ry>=0 && x+rx<XRES && y+ry<YRES)
- {
- r = pmap[y+ry][x+rx];
- if(!r)
- r = photons[y+ry][x+rx];
- if (surround_space && !r && (parts[i].tmp&0xFF)!=0) //creating at end
- {
- np = create_part(-1,x+rx,y+ry,parts[i].tmp&0xFF);
- if (np!=-1)
- {
- PIPE_transfer_pipe_to_part(parts+i, parts+np);
- }
- }
- //try eating particle at entrance
- else if ((parts[i].tmp&0xFF) == 0 && (ptypes[r&0xFF].properties & (TYPE_PART | TYPE_LIQUID | TYPE_GAS | TYPE_ENERGY)))
- {
- if ((r&0xFF)==PT_SOAP)
- detach(r>>8);
- PIPE_transfer_part_to_pipe(parts+(r>>8), parts+i);
- kill_part(r>>8);
- }
- else if ((parts[i].tmp&0xFF) == 0 && (r&0xFF)==PT_STOR && parts[r>>8].tmp && (ptypes[parts[r>>8].tmp].properties & (TYPE_PART | TYPE_LIQUID | TYPE_GAS | TYPE_ENERGY)))
- {
- // STOR stores properties in the same places as PIPE does
- PIPE_transfer_pipe_to_pipe(parts+(r>>8), parts+i);
- }
- }
- }
- }
- }
- else if (!parts[i].ctype && parts[i].life<=10)
- {
- if (parts[i].temp<272.15)//manual pipe colors
- {
- if (parts[i].temp>173.25&&parts[i].temp<273.15)
- {
- parts[i].ctype = 2;
- parts[i].life = 0;
- }
- if (parts[i].temp>73.25&&parts[i].temp<=173.15)
- {
- parts[i].ctype = 3;
- parts[i].life = 0;
- }
- if (parts[i].temp>=0&&parts[i].temp<=73.15)
- {
- parts[i].ctype = 4;
- parts[i].life = 0;
- }
- }
- else
- {
- // make a border
- 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))
- {
- r = pmap[y+ry][x+rx];
- if (!r)
- {
- int index = create_part(-1,x+rx,y+ry,PT_BRCK);//BRCK border, people didn't like DMND
- if (parts[i].type == PT_PPIP && index != -1)
- parts[index].tmp = 1;
- }
- }
- }
- if (parts[i].life<=1)
- parts[i].ctype = 1;
- }
- }
- else if (parts[i].ctype==1)//wait for empty space before starting to generate automatic pipe pattern
- {
- if (!parts[i].life)
- {
- 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))
- {
- if (!pmap[y+ry][x+rx] && bmap[(y+ry)/CELL][(x+rx)/CELL]!=WL_ALLOWAIR && bmap[(y+ry)/CELL][(x+rx)/CELL]!=WL_WALL && bmap[(y+ry)/CELL][(x+rx)/CELL]!=WL_WALLELEC && (bmap[(y+ry)/CELL][(x+rx)/CELL]!=WL_EWALL || emap[(y+ry)/CELL][(x+rx)/CELL]))
- parts[i].life=50;
- }
- }
- else if (parts[i].life==5)//check for beginning of pipe single pixel
- {
- int issingle = 1;
- 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&0xFF)==PT_PIPE || (r&0xFF) == PT_PPIP) && parts[i].ctype==1 && parts[i].life )
- issingle = 0;
- }
- if (issingle)
- parts[i].tmp |= 0x100;
- }
- else if (parts[i].life==2)
- {
- parts[i].ctype = 2;
- parts[i].life = 6;
- }
- }
- return 0;
-}
-
-int graphics_PIPE(GRAPHICS_FUNC_ARGS)
-{
-
- if ((cpart->tmp&0xFF)>0 && (cpart->tmp&0xFF)<PT_NUM)
- {
- //Create a temp. particle and do a subcall.
- particle tpart;
- int t;
- memset(&tpart, 0, sizeof(particle));
- tpart.type = cpart->tmp&0xFF;
- tpart.temp = cpart->temp;
- tpart.life = cpart->tmp2;
- tpart.tmp = cpart->pavg[0];
- tpart.ctype = cpart->pavg[1];
- if (tpart.type == PT_PHOT && tpart.ctype == 0x40000000)
- tpart.ctype = 0x3FFFFFFF;
- t = tpart.type;
- if (graphicscache[t].isready)
- {
- *pixel_mode = graphicscache[t].pixel_mode;
- *cola = graphicscache[t].cola;
- *colr = graphicscache[t].colr;
- *colg = graphicscache[t].colg;
- *colb = graphicscache[t].colb;
- *firea = graphicscache[t].firea;
- *firer = graphicscache[t].firer;
- *fireg = graphicscache[t].fireg;
- *fireb = graphicscache[t].fireb;
- }
- else
- {
- *colr = PIXR(ptypes[t].pcolors);
- *colg = PIXG(ptypes[t].pcolors);
- *colb = PIXB(ptypes[t].pcolors);
- if (ptypes[t].graphics_func)
- {
- (*(ptypes[t].graphics_func))(&tpart, nx, ny, pixel_mode, cola, colr, colg, colb, firea, firer, fireg, fireb);
- }
- else
- {
- graphics_DEFAULT(&tpart, nx, ny, pixel_mode, cola, colr, colg, colb, firea, firer, fireg, fireb);
- }
- }
- //*colr = PIXR(ptypes[cpart->tmp&0xFF].pcolors);
- //*colg = PIXG(ptypes[cpart->tmp&0xFF].pcolors);
- //*colb = PIXB(ptypes[cpart->tmp&0xFF].pcolors);
- }
- else
- {
- if (cpart->ctype==2)
- {
- *colr = 50;
- *colg = 1;
- *colb = 1;
- }
- else if (cpart->ctype==3)
- {
- *colr = 1;
- *colg = 50;
- *colb = 1;
- }
- else if (cpart->ctype==4)
- {
- *colr = 1;
- *colg = 1;
- *colb = 50;
- }
- else if (cpart->temp<272.15&&cpart->ctype!=1)
- {
- if (cpart->temp>173.25&&cpart->temp<273.15)
- {
- *colr = 50;
- *colg = 1;
- *colb = 1;
- }
- if (cpart->temp>73.25&&cpart->temp<=173.15)
- {
- *colr = 1;
- *colg = 50;
- *colb = 1;
- }
- if (cpart->temp>=0&&cpart->temp<=73.15)
- {
- *colr = 1;
- *colg = 1;
- *colb = 50;
- }
- }
- }
- return 0;
-}