2020-09-16 23:45:52 +00:00
|
|
|
import re
|
|
|
|
import time
|
|
|
|
import importlib
|
2020-10-15 07:37:47 +00:00
|
|
|
import random
|
2020-12-05 10:56:56 +00:00
|
|
|
from itertools import count
|
2020-09-16 23:45:52 +00:00
|
|
|
from math import hypot
|
|
|
|
|
|
|
|
from panda3d.core import LPoint3f
|
|
|
|
|
|
|
|
from minecraft.networking.types import BlockFace
|
|
|
|
|
2020-09-25 06:03:22 +00:00
|
|
|
from protocol.managers import ChunkNotLoadedException
|
|
|
|
|
2020-09-16 23:45:52 +00:00
|
|
|
import utils
|
|
|
|
importlib.reload(utils)
|
|
|
|
import path
|
|
|
|
importlib.reload(path)
|
|
|
|
import blocks
|
|
|
|
importlib.reload(blocks)
|
2020-09-17 02:11:42 +00:00
|
|
|
import items
|
|
|
|
importlib.reload(items)
|
2020-09-21 05:41:55 +00:00
|
|
|
import data
|
|
|
|
importlib.reload(data)
|
2020-12-04 02:49:22 +00:00
|
|
|
import mobs
|
|
|
|
importlib.reload(mobs)
|
2020-09-16 23:45:52 +00:00
|
|
|
|
|
|
|
|
2020-09-25 06:03:22 +00:00
|
|
|
class FindGappleStates:
|
|
|
|
def idle(self):
|
|
|
|
return None
|
|
|
|
|
|
|
|
def init(self):
|
|
|
|
self.state = self.go_spectator
|
|
|
|
|
|
|
|
def go_spectator(self):
|
|
|
|
print('Going spectator...')
|
|
|
|
self.g.chat.send('/gamemode spectator')
|
|
|
|
|
|
|
|
self.state = self.tp_to_coord
|
|
|
|
|
|
|
|
def tp_to_coord(self):
|
|
|
|
step = utils.spiral(self.count)
|
|
|
|
step_scaled = utils.pmul(step, 192)
|
|
|
|
self.coord = utils.padd(self.origin, step_scaled)
|
2020-09-25 21:51:36 +00:00
|
|
|
self.coord = (self.coord[0], 50, self.coord[2])
|
2020-09-25 06:03:22 +00:00
|
|
|
|
|
|
|
print('count:', self.count, 'teleporting to:', self.coord)
|
|
|
|
self.g.chat.send('/tp {} {} {}'.format(*self.coord))
|
|
|
|
|
2020-09-25 21:51:36 +00:00
|
|
|
self.g.command_lock = True
|
2020-09-25 06:03:22 +00:00
|
|
|
self.state = self.wait_for_load
|
|
|
|
|
|
|
|
def wait_for_load(self):
|
2020-09-25 21:51:36 +00:00
|
|
|
if self.g.command_lock:
|
|
|
|
return
|
|
|
|
|
|
|
|
if self.g.chunks.check_loaded(self.g.pos, 169):
|
2020-09-25 06:03:22 +00:00
|
|
|
print('chunks have been loaded')
|
|
|
|
self.state = self.pick_chest
|
|
|
|
|
|
|
|
def pick_chest(self):
|
|
|
|
chest_list = []
|
|
|
|
for chest_id in blocks.CHEST_IDS:
|
|
|
|
chest_list.extend(self.g.chunks.index.get(chest_id, []))
|
|
|
|
|
|
|
|
for chest in chest_list:
|
2020-09-25 21:51:36 +00:00
|
|
|
if chest in self.checked_chests:
|
|
|
|
# slow but simple
|
|
|
|
continue
|
|
|
|
|
|
|
|
if utils.phyp_king(self.coord, chest) > 96:
|
|
|
|
# skip because we can't detect item drops
|
|
|
|
continue
|
2020-09-25 06:03:22 +00:00
|
|
|
|
|
|
|
self.current_chest = chest
|
2020-09-25 21:51:36 +00:00
|
|
|
self.checked_chests.append(self.current_chest)
|
2020-09-25 06:03:22 +00:00
|
|
|
self.state = self.break_chest
|
|
|
|
break
|
|
|
|
else: # for
|
|
|
|
print('exhausted chest list')
|
|
|
|
self.state = self.cleanup
|
|
|
|
|
|
|
|
def break_chest(self):
|
|
|
|
print('Breaking chest', self.current_chest)
|
|
|
|
self.g.command_lock = True
|
2020-09-25 21:51:36 +00:00
|
|
|
self.g.item_lock = True
|
2020-09-25 06:03:22 +00:00
|
|
|
self.g.chat.send('/setblock {} {} {} air destroy'.format(*self.current_chest))
|
|
|
|
|
2020-09-25 21:51:36 +00:00
|
|
|
self.wait_time = 0.5
|
2020-09-25 06:03:22 +00:00
|
|
|
self.state = self.wait_for_items
|
|
|
|
|
|
|
|
def wait_for_items(self):
|
2020-09-25 21:51:36 +00:00
|
|
|
# wait for command to execute
|
|
|
|
if self.g.command_lock:
|
|
|
|
return
|
|
|
|
|
|
|
|
# wait for items to drop
|
|
|
|
if self.wait_time > 0:
|
|
|
|
self.wait_time -= utils.TICK
|
|
|
|
else:
|
2020-09-25 06:03:22 +00:00
|
|
|
print('done waiting for items')
|
|
|
|
self.state = self.pick_chest
|
|
|
|
|
|
|
|
def cleanup(self):
|
|
|
|
self.count += 1
|
|
|
|
self.state = self.done
|
|
|
|
|
|
|
|
def done(self):
|
|
|
|
# never gets ran, placeholder
|
|
|
|
return None
|
|
|
|
|
|
|
|
def __init__(self, global_state):
|
|
|
|
self.g = global_state
|
|
|
|
self.state = self.idle
|
|
|
|
|
|
|
|
self.origin = utils.pint(self.g.pos)
|
|
|
|
self.count = 0
|
|
|
|
self.coord = None
|
|
|
|
self.current_chest = None
|
|
|
|
self.checked_chests = []
|
2020-09-25 21:51:36 +00:00
|
|
|
self.wait_time = 0
|
2020-09-25 06:03:22 +00:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
self.state()
|
|
|
|
|
|
|
|
|
2020-10-13 18:54:24 +00:00
|
|
|
class GatherWoodStates:
|
2020-09-16 23:45:52 +00:00
|
|
|
def bair(self, p):
|
|
|
|
return self.g.chunks.get_block_at(*p) in blocks.NON_SOLID_IDS
|
|
|
|
|
|
|
|
def blog(self, p):
|
|
|
|
return self.g.chunks.get_block_at(*p) in blocks.LOG_IDS
|
|
|
|
|
|
|
|
def idle(self):
|
|
|
|
return None
|
|
|
|
|
|
|
|
def init(self):
|
2020-10-14 02:26:50 +00:00
|
|
|
self.g.chopped_tree = False
|
2020-09-16 23:45:52 +00:00
|
|
|
self.state = self.find_new_tree
|
|
|
|
|
|
|
|
def find_new_tree(self):
|
|
|
|
print('Finding new tree...')
|
|
|
|
w = self.g.world
|
|
|
|
p = utils.pint(self.g.pos)
|
|
|
|
|
2020-10-19 21:49:14 +00:00
|
|
|
for tree in w.find_trees(p, 100):
|
|
|
|
print('Found tree:', tree)
|
|
|
|
if tree not in self.bad_trees:
|
|
|
|
break
|
|
|
|
else: # for
|
|
|
|
print('No good trees left, aborting.')
|
2020-10-14 02:26:50 +00:00
|
|
|
self.state = self.cleanup
|
|
|
|
return
|
2020-09-16 23:45:52 +00:00
|
|
|
|
2020-10-19 21:49:14 +00:00
|
|
|
self.tree = tree
|
|
|
|
self.state = self.find_openings
|
|
|
|
|
|
|
|
def find_openings(self):
|
|
|
|
w = self.g.world
|
2020-09-16 23:45:52 +00:00
|
|
|
self.openings = w.find_tree_openings(self.tree)
|
|
|
|
self.state = self.choose_opening
|
|
|
|
|
|
|
|
def choose_opening(self):
|
|
|
|
w = self.g.world
|
|
|
|
p = utils.pint(self.g.pos)
|
|
|
|
|
|
|
|
print('openings:', self.openings)
|
|
|
|
|
|
|
|
if not len(self.openings):
|
|
|
|
print('Unable to get to tree', self.tree)
|
2020-10-18 05:35:43 +00:00
|
|
|
if self.tree not in self.good_trees:
|
|
|
|
self.bad_trees.append(self.tree)
|
2020-09-16 23:45:52 +00:00
|
|
|
self.state = self.cleanup
|
|
|
|
return
|
|
|
|
|
2020-09-17 01:12:01 +00:00
|
|
|
navpath = w.path_to_place(p, self.openings[0])
|
2020-09-16 23:45:52 +00:00
|
|
|
|
2020-09-17 01:12:01 +00:00
|
|
|
if navpath:
|
|
|
|
self.g.path = navpath
|
2020-09-16 23:45:52 +00:00
|
|
|
self.state = self.going_to_tree
|
|
|
|
else:
|
|
|
|
self.openings.pop(0)
|
|
|
|
|
|
|
|
def going_to_tree(self):
|
|
|
|
if utils.pint(self.g.pos) == self.openings[0]:
|
|
|
|
self.g.look_at = self.tree
|
|
|
|
self.state = self.clear_leaves
|
|
|
|
|
|
|
|
def clear_leaves(self):
|
|
|
|
if not self.g.breaking:
|
|
|
|
p = utils.pint(self.g.pos)
|
2020-09-17 01:12:01 +00:00
|
|
|
diff = utils.psub(self.tree, p)
|
2020-09-16 23:45:52 +00:00
|
|
|
|
2020-09-17 01:12:01 +00:00
|
|
|
for x in utils.diffrange(diff[0]):
|
|
|
|
for z in utils.diffrange(diff[2]):
|
2020-09-16 23:45:52 +00:00
|
|
|
for y in range(2):
|
|
|
|
check = utils.padd(p, (x, y, z))
|
|
|
|
if check == self.tree:
|
|
|
|
break
|
|
|
|
if not self.bair(check):
|
|
|
|
print('Breaking leaf')
|
|
|
|
self.g.game.break_block(check)
|
|
|
|
return
|
|
|
|
|
|
|
|
self.state = self.clear_trunk_base
|
|
|
|
|
|
|
|
def clear_trunk_base(self):
|
|
|
|
if not self.g.breaking:
|
|
|
|
base = self.tree
|
|
|
|
above = utils.padd(self.tree, path.BLOCK_ABOVE)
|
|
|
|
|
|
|
|
if self.blog(base):
|
|
|
|
self.g.game.break_block(base)
|
|
|
|
print('breaking base')
|
|
|
|
elif self.blog(above):
|
|
|
|
self.g.game.break_block(above)
|
|
|
|
print('breaking above')
|
|
|
|
else:
|
|
|
|
w = self.g.world
|
|
|
|
p = utils.pint(self.g.pos)
|
2020-09-17 01:12:01 +00:00
|
|
|
navpath = w.path_to_place(p, self.tree)
|
2020-09-16 23:45:52 +00:00
|
|
|
|
2020-09-17 01:12:01 +00:00
|
|
|
if navpath:
|
|
|
|
self.g.path = navpath
|
2020-09-16 23:45:52 +00:00
|
|
|
self.state = self.going_to_trunk_base
|
|
|
|
else:
|
|
|
|
self.openings.pop(0)
|
|
|
|
self.state = self.choose_opening
|
|
|
|
|
|
|
|
def going_to_trunk_base(self):
|
|
|
|
if utils.pint(self.g.pos) == self.tree:
|
|
|
|
self.g.look_at = utils.padd(self.tree, path.BLOCK_ABOVE2)
|
|
|
|
self.state = self.clear_trunk
|
|
|
|
|
|
|
|
def clear_trunk(self):
|
|
|
|
if not self.g.breaking:
|
|
|
|
check = self.tree
|
|
|
|
|
|
|
|
count = 0
|
|
|
|
while self.bair(check) and count < 6:
|
|
|
|
check = utils.padd(check, path.BLOCK_ABOVE)
|
|
|
|
count += 1
|
|
|
|
|
|
|
|
if self.blog(check):
|
|
|
|
print('breaking log', check)
|
|
|
|
self.g.game.break_block(check)
|
|
|
|
else:
|
|
|
|
print('Finished clearing tree')
|
|
|
|
self.wait_time = 0.5
|
|
|
|
self.state = self.wait
|
|
|
|
|
|
|
|
def wait(self):
|
|
|
|
# wait for the last log to fall
|
|
|
|
if self.wait_time > 0:
|
2020-09-17 01:12:01 +00:00
|
|
|
self.wait_time -= utils.TICK
|
2020-09-16 23:45:52 +00:00
|
|
|
else:
|
2020-10-14 02:26:50 +00:00
|
|
|
self.g.chopped_tree = True
|
2020-10-18 05:35:43 +00:00
|
|
|
self.good_trees.append(self.tree)
|
2020-10-19 21:49:14 +00:00
|
|
|
self.state = self.check_pos
|
|
|
|
|
|
|
|
def check_pos(self):
|
|
|
|
# make sure we are at base of trunk
|
|
|
|
# doesn't always happen, for some reason
|
|
|
|
if utils.pint(self.g.pos) == self.tree:
|
2020-09-16 23:45:52 +00:00
|
|
|
self.state = self.cleanup
|
2020-10-19 21:49:14 +00:00
|
|
|
else:
|
|
|
|
self.state = self.find_openings
|
2020-09-16 23:45:52 +00:00
|
|
|
|
|
|
|
def cleanup(self):
|
|
|
|
self.g.look_at = None
|
|
|
|
self.state = self.done
|
|
|
|
|
|
|
|
def done(self):
|
|
|
|
# never gets ran, placeholder
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def __init__(self, global_state):
|
|
|
|
self.g = global_state
|
|
|
|
self.state = self.idle
|
|
|
|
|
|
|
|
self.tree = None
|
|
|
|
self.openings = []
|
|
|
|
self.bad_trees = []
|
2020-10-18 05:35:43 +00:00
|
|
|
self.good_trees = []
|
2020-09-16 23:45:52 +00:00
|
|
|
self.wait_time = 0
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
self.state()
|
|
|
|
|
|
|
|
|
|
|
|
class GatherSandStates:
|
|
|
|
def bair(self, p):
|
|
|
|
return self.g.chunks.get_block_at(*p) in blocks.NON_SOLID_IDS
|
|
|
|
|
|
|
|
def bsand(self, p):
|
2020-12-02 05:16:46 +00:00
|
|
|
return self.g.chunks.get_block_at(*p) == blocks.SAND
|
2020-09-16 23:45:52 +00:00
|
|
|
|
|
|
|
def idle(self):
|
|
|
|
return None
|
|
|
|
|
|
|
|
def init(self):
|
2020-12-02 11:12:51 +00:00
|
|
|
self.state = self.select_shovel
|
|
|
|
|
|
|
|
def select_shovel(self):
|
|
|
|
self.g.game.select_item(items.SHOVEL_IDS)
|
2020-12-02 05:16:46 +00:00
|
|
|
self.state = self.find_new_slice
|
|
|
|
|
|
|
|
def find_new_slice(self):
|
|
|
|
print('Finding new slice...')
|
|
|
|
w = self.g.world
|
|
|
|
|
|
|
|
print('using origin', self.origin)
|
2020-12-04 02:49:22 +00:00
|
|
|
start = time.time()
|
|
|
|
self.prev_layer, s = w.find_sand_slice(self.origin, 200, 10, self.bad_slices, self.prev_layer)
|
|
|
|
print('Found slice:', s, 'in', time.time() - start, 'seconds')
|
2020-12-02 05:16:46 +00:00
|
|
|
|
|
|
|
if s:
|
|
|
|
self.slice = s
|
2020-12-04 02:49:22 +00:00
|
|
|
self.bad_slices.append(s)
|
2020-12-02 05:16:46 +00:00
|
|
|
self.state = self.find_new_sand
|
|
|
|
else:
|
|
|
|
print('No slices remaining.')
|
|
|
|
self.state = self.cleanup
|
2020-09-16 23:45:52 +00:00
|
|
|
|
|
|
|
def find_new_sand(self):
|
|
|
|
print('Finding new sand...')
|
|
|
|
w = self.g.world
|
|
|
|
p = utils.pint(self.g.pos)
|
2020-12-04 02:49:22 +00:00
|
|
|
head = utils.padd(p, path.BLOCK_ABOVE)
|
2020-09-16 23:45:52 +00:00
|
|
|
|
2020-12-04 02:49:22 +00:00
|
|
|
for sand in w.find_sand(self.slice, 2, p):
|
|
|
|
if sand not in self.bad_sand:
|
|
|
|
print('Found sand:', sand)
|
|
|
|
break
|
|
|
|
else: # for
|
|
|
|
print('No good sands left, aborting.')
|
2020-12-02 05:16:46 +00:00
|
|
|
self.state = self.cleanup
|
|
|
|
return
|
|
|
|
|
2020-12-04 02:49:22 +00:00
|
|
|
self.sand = sand
|
2020-09-16 23:45:52 +00:00
|
|
|
|
2020-12-04 02:49:22 +00:00
|
|
|
if utils.phyp(head, self.sand) < blocks.BREAK_DISTANCE:
|
2020-12-02 05:16:46 +00:00
|
|
|
self.state = self.dig_sand
|
2020-12-04 02:49:22 +00:00
|
|
|
else:
|
|
|
|
self.state = self.nav_to_sand
|
2020-09-16 23:45:52 +00:00
|
|
|
|
|
|
|
def nav_to_sand(self):
|
|
|
|
w = self.g.world
|
|
|
|
p = utils.pint(self.g.pos)
|
2020-12-02 05:16:46 +00:00
|
|
|
c = self.g.chunks
|
2020-09-16 23:45:52 +00:00
|
|
|
|
2020-12-02 05:16:46 +00:00
|
|
|
tmp = c.get_block_at(*self.sand)
|
|
|
|
c.set_block_at(*self.sand, blocks.AIR)
|
2020-09-17 01:12:01 +00:00
|
|
|
navpath = w.path_to_place(p, self.sand)
|
2020-12-02 05:16:46 +00:00
|
|
|
c.set_block_at(*self.sand, tmp)
|
2020-09-16 23:45:52 +00:00
|
|
|
|
2020-09-17 01:12:01 +00:00
|
|
|
if navpath:
|
|
|
|
self.g.path = navpath[:-1]
|
2020-09-16 23:45:52 +00:00
|
|
|
self.state = self.going_to_sand
|
|
|
|
else:
|
2020-12-04 02:49:22 +00:00
|
|
|
print('Cant get to that sand')
|
2020-09-16 23:45:52 +00:00
|
|
|
self.bad_sand.append(self.sand)
|
|
|
|
self.state = self.find_new_sand
|
|
|
|
|
|
|
|
def going_to_sand(self):
|
|
|
|
if not len(self.g.path):
|
|
|
|
self.g.look_at = self.sand
|
|
|
|
self.state = self.dig_sand
|
|
|
|
|
|
|
|
def dig_sand(self):
|
|
|
|
if not self.g.breaking:
|
|
|
|
if self.bsand(self.sand):
|
2020-12-02 05:16:46 +00:00
|
|
|
self.g.look_at = self.sand
|
2020-09-16 23:45:52 +00:00
|
|
|
self.g.game.break_block(self.sand)
|
|
|
|
print('digging sand')
|
|
|
|
else:
|
2020-12-02 05:16:46 +00:00
|
|
|
self.state = self.find_new_sand
|
|
|
|
|
|
|
|
def cleanup(self):
|
|
|
|
self.g.look_at = None
|
|
|
|
self.state = self.done
|
|
|
|
|
|
|
|
def done(self):
|
|
|
|
# never gets ran, placeholder
|
|
|
|
return None
|
2020-09-16 23:45:52 +00:00
|
|
|
|
2020-12-02 05:16:46 +00:00
|
|
|
|
|
|
|
def __init__(self, global_state):
|
|
|
|
self.g = global_state
|
|
|
|
self.state = self.idle
|
|
|
|
|
|
|
|
self.origin = utils.pint(self.g.pos)
|
2020-12-04 02:49:22 +00:00
|
|
|
self.origin = (2019, 64, 238)
|
2020-12-02 05:16:46 +00:00
|
|
|
self.slice = None
|
2020-12-02 07:02:26 +00:00
|
|
|
self.bad_slices = []
|
2020-12-04 02:49:22 +00:00
|
|
|
self.prev_layer = 0
|
2020-12-02 05:16:46 +00:00
|
|
|
self.sand = None
|
|
|
|
self.bad_sand = []
|
|
|
|
self.wait_time = 0
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
self.state()
|
|
|
|
|
|
|
|
|
|
|
|
class GrabSandStates:
|
|
|
|
def idle(self):
|
|
|
|
return None
|
|
|
|
|
|
|
|
def init(self):
|
|
|
|
self.state = self.find_sand
|
|
|
|
print('Trying to grab sand')
|
|
|
|
|
|
|
|
def find_sand(self):
|
2020-09-16 23:45:52 +00:00
|
|
|
w = self.g.world
|
|
|
|
p = utils.pint(self.g.pos)
|
|
|
|
|
2020-12-02 05:16:46 +00:00
|
|
|
sand = w.find_objects(items.SAND_ID)
|
2020-09-16 23:45:52 +00:00
|
|
|
|
2020-12-02 05:16:46 +00:00
|
|
|
if not sand:
|
|
|
|
print('No sand objects found, aborting')
|
2020-09-16 23:45:52 +00:00
|
|
|
self.state = self.cleanup
|
2020-12-02 05:16:46 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
sand.sort(key=lambda s: utils.phyp(p, (s.x, s.y, s.z)))
|
|
|
|
|
|
|
|
for s in sand:
|
|
|
|
s_pos = utils.pint((s.x, s.y, s.z))
|
|
|
|
check = utils.padd(s_pos, path.BLOCK_BELOW)
|
|
|
|
|
|
|
|
if utils.phyp(p, s_pos) > 6:
|
|
|
|
continue
|
|
|
|
# skip if the sand is floating
|
|
|
|
if self.g.chunks.get_block_at(*check) in {0}:
|
|
|
|
continue
|
2020-12-02 07:02:26 +00:00
|
|
|
if s.entity_id in self.eid_blacklist:
|
|
|
|
continue
|
|
|
|
|
|
|
|
self.eid_blacklist.append(s.entity_id)
|
2020-12-02 05:16:46 +00:00
|
|
|
|
|
|
|
navpath = w.path_to_place(p, s_pos)
|
|
|
|
|
|
|
|
if navpath:
|
|
|
|
self.g.path = navpath
|
|
|
|
self.state = self.going_to_sand
|
|
|
|
self.sand = s_pos
|
|
|
|
print('Going to sand', self.sand)
|
|
|
|
return
|
2020-12-02 07:02:26 +00:00
|
|
|
else:
|
|
|
|
print('Cant get to sand', self.sand)
|
2020-12-02 05:16:46 +00:00
|
|
|
|
|
|
|
print('Cant get to any more sand, aborting')
|
|
|
|
self.state = self.cleanup
|
|
|
|
|
|
|
|
def going_to_sand(self):
|
|
|
|
if utils.pint(self.g.pos) == self.sand:
|
2020-12-02 07:02:26 +00:00
|
|
|
self.state = self.cleanup
|
2020-09-16 23:45:52 +00:00
|
|
|
|
|
|
|
def cleanup(self):
|
|
|
|
self.g.look_at = None
|
|
|
|
self.state = self.done
|
|
|
|
|
|
|
|
def done(self):
|
|
|
|
# never gets ran, placeholder
|
|
|
|
return None
|
|
|
|
|
|
|
|
def __init__(self, global_state):
|
|
|
|
self.g = global_state
|
|
|
|
self.state = self.idle
|
|
|
|
|
|
|
|
self.sand = None
|
2020-12-02 05:16:46 +00:00
|
|
|
self.eid_blacklist = []
|
2020-09-16 23:45:52 +00:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
self.state()
|
|
|
|
|
|
|
|
|
|
|
|
class SleepWithBedStates:
|
|
|
|
def idle(self):
|
|
|
|
return None
|
|
|
|
|
|
|
|
def init(self):
|
|
|
|
if self.g.time >= 12000:
|
2020-12-01 00:48:02 +00:00
|
|
|
self.state = self.select_bed
|
2020-09-16 23:45:52 +00:00
|
|
|
else:
|
|
|
|
print('Aborting sleep, not night')
|
|
|
|
self.state = self.cleanup
|
|
|
|
|
2020-12-01 00:48:02 +00:00
|
|
|
def select_bed(self):
|
|
|
|
if self.g.game.select_item(items.BED_IDS):
|
|
|
|
self.state = self.find_bed_spot
|
|
|
|
else:
|
|
|
|
print('No bed, aborting.')
|
|
|
|
self.state = self.cleanup
|
|
|
|
|
2020-09-16 23:45:52 +00:00
|
|
|
def find_bed_spot(self):
|
|
|
|
print('Finding a bed spot...')
|
|
|
|
w = self.g.world
|
|
|
|
p = utils.pint(self.g.pos)
|
|
|
|
|
2020-10-16 08:56:11 +00:00
|
|
|
for area in w.find_bed_areas(p, 100):
|
|
|
|
print('Found area:', area)
|
|
|
|
if area not in self.bad_areas:
|
|
|
|
break
|
|
|
|
else: # for
|
|
|
|
print('Unable to find area')
|
2020-09-16 23:45:52 +00:00
|
|
|
self.state = self.cleanup
|
|
|
|
return
|
|
|
|
|
2020-10-16 08:56:11 +00:00
|
|
|
self.area = area
|
2020-09-16 23:45:52 +00:00
|
|
|
openings = w.find_bed_openings(self.area)
|
|
|
|
|
|
|
|
for o in openings:
|
2020-09-17 01:12:01 +00:00
|
|
|
navpath = w.path_to_place(p, o)
|
2020-09-16 23:45:52 +00:00
|
|
|
self.opening = o
|
2020-09-17 01:12:01 +00:00
|
|
|
if navpath: break
|
2020-09-16 23:45:52 +00:00
|
|
|
else: # for
|
|
|
|
print('Unable to get to bed area', self.area)
|
|
|
|
self.bad_areas.append(self.area)
|
|
|
|
self.state = self.cleanup
|
|
|
|
return
|
|
|
|
|
2020-09-17 01:12:01 +00:00
|
|
|
self.g.path = navpath
|
2020-09-16 23:45:52 +00:00
|
|
|
self.state = self.going_to_area
|
|
|
|
|
|
|
|
def going_to_area(self):
|
|
|
|
if utils.pint(self.g.pos) == self.opening:
|
2020-12-04 02:49:22 +00:00
|
|
|
self.g.look_at = utils.padd(self.area, path.BLOCK_BELOW)
|
2020-09-17 20:54:41 +00:00
|
|
|
self.state = self.place_bed
|
2020-09-16 23:45:52 +00:00
|
|
|
|
|
|
|
def place_bed(self):
|
2020-09-17 02:11:42 +00:00
|
|
|
self.g.game.place_block(self.area, BlockFace.TOP)
|
2020-09-16 23:45:52 +00:00
|
|
|
self.state = self.use_bed
|
|
|
|
|
|
|
|
def use_bed(self):
|
|
|
|
if self.g.time >= 12542:
|
|
|
|
print('Sleeping')
|
2020-09-17 02:11:42 +00:00
|
|
|
self.g.game.place_block(self.area, BlockFace.TOP)
|
2020-10-14 02:26:50 +00:00
|
|
|
if not self.silent:
|
|
|
|
self.g.chat.send('zzz')
|
2020-09-16 23:45:52 +00:00
|
|
|
self.state = self.sleep_bed
|
|
|
|
|
|
|
|
def sleep_bed(self):
|
2020-12-04 02:49:22 +00:00
|
|
|
w = self.g.world
|
|
|
|
p = utils.pint(self.g.pos)
|
|
|
|
|
|
|
|
threats = w.find_threats(p, 30)
|
|
|
|
if threats:
|
|
|
|
print('Waking up due to threats')
|
|
|
|
self.g.game.leave_bed()
|
|
|
|
self.state = self.break_bed
|
|
|
|
elif self.g.time < 100:
|
|
|
|
print('Woke up time')
|
2020-09-16 23:45:52 +00:00
|
|
|
self.state = self.break_bed
|
|
|
|
|
|
|
|
def break_bed(self):
|
|
|
|
self.g.game.break_block(self.area)
|
|
|
|
self.state = self.collect_bed
|
|
|
|
|
|
|
|
def collect_bed(self):
|
|
|
|
if not self.g.breaking:
|
|
|
|
self.g.path = [utils.padd(self.area, utils.spiral(n)) for n in range(9)]
|
|
|
|
self.wait_time = 4
|
|
|
|
self.state = self.wait
|
|
|
|
|
|
|
|
def wait(self):
|
|
|
|
# wait to pick up bed
|
|
|
|
if self.wait_time > 0:
|
2020-09-17 01:12:01 +00:00
|
|
|
self.wait_time -= utils.TICK
|
2020-09-16 23:45:52 +00:00
|
|
|
else:
|
|
|
|
self.state = self.cleanup
|
|
|
|
|
|
|
|
def cleanup(self):
|
|
|
|
self.g.look_at = None
|
|
|
|
self.state = self.done
|
|
|
|
|
|
|
|
def done(self):
|
|
|
|
# never gets ran, placeholder
|
|
|
|
return None
|
|
|
|
|
|
|
|
def __init__(self, global_state):
|
|
|
|
self.g = global_state
|
|
|
|
self.state = self.idle
|
|
|
|
|
2020-12-02 11:12:51 +00:00
|
|
|
self.silent = False
|
2020-10-14 02:26:50 +00:00
|
|
|
|
2020-09-16 23:45:52 +00:00
|
|
|
self.area = None
|
|
|
|
self.opening = None
|
|
|
|
self.bad_areas = []
|
|
|
|
self.wait_time = 0
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
self.state()
|
|
|
|
|
|
|
|
|
2020-09-21 01:08:23 +00:00
|
|
|
class CacheItemsStates:
|
2020-09-16 23:45:52 +00:00
|
|
|
def idle(self):
|
|
|
|
return None
|
|
|
|
|
2020-09-21 01:08:23 +00:00
|
|
|
def init(self):
|
2020-10-16 08:56:11 +00:00
|
|
|
self.skip_slots = []
|
|
|
|
self.skip_items = []
|
|
|
|
|
2020-09-21 19:40:33 +00:00
|
|
|
num_stacks = len([x for x in self.g.inv.values() if x.present])
|
2020-10-16 08:56:11 +00:00
|
|
|
print('Inventory amount:', num_stacks)
|
2020-12-02 05:16:46 +00:00
|
|
|
if num_stacks >= self.minimum:
|
2020-12-01 00:48:02 +00:00
|
|
|
self.state = self.find_trapped_chests
|
2020-09-21 01:08:23 +00:00
|
|
|
else:
|
|
|
|
print('Aborting caching, not full')
|
|
|
|
self.state = self.cleanup
|
2020-09-16 23:45:52 +00:00
|
|
|
|
2020-12-01 00:48:02 +00:00
|
|
|
def find_trapped_chests(self):
|
|
|
|
print('Finding trapped chests...')
|
|
|
|
w = self.g.world
|
|
|
|
p = utils.pint(self.g.pos)
|
|
|
|
|
|
|
|
self.trapped_chests = w.find_blocks_indexed(p, blocks.TRAPPED_CHEST_IDS, 100)
|
|
|
|
print('Found:', self.trapped_chests)
|
|
|
|
self.state = self.choose_trapped_chest
|
|
|
|
|
|
|
|
def choose_trapped_chest(self):
|
|
|
|
print('Choosing a trapped chest...')
|
|
|
|
w = self.g.world
|
|
|
|
p = utils.pint(self.g.pos)
|
|
|
|
c = self.g.chunks
|
|
|
|
|
|
|
|
if not len(self.trapped_chests):
|
|
|
|
print('No trapped chests')
|
2020-12-02 07:02:26 +00:00
|
|
|
self.state = self.select_chest
|
2020-12-01 00:48:02 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
chest = self.trapped_chests[0]
|
|
|
|
|
|
|
|
tmp = c.get_block_at(*chest)
|
|
|
|
c.set_block_at(*chest, blocks.AIR)
|
|
|
|
navpath = w.path_to_place(p, chest)
|
|
|
|
c.set_block_at(*chest, tmp)
|
|
|
|
|
|
|
|
print('navpath:', navpath)
|
|
|
|
|
|
|
|
if navpath:
|
|
|
|
self.g.path = navpath[:-1]
|
|
|
|
self.opening = self.g.path[-1]
|
|
|
|
self.area = chest
|
|
|
|
self.state = self.going_to_trapped_chest
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
self.trapped_chests.pop(0)
|
|
|
|
|
|
|
|
def going_to_trapped_chest(self):
|
|
|
|
if utils.pint(self.g.pos) == self.opening:
|
|
|
|
self.g.look_at = self.area
|
|
|
|
self.state = self.open_chest
|
|
|
|
|
|
|
|
|
2020-12-02 07:02:26 +00:00
|
|
|
def select_chest(self):
|
|
|
|
if self.g.game.select_item(items.CHEST_ID):
|
|
|
|
self.g.look_at = utils.padd(self.area, path.BLOCK_BELOW)
|
|
|
|
self.state = self.find_cache_spot
|
|
|
|
else:
|
|
|
|
print('No chest, aborting')
|
|
|
|
self.state = self.cleanup
|
|
|
|
|
2020-09-21 01:08:23 +00:00
|
|
|
def find_cache_spot(self):
|
|
|
|
print('Finding a chest spot...')
|
|
|
|
w = self.g.world
|
|
|
|
p = utils.pint(self.g.pos)
|
2020-09-16 23:45:52 +00:00
|
|
|
|
2020-10-16 08:56:11 +00:00
|
|
|
for area in w.find_cache_areas(p, 100):
|
|
|
|
print('Found area:', area)
|
|
|
|
if area not in self.bad_areas:
|
|
|
|
break
|
|
|
|
else: # for
|
|
|
|
print('Unable to find area')
|
2020-09-21 01:08:23 +00:00
|
|
|
self.state = self.cleanup
|
|
|
|
return
|
|
|
|
|
2020-10-16 08:56:11 +00:00
|
|
|
self.area = area
|
2020-10-14 02:26:50 +00:00
|
|
|
openings = w.find_cache_openings(self.area)
|
2020-09-21 01:08:23 +00:00
|
|
|
|
|
|
|
for o in openings:
|
|
|
|
navpath = w.path_to_place(p, o)
|
|
|
|
self.opening = o
|
|
|
|
if navpath: break
|
|
|
|
else: # for
|
|
|
|
print('Unable to get to cache area', self.area)
|
|
|
|
self.bad_areas.append(self.area)
|
|
|
|
self.state = self.cleanup
|
|
|
|
return
|
|
|
|
|
|
|
|
self.g.path = navpath
|
|
|
|
self.state = self.going_to_area
|
|
|
|
|
|
|
|
def going_to_area(self):
|
|
|
|
if utils.pint(self.g.pos) == self.opening:
|
|
|
|
self.g.look_at = self.area
|
|
|
|
self.state = self.place_chest
|
|
|
|
|
|
|
|
def place_chest(self):
|
|
|
|
self.g.game.place_block(self.area, BlockFace.TOP)
|
|
|
|
self.state = self.open_chest
|
|
|
|
|
|
|
|
def open_chest(self):
|
|
|
|
print('Opening chest')
|
|
|
|
self.g.game.open_container(self.area)
|
|
|
|
self.wait_time = 1
|
|
|
|
self.state = self.wait
|
|
|
|
|
|
|
|
def wait(self):
|
|
|
|
# wait for server to send us chest contents
|
|
|
|
if self.wait_time > 0:
|
|
|
|
self.wait_time -= utils.TICK
|
|
|
|
else:
|
|
|
|
self.state = self.move_items
|
|
|
|
|
|
|
|
def move_items(self):
|
|
|
|
if self.g.item_lock: return
|
|
|
|
|
|
|
|
w = self.g.window
|
2020-09-21 05:41:55 +00:00
|
|
|
w_info = data.WINDOWS[w.data.window_type]
|
|
|
|
w_inventory_slots = w_info.inventory
|
2020-09-21 01:08:23 +00:00
|
|
|
|
2020-10-16 08:56:11 +00:00
|
|
|
slot_list = []
|
|
|
|
|
2020-09-21 01:08:23 +00:00
|
|
|
for slot_num in w_inventory_slots:
|
|
|
|
if slot_num not in w.contents:
|
|
|
|
continue
|
|
|
|
|
|
|
|
slot = w.contents[slot_num]
|
|
|
|
|
2020-09-21 05:41:55 +00:00
|
|
|
if not slot.present:
|
|
|
|
continue
|
|
|
|
|
2020-10-16 08:56:11 +00:00
|
|
|
if slot.item_id in self.needed_items:
|
2020-09-21 01:08:23 +00:00
|
|
|
continue
|
|
|
|
|
2020-10-16 08:56:11 +00:00
|
|
|
if slot_num in self.skip_slots:
|
|
|
|
continue
|
|
|
|
|
|
|
|
slot_list.append((slot_num, slot))
|
|
|
|
|
|
|
|
slot_list.sort(key=lambda x: x[1].item_count, reverse=True)
|
2020-09-21 01:08:23 +00:00
|
|
|
|
2020-10-16 08:56:11 +00:00
|
|
|
for slot_num, slot in slot_list:
|
|
|
|
if slot.item_id in self.wanted_items and slot.item_id not in self.skip_items:
|
|
|
|
print('skipping wanted item', slot)
|
|
|
|
self.skip_slots.append(slot_num)
|
|
|
|
self.skip_items.append(slot.item_id)
|
|
|
|
continue
|
|
|
|
|
|
|
|
print('moving', slot)
|
2020-09-21 01:08:23 +00:00
|
|
|
|
|
|
|
self.g.item_lock = True
|
2020-09-21 05:41:55 +00:00
|
|
|
self.g.game.click_window(slot_num, 0, 1, slot)
|
2020-09-21 01:08:23 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
print('nothing left to move')
|
2020-09-21 05:41:55 +00:00
|
|
|
self.state = self.close_chest
|
2020-09-21 01:08:23 +00:00
|
|
|
|
|
|
|
def close_chest(self):
|
|
|
|
print('closing chest')
|
|
|
|
self.g.game.close_window()
|
2020-10-23 23:45:35 +00:00
|
|
|
if not self.silent:
|
|
|
|
self.g.chat.send('cache at ' + str(self.area)[1:-1])
|
2020-09-21 01:08:23 +00:00
|
|
|
self.state = self.cleanup
|
|
|
|
|
|
|
|
def cleanup(self):
|
|
|
|
self.g.look_at = None
|
|
|
|
self.state = self.done
|
|
|
|
|
|
|
|
def done(self):
|
|
|
|
# never gets ran, placeholder
|
|
|
|
return None
|
|
|
|
|
|
|
|
def __init__(self, global_state):
|
|
|
|
self.g = global_state
|
|
|
|
self.state = self.idle
|
|
|
|
|
2020-12-02 05:16:46 +00:00
|
|
|
self.minimum = 27
|
2020-10-23 23:45:35 +00:00
|
|
|
self.silent = False
|
|
|
|
|
2020-10-16 08:56:11 +00:00
|
|
|
# keep all needed items
|
|
|
|
self.needed_items = items.NEEDED_ITEMS
|
|
|
|
# keep one stack of wanted items
|
|
|
|
self.wanted_items = items.WANTED_ITEMS
|
|
|
|
|
|
|
|
self.skip_slots = []
|
|
|
|
self.skip_items = []
|
|
|
|
|
2020-09-21 01:08:23 +00:00
|
|
|
self.area = None
|
|
|
|
self.opening = None
|
2020-12-01 00:48:02 +00:00
|
|
|
self.trapped_chests = []
|
2020-09-21 01:08:23 +00:00
|
|
|
self.bad_areas = []
|
|
|
|
self.wait_time = 0
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
self.state()
|
|
|
|
|
|
|
|
|
2020-10-14 02:26:50 +00:00
|
|
|
class PlantTreeStates:
|
|
|
|
def idle(self):
|
|
|
|
return None
|
|
|
|
|
|
|
|
def init(self):
|
|
|
|
if self.g.chopped_tree:
|
|
|
|
self.state = self.check_feet
|
|
|
|
else:
|
|
|
|
print('Aborting planting, did not plant')
|
|
|
|
self.state = self.cleanup
|
|
|
|
|
|
|
|
def check_feet(self):
|
|
|
|
p = utils.pint(self.g.pos)
|
|
|
|
|
|
|
|
# check for air at feet
|
|
|
|
if self.g.chunks.get_block_at(*p) in [0]:
|
|
|
|
self.state = self.select_sapling
|
|
|
|
else:
|
|
|
|
print('Aborting planting, feet not air')
|
|
|
|
self.state = self.cleanup
|
|
|
|
|
|
|
|
def select_sapling(self):
|
|
|
|
p = utils.pint(self.g.pos)
|
|
|
|
|
|
|
|
if self.g.game.select_random_item(items.SAPLING_IDS):
|
|
|
|
self.g.look_at = utils.padd(p, path.BLOCK_BELOW)
|
|
|
|
self.state = self.wait_select
|
|
|
|
self.wait_time = 1
|
|
|
|
else:
|
|
|
|
print('Aborting planting, no saplings')
|
|
|
|
self.state = self.cleanup
|
|
|
|
|
|
|
|
def wait_select(self):
|
|
|
|
# wait a bit to look down
|
|
|
|
if self.wait_time > 0:
|
|
|
|
self.wait_time -= utils.TICK
|
|
|
|
else:
|
|
|
|
self.state = self.place_sapling
|
|
|
|
|
|
|
|
def place_sapling(self):
|
|
|
|
p = utils.pint(self.g.pos)
|
|
|
|
self.g.game.place_block(p, BlockFace.TOP)
|
|
|
|
print('Placed sapling')
|
2020-10-23 23:45:35 +00:00
|
|
|
self.state = self.wait_place
|
|
|
|
self.wait_time = 1
|
|
|
|
|
|
|
|
def wait_place(self):
|
|
|
|
# wait a bit for chunk data to update
|
|
|
|
if self.wait_time > 0:
|
|
|
|
self.wait_time -= utils.TICK
|
|
|
|
else:
|
|
|
|
self.state = self.find_open_spot
|
|
|
|
|
|
|
|
def find_open_spot(self):
|
|
|
|
w = self.g.world
|
|
|
|
p = utils.pint(self.g.pos)
|
|
|
|
|
|
|
|
for opening in w.find_tree_openings(p):
|
|
|
|
print('trying sapling opening', opening)
|
|
|
|
navpath = w.path_to_place(p, opening)
|
|
|
|
if navpath:
|
|
|
|
self.g.path = navpath
|
|
|
|
self.area = opening
|
|
|
|
self.state = self.going_to_area
|
|
|
|
return
|
|
|
|
else: # for
|
|
|
|
print('cant escape sapling')
|
|
|
|
self.state = self.cleanup
|
|
|
|
|
|
|
|
def going_to_area(self):
|
|
|
|
if utils.pint(self.g.pos) == self.area:
|
|
|
|
self.state = self.cleanup
|
2020-10-14 02:26:50 +00:00
|
|
|
|
2020-10-18 05:35:43 +00:00
|
|
|
def cleanup(self):
|
|
|
|
self.g.look_at = None
|
|
|
|
self.state = self.done
|
|
|
|
|
|
|
|
def done(self):
|
|
|
|
# never gets ran, placeholder
|
|
|
|
return None
|
|
|
|
|
|
|
|
def __init__(self, global_state):
|
|
|
|
self.g = global_state
|
|
|
|
self.state = self.idle
|
|
|
|
|
|
|
|
self.wait_time = 0
|
|
|
|
self.area = None
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
self.state()
|
|
|
|
|
|
|
|
|
|
|
|
class ClearLeavesStates:
|
|
|
|
def idle(self):
|
|
|
|
return None
|
|
|
|
|
|
|
|
def init(self):
|
|
|
|
num_saplings = self.g.game.count_items(items.SAPLING_IDS)
|
|
|
|
print('Have', num_saplings, 'saplings in inventory')
|
|
|
|
if num_saplings < 8:
|
|
|
|
self.state = self.find_leaves
|
|
|
|
print('Clearing leaves...')
|
2020-10-14 02:26:50 +00:00
|
|
|
else:
|
2020-10-18 05:35:43 +00:00
|
|
|
print('Aborting clearing leaves')
|
|
|
|
self.state = self.cleanup
|
2020-10-14 02:26:50 +00:00
|
|
|
|
2020-10-18 05:35:43 +00:00
|
|
|
def find_leaves(self):
|
2020-10-14 02:26:50 +00:00
|
|
|
w = self.g.world
|
|
|
|
p = utils.pint(self.g.pos)
|
2020-12-12 21:11:00 +00:00
|
|
|
pos = utils.padd(p, path.BLOCK_ABOVE)
|
2020-10-14 02:26:50 +00:00
|
|
|
|
2020-12-12 21:11:00 +00:00
|
|
|
for l in w.find_leaves(pos, blocks.BREAK_DISTANCE):
|
2020-10-18 05:35:43 +00:00
|
|
|
self.leaves.append(l)
|
2020-10-14 02:26:50 +00:00
|
|
|
|
2020-10-18 05:35:43 +00:00
|
|
|
self.state = self.break_leaves
|
2020-10-14 02:26:50 +00:00
|
|
|
|
2020-10-18 05:35:43 +00:00
|
|
|
def break_leaves(self):
|
|
|
|
if not self.g.breaking:
|
|
|
|
if self.leaves:
|
|
|
|
leaf = self.leaves.pop(0)
|
|
|
|
self.g.look_at = leaf
|
|
|
|
self.g.game.break_block(leaf)
|
|
|
|
print('Breaking leaf', leaf)
|
|
|
|
else:
|
|
|
|
self.wait_time = 1
|
|
|
|
self.state = self.wait
|
2020-10-14 02:26:50 +00:00
|
|
|
|
2020-10-18 05:35:43 +00:00
|
|
|
def wait(self):
|
|
|
|
# wait for the items to drop
|
|
|
|
if self.wait_time > 0:
|
|
|
|
self.wait_time -= utils.TICK
|
|
|
|
else:
|
2020-10-14 02:26:50 +00:00
|
|
|
self.state = self.cleanup
|
|
|
|
|
|
|
|
def cleanup(self):
|
|
|
|
self.g.look_at = None
|
|
|
|
self.state = self.done
|
|
|
|
|
|
|
|
def done(self):
|
|
|
|
# never gets ran, placeholder
|
|
|
|
return None
|
|
|
|
|
|
|
|
def __init__(self, global_state):
|
|
|
|
self.g = global_state
|
|
|
|
self.state = self.idle
|
|
|
|
|
2020-10-18 05:35:43 +00:00
|
|
|
self.leaves = []
|
2020-10-14 02:26:50 +00:00
|
|
|
self.wait_time = 0
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
self.state()
|
|
|
|
|
|
|
|
|
2020-10-15 07:37:47 +00:00
|
|
|
class GrabSaplingStates:
|
|
|
|
def idle(self):
|
|
|
|
return None
|
|
|
|
|
|
|
|
def init(self):
|
|
|
|
self.state = self.find_saplings
|
|
|
|
print('Trying to grab a sapling')
|
|
|
|
|
|
|
|
def find_saplings(self):
|
|
|
|
w = self.g.world
|
2020-10-18 05:35:43 +00:00
|
|
|
p = utils.pint(self.g.pos)
|
2020-10-15 07:37:47 +00:00
|
|
|
|
|
|
|
saplings = w.find_objects(items.SAPLING_IDS)
|
|
|
|
|
|
|
|
if not saplings:
|
2020-10-19 21:49:14 +00:00
|
|
|
print('No sapling objects found, aborting')
|
2020-10-15 07:37:47 +00:00
|
|
|
self.state = self.cleanup
|
|
|
|
return
|
|
|
|
|
2020-10-18 05:35:43 +00:00
|
|
|
saplings.sort(key=lambda s: utils.phyp(p, (s.x, s.y, s.z)))
|
2020-10-15 07:37:47 +00:00
|
|
|
|
|
|
|
for s in saplings:
|
|
|
|
s_pos = utils.pint((s.x, s.y, s.z))
|
|
|
|
|
|
|
|
check = utils.padd(s_pos, path.BLOCK_BELOW)
|
|
|
|
|
|
|
|
if s.entity_id in self.eid_blacklist:
|
|
|
|
continue
|
|
|
|
|
2020-12-02 05:16:46 +00:00
|
|
|
# skip if the sapling is floating
|
2020-10-15 07:37:47 +00:00
|
|
|
if self.g.chunks.get_block_at(*check) in blocks.LEAF_IDS | {0}:
|
|
|
|
continue
|
|
|
|
|
|
|
|
navpath = w.path_to_place(p, s_pos)
|
|
|
|
|
|
|
|
if navpath:
|
|
|
|
self.g.path = navpath
|
|
|
|
self.state = self.going_to_sapling
|
|
|
|
self.sapling = s_pos
|
|
|
|
self.eid_blacklist.append(s.entity_id)
|
|
|
|
print('Going to sapling', self.sapling)
|
|
|
|
return
|
|
|
|
|
2020-10-18 05:35:43 +00:00
|
|
|
print('Cant get to any more saplings, aborting')
|
2020-10-15 07:37:47 +00:00
|
|
|
self.state = self.cleanup
|
|
|
|
|
|
|
|
def going_to_sapling(self):
|
|
|
|
if utils.pint(self.g.pos) == self.sapling:
|
2020-10-18 05:35:43 +00:00
|
|
|
self.state = self.find_saplings
|
2020-10-15 07:37:47 +00:00
|
|
|
|
|
|
|
def cleanup(self):
|
|
|
|
self.g.look_at = None
|
|
|
|
self.state = self.done
|
|
|
|
|
|
|
|
def done(self):
|
|
|
|
# never gets ran, placeholder
|
|
|
|
return None
|
|
|
|
|
|
|
|
def __init__(self, global_state):
|
|
|
|
self.g = global_state
|
|
|
|
self.state = self.idle
|
|
|
|
|
|
|
|
self.sapling = None
|
|
|
|
self.eid_blacklist = []
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
self.state()
|
|
|
|
|
|
|
|
|
2020-12-04 02:49:22 +00:00
|
|
|
class CheckThreatsStates:
|
|
|
|
def idle(self):
|
|
|
|
return None
|
|
|
|
|
|
|
|
def init(self):
|
|
|
|
self.state = self.find_threats
|
|
|
|
print('Checking for threats')
|
|
|
|
|
|
|
|
def find_threats(self):
|
|
|
|
w = self.g.world
|
|
|
|
p = utils.pint(self.g.pos)
|
|
|
|
|
|
|
|
threats = w.find_threats(p, 40)
|
|
|
|
|
|
|
|
if threats:
|
|
|
|
print('Found', len(threats), 'threats, fleeing')
|
|
|
|
self.state = self.find_safety
|
|
|
|
else:
|
|
|
|
print('Aborting, no threats')
|
|
|
|
self.state = self.cleanup
|
|
|
|
|
|
|
|
def find_safety(self):
|
|
|
|
w = self.g.world
|
|
|
|
p = utils.pint(self.g.pos)
|
|
|
|
|
|
|
|
safety = w.find_blocks_indexed(p, [blocks.EMERALD_BLOCK])
|
|
|
|
|
|
|
|
if not safety:
|
|
|
|
print('No emerald blocks found, aborting')
|
|
|
|
self.state = self.cleanup
|
|
|
|
return
|
|
|
|
|
|
|
|
safety.sort(key=lambda s: utils.phyp(p, s))
|
|
|
|
print('Found emerald blocks:', safety)
|
|
|
|
|
|
|
|
for s in safety:
|
|
|
|
s = utils.padd(s, path.BLOCK_ABOVE)
|
|
|
|
navpath = w.path_to_place(p, s)
|
|
|
|
|
|
|
|
if navpath:
|
|
|
|
self.g.path = navpath
|
|
|
|
self.state = self.going_to_safety
|
|
|
|
self.safety = s
|
|
|
|
print('Going to safety', self.safety)
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
print('Cant get to safety', self.safety)
|
|
|
|
|
|
|
|
print('Cant get to safety, aborting')
|
|
|
|
self.state = self.cleanup
|
|
|
|
|
|
|
|
def going_to_safety(self):
|
|
|
|
if utils.pint(self.g.pos) == self.safety:
|
|
|
|
print('At safety spot, waiting to be moved')
|
|
|
|
self.state = self.wait_for_move
|
|
|
|
|
|
|
|
def wait_for_move(self):
|
|
|
|
# wait for the server to move the bot when it's safe
|
|
|
|
# ie. a piston + daylight sensor
|
|
|
|
if utils.pint(self.g.pos) != self.safety:
|
|
|
|
print('Moved, resuming job')
|
|
|
|
self.state = self.wait
|
|
|
|
self.wait_time = 3
|
|
|
|
|
|
|
|
def wait(self):
|
|
|
|
# wait to land, etc
|
|
|
|
if self.wait_time > 0:
|
|
|
|
self.wait_time -= utils.TICK
|
|
|
|
else:
|
|
|
|
self.state = self.cleanup
|
|
|
|
|
|
|
|
def cleanup(self):
|
|
|
|
self.g.look_at = None
|
|
|
|
self.state = self.done
|
|
|
|
|
|
|
|
def done(self):
|
|
|
|
# never gets ran, placeholder
|
|
|
|
return None
|
|
|
|
|
|
|
|
def __init__(self, global_state):
|
|
|
|
self.g = global_state
|
|
|
|
self.state = self.idle
|
|
|
|
|
|
|
|
self.safety = None
|
|
|
|
self.wait_time = 0
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
self.state()
|
|
|
|
|
|
|
|
|
2020-12-05 10:56:56 +00:00
|
|
|
class FillBlocksStates:
|
|
|
|
def idle(self):
|
|
|
|
return None
|
|
|
|
|
|
|
|
def init(self):
|
|
|
|
f = self.g.filling
|
|
|
|
|
|
|
|
if not f:
|
|
|
|
self.state = self.cleanup
|
|
|
|
print('Aborting, nothing to fill')
|
|
|
|
return
|
|
|
|
|
|
|
|
if self.last_block:
|
2020-12-06 23:53:28 +00:00
|
|
|
self.state = self.select_item
|
2020-12-05 10:56:56 +00:00
|
|
|
else:
|
|
|
|
self.state = self.find_last_block
|
|
|
|
|
|
|
|
def find_last_block(self):
|
|
|
|
w = self.g.world
|
|
|
|
f = self.g.filling
|
|
|
|
print('Finding last block')
|
|
|
|
|
|
|
|
b1, b2 = utils.pboundingbox(f.coord1, f.coord2)
|
2020-12-06 23:53:28 +00:00
|
|
|
box = utils.psub(b2, b1)
|
|
|
|
xz_distance = hypot(box[0]+1, box[2]+1)
|
2020-12-05 10:56:56 +00:00
|
|
|
y_start = f.coord1[1]
|
|
|
|
y_end = f.coord2[1]
|
|
|
|
|
2020-12-06 23:53:28 +00:00
|
|
|
for y in range(y_start, y_end+1):
|
|
|
|
for offset in utils.search_2d(xz_distance):
|
|
|
|
check = utils.padd(f.coord1, offset)
|
|
|
|
check = (check[0], y, check[2])
|
2020-12-05 10:56:56 +00:00
|
|
|
|
2020-12-06 23:53:28 +00:00
|
|
|
# ensure block is within fill area
|
|
|
|
if check[0] < b1[0] or check[0] > b2[0]:
|
|
|
|
continue
|
|
|
|
if check[2] < b1[2] or check[2] > b2[2]:
|
|
|
|
continue
|
2020-12-05 10:56:56 +00:00
|
|
|
|
2020-12-06 23:53:28 +00:00
|
|
|
if w.block_at(*check) == blocks.AIR:
|
|
|
|
self.state = self.select_item
|
|
|
|
return
|
2020-12-05 10:56:56 +00:00
|
|
|
|
2020-12-06 23:53:28 +00:00
|
|
|
self.last_block = check
|
2020-12-05 10:56:56 +00:00
|
|
|
|
2020-12-06 23:53:28 +00:00
|
|
|
def select_item(self):
|
2020-12-05 10:56:56 +00:00
|
|
|
f = self.g.filling
|
|
|
|
name = blocks.BLOCKS[f.block]
|
|
|
|
item = items.ITEMS['minecraft:'+name]['protocol_id']
|
|
|
|
|
|
|
|
if self.g.game.select_item([item]):
|
|
|
|
#self.g.look_at = utils.padd(self.area, path.BLOCK_BELOW)
|
|
|
|
self.state = self.find_next_block
|
|
|
|
else:
|
|
|
|
print('No blocks, aborting')
|
|
|
|
self.state = self.cleanup
|
|
|
|
|
|
|
|
def find_next_block(self):
|
|
|
|
w = self.g.world
|
|
|
|
f = self.g.filling
|
|
|
|
print('Finding next block, last:', self.last_block)
|
|
|
|
|
|
|
|
b1, b2 = utils.pboundingbox(f.coord1, f.coord2)
|
|
|
|
box = utils.psub(b2, b1)
|
|
|
|
xz_distance = hypot(box[0]+1, box[2]+1)
|
|
|
|
y_start = f.coord1[1]
|
|
|
|
y_end = f.coord2[1]
|
|
|
|
|
|
|
|
for y in range(y_start, y_end+1):
|
2020-12-06 23:53:28 +00:00
|
|
|
if y not in self.iterators:
|
|
|
|
self.iterators[y] = utils.search_2d(xz_distance)
|
2020-12-05 10:56:56 +00:00
|
|
|
|
2020-12-06 23:53:28 +00:00
|
|
|
for offset in self.iterators[y]:
|
|
|
|
check = utils.padd(f.coord1, offset)
|
|
|
|
check = (check[0], y, check[2])
|
2020-12-05 10:56:56 +00:00
|
|
|
|
|
|
|
# ensure block is within fill area
|
|
|
|
if check[0] < b1[0] or check[0] > b2[0]:
|
|
|
|
continue
|
|
|
|
if check[2] < b1[2] or check[2] > b2[2]:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if w.block_at(*check) == blocks.AIR:
|
|
|
|
print('Found next block:', check)
|
|
|
|
self.next_block = check
|
|
|
|
self.state = self.check_block_distance
|
|
|
|
return
|
|
|
|
|
|
|
|
# if there's nothing left to fill
|
|
|
|
self.g.filling = None
|
|
|
|
self.state = self.cleanup
|
|
|
|
|
|
|
|
def check_block_distance(self):
|
|
|
|
w = self.g.world
|
|
|
|
p = utils.pint(self.g.pos)
|
|
|
|
head = utils.padd(p, path.BLOCK_ABOVE)
|
|
|
|
|
|
|
|
if utils.phyp(head, self.next_block) < 4:
|
|
|
|
self.state = self.fill_block
|
|
|
|
else:
|
|
|
|
self.state = self.nav_to_block
|
|
|
|
|
|
|
|
def nav_to_block(self):
|
|
|
|
w = self.g.world
|
|
|
|
p = utils.pint(self.g.pos)
|
|
|
|
c = self.g.chunks
|
|
|
|
|
|
|
|
tmp = c.get_block_at(*self.next_block)
|
|
|
|
c.set_block_at(*self.next_block, blocks.STONE)
|
|
|
|
pos = utils.padd(self.next_block, path.BLOCK_ABOVE)
|
|
|
|
navpath = w.path_to_place(p, pos)
|
|
|
|
c.set_block_at(*self.next_block, tmp)
|
|
|
|
|
|
|
|
if navpath:
|
|
|
|
self.g.path = navpath[:-1]
|
|
|
|
self.state = self.going_to_block
|
|
|
|
else:
|
|
|
|
print('Cant get to that block')
|
|
|
|
self.state = self.cleanup
|
|
|
|
#self.bad_sand.append(self.sand)
|
|
|
|
#self.state = self.find_new_sand
|
|
|
|
|
|
|
|
def going_to_block(self):
|
|
|
|
if not len(self.g.path):
|
|
|
|
self.state = self.fill_block
|
|
|
|
|
|
|
|
def fill_block(self):
|
|
|
|
print('Filling block', self.next_block)
|
|
|
|
|
|
|
|
self.g.game.place_block(self.next_block, BlockFace.TOP)
|
|
|
|
self.g.look_at = self.next_block
|
2020-12-06 23:53:28 +00:00
|
|
|
|
2020-12-05 10:56:56 +00:00
|
|
|
self.wait_time = 0.25
|
|
|
|
self.state = self.wait_for_block
|
|
|
|
|
|
|
|
def wait_for_block(self):
|
|
|
|
w = self.g.world
|
|
|
|
if w.block_at(*self.next_block) != blocks.AIR:
|
|
|
|
self.last_block = self.next_block
|
2020-12-06 23:53:28 +00:00
|
|
|
self.state = self.check_obstruction
|
|
|
|
elif self.wait_time > 0:
|
|
|
|
self.wait_time -= utils.TICK
|
2020-12-05 10:56:56 +00:00
|
|
|
else:
|
|
|
|
print('Block didnt appear')
|
2020-12-06 23:53:28 +00:00
|
|
|
self.state = self.check_obstruction
|
2020-12-05 10:56:56 +00:00
|
|
|
|
|
|
|
def check_obstruction(self):
|
|
|
|
p = utils.pint(self.g.pos)
|
|
|
|
print('last', self.last_block)
|
|
|
|
print('p', p)
|
|
|
|
if self.last_block[1] >= p[1]:
|
|
|
|
print('Obstructed, going to last block')
|
|
|
|
self.state = self.nav_to_last_block
|
|
|
|
else:
|
|
|
|
self.state = self.cleanup
|
|
|
|
|
|
|
|
def nav_to_last_block(self):
|
|
|
|
w = self.g.world
|
|
|
|
p = utils.pint(self.g.pos)
|
|
|
|
c = self.g.chunks
|
|
|
|
|
|
|
|
pos = utils.padd(self.last_block, path.BLOCK_ABOVE)
|
|
|
|
navpath = w.path_to_place(p, pos)
|
|
|
|
|
|
|
|
if navpath:
|
|
|
|
self.g.path = navpath
|
|
|
|
self.state = self.going_to_last_block
|
|
|
|
else:
|
|
|
|
print('Cant get to that block')
|
|
|
|
self.state = self.cleanup
|
|
|
|
|
|
|
|
def going_to_last_block(self):
|
|
|
|
if not len(self.g.path):
|
|
|
|
self.state = self.cleanup
|
|
|
|
|
|
|
|
def cleanup(self):
|
|
|
|
self.state = self.done
|
|
|
|
|
|
|
|
def done(self):
|
|
|
|
# never gets ran, placeholder
|
|
|
|
return None
|
|
|
|
|
|
|
|
def __init__(self, global_state):
|
|
|
|
self.g = global_state
|
|
|
|
self.state = self.idle
|
|
|
|
|
2020-12-06 23:53:28 +00:00
|
|
|
self.iterators = {}
|
2020-12-05 10:56:56 +00:00
|
|
|
self.wait_time = 0
|
|
|
|
self.last_block = None
|
|
|
|
self.next_block = None
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
self.state()
|
|
|
|
|
|
|
|
|
2020-09-21 01:08:23 +00:00
|
|
|
class JobStates:
|
|
|
|
def idle(self):
|
2020-12-03 03:30:54 +00:00
|
|
|
return []
|
2020-10-16 08:56:11 +00:00
|
|
|
|
2020-12-03 03:30:54 +00:00
|
|
|
def init_machines(self):
|
|
|
|
self.gather_wood_states = GatherWoodStates(self.g)
|
|
|
|
self.gather_sand_states = GatherSandStates(self.g)
|
|
|
|
self.sleep_with_bed_states = SleepWithBedStates(self.g)
|
|
|
|
self.cache_items_states = CacheItemsStates(self.g)
|
|
|
|
self.find_gapple_states = FindGappleStates(self.g)
|
|
|
|
self.plant_tree_states = PlantTreeStates(self.g)
|
|
|
|
self.clear_leaves_states = ClearLeavesStates(self.g)
|
|
|
|
self.grab_sapling_states = GrabSaplingStates(self.g)
|
|
|
|
self.grab_sand_states = GrabSandStates(self.g)
|
2020-12-05 10:56:56 +00:00
|
|
|
self.fill_blocks_states = FillBlocksStates(self.g)
|
2020-12-04 02:49:22 +00:00
|
|
|
self.check_threats_states = CheckThreatsStates(self.g)
|
2020-09-25 06:03:22 +00:00
|
|
|
|
2020-12-03 03:30:54 +00:00
|
|
|
def run_machines(self, machines):
|
|
|
|
for m in machines:
|
|
|
|
if m.state == m.idle:
|
|
|
|
continue
|
|
|
|
if m.state != m.done:
|
|
|
|
m.run()
|
|
|
|
return
|
|
|
|
# if we went through them all
|
|
|
|
for m in machines:
|
|
|
|
m.state = m.init
|
2020-09-25 06:03:22 +00:00
|
|
|
|
|
|
|
|
2020-09-16 23:45:52 +00:00
|
|
|
def gather_sand(self):
|
2020-12-03 03:30:54 +00:00
|
|
|
machines = [
|
|
|
|
self.gather_sand_states,
|
|
|
|
self.grab_sand_states,
|
|
|
|
self.cache_items_states,
|
|
|
|
self.sleep_with_bed_states,
|
|
|
|
]
|
|
|
|
return machines
|
2020-09-21 19:40:33 +00:00
|
|
|
|
2020-12-04 02:49:22 +00:00
|
|
|
def farm_sand(self):
|
|
|
|
machines = [
|
|
|
|
self.check_threats_states,
|
|
|
|
self.gather_sand_states,
|
|
|
|
self.grab_sand_states,
|
|
|
|
self.cache_items_states,
|
|
|
|
self.sleep_with_bed_states,
|
|
|
|
]
|
|
|
|
self.sleep_with_bed_states.silent = True
|
|
|
|
self.cache_items_states.silent = True
|
|
|
|
return machines
|
|
|
|
|
2020-12-03 03:30:54 +00:00
|
|
|
def cache_items(self):
|
|
|
|
machines = [
|
|
|
|
self.cache_items_states,
|
|
|
|
]
|
|
|
|
return machines
|
2020-12-02 05:16:46 +00:00
|
|
|
|
2020-09-16 23:45:52 +00:00
|
|
|
|
2020-12-03 03:30:54 +00:00
|
|
|
def find_gapple(self):
|
|
|
|
machines = [
|
|
|
|
self.find_gapple_states,
|
|
|
|
]
|
|
|
|
return machines
|
2020-09-16 23:45:52 +00:00
|
|
|
|
2020-10-13 18:54:24 +00:00
|
|
|
def gather_wood(self):
|
2020-12-03 03:30:54 +00:00
|
|
|
machines = [
|
|
|
|
self.gather_wood_states,
|
|
|
|
self.sleep_with_bed_states,
|
|
|
|
self.cache_items_states,
|
|
|
|
]
|
|
|
|
return machines
|
2020-09-16 23:45:52 +00:00
|
|
|
|
2020-10-14 02:26:50 +00:00
|
|
|
def farm_wood(self):
|
2020-12-03 03:30:54 +00:00
|
|
|
machines = [
|
|
|
|
self.gather_wood_states,
|
|
|
|
self.plant_tree_states,
|
|
|
|
self.clear_leaves_states,
|
|
|
|
self.grab_sapling_states,
|
|
|
|
self.sleep_with_bed_states,
|
|
|
|
self.cache_items_states,
|
|
|
|
]
|
2020-10-14 02:26:50 +00:00
|
|
|
self.sleep_with_bed_states.silent = True
|
2020-10-23 23:45:35 +00:00
|
|
|
self.cache_items_states.silent = True
|
2020-12-03 03:30:54 +00:00
|
|
|
return machines
|
2020-10-14 02:26:50 +00:00
|
|
|
|
2020-12-05 10:56:56 +00:00
|
|
|
def fill_blocks(self):
|
|
|
|
machines = [
|
|
|
|
self.fill_blocks_states,
|
|
|
|
self.sleep_with_bed_states,
|
|
|
|
]
|
|
|
|
return machines
|
|
|
|
|
2020-09-16 23:45:52 +00:00
|
|
|
def stop(self):
|
2020-12-03 03:30:54 +00:00
|
|
|
self.init_machines()
|
2020-09-16 23:45:52 +00:00
|
|
|
self.state = self.idle
|
|
|
|
|
|
|
|
def __init__(self, global_state):
|
|
|
|
self.g = global_state
|
|
|
|
|
2020-12-03 03:30:54 +00:00
|
|
|
self.init_machines()
|
2020-09-16 23:45:52 +00:00
|
|
|
self.state = self.idle
|
|
|
|
|
2020-09-17 01:12:01 +00:00
|
|
|
def tick(self):
|
2020-12-03 03:30:54 +00:00
|
|
|
self.run_machines(self.state())
|