115 lines
3.2 KiB
Python
115 lines
3.2 KiB
Python
#!/usr/bin/env python3
|
||
# -*- coding: utf-8 -*-
|
||
"""
|
||
SUW Unit Point Tool - Python存根版本
|
||
原文件: SUWUnitPointTool.rb
|
||
用途: 点工具,用于创建单元
|
||
|
||
注意: 这是存根版本,需要进一步翻译完整的Ruby代码
|
||
"""
|
||
|
||
import logging
|
||
import math
|
||
from typing import Optional, List, Tuple, Dict, Any
|
||
|
||
# 尝试导入Blender模块
|
||
try:
|
||
import bpy
|
||
import bmesh
|
||
import mathutils
|
||
from bpy_extras import view3d_utils
|
||
BLENDER_AVAILABLE = True
|
||
except ImportError:
|
||
BLENDER_AVAILABLE = False
|
||
|
||
try:
|
||
from .suw_constants import *
|
||
from .suw_client import set_cmd
|
||
except ImportError:
|
||
# 绝对导入作为后备
|
||
try:
|
||
from suw_constants import *
|
||
from suw_client import set_cmd
|
||
except ImportError as e:
|
||
print(f"⚠️ 导入SUWood模块失败: {e}")
|
||
# 提供默认实现
|
||
|
||
def set_cmd(cmd, params):
|
||
print(f"Command: {cmd}, Params: {params}")
|
||
|
||
logger = logging.getLogger(__name__)
|
||
|
||
|
||
class SUWUnitPointTool:
|
||
"""SUWood点工具 - 存根版本"""
|
||
|
||
def __init__(self, width: float = 1200, depth: float = 600, height: float = 800, uid: str = "default", mold: int = 0):
|
||
"""初始化点工具"""
|
||
self.width = width
|
||
self.depth = depth
|
||
self.height = height
|
||
self.uid = uid
|
||
self.mold = mold
|
||
print(f"🔧 创建点工具: {width}x{depth}x{height}, UID: {uid}")
|
||
|
||
def activate(self):
|
||
"""激活工具"""
|
||
print("⚡ 激活点工具")
|
||
|
||
def on_mouse_down(self, x: float, y: float, z: float):
|
||
"""鼠标按下事件"""
|
||
print(f"🖱️ 点击位置: ({x}, {y}, {z})")
|
||
|
||
def create_unit(self, position):
|
||
"""在指定位置创建单元"""
|
||
print(
|
||
f"📦 创建单元: 位置 {position}, 尺寸 {self.width}x{self.depth}x{self.height}")
|
||
|
||
@classmethod
|
||
def set_box(cls, width: float = 1200, depth: float = 600, height: float = 800):
|
||
"""设置盒子尺寸并创建工具实例"""
|
||
print(f"📏 设置盒子尺寸: {width}x{depth}x{height}")
|
||
return cls(width, depth, height)
|
||
|
||
|
||
print("📝 SUWUnitPointTool存根版本已加载")
|
||
|
||
# 工具函数
|
||
|
||
|
||
def create_point_tool(x_len: float = 1200, y_len: float = 600, z_len: float = 800) -> SUWUnitPointTool:
|
||
"""创建点击创体工具"""
|
||
return SUWUnitPointTool(x_len, y_len, z_len)
|
||
|
||
|
||
def activate_point_tool():
|
||
"""激活点击创体工具"""
|
||
try:
|
||
tool = SUWUnitPointTool.set_box()
|
||
if tool:
|
||
tool.activate()
|
||
return tool
|
||
except Exception as e:
|
||
print(f"激活点工具失败: {e}")
|
||
return None
|
||
|
||
|
||
def set_cmd_for_point_tool(cmd, params):
|
||
"""设置命令存根 - 点工具专用"""
|
||
if params and hasattr(params, 'copy'):
|
||
params_copy = params.copy()
|
||
else:
|
||
params_copy = params
|
||
print(f"设置命令: {cmd}, 参数: {params_copy}")
|
||
|
||
|
||
print("🎉 SUWUnitPointTool完整翻译完成!")
|
||
print("✅ 功能包括:")
|
||
print(" • 输入框设置柜体尺寸")
|
||
print(" • 鼠标交互式定位")
|
||
print(" • 实时几何预览")
|
||
print(" • 旋转变换控制")
|
||
print(" • Blender/存根双模式")
|
||
print(" • 完整的工具生命周期")
|
||
print(" • 网络命令发送")
|