]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - builtin/common/strict.lua
core.rotate_node: Do not trigger after_place_node (#6900)
[dragonfireclient.git] / builtin / common / strict.lua
index 91d1f5b19f9bb17683a21197bd2e4f5af100f09a..ccde9676b3af202bbba0f13b6b11b306a0e70287 100644 (file)
@@ -3,9 +3,13 @@
 -- This ignores mod namespaces (variables with the same name as the current mod).
 local WARN_INIT = false
 
+local getinfo = debug.getinfo
 
-local function warn(message)
-       print(os.date("%H:%M:%S: WARNING: ")..message)
+function core.global_exists(name)
+       if type(name) ~= "string" then
+               error("core.global_exists: " .. tostring(name) .. " is not a string")
+       end
+       return rawget(_G, name) ~= nil
 end
 
 
@@ -15,14 +19,14 @@ local declared = {}
 local warned = {}
 
 function meta:__newindex(name, value)
-       local info = debug.getinfo(2, "Sl")
+       local info = getinfo(2, "Sl")
        local desc = ("%s:%d"):format(info.short_src, info.currentline)
        if not declared[name] then
                local warn_key = ("%s\0%d\0%s"):format(info.source,
                                info.currentline, name)
                if not warned[warn_key] and info.what ~= "main" and
                                info.what ~= "C" then
-                       minetest.log("error", ("Assignment to undeclared "..
+                       core.log("warning", ("Assignment to undeclared "..
                                        "global %q inside a function at %s.")
                                :format(name, desc))
                        warned[warn_key] = true
@@ -30,9 +34,8 @@ function meta:__newindex(name, value)
                declared[name] = true
        end
        -- Ignore mod namespaces
-       if WARN_INIT and (not core.get_current_modname or
-                       name ~= core.get_current_modname()) then
-               warn(("Global variable %q created at %s.")
+       if WARN_INIT and name ~= core.get_current_modname() then
+               core.log("warning", ("Global variable %q created at %s.")
                        :format(name, desc))
        end
        rawset(self, name, value)
@@ -40,10 +43,10 @@ end
 
 
 function meta:__index(name)
-       local info = debug.getinfo(2, "Sl")
+       local info = getinfo(2, "Sl")
        local warn_key = ("%s\0%d\0%s"):format(info.source, info.currentline, name)
        if not declared[name] and not warned[warn_key] and info.what ~= "C" then
-               warn(("Undeclared global variable %q accessed at %s:%s")
+               core.log("warning", ("Undeclared global variable %q accessed at %s:%s")
                                :format(name, info.short_src, info.currentline))
                warned[warn_key] = true
        end