Files
The-Powder-Toy/src/simulation/elements/ISZS.cpp
2015-12-18 01:51:22 -05:00

66 lines
1.3 KiB
C++

#include "simulation/Elements.h"
//#TPT-Directive ElementClass Element_ISZS PT_ISZS 108
Element_ISZS::Element_ISZS()
{
Identifier = "DEFAULT_PT_ISZS";
Name = "ISZS";
Colour = PIXPACK(0x662089);
MenuVisible = 1;
MenuSection = SC_NUCLEAR;
Enabled = 1;
Advection = 0.0f;
AirDrag = 0.00f * CFDS;
AirLoss = 0.90f;
Loss = 0.00f;
Collision = 0.0f;
Gravity = 0.0f;
Diffusion = 0.00f;
HotAir = -0.0007f* CFDS;
Falldown = 0;
Flammable = 0;
Explosive = 0;
Meltable = 1;
Hardness = 1;
Weight = 100;
Temperature = 140.00f;
HeatConduct = 251;
Description = "Solid form of ISOZ, slowly decays into PHOT.";
Properties = TYPE_SOLID;
LowPressure = IPL;
LowPressureTransition = NT;
HighPressure = IPH;
HighPressureTransition = NT;
LowTemperature = ITL;
LowTemperatureTransition = NT;
HighTemperature = 300.0f;
HighTemperatureTransition = PT_ISOZ;
Update = &Element_ISZS::update;
}
//#TPT-Directive ElementHeader Element_ISZS static int update(UPDATE_FUNC_ARGS)
int Element_ISZS::update(UPDATE_FUNC_ARGS)
{ // for both ISZS and ISOZ
float rr, rrr;
if (!(rand()%200) && ((int)(-4.0f*(sim->pv[y/CELL][x/CELL])))>(rand()%1000))
{
sim->create_part(i, x, y, PT_PHOT);
rr = (rand()%228+128)/127.0f;
rrr = (rand()%360)*3.14159f/180.0f;
parts[i].vx = rr*cosf(rrr);
parts[i].vy = rr*sinf(rrr);
}
return 0;
}
Element_ISZS::~Element_ISZS() {}