maidroid/maidroid_core/cores/farming.lua

302 lines
8.6 KiB
Lua
Raw Normal View History

2016-12-21 15:18:41 +01:00
------------------------------------------------------------
-- Copyright (c) 2016 tacigar. All rights reserved.
-- https://github.com/tacigar/maidroid
------------------------------------------------------------
local state = {
WALK_RANDOMLY = 0,
WALK_TO_PLANT = 1,
WALK_TO_MOW = 2,
PLANT = 3,
MOW = 4,
}
local target_plants = {
"farming:cotton_8",
"farming:wheat_8",
}
local _aux = maidroid_core._aux
local FIND_PATH_TIME_INTERVAL = 20
2016-12-22 07:44:33 +01:00
local CHANGE_DIRECTION_TIME_INTERVAL = 30
2016-12-21 15:18:41 +01:00
local MAX_WALK_TIME = 120
-- is_plantable_place reports whether maidroid can plant any seed.
local function is_plantable_place(pos)
local node = minetest.get_node(pos)
2016-12-22 07:44:33 +01:00
local lpos = vector.add(pos, {x = 0, y = -1, z = 0})
2016-12-21 15:18:41 +01:00
local lnode = minetest.get_node(lpos)
return node.name == "air"
2016-12-28 05:04:28 +01:00
and minetest.get_item_group(lnode.name, "soil") > 1
2016-12-21 15:18:41 +01:00
end
-- is_mowable_place reports whether maidroid can mow.
local function is_mowable_place(pos)
local node = minetest.get_node(pos)
2016-12-22 07:44:33 +01:00
for _, plant in ipairs(target_plants) do
if plant == node.name then
return true
end
end
return false
2016-12-21 15:18:41 +01:00
end
2016-12-23 04:00:10 +01:00
local walk_randomly, walk_to_plant_and_mow_common, plant, mow
local to_walk_randomly, to_walk_to_plant, to_walk_to_mow, to_plant, to_mow
2016-12-22 07:44:33 +01:00
2016-12-23 04:00:10 +01:00
local function on_start(self)
self.object:setacceleration{x = 0, y = -10, z = 0}
2021-04-04 16:42:55 +02:00
self.object:set_velocity{x = 0, y = 0, z = 0}
2016-12-23 04:00:10 +01:00
self.state = state.WALK_RANDOMLY
self.time_counters = {}
self.path = nil
to_walk_randomly(self)
end
2016-12-21 15:18:41 +01:00
2016-12-23 04:00:10 +01:00
local function on_stop(self)
2021-04-04 16:42:55 +02:00
self.object:set_velocity{x = 0, y = 0, z = 0}
2016-12-23 04:00:10 +01:00
self.state = nil
self.time_counters = nil
self.path = nil
self:set_animation(maidroid.animation_frames.STAND)
end
2016-12-21 15:18:41 +01:00
2016-12-23 04:00:10 +01:00
local function is_near(self, pos, distance)
2021-04-04 16:42:55 +02:00
local p = self.object:get_pos()
2016-12-23 04:00:10 +01:00
-- p.y = p.y + 0.5
return vector.distance(p, pos) < distance
end
2016-12-21 15:18:41 +01:00
2016-12-23 04:00:10 +01:00
local searching_range = {x = 5, y = 2, z = 5}
2016-12-21 15:18:41 +01:00
2016-12-23 04:00:10 +01:00
walk_randomly = function(self, dtime)
if self.time_counters[1] >= FIND_PATH_TIME_INTERVAL then
self.time_counters[1] = 0
self.time_counters[2] = self.time_counters[2] + 1
2016-12-22 07:44:33 +01:00
2016-12-23 04:00:10 +01:00
local wield_stack = self:get_wield_item_stack()
if minetest.get_item_group(wield_stack:get_name(), "seed") > 0
or self:has_item_in_main(function(itemname) return (minetest.get_item_group(itemname, "seed") > 0) end) then
2021-04-04 16:42:55 +02:00
local destination = _aux.search_surrounding(self.object:get_pos(), is_plantable_place, searching_range)
2016-12-21 15:18:41 +01:00
if destination ~= nil then
2021-04-04 16:42:55 +02:00
local path = minetest.find_path(self.object:get_pos(), destination, 10, 1, 1, "A*")
2016-12-23 04:00:10 +01:00
if path ~= nil then -- to walk to plant state.
to_walk_to_plant(self, path, destination)
2016-12-21 15:18:41 +01:00
return
end
end
2016-12-23 04:00:10 +01:00
end
-- if couldn't find path to plant, try to mow.
2021-04-04 16:42:55 +02:00
local destination = _aux.search_surrounding(self.object:get_pos(), is_mowable_place, searching_range)
2016-12-23 04:00:10 +01:00
if destination ~= nil then
2021-04-04 16:42:55 +02:00
local path = minetest.find_path(self.object:get_pos(), destination, 10, 1, 1, "A*")
2016-12-23 04:00:10 +01:00
if path ~= nil then -- to walk to mow state.
to_walk_to_mow(self, path, destination)
return
2016-12-23 02:02:15 +01:00
end
2016-12-21 15:18:41 +01:00
end
2016-12-23 04:00:10 +01:00
-- else do nothing.
return
2016-12-21 15:18:41 +01:00
2016-12-23 04:00:10 +01:00
elseif self.time_counters[2] >= CHANGE_DIRECTION_TIME_INTERVAL then
self.time_counters[1] = self.time_counters[1] + 1
2016-12-22 02:02:37 +01:00
self.time_counters[2] = 0
self:change_direction_randomly()
2016-12-23 04:00:10 +01:00
return
else
self.time_counters[1] = self.time_counters[1] + 1
self.time_counters[2] = self.time_counters[2] + 1
2016-12-22 02:02:37 +01:00
2021-04-04 16:42:55 +02:00
local velocity = self.object:get_velocity()
2016-12-23 04:00:10 +01:00
if velocity.y == 0 then
local front_node = self:get_front_node()
2016-12-24 01:23:31 +01:00
if minetest.get_item_group(front_node.name, "fence") > 0 then
self:change_direction_randomly()
elseif front_node.name ~= "air" and minetest.registered_nodes[front_node.name] ~= nil
and minetest.registered_nodes[front_node.name].walkable then
2021-04-04 16:42:55 +02:00
self.object:set_velocity{x = velocity.x, y = 6, z = velocity.z}
2016-12-23 04:00:10 +01:00
end
end
return
2016-12-21 15:18:41 +01:00
end
2016-12-23 04:00:10 +01:00
end
2016-12-21 15:18:41 +01:00
2016-12-23 04:00:10 +01:00
to_walk_randomly = function(self)
self.state = state.WALK_RANDOMLY
self.time_counters[1] = 0
self.time_counters[2] = 0
self:change_direction_randomly()
self:set_animation(maidroid.animation_frames.WALK)
end
to_walk_to_plant = function(self, path, destination)
self.state = state.WALK_TO_PLANT
self.path = path
self.destination = destination
self.time_counters[1] = 0 -- find path interval
self.time_counters[2] = 0
self:change_direction(self.path[1])
self:set_animation(maidroid.animation_frames.WALK)
end
to_walk_to_mow = function(self, path, destination)
self.state = state.WALK_TO_MOW
self.path = path
self.destination = destination
self.time_counters[1] = 0 -- find path interval
self.time_counters[2] = 0
self:change_direction(self.path[1])
self:set_animation(maidroid.animation_frames.WALK)
end
to_plant = function(self)
local wield_stack = self:get_wield_item_stack()
if minetest.get_item_group(wield_stack:get_name(), "seed") > 0
or self:move_main_to_wield(function(itemname) return (minetest.get_item_group(itemname, "seed") > 0) end) then
self.state = state.PLANT
self.time_counters[1] = 0
2021-04-04 16:42:55 +02:00
self.object:set_velocity{x = 0, y = 0, z = 0}
2016-12-23 04:00:10 +01:00
self:set_animation(maidroid.animation_frames.MINE)
2021-04-04 16:42:55 +02:00
self:set_yaw_by_direction(vector.subtract(self.destination, self.object:get_pos()))
2016-12-23 04:00:10 +01:00
return
else
to_walk_randomly(self)
return
2016-12-22 02:02:37 +01:00
end
2016-12-23 04:00:10 +01:00
end
2016-12-22 02:02:37 +01:00
2016-12-23 04:00:10 +01:00
to_mow = function(self)
self.state = state.MOW
self.time_counters[1] = 0
2021-04-04 16:42:55 +02:00
self.object:set_velocity{x = 0, y = 0, z = 0}
2016-12-23 04:00:10 +01:00
self:set_animation(maidroid.animation_frames.MINE)
2021-04-04 16:42:55 +02:00
self:set_yaw_by_direction(vector.subtract(self.destination, self.object:get_pos()))
2016-12-23 04:00:10 +01:00
end
walk_to_plant_and_mow_common = function(self, dtime)
if is_near(self, self.destination, 1.5) then
if self.state == state.WALK_TO_PLANT then
to_plant(self)
2016-12-22 02:02:37 +01:00
return
2016-12-23 04:00:10 +01:00
elseif self.state == state.WALK_TO_MOW then
to_mow(self)
2016-12-22 02:02:37 +01:00
return
end
end
2016-12-23 04:00:10 +01:00
if self.time_counters[2] >= MAX_WALK_TIME then -- time over.
to_walk_randomly(self)
return
2016-12-21 15:18:41 +01:00
end
2016-12-23 04:00:10 +01:00
self.time_counters[1] = self.time_counters[1] + 1
self.time_counters[2] = self.time_counters[2] + 1
2016-12-22 07:44:33 +01:00
2016-12-23 04:00:10 +01:00
if self.time_counters[1] >= FIND_PATH_TIME_INTERVAL then
self.time_counters[1] = 0
2021-04-04 16:42:55 +02:00
local path = minetest.find_path(self.object:get_pos(), self.destination, 10, 1, 1, "A*")
2016-12-23 04:00:10 +01:00
if path == nil then
2016-12-21 15:18:41 +01:00
to_walk_randomly(self)
return
end
2016-12-23 04:00:10 +01:00
self.path = path
end
2016-12-21 15:18:41 +01:00
2016-12-23 04:00:10 +01:00
-- follow path
if is_near(self, self.path[1], 0.5) then
table.remove(self.path, 1)
2016-12-22 11:56:50 +01:00
2016-12-23 04:00:10 +01:00
if #self.path == 0 then -- end of path
if self.state == state.WALK_TO_PLANT then
to_plant(self)
return
elseif self.state == state.WALK_TO_MOW then
to_mow(self)
2016-12-21 15:18:41 +01:00
return
end
2016-12-23 04:00:10 +01:00
else -- else next step, follow next path.
self:change_direction(self.path[1])
2016-12-21 15:18:41 +01:00
end
2016-12-23 04:00:10 +01:00
else
-- if maidroid is stopped by obstacles, the maidroid must jump.
2021-04-04 16:42:55 +02:00
local velocity = self.object:get_velocity()
2016-12-23 04:00:10 +01:00
if velocity.y == 0 then
local front_node = self:get_front_node()
2016-12-24 01:23:31 +01:00
if front_node.name ~= "air" and minetest.registered_nodes[front_node.name] ~= nil
and minetest.registered_nodes[front_node.name].walkable
2016-12-23 04:00:10 +01:00
and not (minetest.get_item_group(front_node.name, "fence") > 0) then
2021-04-04 16:42:55 +02:00
self.object:set_velocity{x = velocity.x, y = 6, z = velocity.z}
2016-12-21 15:18:41 +01:00
end
end
end
2016-12-23 04:00:10 +01:00
end
2016-12-21 15:18:41 +01:00
2016-12-23 04:00:10 +01:00
plant = function(self, dtime)
if self.time_counters[1] >= 15 then
if is_plantable_place(self.destination) then
local stack = self:get_wield_item_stack()
local itemname = stack:get_name()
2017-01-03 15:48:54 +01:00
local pointed_thing = {
type = "node",
under = vector.add(self.destination, {x = 0, y = -1, z = 0}),
above = self.destination,
}
farming.place_seed(stack, minetest.get_player_by_name(self.owner_name), pointed_thing, stack:get_name())
2016-12-23 04:00:10 +01:00
stack:take_item(1)
self:set_wield_item_stack(stack)
2016-12-22 02:02:37 +01:00
end
2016-12-23 04:00:10 +01:00
to_walk_randomly(self)
return
else
self.time_counters[1] = self.time_counters[1] + 1
2016-12-22 02:02:37 +01:00
end
2016-12-23 04:00:10 +01:00
end
2016-12-22 02:02:37 +01:00
2016-12-23 04:00:10 +01:00
mow = function(self, dtime)
if self.time_counters[1] >= 15 then
if is_mowable_place(self.destination) then
local destnode = minetest.get_node(self.destination)
minetest.remove_node(self.destination)
local stacks = minetest.get_node_drops(destnode.name)
2016-12-22 02:02:37 +01:00
2016-12-23 04:00:10 +01:00
for _, stack in ipairs(stacks) do
local leftover = self:add_item_to_main(stack)
minetest.add_item(self.destination, leftover)
2016-12-22 02:02:37 +01:00
end
end
2016-12-23 04:00:10 +01:00
to_walk_randomly(self)
return
else
self.time_counters[1] = self.time_counters[1] + 1
2016-12-22 02:02:37 +01:00
end
2016-12-23 04:00:10 +01:00
end
2016-12-22 02:02:37 +01:00
2016-12-23 04:00:10 +01:00
local function on_step(self, dtime)
if self.state == state.WALK_RANDOMLY then
walk_randomly(self, dtime)
elseif self.state == state.WALK_TO_PLANT or self.state == state.WALK_TO_MOW then
walk_to_plant_and_mow_common(self, dtime)
elseif self.state == state.PLANT then
plant(self, dtime)
elseif self.state == state.MOW then
mow(self, dtime)
2016-12-21 15:18:41 +01:00
end
2016-12-23 04:00:10 +01:00
end
2016-12-21 15:18:41 +01:00
2016-12-23 04:00:10 +01:00
maidroid.register_core("maidroid_core:farming", {
description = "maidroid core : farming",
inventory_image = "maidroid_core_farming.png",
on_start = on_start,
on_stop = on_stop,
on_resume = on_start,
on_pause = on_stop,
on_step = on_step,
})