From 54b9256d74996bbb73287b238bc5f9469d6875da Mon Sep 17 00:00:00 2001 From: Data07 Date: Tue, 10 Dec 2024 00:35:34 +0800 Subject: [PATCH] Farm --- .gitignore | 1 + .idea/.gitignore | 4 ++ .idea/.name | 1 + .idea/endstone-liko-farm.iml | 10 ++++ .../inspectionProfiles/profiles_settings.xml | 6 ++ .idea/misc.xml | 6 ++ .idea/modules.xml | 8 +++ pyproject.toml | 11 ++++ src/endstone_liko_farm/__init__.py | 4 ++ src/endstone_liko_farm/liko_farm.py | 60 +++++++++++++++++++ 10 files changed, 111 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.gitignore create mode 100644 .idea/.name create mode 100644 .idea/endstone-liko-farm.iml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 pyproject.toml create mode 100644 src/endstone_liko_farm/__init__.py create mode 100644 src/endstone_liko_farm/liko_farm.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9b1c8b1 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/dist diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..6b6c839 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,4 @@ +# 默认忽略的文件 +/shelf/ +./dist/ +/workspace.xml diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..956dc3a --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +endstone-liko-farm \ No newline at end of file diff --git a/.idea/endstone-liko-farm.iml b/.idea/endstone-liko-farm.iml new file mode 100644 index 0000000..b5c94eb --- /dev/null +++ b/.idea/endstone-liko-farm.iml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..cafab9f --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..ea502c5 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..a0b9ec1 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,11 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "endstone-liko-farm" +version = "0.1.0" +description = "优秀的农场主!" + +[project.entry-points."endstone"] +liko-farm = "endstone_liko_farm:LikoFarm" \ No newline at end of file diff --git a/src/endstone_liko_farm/__init__.py b/src/endstone_liko_farm/__init__.py new file mode 100644 index 0000000..061041e --- /dev/null +++ b/src/endstone_liko_farm/__init__.py @@ -0,0 +1,4 @@ + +from endstone_liko_farm.liko_farm import LikoFarm + +__all__ = ["LikoFarm"] \ No newline at end of file diff --git a/src/endstone_liko_farm/liko_farm.py b/src/endstone_liko_farm/liko_farm.py new file mode 100644 index 0000000..bd50a46 --- /dev/null +++ b/src/endstone_liko_farm/liko_farm.py @@ -0,0 +1,60 @@ +from endstone.plugin import Plugin +from endstone import ColorFormat +from endstone.command import CommandSenderWrapper +from endstone.event import event_handler, PlayerInteractEvent +class LikoFarm(Plugin): + api_version = "0.5" + + def on_load(self) -> None: + self.logger.info(f"{ColorFormat.GREEN}优秀的农场主加载成功!{ColorFormat.RESET}右击农作物即可采集") + + def on_enable(self): + self.register_events(self) + + @event_handler + def PlayerInteractEvent(self, event: PlayerInteractEvent): + block = event.block + player = event.player + if event.has_block: + # 检查block类型是否为wheat + growth_crops = { + "minecraft:wheat": {"growth": 7}, + "minecraft:carrots": {"growth": 7}, + "minecraft:potatoes": {"growth": 7}, + "minecraft:beetroot": {"growth": 7} + } + age_crops = { + "minecraft:nether_wart": {"age": 3}, + "minecraft:cocoa":{"age": 2} + } + # 遍历作物字典,检查当前方块是否符合条件 + for crop_type, details in growth_crops.items(): + if block.type == crop_type: + block_states = block.data.block_states + growth = block_states.get("growth", None) + + if growth == details["growth"]: + # 构造破坏命令 + command = f"execute as \"{player.name}\" at @s run setblock {block.x} {block.y} {block.z} {crop_type}[\"growth\"=0] destroy" + try: + self.server.dispatch_command(CommandSenderWrapper(self.server.command_sender), command) + except Exception as e: + self.logger.error(f"无法执行命令: {e}") + + + for crop_type, details in age_crops.items(): + if block.type == crop_type: + block_states = block.data.block_states + age = block_states.get("age", None) + + if age == details["age"]: + # 构造破坏命令 + if block.type == "minecraft:cocoa": + command = f"execute as \"{player.name}\" at @s run setblock {block.x} {block.y} {block.z} {crop_type}[\"direction\"={block_states.get("direction", None)}] destroy" + else: + command = f"execute as \"{player.name}\" at @s run setblock {block.x} {block.y} {block.z} {crop_type} destroy" + + try: + self.server.dispatch_command(CommandSenderWrapper(self.server.command_sender), command) + except Exception as e: + self.logger.error(f"无法执行命令: {e}") \ No newline at end of file