ComputerCraft/Tree_Farm/farmtree.lua

70 lines
2.0 KiB
Lua
Raw Normal View History

2020-11-06 15:05:04 +00:00
--[[Tree Farming App by Al Sweigart
Plants tree and cuts it down.]]
2020-11-06 11:00:34 +00:00
2020-11-06 15:05:04 +00:00
os.loadAPI('hare.lua') -- Load the hare module
2020-11-06 11:00:34 +00:00
2020-11-06 19:36:05 +00:00
local NUM_OF_TREES = 4
local TREE_SAPLING = 'spruce'
2020-11-06 11:00:34 +00:00
2020-11-06 15:05:04 +00:00
-- Check if choptree program exists
2020-11-06 11:00:34 +00:00
if not fs.exists('choptree.lua') then
2020-11-06 19:36:05 +00:00
error('You must install choptree app first')
2020-11-06 11:00:34 +00:00
end
while true do
-- Check if turtle has enough fuel
if turtle.getFuelLevel() < (2 * (3 * NUM_OF_TREES)) then
hare.selectItem('minecraft:' .. TREE_SAPLING .. 'log')
turtle.refuel(2)
2020-11-06 19:36:05 +00:00
end
-- Empty everything except for the saplings
for i = 1, 16 do
local item = turtle.getItemDetail(i)
2020-11-06 11:00:34 +00:00
if item ~= nil and item['name'] ~= 'minecraft:' .. TREE_SAPLING .. '_sapling' then
turtle.select(i)
turtle.drop()
end
2020-11-06 19:36:05 +00:00
end
2020-11-06 11:00:34 +00:00
-- Check if we have saplings in our inventory
if not hare.selectItem('minecraft:' .. TREE_SAPLING .. '_sapling') then
error('Out of ' .. TREE_SAPLING .. ' saplings')
2020-11-06 19:36:05 +00:00
end
-- Build a Loop, where we plant and cut trees
for i = 1, NUM_OF_TREES do
turtle.back()
turtle.back()
turtle.back()
turtle.turnRight()
blockExists, item = turtle.inspect()
if blockExists and item['name'] == 'minecraft:' .. TREE_SAPLING .. '_log' then
hare.selectEmtySlot()
2020-11-06 19:36:05 +00:00
shell.run('choptree.lua') -- Run Choptree
elseif blockExists and item['name'] ~= 'minecraft:' .. TREE_SAPLING .. '_sapling' then
print('Error! Wrong block')
elseif not blockExists then
turtle.forward()
local success, underneath = turtle.inspectDown()
if underneath['name'] ~= 'minecraft:dirt' and underneath['name'] ~= 'minecraft:grass_block' then
print('Error. No Dirt or Grass underneath to plant a tree. Found: ' .. underneath['name'])
turtle.back()
else
turtle.back()
hare.selectItem('minecraft:' .. TREE_SAPLING .. '_sapling')
turtle.place()
end
end
turtle.turnLeft()
2020-11-06 19:36:05 +00:00
end
-- Move forward to the chest again
for i = 1, (3 * NUM_OF_TREES) do
turtle.forward()
2020-11-06 19:36:05 +00:00
end
2020-11-06 11:00:34 +00:00
end