diff options
Diffstat (limited to 'src/simulation/tools/Vac.cpp')
| -rw-r--r-- | src/simulation/tools/Vac.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/simulation/tools/Vac.cpp b/src/simulation/tools/Vac.cpp index 86beb54..eded57c 100644 --- a/src/simulation/tools/Vac.cpp +++ b/src/simulation/tools/Vac.cpp @@ -1,20 +1,21 @@ #include "ToolClasses.h" #include "simulation/Air.h" -//#TPT-Directive ToolClass Tool_Vac TOOL_VAC 2 +//#TPT-Directive ToolClass Tool_Vac TOOL_VAC 3 Tool_Vac::Tool_Vac() { Identifier = "DEFAULT_TOOL_VAC"; Name = "VAC"; Colour = PIXPACK(0x303030); - Description = "Reduces air pressure"; + Description = "Vacuum, reduces air pressure."; } int Tool_Vac::Perform(Simulation * sim, Particle * cpart, int x, int y, float strength) { - sim->air->pv[y/CELL][x/CELL] -= strength*0.05f;; - if(sim->air->pv[y/CELL][x/CELL] > 256.0f) + sim->air->pv[y/CELL][x/CELL] -= strength*0.05f; + + if (sim->air->pv[y/CELL][x/CELL] > 256.0f) sim->air->pv[y/CELL][x/CELL] = 256.0f; - if(sim->air->pv[y/CELL][x/CELL] < -256.0f) + else if (sim->air->pv[y/CELL][x/CELL] < -256.0f) sim->air->pv[y/CELL][x/CELL] = -256.0f; return 1; } |
