The-Powder-Toy/src/simulation/tools/Vac.cpp

24 lines
608 B
C++
Raw Normal View History

#include "ToolClasses.h"
#include "simulation/Air.h"
2013-06-06 22:23:48 -05:00
//#TPT-Directive ToolClass Tool_Vac TOOL_VAC 3
Tool_Vac::Tool_Vac()
{
Identifier = "DEFAULT_TOOL_VAC";
Name = "VAC";
Colour = PIXPACK(0x303030);
2013-06-06 22:23:48 -05:00
Description = "Vacuum, reduces air pressure.";
}
int Tool_Vac::Perform(Simulation * sim, Particle * cpart, int x, int y, float strength)
{
2013-06-06 22:23:48 -05:00
sim->air->pv[y/CELL][x/CELL] -= strength*0.05f;
if (sim->air->pv[y/CELL][x/CELL] > 256.0f)
2012-08-14 10:29:07 -05:00
sim->air->pv[y/CELL][x/CELL] = 256.0f;
2013-06-06 22:23:48 -05:00
else if (sim->air->pv[y/CELL][x/CELL] < -256.0f)
2012-08-14 10:29:07 -05:00
sim->air->pv[y/CELL][x/CELL] = -256.0f;
return 1;
}
Tool_Vac::~Tool_Vac() {}