mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-10-28 22:25:20 +01:00 
			
		
		
		
	This unifies the settings APIs. This also unifies the sync and async registration APIs, since the async registration API did not support adding non-functions to the API table.
		
			
				
	
	
		
			73 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
| -- Minetest: builtin/deprecated.lua
 | |
| 
 | |
| --
 | |
| -- Default material types
 | |
| --
 | |
| local function digprop_err()
 | |
| 	core.log("deprecated", "The core.digprop_* functions are obsolete and need to be replaced by item groups.")
 | |
| end
 | |
| 
 | |
| core.digprop_constanttime = digprop_err
 | |
| core.digprop_stonelike = digprop_err
 | |
| core.digprop_dirtlike = digprop_err
 | |
| core.digprop_gravellike = digprop_err
 | |
| core.digprop_woodlike = digprop_err
 | |
| core.digprop_leaveslike = digprop_err
 | |
| core.digprop_glasslike = digprop_err
 | |
| 
 | |
| function core.node_metadata_inventory_move_allow_all()
 | |
| 	core.log("deprecated", "core.node_metadata_inventory_move_allow_all is obsolete and does nothing.")
 | |
| end
 | |
| 
 | |
| function core.add_to_creative_inventory(itemstring)
 | |
| 	core.log("deprecated", "core.add_to_creative_inventory: This function is deprecated and does nothing.")
 | |
| end
 | |
| 
 | |
| --
 | |
| -- EnvRef
 | |
| --
 | |
| core.env = {}
 | |
| local envref_deprecation_message_printed = false
 | |
| setmetatable(core.env, {
 | |
| 	__index = function(table, key)
 | |
| 		if not envref_deprecation_message_printed then
 | |
| 			core.log("deprecated", "core.env:[...] is deprecated and should be replaced with core.[...]")
 | |
| 			envref_deprecation_message_printed = true
 | |
| 		end
 | |
| 		local func = core[key]
 | |
| 		if type(func) == "function" then
 | |
| 			rawset(table, key, function(self, ...)
 | |
| 				return func(...)
 | |
| 			end)
 | |
| 		else
 | |
| 			rawset(table, key, nil)
 | |
| 		end
 | |
| 		return rawget(table, key)
 | |
| 	end
 | |
| })
 | |
| 
 | |
| function core.rollback_get_last_node_actor(pos, range, seconds)
 | |
| 	return core.rollback_get_node_actions(pos, range, seconds, 1)[1]
 | |
| end
 | |
| 
 | |
| --
 | |
| -- core.setting_*
 | |
| --
 | |
| 
 | |
| local settings = core.settings
 | |
| 
 | |
| local function setting_proxy(name)
 | |
| 	return function(...)
 | |
| 		core.log("deprecated", "WARNING: minetest.setting_* "..
 | |
| 			"functions are deprecated.  "..
 | |
| 			"Use methods on the minetest.settings object.")
 | |
| 		return settings[name](settings, ...)
 | |
| 	end
 | |
| end
 | |
| 
 | |
| core.setting_set = setting_proxy("set")
 | |
| core.setting_get = setting_proxy("get")
 | |
| core.setting_setbool = setting_proxy("set_bool")
 | |
| core.setting_getbool = setting_proxy("get_bool")
 | |
| core.setting_save = setting_proxy("write")
 |