diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-08-20 15:48:03 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-08-20 15:48:03 (GMT) |
| commit | b318c3721a43de9789efc6c286b41566649f5252 (patch) | |
| tree | 861c1f51b18e7ba7525b2a4903d9c7998af4a00a /src/simulation/Simulation.cpp | |
| parent | 13888623a5a7f6fa9f532570c1b733f0fcdf2a64 (diff) | |
| download | powder-b318c3721a43de9789efc6c286b41566649f5252.zip powder-b318c3721a43de9789efc6c286b41566649f5252.tar.gz | |
TPT: Powered pipe, based on jacob1's commits
Diffstat (limited to 'src/simulation/Simulation.cpp')
| -rw-r--r-- | src/simulation/Simulation.cpp | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/simulation/Simulation.cpp b/src/simulation/Simulation.cpp index 50d4cb5..2db746a 100644 --- a/src/simulation/Simulation.cpp +++ b/src/simulation/Simulation.cpp @@ -105,6 +105,7 @@ int Simulation::Load(int fullX, int fullY, GameSave * save) } parts_lastActiveIndex = NPART-1; force_stacking_check = 1; + Element_PPIP::ppip_changed = 1; for(int i = 0; i < save->signs.size() && signs.size() < MAXSIGNS; i++) { sign tempSign = save->signs[i]; @@ -2810,6 +2811,7 @@ int Simulation::create_part(int p, int x, int y, int tv) case PT_FRZW: parts[i].life = 100; break; + case PT_PPIP: case PT_PIPE: parts[i].life = 60; break; @@ -3251,6 +3253,20 @@ void Simulation::update_particles_i(int start, int inc) } } } + + if (Element_PPIP::ppip_changed) + { + for (i=0; i<=parts_lastActiveIndex; i++) + { + if (parts[i].type==PT_PPIP) + { + parts[i].tmp |= (parts[i].tmp&0xE0000000)>>3; + parts[i].tmp &= ~0xE0000000; + } + } + Element_PPIP::ppip_changed = 0; + } + //game of life! if (elementCount[PT_LIFE]>0&&++CGOL>=GSPEED)//GSPEED is frames per generation { @@ -4014,7 +4030,7 @@ killed: } r = pmap[fin_y][fin_x]; - if ((r & 0xFF) == PT_PIPE && !(parts[r>>8].tmp&0xFF)) + if (((r&0xFF)==PT_PIPE || (r&0xFF) == PT_PPIP) && !(parts[r>>8].tmp&0xFF)) { parts[r>>8].tmp = (parts[r>>8].tmp&~0xFF) | parts[i].type; parts[r>>8].temp = parts[i].temp; |
