2013-07-17 21:34:35 +02:00
|
|
|
-- API for the technic CNC machine
|
|
|
|
-- Again code is adapted from the NonCubic Blocks MOD v1.4 by yves_de_beck
|
|
|
|
|
2018-11-25 14:13:56 +01:00
|
|
|
local S = technic_cnc.getter
|
2013-07-17 21:34:35 +02:00
|
|
|
|
|
|
|
-- REGISTER NONCUBIC FORMS, CREATE MODELS AND RECIPES:
|
|
|
|
------------------------------------------------------
|
|
|
|
|
|
|
|
-- Define slope boxes for the various nodes
|
|
|
|
-------------------------------------------
|
2018-11-25 14:13:56 +01:00
|
|
|
technic_cnc.programs = {
|
2015-01-19 19:37:46 +01:00
|
|
|
{ suffix = "technic_cnc_stick",
|
|
|
|
model = {-0.15, -0.5, -0.15, 0.15, 0.5, 0.15},
|
|
|
|
desc = S("Stick")
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_element_end_double",
|
|
|
|
model = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.5},
|
|
|
|
desc = S("Element End Double")
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_element_cross_double",
|
|
|
|
model = {
|
|
|
|
{0.3, -0.5, -0.3, 0.5, 0.5, 0.3},
|
|
|
|
{-0.3, -0.5, -0.5, 0.3, 0.5, 0.5},
|
|
|
|
{-0.5, -0.5, -0.3, -0.3, 0.5, 0.3}},
|
|
|
|
desc = S("Element Cross Double")
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_element_t_double",
|
|
|
|
model = {
|
|
|
|
{-0.3, -0.5, -0.5, 0.3, 0.5, 0.3},
|
|
|
|
{-0.5, -0.5, -0.3, -0.3, 0.5, 0.3},
|
|
|
|
{0.3, -0.5, -0.3, 0.5, 0.5, 0.3}},
|
|
|
|
desc = S("Element T Double")
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_element_edge_double",
|
|
|
|
model = {
|
|
|
|
{-0.3, -0.5, -0.5, 0.3, 0.5, 0.3},
|
|
|
|
{-0.5, -0.5, -0.3, -0.3, 0.5, 0.3}},
|
|
|
|
desc = S("Element Edge Double")
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_element_straight_double",
|
|
|
|
model = {-0.3, -0.5, -0.5, 0.3, 0.5, 0.5},
|
|
|
|
desc = S("Element Straight Double")
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_element_end",
|
|
|
|
model = {-0.3, -0.5, -0.3, 0.3, 0, 0.5},
|
|
|
|
desc = S("Element End")
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_element_cross",
|
|
|
|
model = {
|
|
|
|
{0.3, -0.5, -0.3, 0.5, 0, 0.3},
|
|
|
|
{-0.3, -0.5, -0.5, 0.3, 0, 0.5},
|
|
|
|
{-0.5, -0.5, -0.3, -0.3, 0, 0.3}},
|
|
|
|
desc = S("Element Cross")
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_element_t",
|
|
|
|
model = {
|
|
|
|
{-0.3, -0.5, -0.5, 0.3, 0, 0.3},
|
|
|
|
{-0.5, -0.5, -0.3, -0.3, 0, 0.3},
|
|
|
|
{0.3, -0.5, -0.3, 0.5, 0, 0.3}},
|
|
|
|
desc = S("Element T")
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_element_edge",
|
|
|
|
model = {
|
|
|
|
{-0.3, -0.5, -0.5, 0.3, 0, 0.3},
|
|
|
|
{-0.5, -0.5, -0.3, -0.3, 0, 0.3}},
|
|
|
|
desc = S("Element Edge")
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_element_straight",
|
|
|
|
model = {-0.3, -0.5, -0.5, 0.3, 0, 0.5},
|
|
|
|
desc = S("Element Straight")
|
|
|
|
},
|
|
|
|
|
2015-03-12 04:54:22 +01:00
|
|
|
{ suffix = "technic_cnc_oblate_spheroid",
|
2018-11-25 12:54:27 +01:00
|
|
|
model = "technic_cnc_oblate_spheroid.obj",
|
2015-03-12 04:54:22 +01:00
|
|
|
desc = S("Oblate spheroid"),
|
2015-01-19 19:37:46 +01:00
|
|
|
cbox = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -6/16, 4/16, -6/16, 6/16, 8/16, 6/16 },
|
|
|
|
{ -8/16, -4/16, -8/16, 8/16, 4/16, 8/16 },
|
|
|
|
{ -6/16, -8/16, -6/16, 6/16, -4/16, 6/16 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-03-12 04:54:22 +01:00
|
|
|
{ suffix = "technic_cnc_sphere",
|
2018-11-25 12:54:27 +01:00
|
|
|
model = "technic_cnc_sphere.obj",
|
2015-03-12 04:54:22 +01:00
|
|
|
desc = S("Sphere")
|
|
|
|
},
|
|
|
|
|
2015-01-19 19:37:46 +01:00
|
|
|
{ suffix = "technic_cnc_cylinder_horizontal",
|
2018-11-25 12:54:27 +01:00
|
|
|
model = "technic_cnc_cylinder_horizontal.obj",
|
2015-01-19 19:37:46 +01:00
|
|
|
desc = S("Horizontal Cylinder")
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_cylinder",
|
2018-11-25 12:54:27 +01:00
|
|
|
model = "technic_cnc_cylinder.obj",
|
2015-01-19 19:37:46 +01:00
|
|
|
desc = S("Cylinder")
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_twocurvededge",
|
2018-11-25 12:54:27 +01:00
|
|
|
model = "technic_cnc_two_curved_edge.obj",
|
2015-01-19 19:37:46 +01:00
|
|
|
desc = S("Two Curved Edge/Corner Block")
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_onecurvededge",
|
2018-11-25 12:54:27 +01:00
|
|
|
model = "technic_cnc_one_curved_edge.obj",
|
2015-01-19 19:37:46 +01:00
|
|
|
desc = S("One Curved Edge Block")
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_spike",
|
2018-11-25 12:54:27 +01:00
|
|
|
model = "technic_cnc_pyramid_spike.obj",
|
2015-01-19 19:37:46 +01:00
|
|
|
desc = S("Spike"),
|
|
|
|
cbox = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -2/16, 4/16, -2/16, 2/16, 8/16, 2/16 },
|
|
|
|
{ -4/16, 0, -4/16, 4/16, 4/16, 4/16 },
|
|
|
|
{ -6/16, -4/16, -6/16, 6/16, 0, 6/16 },
|
|
|
|
{ -8/16, -8/16, -8/16, 8/16, -4/16, 8/16 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_pyramid",
|
2018-11-25 12:54:27 +01:00
|
|
|
model = "technic_cnc_pyramid.obj",
|
2015-01-19 19:37:46 +01:00
|
|
|
desc = S("Pyramid"),
|
|
|
|
cbox = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -2/16, -2/16, -2/16, 2/16, 0, 2/16 },
|
|
|
|
{ -4/16, -4/16, -4/16, 4/16, -2/16, 4/16 },
|
|
|
|
{ -6/16, -6/16, -6/16, 6/16, -4/16, 6/16 },
|
|
|
|
{ -8/16, -8/16, -8/16, 8/16, -6/16, 8/16 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_slope_inner_edge_upsdown",
|
2018-11-25 12:54:27 +01:00
|
|
|
model = "technic_cnc_innercorner_upsdown.obj",
|
2015-01-19 19:37:46 +01:00
|
|
|
desc = S("Slope Upside Down Inner Edge/Corner"),
|
|
|
|
sbox = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 }
|
|
|
|
},
|
|
|
|
cbox = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ 0.25, -0.25, -0.5, 0.5, -0.5, 0.5 },
|
|
|
|
{ -0.5, -0.25, 0.25, 0.5, -0.5, 0.5 },
|
|
|
|
{ 0, 0, -0.5, 0.5, -0.25, 0.5 },
|
|
|
|
{ -0.5, 0, 0, 0.5, -0.25, 0.5 },
|
|
|
|
{ -0.25, 0.25, -0.5, 0.5, 0, -0.25 },
|
|
|
|
{ -0.5, 0.25, -0.25, 0.5, 0, 0.5 },
|
|
|
|
{ -0.5, 0.5, -0.5, 0.5, 0.25, 0.5 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_slope_edge_upsdown",
|
2018-11-25 12:54:27 +01:00
|
|
|
model = "technic_cnc_outercorner_upsdown.obj",
|
2015-01-19 19:37:46 +01:00
|
|
|
desc = S("Slope Upside Down Outer Edge/Corner"),
|
|
|
|
cbox = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -8/16, 8/16, -8/16, 8/16, 4/16, 8/16 },
|
|
|
|
{ -4/16, 4/16, -4/16, 8/16, 0, 8/16 },
|
|
|
|
{ 0, 0, 0, 8/16, -4/16, 8/16 },
|
|
|
|
{ 4/16, -4/16, 4/16, 8/16, -8/16, 8/16 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_slope_inner_edge",
|
2018-11-25 12:54:27 +01:00
|
|
|
model = "technic_cnc_innercorner.obj",
|
2015-01-19 19:37:46 +01:00
|
|
|
desc = S("Slope Inner Edge/Corner"),
|
|
|
|
sbox = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 }
|
|
|
|
},
|
|
|
|
cbox = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -0.5, -0.5, -0.5, 0.5, -0.25, 0.5 },
|
|
|
|
{ -0.5, -0.25, -0.25, 0.5, 0, 0.5 },
|
|
|
|
{ -0.25, -0.25, -0.5, 0.5, 0, -0.25 },
|
|
|
|
{ -0.5, 0, 0, 0.5, 0.25, 0.5 },
|
|
|
|
{ 0, 0, -0.5, 0.5, 0.25, 0.5 },
|
|
|
|
{ -0.5, 0.25, 0.25, 0.5, 0.5, 0.5 },
|
|
|
|
{ 0.25, 0.25, -0.5, 0.5, 0.5, 0.5 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_slope_edge",
|
2018-11-25 12:54:27 +01:00
|
|
|
model = "technic_cnc_outercorner.obj",
|
2015-01-19 19:37:46 +01:00
|
|
|
desc = S("Slope Outer Edge/Corner"),
|
|
|
|
cbox = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ 4/16, 4/16, 4/16, 8/16, 8/16, 8/16 },
|
|
|
|
{ 0, 0, 0, 8/16, 4/16, 8/16 },
|
|
|
|
{ -4/16, -4/16, -4/16, 8/16, 0, 8/16 },
|
|
|
|
{ -8/16, -8/16, -8/16, 8/16, -4/16, 8/16 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_slope_upsdown",
|
2018-11-25 12:54:27 +01:00
|
|
|
model = "technic_cnc_slope_upsdown.obj",
|
2015-01-19 19:37:46 +01:00
|
|
|
desc = S("Slope Upside Down"),
|
|
|
|
cbox = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -8/16, 8/16, -8/16, 8/16, 4/16, 8/16 },
|
|
|
|
{ -8/16, 4/16, -4/16, 8/16, 0, 8/16 },
|
|
|
|
{ -8/16, 0, 0, 8/16, -4/16, 8/16 },
|
|
|
|
{ -8/16, -4/16, 4/16, 8/16, -8/16, 8/16 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_slope_lying",
|
2018-11-25 12:54:27 +01:00
|
|
|
model = "technic_cnc_slope_horizontal.obj",
|
2015-01-19 19:37:46 +01:00
|
|
|
desc = S("Slope Lying"),
|
|
|
|
cbox = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ 4/16, -8/16, 4/16, 8/16, 8/16, 8/16 },
|
|
|
|
{ 0, -8/16, 0, 4/16, 8/16, 8/16 },
|
|
|
|
{ -4/16, -8/16, -4/16, 0, 8/16, 8/16 },
|
|
|
|
{ -8/16, -8/16, -8/16, -4/16, 8/16, 8/16 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{ suffix = "technic_cnc_slope",
|
2018-11-25 12:54:27 +01:00
|
|
|
model = "technic_cnc_slope.obj",
|
2015-01-19 19:37:46 +01:00
|
|
|
desc = S("Slope"),
|
|
|
|
cbox = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -8/16, 4/16, 4/16, 8/16, 8/16, 8/16 },
|
|
|
|
{ -8/16, 0, 0, 8/16, 4/16, 8/16 },
|
|
|
|
{ -8/16, -4/16, -4/16, 8/16, 0, 8/16 },
|
|
|
|
{ -8/16, -8/16, -8/16, 8/16, -4/16, 8/16 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-07-17 21:34:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
-- Allow disabling certain programs for some node. Default is allowing all types for all nodes
|
2018-11-25 14:13:56 +01:00
|
|
|
technic_cnc.programs_disable = {
|
2013-07-17 21:34:35 +02:00
|
|
|
-- ["default:brick"] = {"technic_cnc_stick"}, -- Example: Disallow the stick for brick
|
|
|
|
-- ...
|
2015-03-12 04:54:22 +01:00
|
|
|
["default:dirt"] = {"technic_cnc_oblate_spheroid", "technic_cnc_slope_upsdown", "technic_cnc_edge",
|
2013-07-17 21:34:35 +02:00
|
|
|
"technic_cnc_inner_edge", "technic_cnc_slope_edge_upsdown",
|
|
|
|
"technic_cnc_slope_inner_edge_upsdown", "technic_cnc_stick",
|
|
|
|
"technic_cnc_cylinder_horizontal"}
|
|
|
|
}
|
|
|
|
|
|
|
|
-- Generic function for registering all the different node types
|
2018-11-25 14:13:56 +01:00
|
|
|
function technic_cnc.register_program(recipeitem, suffix, model, groups, images, description, cbox, sbox)
|
2015-01-16 22:56:33 +01:00
|
|
|
|
|
|
|
local dtype
|
|
|
|
local nodeboxdef
|
|
|
|
local meshdef
|
|
|
|
|
|
|
|
if type(model) ~= "string" then -- assume a nodebox if it's a table or function call
|
|
|
|
dtype = "nodebox"
|
|
|
|
nodeboxdef = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = model
|
|
|
|
}
|
|
|
|
else
|
|
|
|
dtype = "mesh"
|
|
|
|
meshdef = model
|
|
|
|
end
|
|
|
|
|
2015-01-19 19:37:46 +01:00
|
|
|
if cbox and not sbox then sbox = cbox end
|
|
|
|
|
2013-07-17 21:34:35 +02:00
|
|
|
minetest.register_node(":"..recipeitem.."_"..suffix, {
|
|
|
|
description = description,
|
2015-01-16 22:56:33 +01:00
|
|
|
drawtype = dtype,
|
|
|
|
node_box = nodeboxdef,
|
|
|
|
mesh = meshdef,
|
2013-07-17 21:34:35 +02:00
|
|
|
tiles = images,
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
walkable = true,
|
|
|
|
groups = groups,
|
2015-01-19 19:37:46 +01:00
|
|
|
selection_box = sbox,
|
|
|
|
collision_box = cbox
|
2013-07-17 21:34:35 +02:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
-- function to iterate over all the programs the CNC machine knows
|
2018-11-25 14:13:56 +01:00
|
|
|
function technic_cnc.register_all(recipeitem, groups, images, description)
|
|
|
|
for _, data in ipairs(technic_cnc.programs) do
|
2013-07-17 21:34:35 +02:00
|
|
|
-- Disable node creation for disabled node types for some material
|
|
|
|
local do_register = true
|
2018-11-25 14:13:56 +01:00
|
|
|
if technic_cnc.programs_disable[recipeitem] ~= nil then
|
|
|
|
for __, disable in ipairs(technic_cnc.programs_disable[recipeitem]) do
|
2013-07-17 21:34:35 +02:00
|
|
|
if disable == data.suffix then
|
|
|
|
do_register = false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
-- Create the node if it passes the test
|
|
|
|
if do_register then
|
2018-11-25 14:13:56 +01:00
|
|
|
technic_cnc.register_program(recipeitem, data.suffix, data.model,
|
2015-01-19 19:37:46 +01:00
|
|
|
groups, images, description.." "..data.desc, data.cbox, data.sbox)
|
2013-07-17 21:34:35 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2018-11-25 14:13:56 +01:00
|
|
|
-- REGISTER NEW TECHNIC_CNC_API's PART 2: technic_cnc..register_element_end(subname, recipeitem, groups, images, desc_element_xyz)
|
2013-07-17 21:34:35 +02:00
|
|
|
-----------------------------------------------------------------------------------------------------------------------
|
2018-11-25 14:13:56 +01:00
|
|
|
function technic_cnc.register_slope_edge_etc(recipeitem, groups, images, desc_slope, desc_slope_lying, desc_slope_upsdown, desc_slope_edge, desc_slope_inner_edge, desc_slope_upsdwn_edge, desc_slope_upsdwn_inner_edge, desc_pyramid, desc_spike, desc_onecurvededge, desc_twocurvededge, desc_cylinder, desc_cylinder_horizontal, desc_spheroid, desc_element_straight, desc_element_edge, desc_element_t, desc_element_cross, desc_element_end)
|
|
|
|
|
|
|
|
technic_cnc.register_slope(recipeitem, groups, images, desc_slope)
|
|
|
|
technic_cnc.register_slope_lying(recipeitem, groups, images, desc_slope_lying)
|
|
|
|
technic_cnc.register_slope_upsdown(recipeitem, groups, images, desc_slope_upsdown)
|
|
|
|
technic_cnc.register_slope_edge(recipeitem, groups, images, desc_slope_edge)
|
|
|
|
technic_cnc.register_slope_inner_edge(recipeitem, groups, images, desc_slope_inner_edge)
|
|
|
|
technic_cnc.register_slope_edge_upsdown(recipeitem, groups, images, desc_slope_upsdwn_edge)
|
|
|
|
technic_cnc.register_slope_inner_edge_upsdown(recipeitem, groups, images, desc_slope_upsdwn_inner_edge)
|
|
|
|
technic_cnc.register_pyramid(recipeitem, groups, images, desc_pyramid)
|
|
|
|
technic_cnc.register_spike(recipeitem, groups, images, desc_spike)
|
|
|
|
technic_cnc.register_onecurvededge(recipeitem, groups, images, desc_onecurvededge)
|
|
|
|
technic_cnc.register_twocurvededge(recipeitem, groups, images, desc_twocurvededge)
|
|
|
|
technic_cnc.register_cylinder(recipeitem, groups, images, desc_cylinder)
|
|
|
|
technic_cnc.register_cylinder_horizontal(recipeitem, groups, images, desc_cylinder_horizontal)
|
|
|
|
technic_cnc.register_spheroid(recipeitem, groups, images, desc_spheroid)
|
|
|
|
technic_cnc.register_element_straight(recipeitem, groups, images, desc_element_straight)
|
|
|
|
technic_cnc.register_element_edge(recipeitem, groups, images, desc_element_edge)
|
|
|
|
technic_cnc.register_element_t(recipeitem, groups, images, desc_element_t)
|
|
|
|
technic_cnc.register_element_cross(recipeitem, groups, images, desc_element_cross)
|
|
|
|
technic_cnc.register_element_end(recipeitem, groups, images, desc_element_end)
|
2013-07-17 21:34:35 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
-- REGISTER STICKS: noncubic.register_xyz(recipeitem, groups, images, desc_element_xyz)
|
|
|
|
------------------------------------------------------------------------------------------------------------
|
2018-11-25 14:13:56 +01:00
|
|
|
function technic_cnc.register_stick_etc(recipeitem, groups, images, desc_stick)
|
|
|
|
technic_cnc.register_stick(recipeitem, groups, images, desc_stick)
|
2013-07-17 21:34:35 +02:00
|
|
|
end
|
|
|
|
|
2018-11-25 14:13:56 +01:00
|
|
|
function technic_cnc.register_elements(recipeitem, groups, images, desc_element_straight_double, desc_element_edge_double, desc_element_t_double, desc_element_cross_double, desc_element_end_double)
|
|
|
|
technic_cnc.register_element_straight_double(recipeitem, groups, images, desc_element_straight_double)
|
|
|
|
technic_cnc.register_element_edge_double(recipeitem, groups, images, desc_element_edge_double)
|
|
|
|
technic_cnc.register_element_t_double(recipeitem, groups, images, desc_element_t_double)
|
|
|
|
technic_cnc.register_element_cross_double(recipeitem, groups, images, desc_element_cross_double)
|
|
|
|
technic_cnc.register_element_end_double(recipeitem, groups, images, desc_element_end_double)
|
2013-07-17 21:34:35 +02:00
|
|
|
end
|
|
|
|
|