2013-05-01 12:31:21 +02:00
|
|
|
-- Minetest: builtin/features.lua
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
core.features = {
|
2013-05-01 16:00:58 +02:00
|
|
|
glasslike_framed = true,
|
|
|
|
nodebox_as_selectionbox = true,
|
|
|
|
chat_send_player_param3 = true,
|
|
|
|
get_all_craft_recipes_works = true,
|
|
|
|
use_texture_alpha = true,
|
2013-11-02 10:48:13 +01:00
|
|
|
no_legacy_abms = true,
|
2014-07-24 21:55:09 +02:00
|
|
|
texture_names_parens = true,
|
2015-10-31 01:38:22 +01:00
|
|
|
area_store_custom_ids = true,
|
2017-01-09 20:39:45 +01:00
|
|
|
add_entity_with_staticdata = true,
|
2017-01-17 00:09:47 +01:00
|
|
|
no_chat_message_prediction = true,
|
2013-05-01 12:31:21 +02:00
|
|
|
}
|
|
|
|
|
2014-04-28 03:02:48 +02:00
|
|
|
function core.has_feature(arg)
|
2013-05-01 12:31:21 +02:00
|
|
|
if type(arg) == "table" then
|
2015-09-02 18:09:48 +02:00
|
|
|
local missing_features = {}
|
|
|
|
local result = true
|
|
|
|
for ftr in pairs(arg) do
|
2014-04-28 03:02:48 +02:00
|
|
|
if not core.features[ftr] then
|
2013-05-01 12:31:21 +02:00
|
|
|
missing_features[ftr] = true
|
|
|
|
result = false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return result, missing_features
|
|
|
|
elseif type(arg) == "string" then
|
2014-04-28 03:02:48 +02:00
|
|
|
if not core.features[arg] then
|
2013-05-01 12:31:21 +02:00
|
|
|
return false, {[arg]=true}
|
|
|
|
end
|
|
|
|
return true, {}
|
|
|
|
end
|
|
|
|
end
|