sandboxels/mods/glenn_gases.js

412 lines
10 KiB
JavaScript
Raw Normal View History

//Glenn's Gases is licensed under the GNU LGPL.
//http://www.gnu.org/licenses/lgpl.html
//https://www.jamieswhiteshirt.com/minecraft/mods/gases/information/?Licensing
2022-09-04 09:40:21 -04:00
//This works best with the Neutronium Mod because I really don't feel like remaking coal.
//Steam exists.
//Coal only exists in the Neutronium Mod.
2022-09-04 09:40:21 -04:00
elements.coal_dust = {
color: "#363023",
behavior: behaviors.GAS,
tick: function(pixel) {
if(pixel.burning) {
2022-09-04 09:40:21 -04:00
explodeAt(pixel.x,pixel.y,5,"fire,ignited_gas")
}
},
category: "gases",
density: 561,
state: "gas",
burn: 132,
burnTime: 10,
burnInto: ["ash", "fire", "carbon_dioxide"],
};
2022-09-04 09:40:21 -04:00
//Chlorine exists.
//Natural gas is mostly ammonia, which exists.
elements.red_gas = {
color: "#c74c52",
behavior: behaviors.GAS,
tick: function(pixel) {
if(pixel.burning) {
2022-09-04 09:40:21 -04:00
explodeAt(pixel.x,pixel.y,8,"fire,ignited_gas")
}
},
category: "gases",
density: 1.5,
state: "gas",
burn: 300,
burnTime: 10,
burnInto: ["fire", "explosion", "explosion"],
};
elements.nitrous_gas = {
color: "#854428",
behavior: behaviors.GAS,
reactions: {
"water": {"elem1": "acidic_vapour", "elem2": "acidic_vapour"}
},
category: "gases",
density: 1.5,
state: "gas",
};
elements.acidic_vapour = {
color: ["#5282d1", "#4e6fad"],
behavior: [
"M2|M1 AND DB|M2",
"M1 AND DB|XX|M1 AND DB",
"M2%50|M1%50 AND DB|M2%50",
],
ignore: elements.acid.ignore,
category: "gases",
density: 1.5,
state: "gas",
};
elements.void_gas = {
color: "#111111",
behavior: behaviors.GAS,
reactions: {
"light": { "elem1": null, "chance": 0.1 },
"fire": { "elem1": null, "chance": 0.08 },
},
category: "gases",
density: 1.5,
state: "gas",
};
elements.electric_gas = {
color: ["#3693b3", "#246e64"],
behavior: [
"M2%33.3 AND CR:electric%1|M1%33.3 AND CR:electric%1|M2%33.3 AND CR:electric%1",
2022-10-03 15:37:15 -04:00
"M1%33.3 AND CR:electric%1|XX%0000000000000000000000|M1%33.3 AND CR:electric%1",
"M2%33.3 AND CR:electric%1|M1%33.3 AND CR:electric%1|M2%33.3 AND CR:electric%1",
],
hardness: 0.8,
reactions: {
"corrosive_gas": { "elem2": "turquoise_dust", "elem1": "blue_dust", "chance": 0.5 },
"blue_dust": { "elem1": null, "elem2": "turquoise_dust", "chance": 0.5 },
},
category: "gases",
density: 1.225,
state: "gas",
};
2022-09-04 09:40:21 -04:00
corrosiveGasMaxHardness = 0.6
elements.corrosive_gas = {
color: ["#2929e6", "#151cad"],
behavior: [
"M2%33.3|M1%33.3|M2%33.3",
2022-10-03 15:37:15 -04:00
"M1%33.3|XX%0000|M1%33.3",
"M2%33.3|M1%33.3|M2%33.3",
],
hardness: 0.8,
tick: function(pixel) {
//delete neighbors
for(i = 0; i < adjacentCoords.length; i++) {
nx = pixel.x + adjacentCoords[i][0];
ny = pixel.y + adjacentCoords[i][1];
if(!isEmpty(nx,ny,true)) {
2022-09-04 09:40:21 -04:00
if((elements[pixelMap[nx][ny].element].hardness || 0) <= corrosiveGasMaxHardness) {
if(Math.random() < 0.2) {
2022-09-04 09:40:21 -04:00
if(Math.random() < 1 - ((pixel.hardness || 0))) {
deletePixel(nx,ny);
};
};
};
};
};
},
reactions: {
"electric_gas": { "elem2": "blue_dust", "elem1": "turquoise_dust", "chance": 0.5 },
"turquoise_dust": { "elem1": null, "elem2": "blue_dust", "chance": 0.5 },
},
category: "gases",
density: 1.225,
state: "gas",
};
elements.blue_dust = {
color: ["#063ca1", "#042d94", "#063ca1", "#042d94", "#1d66ff"],
behavior: behaviors.POWDER,
hardness: 0.6,
category: "powders",
state: "solid",
density: 1600,
}
elements.turquoise_dust = {
color: ["#12a6a6","#1aa3a3","#12a6a6","#1aa3a3","#00ffff"],
behavior: behaviors.POWDER,
hardness: 0.6,
category: "powders",
state: "solid",
density: 1600,
}
2022-03-01 07:39:26 -05:00
if(!settings) {
settings = {}
}
if(!settings.bg) {
settings.bg = "#000000"
}
elements.black_damp = {
color: settings.bg,
behavior: behaviors.GAS,
reactions: {
"fire": { elem2: null },
},
tick: function(pixel) {
backgroundColor = hexToRGB(settings.bg);
2022-02-05 20:39:03 -05:00
pixel.rgbValue = "rgb("+backgroundColor.r+","+backgroundColor.g+","+backgroundColor.b+")";
pixel.color = pixel.rgbValue;
},
hardness: 0.6,
category: "gases",
density: 1.225,
state: "gas",
};
if(!elements.torch.reactions) {
elements.torch.reactions = {}
}
elements.torch.reactions.black_damp = { elem1: "wood" }
elements.rock_dust = {
color: "#878783",
behavior: behaviors.GAS,
reactions: {
"water": {"elem1": "dirty_water", "elem2": null }
},
category: "gases",
density: 2.45,
state: "gas",
tempHigh: 950,
stateHigh: [null,null,null,null,"magma"],
}
elements.rock.breakInto.push("rock_dust")
lightArray = ["fire", "plasma", "cold_fire", "light", "laser", "electric", "radiation", "mystic_fire", "liquid_fire", "liquid_plasma", "liquid_cold_fire", "le_liquid_light", "liquid_laser", "liquid_electric", "liquid_radiation", "liquid_mystic_fire", "magma", "liquid_light", "solid_light"]
ledArray = ["led_r", "led_g", "led_b"]
elements.iocalfaeus_gas = {
color: ["#562173", "#481b61"],
behavior: behaviors.GAS,
tick: function(pixel) {
if(!pixel.hot) {
pixel.hot = false
}
for (let i = -2; i < 3; i++) {
for (let j = -2; j < 3; j++) {
if (!isEmpty(pixel.x+j,pixel.y+i) && !outOfBounds(pixel.x+j,pixel.y+i)) {
if ((lightArray.includes(pixelMap[pixel.x+j][pixel.y+i].element)) || (pixelMap[pixel.x+j][pixel.y+i].temp >= 525) || (ledArray.includes(pixelMap[pixel.x+j][pixel.y+i].element) && pixelMap[pixel.x+j][pixel.y+i].charge)) {
pixel.hot = true
}
}
}
}
if(pixel.hot == true) {
pixel.temp += 16
}
if(pixel.hot == true && Math.random() < 0.02) {
pixel.hot = false
}
},
category: "gases",
density: 0.97,
state: "gas",
}
//Helium exists.
finineRange = 6
elements.finine = {
color: ["#ffffec", "#fafade", "#ebebd5", "#c9c9b7", "#80806f"],
behavior: [
"M2%33.3|M1%33.3|M2%33.3",
2022-10-03 15:37:15 -04:00
"M1%33.3|XX%0000|M1%33.3",
"M2%33.3|M1%33.3|M2%33.3",
],
tick: function(pixel) {
for(i = 0; i < adjacentCoords.length; i++) {
nx = pixel.x + adjacentCoords[i][0];
ny = pixel.y + adjacentCoords[i][1];
if(!isEmpty(nx,ny,true)) {
if (lifeArray.includes(pixelMap[nx][ny].element)) {
pixel.eeex = pixel.x + Math.floor(Math.random() * ((2 * finineRange) + 1)) - finineRange
pixel.eeey = pixel.y + Math.floor(Math.random() * ((2 * finineRange) + 1)) - finineRange
//if human
//handle heads
if(pixelMap[nx][ny].element == "head") {
if(isEmpty(pixel.eeex,pixel.eeey,false) && isEmpty(pixel.eeex,pixel.eeey+1,false)) {
tryMove(pixelMap[nx][ny],pixel.eeex,pixel.eeey)
tryMove(pixelMap[nx][ny+1],pixel.eeex,pixel.eeey+1)
};
} else if(pixelMap[nx][ny].element == "body") {
if(isEmpty(pixel.eeex,pixel.eeey,false) && isEmpty(pixel.eeex,pixel.eeey-1,false)) {
tryMove(pixelMap[nx][ny],pixel.eeex,pixel.eeey)
tryMove(pixelMap[nx][ny-1],pixel.eeex,pixel.eeey-1)
};
} else {
if(isEmpty(pixel.eeex,pixel.eeey,false)) {
tryMove(pixelMap[nx][ny],pixel.eeex,pixel.eeey)
};
};
};
};
};
},
category: "gases",
density: 1.225,
state: "gas",
}
//Smoke exists.
elements.ignited_gas = {
color: ["#fc9a58", "#faae3c", "#ffef3d"],
behavior: [
"M2|M1 AND CR:fire%0.5|M2",
"M1 AND CR:fire%0.5|XX|M1 AND CR:fire%0.5",
"M2|M1 AND CR:fire%0.5|M2",
],
category: "gases",
state: "gas",
density: 0.306,
burning: true,
burnTime: 30,
temp: elements.fire.temp,
burnInto: ["fire","smoke"],
hidden: true,
}
//Diabaline
elements.diabaline = {
color: "#7e4e9c",
behavior: behaviors.POWDER,
tick: function(pixel) {
if(!pixel.glow) {
pixel.glow = false
}
if(!pixel.oldColor) {
pixel.oldColor = pixel.color
}
if(!pixel.rA) {
pixel.rA = 0
}
if(!pixel.gA) {
pixel.gA = 0
}
if(!pixel.bA) {
pixel.bA = 0
}
if(!pixel.rB) {
pixel.rB = 0
}
if(!pixel.gB) {
pixel.gB = 0
}
if(!pixel.bB) {
pixel.bB = 0
}
if(!pixel.finalR) {
pixel.finalR = 0
}
if(!pixel.finalG) {
pixel.finalG = 0
}
if(!pixel.finalB) {
pixel.finalB = 0
}
if(!pixel.finalColor) {
pixel.finalColor = ""
}
for (let i = -1; i < 2; i++) {
for (let j = -1; j < 2; j++) {
if (!isEmpty(pixel.x+j,pixel.y+i) && !outOfBounds(pixel.x+j,pixel.y+i)) {
if (elements[pixelMap[pixel.x+j][pixel.y+i].element].category == "gases") {
pixel.glow = true
}
}
}
}
if(pixel.glow == true) {
pixel.rA = pixel.oldColor.split(",")[0].slice(4)
pixel.gA = pixel.oldColor.split(",")[1]
pixel.bA = pixel.oldColor.split(",")[2].slice(0,-1)
pixel.finalR = parseInt(pixel.rA) + 86
pixel.finalG = parseInt(pixel.gA) + 93
pixel.finalB = parseInt(pixel.bA) + 81
pixel.finalColor = "rgb(" + pixel.finalR + "," + pixel.finalG + "," + pixel.finalB + ")"
pixel.color = pixel.finalColor
}
if(pixel.glow == true && Math.random() < 0.02) {
pixel.glow = false
}
if(pixel.glow == false) {
pixel.color = pixel.oldColor
}
},
category: "solids",
density: 1500,
state: "solid",
}
runAfterLoad(function() {
lifeArray = Object.keys(elements).filter(function(e) {
return elements[e].category == "life";
});
if(!elements.void_gas.reactions) {
elements.void_gas.reactions = {}
};
for(i = 0; i < lifeArray.length; i++) {
elements.void_gas.reactions[lifeArray[i]] = { "elem2": null, "chance": 0.7 }
};
for(i = 0; i < lifeArray.length; i++) {
elements.black_damp.reactions[lifeArray[i]] = { "elem2": null, "chance": 0.7 }
};
elements.acidic_vapour.ignore = elements.acid.ignore
if(enabledMods.includes("mods/Neutronium Mod.js")) {
elements.coal.breakInto = "coal_dust"
}
2022-09-08 14:15:53 -04:00
if(enabledMods.includes("mods/the_ground.js")) {
2022-09-04 09:40:21 -04:00
elements.irradiated_rock_dust = {
color: "#839e78",
behavior: behaviors.RAD_GAS,
reactions: {
"water": {"elem1": "irradiated_water", "elem2": null }
},
category: "gases",
density: 2.45,
state: "gas",
tempHigh: 950,
stateHigh: [null,null,null,null,"irradiated_magma"],
}
elements.irradiated_rock.breakInto.push("irradiated_rock_dust")
}
if(enabledMods.includes("mods/boiling_rock.js")) {
elements.rock_dust.tempHigh = 3000
elements.rock_dust.stateHigh = "vaporized_rock"
2022-09-08 14:15:53 -04:00
if(enabledMods.includes("mods/the_ground.js")) {
2022-09-04 09:40:21 -04:00
elements.irradiated_rock_dust.tempHigh = 3000
elements.irradiated_rock_dust.stateHigh = "vaporized_rock"
}
}
});