2019-11-08 20:18:41 +01:00
|
|
|
local modname = assert(core.get_current_modname())
|
2017-03-16 07:53:39 +01:00
|
|
|
local modstorage = core.get_mod_storage()
|
2017-09-26 00:11:20 +02:00
|
|
|
local mod_channel
|
2017-01-28 18:31:23 +01:00
|
|
|
|
2019-11-08 20:18:41 +01:00
|
|
|
dofile(core.get_modpath(modname) .. "example.lua")
|
|
|
|
|
2017-01-22 00:20:55 +01:00
|
|
|
core.register_on_shutdown(function()
|
2017-01-22 11:17:41 +01:00
|
|
|
print("[PREVIEW] shutdown client")
|
2017-01-22 00:20:55 +01:00
|
|
|
end)
|
2018-01-21 18:27:27 +01:00
|
|
|
local id = nil
|
2017-09-26 08:31:56 +02:00
|
|
|
|
2019-11-09 16:15:05 +01:00
|
|
|
do
|
|
|
|
local server_info = core.get_server_info()
|
|
|
|
print("Server version: " .. server_info.protocol_version)
|
|
|
|
print("Server ip: " .. server_info.ip)
|
|
|
|
print("Server address: " .. server_info.address)
|
|
|
|
print("Server port: " .. server_info.port)
|
|
|
|
|
|
|
|
print("CSM restrictions: " .. dump(core.get_csm_restrictions()))
|
|
|
|
|
|
|
|
local l1, l2 = core.get_language()
|
|
|
|
print("Configured language: " .. l1 .. " / " .. l2)
|
|
|
|
end
|
2019-11-09 11:00:19 +01:00
|
|
|
|
2018-01-21 18:27:27 +01:00
|
|
|
mod_channel = core.mod_channel_join("experimental_preview")
|
|
|
|
|
|
|
|
core.after(4, function()
|
|
|
|
if mod_channel:is_writeable() then
|
|
|
|
mod_channel:send_all("preview talk to experimental")
|
|
|
|
end
|
2017-09-26 00:11:20 +02:00
|
|
|
end)
|
|
|
|
|
2018-01-20 14:09:58 +01:00
|
|
|
core.after(1, function()
|
2020-04-11 00:09:11 +02:00
|
|
|
print("armor: " .. dump(core.localplayer:get_armor_groups()))
|
2018-01-20 14:09:58 +01:00
|
|
|
id = core.localplayer:hud_add({
|
2023-12-29 21:51:02 +01:00
|
|
|
type = "text",
|
2018-01-20 14:09:58 +01:00
|
|
|
name = "example",
|
|
|
|
number = 0xff0000,
|
|
|
|
position = {x=0, y=1},
|
|
|
|
offset = {x=8, y=-8},
|
|
|
|
text = "You are using the preview mod",
|
|
|
|
scale = {x=200, y=60},
|
|
|
|
alignment = {x=1, y=-1},
|
|
|
|
})
|
|
|
|
end)
|
|
|
|
|
2017-09-26 00:11:20 +02:00
|
|
|
core.register_on_modchannel_message(function(channel, sender, message)
|
|
|
|
print("[PREVIEW][modchannels] Received message `" .. message .. "` on channel `"
|
|
|
|
.. channel .. "` from sender `" .. sender .. "`")
|
|
|
|
core.after(1, function()
|
|
|
|
mod_channel:send_all("CSM preview received " .. message)
|
|
|
|
end)
|
|
|
|
end)
|
|
|
|
|
|
|
|
core.register_on_modchannel_signal(function(channel, signal)
|
|
|
|
print("[PREVIEW][modchannels] Received signal id `" .. signal .. "` on channel `"
|
|
|
|
.. channel)
|
2017-04-08 08:20:30 +02:00
|
|
|
end)
|
|
|
|
|
2017-10-02 22:09:49 +02:00
|
|
|
core.register_on_inventory_open(function(inventory)
|
|
|
|
print("INVENTORY OPEN")
|
|
|
|
print(dump(inventory))
|
|
|
|
return false
|
|
|
|
end)
|
|
|
|
|
2017-04-29 12:08:16 +02:00
|
|
|
core.register_on_placenode(function(pointed_thing, node)
|
|
|
|
print("The local player place a node!")
|
|
|
|
print("pointed_thing :" .. dump(pointed_thing))
|
|
|
|
print("node placed :" .. dump(node))
|
|
|
|
return false
|
|
|
|
end)
|
|
|
|
|
2017-05-06 21:12:44 +02:00
|
|
|
core.register_on_item_use(function(itemstack, pointed_thing)
|
|
|
|
print("The local player used an item!")
|
|
|
|
print("pointed_thing :" .. dump(pointed_thing))
|
|
|
|
print("item = " .. itemstack:get_name())
|
2019-11-09 00:22:42 +01:00
|
|
|
|
2019-11-09 00:41:33 +01:00
|
|
|
if not itemstack:is_empty() then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2020-05-14 21:16:45 +02:00
|
|
|
local pos = core.camera:get_pos()
|
2019-11-09 00:22:42 +01:00
|
|
|
local pos2 = vector.add(pos, vector.multiply(core.camera:get_look_dir(), 100))
|
|
|
|
|
|
|
|
local rc = core.raycast(pos, pos2)
|
|
|
|
local i = rc:next()
|
|
|
|
print("[PREVIEW] raycast next: " .. dump(i))
|
|
|
|
if i then
|
|
|
|
print("[PREVIEW] line of sight: " .. (core.line_of_sight(pos, i.above) and "yes" or "no"))
|
|
|
|
|
|
|
|
local n1 = core.find_nodes_in_area(pos, i.under, {"default:stone"})
|
|
|
|
local n2 = core.find_nodes_in_area_under_air(pos, i.under, {"default:stone"})
|
|
|
|
print(("[PREVIEW] found %s nodes, %s nodes under air"):format(
|
|
|
|
n1 and #n1 or "?", n2 and #n2 or "?"))
|
|
|
|
end
|
|
|
|
|
2017-05-06 21:12:44 +02:00
|
|
|
return false
|
|
|
|
end)
|
|
|
|
|
2017-01-22 00:20:55 +01:00
|
|
|
-- This is an example function to ensure it's working properly, should be removed before merge
|
2017-06-09 15:48:04 +02:00
|
|
|
core.register_on_receiving_chat_message(function(message)
|
2017-01-22 00:20:55 +01:00
|
|
|
print("[PREVIEW] Received message " .. message)
|
|
|
|
return false
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- This is an example function to ensure it's working properly, should be removed before merge
|
2017-06-09 15:48:04 +02:00
|
|
|
core.register_on_sending_chat_message(function(message)
|
2017-01-22 00:20:55 +01:00
|
|
|
print("[PREVIEW] Sending message " .. message)
|
|
|
|
return false
|
|
|
|
end)
|
|
|
|
|
2020-10-03 18:38:08 +02:00
|
|
|
core.register_on_chatcommand(function(command, params)
|
|
|
|
print("[PREVIEW] caught command '"..command.."'. Parameters: '"..params.."'")
|
|
|
|
end)
|
|
|
|
|
2017-01-22 11:17:41 +01:00
|
|
|
-- This is an example function to ensure it's working properly, should be removed before merge
|
2017-01-22 00:20:55 +01:00
|
|
|
core.register_on_hp_modification(function(hp)
|
|
|
|
print("[PREVIEW] HP modified " .. hp)
|
|
|
|
end)
|
|
|
|
|
2017-01-22 11:17:41 +01:00
|
|
|
-- This is an example function to ensure it's working properly, should be removed before merge
|
2017-01-22 00:20:55 +01:00
|
|
|
core.register_on_damage_taken(function(hp)
|
|
|
|
print("[PREVIEW] Damage taken " .. hp)
|
|
|
|
end)
|
2017-01-22 09:05:09 +01:00
|
|
|
|
|
|
|
-- This is an example function to ensure it's working properly, should be removed before merge
|
|
|
|
core.register_chatcommand("dump", {
|
2017-01-24 17:26:15 +01:00
|
|
|
func = function(param)
|
2017-01-22 09:05:09 +01:00
|
|
|
return true, dump(_G)
|
|
|
|
end,
|
2017-01-22 11:17:41 +01:00
|
|
|
})
|
|
|
|
|
2017-03-16 10:34:54 +01:00
|
|
|
local function preview_minimap()
|
|
|
|
local minimap = core.ui.minimap
|
2017-05-20 10:12:37 +02:00
|
|
|
if not minimap then
|
|
|
|
print("[PREVIEW] Minimap is disabled. Skipping.")
|
|
|
|
return
|
|
|
|
end
|
2017-03-16 10:34:54 +01:00
|
|
|
minimap:set_mode(4)
|
2017-03-17 07:54:49 +01:00
|
|
|
minimap:show()
|
2017-03-16 10:34:54 +01:00
|
|
|
minimap:set_pos({x=5, y=50, z=5})
|
2017-04-14 09:04:41 +02:00
|
|
|
minimap:set_shape(math.random(0, 1))
|
2017-03-16 10:34:54 +01:00
|
|
|
|
|
|
|
print("[PREVIEW] Minimap: mode => " .. dump(minimap:get_mode()) ..
|
|
|
|
" position => " .. dump(minimap:get_pos()) ..
|
|
|
|
" angle => " .. dump(minimap:get_angle()))
|
|
|
|
end
|
2017-01-30 20:10:37 +01:00
|
|
|
|
2017-01-22 11:17:41 +01:00
|
|
|
core.after(2, function()
|
2017-01-28 18:31:23 +01:00
|
|
|
print("[PREVIEW] loaded " .. modname .. " mod")
|
2017-03-16 07:53:39 +01:00
|
|
|
modstorage:set_string("current_mod", modname)
|
2020-04-11 00:09:11 +02:00
|
|
|
assert(modstorage:get_string("current_mod") == modname)
|
2017-03-17 07:54:49 +01:00
|
|
|
preview_minimap()
|
|
|
|
end)
|
|
|
|
|
|
|
|
core.after(5, function()
|
2017-05-20 10:12:37 +02:00
|
|
|
if core.ui.minimap then
|
|
|
|
core.ui.minimap:show()
|
|
|
|
end
|
2017-03-17 07:48:29 +01:00
|
|
|
|
2019-11-09 11:29:20 +01:00
|
|
|
print("[PREVIEW] Time of day " .. core.get_timeofday())
|
2017-03-17 07:48:29 +01:00
|
|
|
|
|
|
|
print("[PREVIEW] Node level: " .. core.get_node_level({x=0, y=20, z=0}) ..
|
|
|
|
" max level " .. core.get_node_max_level({x=0, y=20, z=0}))
|
|
|
|
|
|
|
|
print("[PREVIEW] Find node near: " .. dump(core.find_node_near({x=0, y=20, z=0}, 10,
|
|
|
|
{"group:tree", "default:dirt", "default:stone"})))
|
2022-08-02 11:58:08 +02:00
|
|
|
|
|
|
|
print("[PREVIEW] Settings: preview_csm_test_setting = " ..
|
|
|
|
tostring(core.settings:get_bool("preview_csm_test_setting", false)))
|
2017-01-22 11:17:41 +01:00
|
|
|
end)
|
2017-01-29 18:43:44 +01:00
|
|
|
|
|
|
|
core.register_on_dignode(function(pos, node)
|
2017-01-29 19:28:38 +01:00
|
|
|
print("The local player dug a node!")
|
|
|
|
print("pos:" .. dump(pos))
|
|
|
|
print("node:" .. dump(node))
|
|
|
|
return false
|
|
|
|
end)
|
|
|
|
|
|
|
|
core.register_on_punchnode(function(pos, node)
|
|
|
|
print("The local player punched a node!")
|
2020-04-11 00:09:11 +02:00
|
|
|
local itemstack = core.localplayer:get_wielded_item()
|
2017-01-31 14:18:52 +01:00
|
|
|
print(dump(itemstack:to_table()))
|
2017-01-29 18:43:44 +01:00
|
|
|
print("pos:" .. dump(pos))
|
|
|
|
print("node:" .. dump(node))
|
2020-04-11 00:09:11 +02:00
|
|
|
local meta = core.get_meta(pos)
|
|
|
|
print("punched meta: " .. (meta and dump(meta:to_table()) or "(missing)"))
|
2017-01-29 18:43:44 +01:00
|
|
|
return false
|
2017-01-30 20:10:37 +01:00
|
|
|
end)
|
2017-03-22 21:13:03 +01:00
|
|
|
|
2017-06-07 09:09:06 +02:00
|
|
|
core.register_chatcommand("privs", {
|
|
|
|
func = function(param)
|
|
|
|
return true, core.privs_to_string(minetest.get_privilege_list())
|
|
|
|
end,
|
|
|
|
})
|
2018-01-20 14:09:58 +01:00
|
|
|
|
|
|
|
core.register_chatcommand("text", {
|
|
|
|
func = function(param)
|
|
|
|
return core.localplayer:hud_change(id, "text", param)
|
|
|
|
end,
|
|
|
|
})
|
2018-06-06 12:53:59 +02:00
|
|
|
|
|
|
|
|
|
|
|
core.register_on_mods_loaded(function()
|
|
|
|
core.log("Yeah preview mod is loaded with other CSM mods.")
|
|
|
|
end)
|