Increase speed of MIX tool and make it work with liquids (#306)

* Make MIX tool work with liquids and gases
This commit is contained in:
cxi 2016-07-12 20:34:08 -07:00 committed by jacob1
parent 5b525852b4
commit 7251f645e4

View File

@ -19,7 +19,7 @@ int Tool_Mix::Perform(Simulation * sim, Particle * cpart, int x, int y, float st
int distance = (int)(std::pow(strength, .5f) * 10);
if(!(sim->elements[thisPart&0xFF].Properties & TYPE_PART))
if(!(sim->elements[thisPart&0xFF].Properties & (TYPE_PART | TYPE_LIQUID | TYPE_GAS)))
return 0;
int newX = x + (rand() % distance) - (distance/2);
@ -32,7 +32,7 @@ int Tool_Mix::Perform(Simulation * sim, Particle * cpart, int x, int y, float st
if(!thatPart)
return 0;
if(!(sim->elements[thatPart&0xFF].Properties & TYPE_PART))
if(!(sim->elements[thatPart&0xFF].Properties & (TYPE_PART | TYPE_LIQUID | TYPE_GAS)))
return 0;
sim->pmap[y][x] = thatPart;