summaryrefslogtreecommitdiff
path: root/src/simulation/elements/PSTN.cpp
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2013-01-23 12:06:06 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2013-01-23 12:06:06 (GMT)
commit00cf48b520d42965269bb0ea540a70e399dd2ae1 (patch)
tree705130b1eb1eb9970eb2b44ccda0a465d545aaaf /src/simulation/elements/PSTN.cpp
parent28fdb32bfb81f48170138c1b62fbca310ab84622 (diff)
downloadpowder-00cf48b520d42965269bb0ea540a70e399dd2ae1.zip
powder-00cf48b520d42965269bb0ea540a70e399dd2ae1.tar.gz
Fully functional pistons, retract+extend
Diffstat (limited to 'src/simulation/elements/PSTN.cpp')
-rw-r--r--src/simulation/elements/PSTN.cpp191
1 files changed, 135 insertions, 56 deletions
diff --git a/src/simulation/elements/PSTN.cpp b/src/simulation/elements/PSTN.cpp
index 3cb2320..90b85b8 100644
--- a/src/simulation/elements/PSTN.cpp
+++ b/src/simulation/elements/PSTN.cpp
@@ -50,56 +50,102 @@ Element_PSTN::Element_PSTN()
//#TPT-Directive ElementHeader Element_PSTN static int tempParts[128];
int Element_PSTN::tempParts[128];
+#define PISTON_INACTIVE 0x00
+#define PISTON_RETRACT 0x01
+#define PISTON_EXTEND 0x02
//#TPT-Directive ElementHeader Element_PSTN static int update(UPDATE_FUNC_ARGS)
int Element_PSTN::update(UPDATE_FUNC_ARGS)
{
+ if(parts[i].ctype)
+ return 0;
int maxSize = parts[i].tmp ? parts[i].tmp : 15;
- int state = parts[i].ctype;
+ int state = parts[i].tmp2;
int r, nxx, nyy, nxi, nyi, rx, ry;
- if (parts[i].life==0 && !state) {
+ int directionX = 0, directionY = 0;
+ if (parts[i].life==0 && state == PISTON_INACTIVE) {
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) && (!rx || !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 && parts[r>>8].life==3) {
- bool foundEnd = false;
- int pistonEndX, pistonEndY;
- int pistonCount = 1;
- int newSpace = 0;
- for (nxx = 0, nyy = 0, nxi = rx*-1, nyi = ry*-1; pistonCount < maxSize; nyy+=nyi, nxx+=nxi) {
- if (!(x+nxi+nxx<XRES && y+nyi+nyy<YRES && x+nxi+nxx >= 0 && y+nyi+nyy >= 0)) {
- break;
- }
- r = pmap[y+nyi+nyy][x+nxi+nxx];
- if((r&0xFF)==PT_PSTN) {
- if(!parts[r>>8].ctype)
- pistonCount++;
- } else {
- pistonEndX = x+nxi+nxx;
- pistonEndY = y+nyi+nyy;
- foundEnd = true;
- break;
+ if(parts[r>>8].ctype == PT_PSCN)
+ state = PISTON_EXTEND;
+ else
+ state = PISTON_RETRACT;
+ }
+ }
+ }
+ if(state == PISTON_EXTEND || state == PISTON_RETRACT) {
+ 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) && (!rx || !ry))
+ {
+ r = pmap[y+ry][x+rx];
+ if (!r)
+ continue;
+ if ((r&0xFF) == PT_PSTN && parts[r>>8].tmp2 == PISTON_INACTIVE) {
+ directionX = rx;
+ directionY = ry;
+ {
+ bool foundEnd = false;
+ int pistonEndX, pistonEndY;
+ int pistonCount = 1;
+ int newSpace = 0;
+ int armCount = 0;
+ for (nxx = 0, nyy = 0, nxi = directionX, nyi = directionY; pistonCount < maxSize; nyy += nyi, nxx += nxi) {
+ if (!(x+nxi+nxx<XRES && y+nyi+nyy<YRES && x+nxi+nxx >= 0 && y+nyi+nyy >= 0)) {
+ break;
+ }
+ r = pmap[y+nyi+nyy][x+nxi+nxx];
+ if((r&0xFF)==PT_PSTN) {
+ if(parts[r>>8].ctype)
+ armCount++;
+ else
+ pistonCount++;
+ } else {
+ pistonEndX = x+nxi+nxx;
+ pistonEndY = y+nyi+nyy;
+ foundEnd = true;
+ break;
+ }
}
- }
- if(foundEnd) {
- newSpace = MoveStack(sim, pistonEndX, pistonEndY, nxi, nyi, maxSize, pistonCount, false);
- if(newSpace) {
- //Create new piston section
- for(int j = 0; j < newSpace; j++) {
- int nr = sim->create_part(-3, pistonEndX+(nxi*j), pistonEndY+(nyi*j), PT_PSTN);
- if (nr!=-1) {
- parts[nr].ctype = 1;
+ if(foundEnd) {
+ if(state == PISTON_EXTEND) {
+ newSpace = MoveStack(sim, pistonEndX, pistonEndY, directionX, directionY, maxSize, pistonCount, false);
+ if(newSpace) {
+ //Create new piston section
+ for(int j = 0; j < newSpace; j++) {
+ int nr = sim->create_part(-3, pistonEndX+(nxi*j), pistonEndY+(nyi*j), PT_PSTN);
+ if (nr!=-1) {
+ parts[nr].ctype = 1;
+ }
+ }
+ }
+ } else if(state == PISTON_RETRACT) {
+ if(pistonCount > armCount)
+ pistonCount = armCount;
+ if(armCount) {
+ //Remove arm section
+ int lastPistonX = pistonEndX - nxi; //Go back to the very last piston arm particle
+ int lastPistonY = pistonEndY - nyi;
+ for(int j = 0; j < pistonCount; j++) {
+ sim->delete_part(lastPistonX+(nxi*-j), lastPistonY+(nyi*-j), 0);
+ }
+ MoveStack(sim, pistonEndX, pistonEndY, directionX, directionY, maxSize, pistonCount, true);
+ //newSpace = MoveStack(sim, pistonEndX, pistonEndY, directionX, directionY, maxSize, pistonCount, true);
}
}
}
}
+ break;
}
}
+
}
return 0;
}
@@ -109,38 +155,71 @@ int Element_PSTN::MoveStack(Simulation * sim, int stackX, int stackY, int direct
{
bool foundEnd = false, foundParts = false;
int posX, posY, r, spaces = 0, currentPos = 0;
- for(posX = stackX, posY = stackY; currentPos < size; posX += directionX, posY += directionY)
- {
- if (!(posX < XRES && posY < YRES && posX >= 0 && posY >= 0)) {
- break;
+ if(retract){
+ for(posX = stackX, posY = stackY; currentPos < size; posX += directionX, posY += directionY) {
+ if (!(posX < XRES && posY < YRES && posX >= 0 && posY >= 0)) {
+ break;
+ }
+ r = sim->pmap[posY][posX];
+ if(!r) {
+ spaces++;
+ foundEnd = true;
+ if(spaces >= amount)
+ break;
+ } else {
+ foundParts = true;
+ tempParts[currentPos++] = r>>8;
+ }
}
- r = sim->pmap[posY][posX];
- if(!r) {
- spaces++;
- foundEnd = true;
- if(spaces >= amount)
+ if(amount > spaces)
+ amount = spaces;
+ if(foundParts && foundEnd) {
+ //Move particles
+ for(int j = 0; j < currentPos; j++) {
+ int jP = tempParts[j];
+ sim->parts[jP].x += (float)((-directionX)*amount);
+ sim->parts[jP].y += (float)((-directionY)*amount);
+ int nPx = (int)(sim->parts[jP].x + 0.5f);
+ int nPy = (int)(sim->parts[jP].y + 0.5f);
+ sim->pmap[nPy][nPx] = sim->parts[jP].type|(jP<<8);
+ }
+ return amount;
+ }
+ if(!foundParts && foundEnd)
+ return amount;
+ } else {
+ for(posX = stackX, posY = stackY; currentPos < size; posX += directionX, posY += directionY) {
+ if (!(posX < XRES && posY < YRES && posX >= 0 && posY >= 0)) {
break;
- } else {
- foundParts = true;
- tempParts[currentPos++] = r>>8;
+ }
+ r = sim->pmap[posY][posX];
+ if(!r) {
+ spaces++;
+ foundEnd = true;
+ if(spaces >= amount)
+ break;
+ } else {
+ foundParts = true;
+ tempParts[currentPos++] = r>>8;
+ }
}
- }
- if(amount > spaces)
- amount = spaces;
- if(foundParts && foundEnd) {
- //Move particles
- for(int j = 0; j < currentPos; j++) {
- int jP = tempParts[j];
- sim->parts[jP].x += (float)(directionX*amount);
- sim->parts[jP].y += (float)(directionY*amount);
- int nPx = (int)(sim->parts[jP].x + 0.5f);
- int nPy = (int)(sim->parts[jP].y + 0.5f);
- sim->pmap[nPy][nPx] = sim->parts[jP].type|(jP<<8);
+ if(amount > spaces)
+ amount = spaces;
+ if(foundParts && foundEnd) {
+ //Move particles
+ for(int j = 0; j < currentPos; j++) {
+ int jP = tempParts[j];
+ sim->parts[jP].x += (float)(directionX*amount);
+ sim->parts[jP].y += (float)(directionY*amount);
+ int nPx = (int)(sim->parts[jP].x + 0.5f);
+ int nPy = (int)(sim->parts[jP].y + 0.5f);
+ sim->pmap[nPy][nPx] = sim->parts[jP].type|(jP<<8);
+ }
+ return amount;
}
- return amount;
+ if(!foundParts && foundEnd)
+ return amount;
}
- if(!foundParts && foundEnd)
- return amount;
return 0;
}