summaryrefslogtreecommitdiff
path: root/unifieddyes
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-01-31 19:39:31 -0500
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-01-31 19:39:31 -0500
commit39f5cba27eef35877c91291f518974f34130fcb6 (patch)
tree117a9d1b7d4ee5f78f73e1216e982c366ed9ecc6 /unifieddyes
parent2922421f4a88e56a0a1c819f62bf2bc287835388 (diff)
downloaddreambuilder_modpack-39f5cba27eef35877c91291f518974f34130fcb6.tar
dreambuilder_modpack-39f5cba27eef35877c91291f518974f34130fcb6.tar.gz
dreambuilder_modpack-39f5cba27eef35877c91291f518974f34130fcb6.tar.bz2
dreambuilder_modpack-39f5cba27eef35877c91291f518974f34130fcb6.tar.xz
dreambuilder_modpack-39f5cba27eef35877c91291f518974f34130fcb6.zip
Huge update - lots of mods:
areas, biome_lib, blox, bobblocks, boost_cart, homedecor, mobs, coloredwood, ilights, inbox, item_tweaks, moreblocks, moreores, pipeworks, plasticbox, signs_lib, stainedglass, roads, unifieddyes, vines, worldedit, xban2, maybe some others I didn't think about ;-)
Diffstat (limited to 'unifieddyes')
-rw-r--r--unifieddyes/init.lua391
-rw-r--r--unifieddyes/textures/unifieddyes_palette.pngbin0 -> 443 bytes
-rw-r--r--unifieddyes/textures/unifieddyes_palette_aquas.pngbin0 -> 99 bytes
-rw-r--r--unifieddyes/textures/unifieddyes_palette_blues.pngbin0 -> 101 bytes
-rw-r--r--unifieddyes/textures/unifieddyes_palette_colorwallmounted.pngbin0 -> 158 bytes
-rw-r--r--unifieddyes/textures/unifieddyes_palette_cyans.pngbin0 -> 101 bytes
-rw-r--r--unifieddyes/textures/unifieddyes_palette_greens.pngbin0 -> 101 bytes
-rw-r--r--unifieddyes/textures/unifieddyes_palette_greys.pngbin0 -> 98 bytes
-rw-r--r--unifieddyes/textures/unifieddyes_palette_limes.pngbin0 -> 99 bytes
-rw-r--r--unifieddyes/textures/unifieddyes_palette_magentas.pngbin0 -> 101 bytes
-rw-r--r--unifieddyes/textures/unifieddyes_palette_oranges.pngbin0 -> 99 bytes
-rw-r--r--unifieddyes/textures/unifieddyes_palette_reds.pngbin0 -> 101 bytes
-rw-r--r--unifieddyes/textures/unifieddyes_palette_redviolets.pngbin0 -> 99 bytes
-rw-r--r--unifieddyes/textures/unifieddyes_palette_skyblues.pngbin0 -> 99 bytes
-rw-r--r--unifieddyes/textures/unifieddyes_palette_violets.pngbin0 -> 99 bytes
-rw-r--r--unifieddyes/textures/unifieddyes_palette_yellows.pngbin0 -> 101 bytes
16 files changed, 360 insertions, 31 deletions
diff --git a/unifieddyes/init.lua b/unifieddyes/init.lua
index fc36199..0ed6cb1 100644
--- a/unifieddyes/init.lua
+++ b/unifieddyes/init.lua
@@ -29,6 +29,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
--=====================================================================
+unifieddyes = {}
+
+local creative_mode = minetest.setting_getbool("creative_mode")
+
-- Boilerplate to support localized strings if intllib mod is installed.
local S
if minetest.get_modpath("intllib") then
@@ -37,6 +41,354 @@ else
S = function(s) return s end
end
+-- helper functions for other mods that use this one
+
+local HUES = {
+ "red",
+ "orange",
+ "yellow",
+ "lime",
+ "green",
+ "aqua",
+ "cyan",
+ "skyblue",
+ "blue",
+ "violet",
+ "magenta",
+ "redviolet"
+}
+
+local HUES2 = {
+ "Red",
+ "Orange",
+ "Yellow",
+ "Lime",
+ "Green",
+ "Aqua",
+ "Cyan",
+ "Sky-blue",
+ "Blue",
+ "Violet",
+ "Magenta",
+ "Red-violet"
+}
+
+-- code borrowed from homedecor
+
+function unifieddyes.select_node(pointed_thing)
+ local pos = pointed_thing.under
+ local node = minetest.get_node_or_nil(pos)
+ local def = node and minetest.registered_nodes[node.name]
+
+ if not def or not def.buildable_to then
+ pos = pointed_thing.above
+ node = minetest.get_node_or_nil(pos)
+ def = node and minetest.registered_nodes[node.name]
+ end
+ return def and pos, def
+end
+
+function unifieddyes.is_buildable_to(placer_name, ...)
+ for _, pos in ipairs({...}) do
+ local node = minetest.get_node_or_nil(pos)
+ local def = node and minetest.registered_nodes[node.name]
+ if not (def and def.buildable_to) or minetest.is_protected(pos, placer_name) then
+ return false
+ end
+ end
+ return true
+end
+
+function unifieddyes.get_hsv(name) -- expects a node/item name
+ local hue = ""
+ local a,b
+ for _, i in ipairs(HUES) do
+ a,b = string.find(name, "_"..i)
+ if a and not ( string.find(name, "_redviolet") and i == "red" ) then
+ hue = i
+ break
+ end
+ end
+
+ if string.find(name, "_light_grey") then hue = "light_grey"
+ elseif string.find(name, "_lightgrey") then hue = "light_grey"
+ elseif string.find(name, "_dark_grey") then hue = "dark_grey"
+ elseif string.find(name, "_darkgrey") then hue = "dark_grey"
+ elseif string.find(name, "_grey") then hue = "grey"
+ elseif string.find(name, "_white") then hue = "white"
+ elseif string.find(name, "_black") then hue = "black"
+ end
+
+ local sat = ""
+ if string.find(name, "_s50") then sat = "_s50" end
+
+ local val = ""
+ if string.find(name, "dark_") then val = "dark_" end
+ if string.find(name, "medium_") then val = "medium_" end
+ if string.find(name, "light_") then val = "light_" end
+
+ return hue, sat, val
+end
+
+-- code borrowed from cheapie's plasticbox mod
+
+function unifieddyes.getpaletteidx(color, is_color_fdir)
+ local origcolor = color
+ local aliases = {
+ ["pink"] = "light_red",
+ ["brown"] = "dark_orange",
+ }
+
+ local grayscale = {
+ ["white"] = 1,
+ ["light_grey"] = 2,
+ ["grey"] = 3,
+ ["dark_grey"] = 4,
+ ["black"] = 5,
+ }
+
+ local grayscale_wallmounted = {
+ ["white"] = 0,
+ ["light_grey"] = 1,
+ ["grey"] = 2,
+ ["dark_grey"] = 3,
+ ["black"] = 4,
+ }
+
+ local hues = {
+ ["red"] = 1,
+ ["orange"] = 2,
+ ["yellow"] = 3,
+ ["lime"] = 4,
+ ["green"] = 5,
+ ["aqua"] = 6,
+ ["cyan"] = 7,
+ ["skyblue"] = 8,
+ ["blue"] = 9,
+ ["violet"] = 10,
+ ["magenta"] = 11,
+ ["redviolet"] = 12,
+ }
+
+ local hues_wallmounted = {
+ ["red"] = 0,
+ ["orange"] = 1,
+ ["yellow"] = 2,
+ ["green"] = 3,
+ ["cyan"] = 4,
+ ["blue"] = 5,
+ ["violet"] = 6,
+ ["magenta"] = 7
+ }
+
+ local shades = {
+ [""] = 1,
+ ["s50"] = 2,
+ ["light"] = 3,
+ ["medium"] = 4,
+ ["mediums50"] = 5,
+ ["dark"] = 6,
+ ["darks50"] = 7,
+ }
+
+ local shades_wallmounted = {
+ [""] = 1,
+ ["medium"] = 2,
+ ["dark"] = 3
+ }
+
+ if string.sub(color,1,4) == "dye:" then
+ color = string.sub(color,5,-1)
+ elseif string.sub(color,1,12) == "unifieddyes:" then
+ color = string.sub(color,13,-1)
+ else
+ return
+ end
+
+ color = aliases[color] or color
+ local idx
+
+ if is_color_fdir == "wallmounted" then
+ if grayscale_wallmounted[color] then
+ return (grayscale_wallmounted[color] * 8), 0
+ end
+ elseif is_color_fdir then
+ if grayscale[color] then
+ return (grayscale[color] * 32), 0
+ end
+ else
+ if grayscale[color] then
+ return grayscale[color], 0
+ end
+ end
+
+ local shade = ""
+ if string.sub(color,1,6) == "light_" then
+ shade = "light"
+ color = string.sub(color,7,-1)
+ elseif string.sub(color,1,7) == "medium_" then
+ shade = "medium"
+ color = string.sub(color,8,-1)
+ elseif string.sub(color,1,5) == "dark_" then
+ shade = "dark"
+ color = string.sub(color,6,-1)
+ end
+ if string.sub(color,-4,-1) == "_s50" then
+ shade = shade.."s50"
+ color = string.sub(color,1,-5)
+ end
+
+ if is_color_fdir == "wallmounted" then
+ if shade == "dark" and color == "orange" then return 48,1 -- brown
+ elseif shade == "light" and color == "red" then return 56,7 -- pink
+ elseif hues_wallmounted[color] and shades_wallmounted[shade] then
+ return (shades_wallmounted[shade] * 64 + hues_wallmounted[color] * 8), hues_wallmounted[color]
+ end
+ elseif hues[color] and shades[shade] then
+ if is_color_fdir then
+ return (shades[shade] * 32), hues[color]
+ else
+ return (hues[color] * 8 + shades[shade]), hues[color]
+ end
+ end
+end
+
+function unifieddyes.after_dig_node(pos, oldnode, oldmetadata, digger)
+ local prevdye
+
+ if oldmetadata and oldmetadata.fields then
+ prevdye = oldmetadata.fields.dye
+ end
+
+ local inv = digger:get_inventory()
+
+ if prevdye and not (inv:contains_item("main", prevdye) and creative_mode) and minetest.registered_items[prevdye] then
+ if inv:room_for_item("main", prevdye) then
+ inv:add_item("main", prevdye)
+ else
+ minetest.add_item(pos, prevdye)
+ end
+ end
+end
+
+function unifieddyes.on_rightclick(pos, node, player, stack, pointed_thing, newnode, is_color_fdir)
+ local name = player:get_player_name()
+ if minetest.is_protected(pos,name) and not minetest.check_player_privs(name,{protection_bypass=true}) then
+ minetest.record_protection_violation(pos,name)
+ return stack
+ end
+ local name = stack:get_name()
+ local pos2 = unifieddyes.select_node(pointed_thing)
+ local paletteidx, hue = unifieddyes.getpaletteidx(name, is_color_fdir)
+
+ print(dump(paletteidx))
+
+ if paletteidx then
+
+ local meta = minetest.get_meta(pos)
+ local prevdye = meta:get_string("dye")
+ local inv = player:get_inventory()
+
+ if not (inv:contains_item("main", prevdye) and creative_mode) and minetest.registered_items[prevdye] then
+ if inv:room_for_item("main", prevdye) then
+ inv:add_item("main", prevdye)
+ else
+ minetest.add_item(pos, prevdye)
+ end
+ end
+
+ meta:set_string("dye", name)
+ if not creative_mode and prevdye ~= name then
+ stack:take_item()
+ end
+ node.param2 = paletteidx
+
+ local oldpaletteidx, oldhuenum = unifieddyes.getpaletteidx(prevdye, is_color_fdir)
+
+ local oldnode = minetest.get_node(pos)
+
+ local oldhue = nil
+ for _, i in ipairs(HUES) do
+ if string.find(oldnode.name, "_"..i) and not
+ ( string.find(oldnode.name, "_redviolet") and i == "red" ) then
+ oldhue = i
+ break
+ end
+ end
+
+ if newnode then -- this path is used when the calling mod want to supply a replacement node
+ if is_color_fdir == "wallmounted" then
+ node.param2 = paletteidx + (minetest.get_node(pos).param2 % 8)
+ elseif is_color_fdir then -- we probably need to change the hue of the node too
+ if oldhue ~=0 then -- it's colored, not grey
+ if oldhue ~= nil then -- it's been painted before
+ if hue ~= 0 then -- the player's wielding a colored dye
+ newnode = string.gsub(newnode, "_"..oldhue, "_"..HUES[hue])
+ else -- it's a greyscale dye
+ newnode = string.gsub(newnode, "_"..oldhue, "_grey")
+ end
+ else -- it's never had a color at all
+ if hue ~= 0 then -- and if the wield is greyscale, don't change the node name
+ newnode = string.gsub(newnode, "_grey", "_"..HUES[hue])
+ end
+ end
+ else
+ if hue ~= 0 then -- greyscale dye on greyscale node = no hue change
+ newnode = string.gsub(newnode, "_grey", "_"..HUES[hue])
+ end
+ end
+ node.param2 = paletteidx + (minetest.get_node(pos).param2 % 32)
+ else
+ node.param2 = paletteidx
+ end
+ node.name = newnode
+ minetest.swap_node(pos, node)
+ else -- this path is used when you're just painting an existing node, rather than replacing one.
+ newnode = oldnode -- note that here, newnode/oldnode are a full node, not just the name.
+ if is_color_fdir == "wallmounted" then
+ newnode.param2 = paletteidx + (minetest.get_node(pos).param2 % 8)
+ elseif is_color_fdir then
+ if oldhue then
+ if hue ~= 0 then
+ newnode.name = string.gsub(newnode.name, "_"..oldhue, "_"..HUES[hue])
+ else
+ newnode.name = string.gsub(newnode.name, "_"..oldhue, "_grey")
+ end
+ elseif string.find(minetest.get_node(pos).name, "_grey") and hue ~= 0 then
+ newnode.name = string.gsub(newnode.name, "_grey", "_"..HUES[hue])
+ end
+ newnode.param2 = paletteidx + (minetest.get_node(pos).param2 % 32)
+ else
+ newnode.param2 = paletteidx
+ end
+ minetest.swap_node(pos, newnode)
+ end
+ else -- here is where a node is just being placed, not something being colored
+ if unifieddyes.is_buildable_to(player:get_player_name(), pos2) and
+ minetest.registered_nodes[name] then
+ local placeable_node = minetest.registered_nodes[stack:get_name()]
+
+ local fdir = 0
+
+ if is_color_fdir == "wallmounted" then
+ local yaw = player:get_look_yaw()
+ local dir = minetest.yaw_to_dir(yaw-1.5)
+ fdir = minetest.dir_to_wallmounted(dir)
+ elseif is_color_fdir then
+ local yaw = player:get_look_yaw()
+ local dir = minetest.yaw_to_dir(yaw-1.5)
+ fdir = minetest.dir_to_facedir(dir)
+ end
+
+ minetest.set_node(pos2, { name = placeable_node.name, param2 = fdir })
+ if not creative_mode then
+ stack:take_item()
+ end
+ return stack
+ end
+ end
+end
+
-- Items/recipes needed to generate the few base colors that are not
-- provided by the standard dyes mod.
@@ -179,36 +531,6 @@ minetest.register_craft( {
-- Brightness levels in the textures are 33% ("dark"), 66% ("medium"),
-- 100% ("full", but not so-named), and 150% ("light").
-local HUES = {
- "red",
- "orange",
- "yellow",
- "lime",
- "green",
- "aqua",
- "cyan",
- "skyblue",
- "blue",
- "violet",
- "magenta",
- "redviolet"
-}
-
-local HUES2 = {
- "Red",
- "Orange",
- "Yellow",
- "Lime",
- "Green",
- "Aqua",
- "Cyan",
- "Sky-blue",
- "Blue",
- "Violet",
- "Magenta",
- "Red-violet"
-}
-
for i = 1, 12 do
@@ -361,8 +683,15 @@ for i = 1, 12 do
minetest.register_alias("unifieddyes:pigment_"..hue, "dye:"..hue)
end
-minetest.register_alias("unifieddyes:light_red", "dye:pink")
+minetest.register_alias("unifieddyes:light_red", "dye:pink")
minetest.register_alias("unifieddyes:dark_green", "dye:dark_green")
+minetest.register_alias("unifieddyes:black", "dye:black")
+minetest.register_alias("unifieddyes:darkgrey", "dye:dark_grey")
+minetest.register_alias("unifieddyes:dark_grey", "dye:dark_grey")
+minetest.register_alias("unifieddyes:grey", "dye:grey")
+minetest.register_alias("unifieddyes:lightgrey", "dye:light_grey")
+minetest.register_alias("unifieddyes:light_grey", "dye:light_grey")
+minetest.register_alias("unifieddyes:white", "dye:white")
minetest.register_alias("unifieddyes:white_paint", "dye:white")
minetest.register_alias("unifieddyes:titanium_dioxide", "dye:white")
diff --git a/unifieddyes/textures/unifieddyes_palette.png b/unifieddyes/textures/unifieddyes_palette.png
new file mode 100644
index 0000000..1d7c485
--- /dev/null
+++ b/unifieddyes/textures/unifieddyes_palette.png
Binary files differ
diff --git a/unifieddyes/textures/unifieddyes_palette_aquas.png b/unifieddyes/textures/unifieddyes_palette_aquas.png
new file mode 100644
index 0000000..85dcab5
--- /dev/null
+++ b/unifieddyes/textures/unifieddyes_palette_aquas.png
Binary files differ
diff --git a/unifieddyes/textures/unifieddyes_palette_blues.png b/unifieddyes/textures/unifieddyes_palette_blues.png
new file mode 100644
index 0000000..496dc34
--- /dev/null
+++ b/unifieddyes/textures/unifieddyes_palette_blues.png
Binary files differ
diff --git a/unifieddyes/textures/unifieddyes_palette_colorwallmounted.png b/unifieddyes/textures/unifieddyes_palette_colorwallmounted.png
new file mode 100644
index 0000000..18c83b4
--- /dev/null
+++ b/unifieddyes/textures/unifieddyes_palette_colorwallmounted.png
Binary files differ
diff --git a/unifieddyes/textures/unifieddyes_palette_cyans.png b/unifieddyes/textures/unifieddyes_palette_cyans.png
new file mode 100644
index 0000000..38d8ee3
--- /dev/null
+++ b/unifieddyes/textures/unifieddyes_palette_cyans.png
Binary files differ
diff --git a/unifieddyes/textures/unifieddyes_palette_greens.png b/unifieddyes/textures/unifieddyes_palette_greens.png
new file mode 100644
index 0000000..e38a459
--- /dev/null
+++ b/unifieddyes/textures/unifieddyes_palette_greens.png
Binary files differ
diff --git a/unifieddyes/textures/unifieddyes_palette_greys.png b/unifieddyes/textures/unifieddyes_palette_greys.png
new file mode 100644
index 0000000..1fa5292
--- /dev/null
+++ b/unifieddyes/textures/unifieddyes_palette_greys.png
Binary files differ
diff --git a/unifieddyes/textures/unifieddyes_palette_limes.png b/unifieddyes/textures/unifieddyes_palette_limes.png
new file mode 100644
index 0000000..ebfd703
--- /dev/null
+++ b/unifieddyes/textures/unifieddyes_palette_limes.png
Binary files differ
diff --git a/unifieddyes/textures/unifieddyes_palette_magentas.png b/unifieddyes/textures/unifieddyes_palette_magentas.png
new file mode 100644
index 0000000..7c398b7
--- /dev/null
+++ b/unifieddyes/textures/unifieddyes_palette_magentas.png
Binary files differ
diff --git a/unifieddyes/textures/unifieddyes_palette_oranges.png b/unifieddyes/textures/unifieddyes_palette_oranges.png
new file mode 100644
index 0000000..0986014
--- /dev/null
+++ b/unifieddyes/textures/unifieddyes_palette_oranges.png
Binary files differ
diff --git a/unifieddyes/textures/unifieddyes_palette_reds.png b/unifieddyes/textures/unifieddyes_palette_reds.png
new file mode 100644
index 0000000..85b8e5a
--- /dev/null
+++ b/unifieddyes/textures/unifieddyes_palette_reds.png
Binary files differ
diff --git a/unifieddyes/textures/unifieddyes_palette_redviolets.png b/unifieddyes/textures/unifieddyes_palette_redviolets.png
new file mode 100644
index 0000000..76e79e4
--- /dev/null
+++ b/unifieddyes/textures/unifieddyes_palette_redviolets.png
Binary files differ
diff --git a/unifieddyes/textures/unifieddyes_palette_skyblues.png b/unifieddyes/textures/unifieddyes_palette_skyblues.png
new file mode 100644
index 0000000..638025d
--- /dev/null
+++ b/unifieddyes/textures/unifieddyes_palette_skyblues.png
Binary files differ
diff --git a/unifieddyes/textures/unifieddyes_palette_violets.png b/unifieddyes/textures/unifieddyes_palette_violets.png
new file mode 100644
index 0000000..f71b90f
--- /dev/null
+++ b/unifieddyes/textures/unifieddyes_palette_violets.png
Binary files differ
diff --git a/unifieddyes/textures/unifieddyes_palette_yellows.png b/unifieddyes/textures/unifieddyes_palette_yellows.png
new file mode 100644
index 0000000..862ac4f
--- /dev/null
+++ b/unifieddyes/textures/unifieddyes_palette_yellows.png
Binary files differ