Compare commits

..

No commits in common. "9288e8d3be83cb29f5454ccb2da7e976991ce415" and "81570147ec4103d752c7b055327effaa089ae9d4" have entirely different histories.

3 changed files with 15 additions and 44 deletions

View File

@ -7,8 +7,8 @@ mypaint.colors = {
blue = {"Blue", "0000ff"},
brown = {"Brown", "190B07"},
cyan = {"Cyan", "00ffff"},
darkgreen = {"Dark Green", "005000"},
darkgrey = {"Dark Grey", "1C1C1C"},
darkgreen = {"Dark Green", "005000"},
darkgrey = {"Dark Grey", "1C1C1C"},
grey = {"Grey", "848484"},
magenta = {"Magenta", "ff00ff"},
orange = {"Orange", "ff7700"},

View File

@ -9,7 +9,7 @@ function check_paintcan(pos, node)
local color = string.sub(name, 15)
local meta = minetest.get_meta(pos)
stack = ItemStack("mypaint:brush_"..color)
if minetest.settings:get_bool("creative_mode") then
if minetest.setting_getbool("creative_mode") then
return stack
end
local uses = meta:get_int("mypaint:uses") - 1
@ -28,9 +28,8 @@ function paint_node(pos, node, col, itemstack)
local s, e
local nname = node.name
s, e = string.find(nname, "_[^_]+$")
local color
if s and e then
color = string.sub(nname, s + 1, e)
local color = string.sub(nname, s + 1, e)
if mypaint.colors[color] then
nname = string.sub(nname, 1, s - 1)
if color == col then
@ -41,25 +40,18 @@ function paint_node(pos, node, col, itemstack)
for name, colors in pairs(mypaint.paintables) do
if (nname == name) then
if not col then
if color then
minetest.set_node(pos, {name = name, param2 = node.param2})
if colors[col] then
minetest.set_node(pos,{name = name.."_"..col, param2 = node.param2})
if not minetest.setting_getbool("creative_mode") then
local wear = itemstack:get_wear() + 65535 / BRUSH_USES
if wear < 65535 then
itemstack:set_wear(wear)
else
itemstack = ItemStack("mypaint:brush")
end
end
return
end
if not colors[col] then
return
end
minetest.set_node(pos, {name = name.."_"..col, param2 = node.param2})
if not minetest.settings:get_bool("creative_mode") then
local wear = itemstack:get_wear() + 65535 / BRUSH_USES
if wear < 65535 then
itemstack:set_wear(wear)
else
itemstack = ItemStack("mypaint:brush")
end
return itemstack
end
return itemstack
end
end
end
@ -80,19 +72,6 @@ minetest.register_tool("mypaint:brush", {
end
})
minetest.register_tool("mypaint:scraper", {
description = "Paint Scraper",
inventory_image = "mypaint_scraper.png",
on_use = function(itemstack, user, pointed_thing)
if pointed_thing.type ~= "node" then
return
end
local pos = pointed_thing.under
local node = minetest.get_node(pos)
return paint_node(pos, node, nil, itemstack)
end
})
for color, entry in pairs(mypaint.colors) do
local desc = entry[1]
local cstring = entry[2]
@ -162,7 +141,7 @@ for color, entry in pairs(mypaint.colors) do
local pname = "mypaint:paint_"..color
local paint = ItemStack(pname)
paint = minetest.item_place_node(paint, user, pointed_thing)
if not minetest.settings:get_bool("creative_mode") then
if not minetest.setting_getbool("creative_mode") then
if not paint or (paint:get_count() > 0) then
return
end
@ -203,11 +182,3 @@ minetest.register_craft({
}
})
minetest.register_craft({
output = 'mypaint:scraper',
recipe = {
{'default:steel_ingot', ''},
{'', 'group:stick'},
}
})

Binary file not shown.

Before

Width:  |  Height:  |  Size: 712 B