-- Nodes that would affect the local temperature e.g. fans, heater, A/C local S = minetest.get_translator("homedecor_climate_control") homedecor.register("air_conditioner", { description = S("Air Conditioner"), mesh = "homedecor_ac.obj", tiles = { "homedecor_ac.png", homedecor.textures.glass.pane }, groups = { snappy = 3, dig_stone = 3 }, use_texture_alpha = "clip", _sound_def = { key = "node_sound_leaves_defaults", }, selection_box = { type="regular" }, crafts = { { recipe = { { "steel_ingot", "building_blocks:grate", "steel_ingot" }, { "steel_ingot", "homedecor:fan_blades", "basic_materials:motor" }, { "steel_ingot", "basic_materials:motor", "steel_ingot" }, }, }, { recipe = { { "steel_ingot", "building_blocks:grate", "steel_ingot" }, { "steel_ingot", "basic_materials:motor", "steel_ingot" }, { "steel_ingot", "basic_materials:motor", "steel_ingot" }, }, } } }) -- fans minetest.register_entity(":homedecor:mesh_desk_fan", { collisionbox = homedecor.nodebox.null, visual = "mesh", mesh = "homedecor_desk_fan.b3d", textures = {"homedecor_desk_fan_uv.png"}, visual_size = {x=10, y=10}, }) local add_mesh_desk_fan_entity = function(pos) local param2 = minetest.get_node(pos).param2 local entity = minetest.add_entity(pos, "homedecor:mesh_desk_fan") if param2 == 0 then entity:set_yaw(3.142) -- 180 degrees elseif minetest.get_node(pos).param2 == 1 then entity:set_yaw(3.142/2) -- 90 degrees elseif minetest.get_node(pos).param2 == 3 then entity:set_yaw((-3.142/2)) -- 270 degrees else entity:set_yaw(0) end return entity end homedecor.register("desk_fan", { description = S("Desk Fan"), groups = {oddly_breakable_by_hand=2}, node_box = { type = "fixed", fixed = { {-0.1875, -0.5, -0.1875, 0.1875, -0.375, 0.1875}, -- NodeBox1 } }, tiles = {"homedecor_desk_fan_body.png"}, inventory_image = "homedecor_desk_fan_inv.png", wield_image = "homedecor_desk_fan_inv.png", selection_box = { type = "regular" }, on_rotate = minetest.get_modpath("screwdriver") and screwdriver.disallow or nil, on_construct = function(pos) local meta = minetest.get_meta(pos) meta:set_string("active", "no") add_mesh_desk_fan_entity(pos) end, on_rightclick = function(pos, node, clicker, itemstack, pointed_thing) local meta = minetest.get_meta(pos) local entities = minetest.get_objects_inside_radius(pos, 0.1) local entity = entities[1] or add_mesh_desk_fan_entity(pos) if meta:get_string("active") == "no" then meta:set_string("active", "yes") entity:set_animation({x=0,y=96}, 24, 0) else meta:set_string("active", "no") entity:set_animation({x=0,y=0}, 1, 0) end end, after_dig_node = function(pos) local entities = minetest.get_objects_inside_radius(pos, 0.1) if entities[1] then entities[1]:remove() end end, crafts = { { recipe = { {"steel_ingot", "homedecor:fan_blades", "basic_materials:motor"}, {"", "steel_ingot", ""} }, } } }) -- ceiling fan homedecor.register("ceiling_fan", { description = S("Ceiling Fan"), tiles = { { name="homedecor_ceiling_fan_top.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=0.5} }, { name="homedecor_ceiling_fan_bottom.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=0.5} }, 'homedecor_ceiling_fan_sides.png', }, inventory_image = "homedecor_ceiling_fan_inv.png", node_box = { type = "fixed", fixed = { { -0.5, 0.495, -0.5, 0.5, 0.495, 0.5 }, { -0.0625, 0.375, -0.0625, 0.0625, 0.5, 0.0625 } } }, use_texture_alpha = "clip", groups = { snappy = 3, dig_stone = 3 }, light_source = minetest.LIGHT_MAX-1, _sound_def = { key = "node_sound_glass_defaults", }, crafts = { { recipe = { { "basic_materials:motor" }, { "homedecor:fan_blades" }, { "homedecor:glowlight_small_cube" } } }, { recipe = { { "basic_materials:motor" }, { "homedecor:fan_blades" }, { "homedecor:glowlight_small_cube" } } } } }) -- heating devices homedecor.register("space_heater", { description = S("Space heater"), tiles = { 'homedecor_heater_tb.png', 'homedecor_heater_tb.png', 'homedecor_heater_sides.png', 'homedecor_heater_sides.png', 'homedecor_heater_back.png', 'homedecor_heater_front.png' }, inventory_image = "homedecor_heater_inv.png", walkable = false, groups = { snappy = 3, dig_stone = 3 }, _sound_def = { key = "node_sound_wood_defaults", }, node_box = { type = "fixed", fixed = { {-0.1875, -0.5, 0.0625, 0.1875, 0, 0.3125}, } }, selection_box = { type = "fixed", fixed = {-0.1875, -0.5, 0.0625, 0.1875, 0, 0.3125} }, crafts = { { recipe = { {"basic_materials:plastic_sheet", "basic_materials:heating_element", "basic_materials:plastic_sheet"}, {"basic_materials:plastic_sheet", "homedecor:fan_blades", "basic_materials:motor"}, {"basic_materials:plastic_sheet", "basic_materials:heating_element", "basic_materials:plastic_sheet"} }, } } }) local r_cbox = homedecor.nodebox.slab_z(-0.25) homedecor.register("radiator", { mesh = "homedecor_radiator.obj", tiles = { "homedecor_generic_metal.png", "homedecor_radiator_controls.png" }, inventory_image = "homedecor_radiator_inv.png", description = S("Radiator heater"), groups = {snappy=3, dig_stone = 3}, selection_box = r_cbox, collision_box = r_cbox, _sound_def = { key = "node_sound_wood_defaults", }, crafts = { { recipe = { { "steel_ingot", "basic_materials:heating_element", "steel_ingot" }, { "basic_materials:ic", "basic_materials:heating_element", "" }, { "steel_ingot", "basic_materials:heating_element", "steel_ingot" } }, } } }) -- crafting minetest.register_craftitem(":homedecor:fan_blades", { description = S("Fan blades"), inventory_image = "homedecor_fan_blades.png" }) minetest.register_craft( { output = "homedecor:fan_blades 2", recipe = { { "", "basic_materials:plastic_sheet", "" }, { "", homedecor.materials.steel_ingot, "" }, { "basic_materials:plastic_sheet", "", "basic_materials:plastic_sheet" } }, })