mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-15 06:50:41 +01:00
Optomised code in mcl_support.lua
This commit is contained in:
parent
535c130bae
commit
ff885f52ff
|
@ -1,335 +1,64 @@
|
|||
local default = minetest.get_modpath("default") and default or {}
|
||||
-- Mineclone2 Support
|
||||
stone_sounds = nil
|
||||
if minetest.get_modpath("mcl_sounds") then
|
||||
stone_sounds = mcl_sounds.node_sound_stone_defaults()
|
||||
else
|
||||
stone_sounds = default.node_sound_stone_defaults()
|
||||
end
|
||||
|
||||
mt_light_max = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
mt_light_max = mcl_core.LIGHT_MAX
|
||||
else
|
||||
mt_light_max = default.LIGHT_MAX
|
||||
end
|
||||
|
||||
copper_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
copper_ingrediant = "mcl_copper:copper_ingot"
|
||||
else
|
||||
copper_ingrediant = 'default:copper_ingot'
|
||||
end
|
||||
|
||||
iron_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
iron_ingrediant = "mcl_core:iron_ingot"
|
||||
else
|
||||
iron_ingrediant = 'default:steel_ingot'
|
||||
end
|
||||
|
||||
iron_lump_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
iron_lump_ingrediant = "mcl_raw_ores:raw_iron"
|
||||
else
|
||||
iron_lump_ingrediant = 'default:iron_lump'
|
||||
end
|
||||
|
||||
gold_lump_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
gold_lump_ingrediant = "mcl_raw_ores:raw_gold"
|
||||
else
|
||||
gold_lump_ingrediant = 'default:gold_lump'
|
||||
end
|
||||
|
||||
copper_lump_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
copper_lump_ingrediant = "mcl_raw_ores:raw_copper"
|
||||
else
|
||||
copper_lump_ingrediant = 'default:copper_lump'
|
||||
end
|
||||
|
||||
mese_crystal_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
mese_crystal_ingrediant = "mesecons:wire_00000000_off"
|
||||
else
|
||||
mese_crystal_ingrediant = 'default:mese_crystal'
|
||||
end
|
||||
|
||||
diamond_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
diamond_ingrediant = "mcl_core:diamond"
|
||||
else
|
||||
diamond_ingrediant = 'default:diamond'
|
||||
end
|
||||
|
||||
glass_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
glass_ingrediant = "mcl_core:glass"
|
||||
else
|
||||
glass_ingrediant = 'default:glass'
|
||||
end
|
||||
|
||||
brick_block_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
brick_block_ingrediant = "mcl_core:brick_block"
|
||||
else
|
||||
brick_block_ingrediant = 'default:brick'
|
||||
end
|
||||
|
||||
mese_block_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
mese_block_ingrediant = "mesecons_torch:redstoneblock"
|
||||
else
|
||||
mese_block_ingrediant = "default:mese"
|
||||
end
|
||||
|
||||
|
||||
paper_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
paper_ingrediant = "mcl_core:paper"
|
||||
else
|
||||
paper_ingrediant = 'default:paper'
|
||||
end
|
||||
|
||||
|
||||
obsidian_glass_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
obsidian_glass_ingrediant = "mcl_core:obsidian"
|
||||
else
|
||||
obsidian_glass_ingrediant = 'default:obsidian_glass'
|
||||
end
|
||||
|
||||
obsidian_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
obsidian_ingrediant = "mcl_core:obsidian"
|
||||
else
|
||||
obsidian_ingrediant = 'default:obsidian'
|
||||
end
|
||||
|
||||
green_dye_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
green_dye_ingrediant = "mcl_dye:green"
|
||||
else
|
||||
green_dye_ingrediant = 'dye:green'
|
||||
end
|
||||
|
||||
blue_dye_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
blue_dye_ingrediant = "mcl_dye:blue"
|
||||
else
|
||||
blue_dye_ingrediant = 'dye:blue'
|
||||
end
|
||||
|
||||
red_dye_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
red_dye_ingrediant = "mcl_dye:red"
|
||||
else
|
||||
red_dye_ingrediant = 'dye:red'
|
||||
end
|
||||
|
||||
white_dye_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
white_dye_ingrediant = "mcl_dye:white"
|
||||
else
|
||||
white_dye_ingrediant = 'dye:white'
|
||||
end
|
||||
|
||||
gold_ingot_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
gold_ingot_ingrediant = "mcl_core:gold_ingot"
|
||||
else
|
||||
gold_ingot_ingrediant = 'default:gold_ingot'
|
||||
end
|
||||
|
||||
chest_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
chest_ingrediant = "mcl_chests:chest"
|
||||
else
|
||||
chest_ingrediant = "default:chest"
|
||||
end
|
||||
|
||||
stone_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
stone_ingrediant = "mcl_core:stone"
|
||||
else
|
||||
stone_ingrediant = "default:stone"
|
||||
end
|
||||
|
||||
wood_fence_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
wood_fence_ingrediant = "group:fence_wood"
|
||||
else
|
||||
wood_fence_ingrediant = "default:fence_wood"
|
||||
end
|
||||
|
||||
|
||||
diamond_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
diamond_ingrediant = "mcl_core:diamond"
|
||||
else
|
||||
diamond_ingrediant = "default:diamond"
|
||||
end
|
||||
|
||||
bronze_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
bronze_ingrediant = "mcl_copper:copper_ingot"
|
||||
else
|
||||
bronze_ingrediant = 'default:bronze_ingot'
|
||||
end
|
||||
|
||||
tin_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
tin_ingrediant = "moreores:tin_ingot"
|
||||
else
|
||||
tin_ingrediant = 'default:tin_ingot'
|
||||
end
|
||||
|
||||
sandstone_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
sandstone_ingrediant = "mcl_core:sandstone"
|
||||
else
|
||||
sandstone_ingrediant = 'default:desert_stone'
|
||||
end
|
||||
|
||||
sand_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
sand_ingrediant = "mcl_core:sand"
|
||||
else
|
||||
sand_ingrediant = 'default:sand'
|
||||
end
|
||||
|
||||
gravel_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
gravel_ingrediant = "mcl_core:gravel"
|
||||
else
|
||||
gravel_ingrediant = 'default:gravel'
|
||||
end
|
||||
|
||||
desert_stone_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
desert_stone_ingrediant = "mcl_core:redsandstone"
|
||||
else
|
||||
desert_stone_ingrediant = 'default:desert_stone'
|
||||
end
|
||||
|
||||
desert_sand_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
desert_sand_ingrediant = "mcl_core:redsand"
|
||||
else
|
||||
desert_sand_ingrediant = 'default:desert_sand'
|
||||
end
|
||||
|
||||
|
||||
|
||||
furnace_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
furnace_ingrediant = "mcl_furnaces:furnace"
|
||||
else
|
||||
furnace_ingrediant = 'default:furnace'
|
||||
end
|
||||
|
||||
mossy_cobble_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
mossy_cobble_ingrediant = "mcl_core:mossycobble"
|
||||
else
|
||||
mossy_cobble_ingrediant = 'default:mossycobble'
|
||||
end
|
||||
|
||||
cobble_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
cobble_ingrediant = "mcl_core:cobble"
|
||||
else
|
||||
cobble_ingrediant = 'default:cobble'
|
||||
end
|
||||
|
||||
snow_block_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
snow_block_ingrediant = "mcl_core:snowblock"
|
||||
else
|
||||
snow_block_ingrediant = 'default:snowblock'
|
||||
end
|
||||
|
||||
ice_block_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
ice_block_ingrediant = "mcl_core:ice"
|
||||
else
|
||||
ice_block_ingrediant = 'default:ice'
|
||||
end
|
||||
|
||||
granite_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
granite_ingrediant = "mcl_core:granite"
|
||||
else
|
||||
granite_ingrediant = 'technic:granite'
|
||||
end
|
||||
|
||||
granite_bricks_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
granite_bricks_ingrediant = "mcl_core:granite_smooth"
|
||||
else
|
||||
granite_bricks_ingrediant = 'technic:granite_bricks'
|
||||
end
|
||||
|
||||
coal_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
coal_ingrediant = "group:coal"
|
||||
else
|
||||
coal_ingrediant = "default:coal_lump"
|
||||
end
|
||||
|
||||
dirt_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
dirt_ingrediant = "mcl_core:dirt"
|
||||
else
|
||||
dirt_ingrediant = "default:dirt"
|
||||
end
|
||||
|
||||
mesecons_fiber_ingrediant = nil
|
||||
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
mesecons_fiber_ingrediant = "mesecons:wire_00000000_off"
|
||||
else
|
||||
mesecons_fiber_ingrediant = "mesecons_materials:fiber"
|
||||
end
|
||||
|
||||
stick_ingrediant = nil
|
||||
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
stick_ingrediant = "mcl_core:stick"
|
||||
else
|
||||
stick_ingrediant = "default:stick"
|
||||
end
|
||||
|
||||
emtpy_bucket_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
emtpy_bucket_ingrediant = "mcl_buckets:bucket_empty"
|
||||
else
|
||||
emtpy_bucket_ingrediant = "bucket:bucket_empty"
|
||||
end
|
||||
|
||||
water_bucket_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
water_bucket_ingrediant = "mcl_buckets:bucket_water"
|
||||
else
|
||||
water_bucket_ingrediant = "bucket:bucket_water"
|
||||
end
|
||||
stone_sounds = minetest.get_modpath("mcl_sounds") and mcl_sounds.node_sound_stone_defaults() or default.node_sound_stone_defaults()
|
||||
mt_light_max = minetest.get_modpath("mcl_core") and mcl_core.LIGHT_MAX or default.LIGHT_MAX
|
||||
copper_ingrediant = minetest.get_modpath("mcl_core") and "mcl_copper:copper_ingot" or 'default:copper_ingot'
|
||||
iron_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:iron_ingot" or 'default:steel_ingot'
|
||||
iron_lump_ingrediant = minetest.get_modpath("mcl_core") and "mcl_raw_ores:raw_iron" or 'default:iron_lump'
|
||||
gold_lump_ingrediant = minetest.get_modpath("mcl_core") and "mcl_raw_ores:raw_gold" or 'default:gold_lump'
|
||||
copper_lump_ingrediant = minetest.get_modpath("mcl_core") and "mcl_raw_ores:raw_copper" or 'default:copper_lump'
|
||||
mese_crystal_ingrediant = minetest.get_modpath("mcl_core") and "mesecons:wire_00000000_off" or 'default:mese_crystal'
|
||||
diamond_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:diamond" or 'default:diamond'
|
||||
glass_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:glass" or 'default:glass'
|
||||
brick_block_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:brick_block" or 'default:brick'
|
||||
mese_block_ingrediant = minetest.get_modpath("mcl_core") and "mesecons_torch:redstoneblock" or "default:mese"
|
||||
paper_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:paper" or 'default:paper'
|
||||
obsidian_glass_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:obsidian" or 'default:obsidian_glass'
|
||||
obsidian_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:obsidian" or 'default:obsidian'
|
||||
green_dye_ingrediant = minetest.get_modpath("mcl_core") and "mcl_dye:green" or 'dye:green'
|
||||
blue_dye_ingrediant = minetest.get_modpath("mcl_core") and "mcl_dye:blue" or 'dye:blue'
|
||||
red_dye_ingrediant = minetest.get_modpath("mcl_core") and "mcl_dye:red" or 'dye:red'
|
||||
white_dye_ingrediant = minetest.get_modpath("mcl_core") and "mcl_dye:white" or 'dye:white'
|
||||
gold_ingot_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:gold_ingot" or 'default:gold_ingot'
|
||||
chest_ingrediant = minetest.get_modpath("mcl_core") and "mcl_chests:chest" or "default:chest"
|
||||
stone_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:stone" or "default:stone"
|
||||
wood_fence_ingrediant = minetest.get_modpath("mcl_core") and "group:fence_wood" or "default:fence_wood"
|
||||
diamond_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:diamond" or "default:diamond"
|
||||
bronze_ingrediant = minetest.get_modpath("mcl_core") and "mcl_copper:copper_ingot" or 'default:bronze_ingot'
|
||||
tin_ingrediant = minetest.get_modpath("mcl_core") and "moreores:tin_ingot" or 'default:tin_ingot'
|
||||
sandstone_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:sandstone" or 'default:desert_stone'
|
||||
sand_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:sand" or 'default:sand'
|
||||
gravel_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:gravel" or 'default:gravel'
|
||||
desert_stone_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:redsandstone" or 'default:desert_stone'
|
||||
desert_sand_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:redsand" or 'default:desert_sand'
|
||||
furnace_ingrediant = minetest.get_modpath("mcl_core") and "mcl_furnaces:furnace" or 'default:furnace'
|
||||
mossy_cobble_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:mossycobble" or 'default:mossycobble'
|
||||
cobble_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:cobble" or 'default:cobble'
|
||||
snow_block_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:snowblock" or 'default:snowblock'
|
||||
ice_block_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:ice" or 'default:ice'
|
||||
granite_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:granite" or 'technic:granite'
|
||||
granite_bricks_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:granite_smooth" or 'technic:granite_bricks'
|
||||
coal_ingrediant = minetest.get_modpath("mcl_core") and "group:coal" or "default:coal_lump"
|
||||
dirt_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:dirt" or "default:dirt"
|
||||
mesecons_fiber_ingrediant = minetest.get_modpath("mcl_core") and "mesecons:wire_00000000_off" or "mesecons_materials:fiber"
|
||||
stick_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:stick" or "default:stick"
|
||||
emtpy_bucket_ingrediant = minetest.get_modpath("mcl_core") and "mcl_buckets:bucket_empty" or "bucket:bucket_empty"
|
||||
water_bucket_ingrediant = minetest.get_modpath("mcl_core") and "mcl_buckets:bucket_water" or "bucket:bucket_water"
|
||||
|
||||
-- Ingredient Variables
|
||||
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
blueberries_ingredient = "mcl_farming:blueberries" -- If available in MineClone2
|
||||
blueberries_ingredient = "mcl_farming:blueberries"
|
||||
grass_ingredient = "mcl_core:grass"
|
||||
dry_shrub_ingredient = "mcl_core:deadbush"
|
||||
junglegrass_ingredient = "mcl_core:tallgrass" -- Adjust as needed
|
||||
junglegrass_ingredient = "mcl_core:tallgrass"
|
||||
cactus_ingredient = "mcl_core:cactus"
|
||||
geranium_ingredient = "mcl_flowers:blue_orchid"
|
||||
dandelion_white_ingredient = "mcl_flowers:oxeye_daisy"
|
||||
dandelion_yellow_ingredient = "mcl_flowers:dandelion"
|
||||
tulip_ingredient = "mcl_flowers:orange_tulip" -- Adjust for the tulip color
|
||||
tulip_ingredient = "mcl_flowers:orange_tulip"
|
||||
rose_ingredient = "mcl_flowers:poppy"
|
||||
viola_ingredient = "mcl_flowers:allium"
|
||||
else
|
||||
-- Default Minetest Game ingredients
|
||||
blueberries_ingredient = "default:blueberries"
|
||||
grass_ingredient = "default:grass_1"
|
||||
dry_shrub_ingredient = "default:dry_shrub"
|
||||
|
@ -344,9 +73,7 @@ else
|
|||
end
|
||||
|
||||
-- Dye Output Variables
|
||||
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
-- MineClone2 dye names
|
||||
dye_black = "mcl_dye:black"
|
||||
dye_violet = "mcl_dye:violet"
|
||||
dye_green = "mcl_dye:green"
|
||||
|
@ -357,7 +84,6 @@ if minetest.get_modpath("mcl_core") then
|
|||
dye_orange = "mcl_dye:orange"
|
||||
dye_red = "mcl_dye:red"
|
||||
else
|
||||
-- Default Minetest Game dye names
|
||||
dye_black = "dye:black"
|
||||
dye_violet = "dye:violet"
|
||||
dye_green = "dye:green"
|
||||
|
@ -369,23 +95,6 @@ else
|
|||
dye_red = "dye:red"
|
||||
end
|
||||
|
||||
dirt_with_snow_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
dirt_with_snow_ingrediant = "mcl_core:dirt_with_grass_snow"
|
||||
else
|
||||
dirt_with_snow_ingrediant = "default:dirt_with_snow"
|
||||
end
|
||||
|
||||
bucket_lava_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
bucket_lava_ingrediant = "mcl_buckets:bucket_lava"
|
||||
else
|
||||
bucket_lava_ingrediant = "bucket:bucket_lava"
|
||||
end
|
||||
|
||||
bucket_river_water_ingrediant = nil
|
||||
if minetest.get_modpath("mcl_core") then
|
||||
bucket_river_water_ingrediant = "mcl_buckets:bucket_river_water"
|
||||
else
|
||||
bucket_river_water_ingrediant = "bucket:bucket_river_water"
|
||||
end
|
||||
dirt_with_snow_ingrediant = minetest.get_modpath("mcl_core") and "mcl_core:dirt_with_grass_snow" or "default:dirt_with_snow"
|
||||
bucket_lava_ingrediant = minetest.get_modpath("mcl_core") and "mcl_buckets:bucket_lava" or "bucket:bucket_lava"
|
||||
bucket_river_water_ingrediant = minetest.get_modpath("mcl_core") and "mcl_buckets:bucket_river_water" or "bucket:bucket_river_water"
|
||||
|
|
Loading…
Reference in New Issue
Block a user