minetest/builtin/game/features.lua

48 lines
1.2 KiB
Lua
Raw Normal View History

-- Minetest: builtin/features.lua
2014-04-27 18:02:48 -07:00
core.features = {
2013-05-01 07:00:58 -07:00
glasslike_framed = true,
nodebox_as_selectionbox = true,
get_all_craft_recipes_works = true,
use_texture_alpha = true,
no_legacy_abms = true,
texture_names_parens = true,
2015-10-30 17:38:22 -07:00
area_store_custom_ids = true,
add_entity_with_staticdata = true,
no_chat_message_prediction = true,
object_use_texture_alpha = true,
object_independent_selectionbox = true,
httpfetch_binary_data = true,
formspec_version_element = true,
area_store_persistent_ids = true,
pathfinder_works = true,
object_step_has_moveresult = true,
direct_velocity_on_players = true,
use_texture_alpha_string_modes = true,
degrotate_240_steps = true,
abm_min_max_y = true,
particlespawner_tweenable = true,
dynamic_add_media_table = true,
get_sky_as_table = true,
get_light_data_buffer = true,
}
2014-04-27 18:02:48 -07:00
function core.has_feature(arg)
if type(arg) == "table" then
2015-09-02 09:09:48 -07:00
local missing_features = {}
local result = true
for ftr in pairs(arg) do
2014-04-27 18:02:48 -07:00
if not core.features[ftr] then
missing_features[ftr] = true
result = false
end
end
return result, missing_features
elseif type(arg) == "string" then
2014-04-27 18:02:48 -07:00
if not core.features[arg] then
return false, {[arg]=true}
end
return true, {}
end
end