Erweiterung der allgemeinen Konfigurationsdatei zur Zuweisung von Block-Bibliotheken für ILS und Omniflo. Implementierung der Funktion handle_omniflo zur Verarbeitung von Omniflo-Typen in plant2dxf.py. Anpassung der Hauptfunktion zur Unterstützung von Bibliotheksdateien basierend auf der Teileart.
This commit is contained in:
+9
-2
@@ -1,2 +1,9 @@
|
|||||||
# Allgemeine Konfigurationsdatei, welche die einzulesenden Layer, sowie geometrische Abhängigkeiten steuert.
|
# Allgemeine Konfigurationsdatei, welche die Zuweisung von Block-Bibliotheken zu bestimmten Bauteil-Familien steuert
|
||||||
# General Config-File, that controls the Layers being read while processing a certain dxf file
|
# General Config-File, that controls the assignment of block libraries to certain component families
|
||||||
|
|
||||||
|
[ILS]
|
||||||
|
libfile = ils_lib.dxf
|
||||||
|
|
||||||
|
[Omniflo]
|
||||||
|
libfile = omniflo_lib.dxf
|
||||||
|
|
||||||
|
|||||||
+90
-19
@@ -263,6 +263,48 @@ def handle_ils_2_0_gefaellestrecke(msp, teileid, merkmale, x, y, doc, lib_doc, v
|
|||||||
elif lib_doc is None:
|
elif lib_doc is None:
|
||||||
print("[WARN] lib_doc nicht verfügbar, Blöcke werden nicht eingefügt.")
|
print("[WARN] lib_doc nicht verfügbar, Blöcke werden nicht eingefügt.")
|
||||||
|
|
||||||
|
def handle_omniflo(msp, teileid, merkmale, x, y, doc, lib_doc, verbose, symbols):
|
||||||
|
"""
|
||||||
|
Für Omniflo Gerade: zeichnet eine Linie (Mitte = Koordinate, Länge und Winkel aus Merkmale).
|
||||||
|
Für alle anderen Omniflo-Typen: Block mit SivasNummer an den Koordinaten.
|
||||||
|
"""
|
||||||
|
# Prüfen, ob es sich um eine Gerade handelt
|
||||||
|
if merkmale.get("Länge in Meter") is not None and merkmale.get("Winkel") is not None:
|
||||||
|
try:
|
||||||
|
laenge = float(merkmale.get("Länge in Meter", "0").replace(",", ".")) * 1000 # Meter → mm
|
||||||
|
except Exception:
|
||||||
|
laenge = 0
|
||||||
|
try:
|
||||||
|
winkel = float(merkmale.get("Drehung", 0))
|
||||||
|
except Exception:
|
||||||
|
winkel = 0.0
|
||||||
|
winkel_rad = math.radians(winkel)
|
||||||
|
halbe_laenge = laenge / 2
|
||||||
|
dx = halbe_laenge * math.cos(winkel_rad)
|
||||||
|
dy = halbe_laenge * math.sin(winkel_rad)
|
||||||
|
start = (x - dx, y - dy)
|
||||||
|
ende = (x + dx, y + dy)
|
||||||
|
msp.add_line(start, ende)
|
||||||
|
if verbose:
|
||||||
|
print(f"[INFO] Omniflo Gerade → {teileid} Linie von ({start[0]:.1f}, {start[1]:.1f}) nach ({ende[0]:.1f}, {ende[1]:.1f})")
|
||||||
|
return
|
||||||
|
# Sonst wie gehabt: Block mit SivasNummer
|
||||||
|
if not lib_doc:
|
||||||
|
print("[WARN] lib_doc nicht verfügbar, Block wird nicht eingefügt.")
|
||||||
|
return
|
||||||
|
blockname = merkmale.get("SivasNummer")
|
||||||
|
if not blockname:
|
||||||
|
print(f"[WARN] Keine SivasNummer für {teileid}, überspringe.")
|
||||||
|
return
|
||||||
|
if blockname not in lib_doc.blocks:
|
||||||
|
print(f"[WARN] Omniflo-Block '{blockname}' nicht in Bibliothek {lib_doc.filename}. Überspringe {teileid}.")
|
||||||
|
return
|
||||||
|
import_block(blockname, lib_doc, doc)
|
||||||
|
bref = msp.add_blockref(blockname, (x, y))
|
||||||
|
bref.add_auto_attribs({ATTR_TAG: teileid})
|
||||||
|
if verbose:
|
||||||
|
print(f"[INFO] Block '{blockname}' (Omniflo) → {teileid} ({x:.1f}, {y:.1f})")
|
||||||
|
|
||||||
def normalize_func_name(name):
|
def normalize_func_name(name):
|
||||||
return (
|
return (
|
||||||
name.replace('ä', 'ae')
|
name.replace('ä', 'ae')
|
||||||
@@ -274,28 +316,31 @@ def normalize_func_name(name):
|
|||||||
.lower()
|
.lower()
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def get_libfile_cfg(teileart, cfg_path):
|
||||||
|
"""Liest den Bibliotheksdateinamen für eine TeileArt aus der allgemein.cfg."""
|
||||||
|
parser = configparser.ConfigParser()
|
||||||
|
with open(cfg_path, encoding='utf-8') as f:
|
||||||
|
parser.read_file(f)
|
||||||
|
# Teileart kann z.B. "ILS 2.0 Kreisel" sein, wir nehmen den ersten Teil vor erstem Leerzeichen oder Punkt
|
||||||
|
# oder suchen iterativ nach Sektionen, die im Teileart-Namen vorkommen
|
||||||
|
for section in parser.sections():
|
||||||
|
if section in teileart:
|
||||||
|
return parser.get(section, "libfile", fallback=None)
|
||||||
|
return None
|
||||||
|
|
||||||
# --------------------------------------------------------- Hauptfunktion
|
# --------------------------------------------------------- Hauptfunktion
|
||||||
def main(csv_path: Path, lib_path: Path, cfg_path: Path,
|
def main(csv_path: Path, default_lib_path: Path, shapes_cfg_path: Path, output_path: Path, verbose=False):
|
||||||
output_path: Path, verbose=False):
|
|
||||||
|
|
||||||
# Bibliothek nur laden, wenn Datei existiert
|
# Bibliotheks-Cache
|
||||||
lib_doc = None
|
lib_docs = {}
|
||||||
if lib_path.exists():
|
# Verzeichnisse
|
||||||
try:
|
data_dir = check_environment_var("PROJECT_DATA")
|
||||||
lib_doc = ezdxf.readfile(lib_path)
|
blocklib_dir = Path(data_dir) / "block_libaries"
|
||||||
if verbose:
|
|
||||||
print(f"[INFO] Bibliothek geladen: {lib_path}")
|
|
||||||
except Exception as e:
|
|
||||||
sys.exit(f"Fehler beim Lesen der Bibliothek '{lib_path}': {e}")
|
|
||||||
else:
|
|
||||||
print(f"[INFO] Keine Bibliothek gefunden unter {lib_path}. "
|
|
||||||
"Komplexe Formen werden übersprungen.")
|
|
||||||
|
|
||||||
# Neue Zielzeichnung (DXF R2018)
|
# Neue Zielzeichnung (DXF R2018)
|
||||||
doc = ezdxf.new(dxfversion="R2018")
|
doc = ezdxf.new(dxfversion="R2018")
|
||||||
msp = doc.modelspace()
|
msp = doc.modelspace()
|
||||||
|
|
||||||
# CSV einlesen
|
|
||||||
# Höhe bestimmen für Koordinaten-Transformation
|
# Höhe bestimmen für Koordinaten-Transformation
|
||||||
height = berechne_hoehe(csv_path)
|
height = berechne_hoehe(csv_path)
|
||||||
|
|
||||||
@@ -315,10 +360,35 @@ def main(csv_path: Path, lib_path: Path, cfg_path: Path,
|
|||||||
print(f"[WARN] {teileid}: {e}")
|
print(f"[WARN] {teileid}: {e}")
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
# Bibliotheksdatei bestimmen
|
||||||
|
libfile = get_libfile_cfg(teileart, allgemein_cfg_path)
|
||||||
|
if libfile:
|
||||||
|
lib_path = blocklib_dir / libfile
|
||||||
|
else:
|
||||||
|
lib_path = default_lib_path
|
||||||
|
|
||||||
|
# Bibliothek laden (mit Cache)
|
||||||
|
lib_doc = None
|
||||||
|
if lib_path in lib_docs:
|
||||||
|
lib_doc = lib_docs[lib_path]
|
||||||
|
elif lib_path.exists():
|
||||||
|
try:
|
||||||
|
lib_doc = ezdxf.readfile(lib_path)
|
||||||
|
lib_docs[lib_path] = lib_doc
|
||||||
|
if verbose:
|
||||||
|
print(f"[INFO] Bibliothek geladen: {lib_path}")
|
||||||
|
except Exception as e:
|
||||||
|
print(f"[WARN] Fehler beim Lesen der Bibliothek '{lib_path}': {e}")
|
||||||
|
else:
|
||||||
|
print(f"[INFO] Keine Bibliothek gefunden unter {lib_path}. Komplexe Formen werden übersprungen.")
|
||||||
|
|
||||||
# Funktions-Dispatch: handle_<teileart> (mit _ statt Leerzeichen und Punkten, alles klein)
|
# Funktions-Dispatch: handle_<teileart> (mit _ statt Leerzeichen und Punkten, alles klein)
|
||||||
func_name = f'handle_{normalize_func_name(teileart)}'
|
func_name = f'handle_{normalize_func_name(teileart)}'
|
||||||
handler = globals().get(func_name)
|
handler = globals().get(func_name)
|
||||||
symbols = get_shape_cfg(teileart, cfg_path)
|
symbols = get_shape_cfg(teileart, shapes_cfg_path)
|
||||||
|
# Mapping für Omniflo-Typen
|
||||||
|
if func_name.startswith('handle_omniflo'):
|
||||||
|
handler = globals().get('handle_omniflo')
|
||||||
if handler:
|
if handler:
|
||||||
handler(msp, teileid, merkmale, x, y, doc, lib_doc, verbose, symbols)
|
handler(msp, teileid, merkmale, x, y, doc, lib_doc, verbose, symbols)
|
||||||
else:
|
else:
|
||||||
@@ -351,7 +421,8 @@ if __name__ == "__main__":
|
|||||||
csv_path = Path(args.file)
|
csv_path = Path(args.file)
|
||||||
|
|
||||||
cfg_path = Path(args.config) if args.config else config_dir / "shapes.cfg"
|
cfg_path = Path(args.config) if args.config else config_dir / "shapes.cfg"
|
||||||
lib_path = Path(args.lib) if args.lib else data_dir / "blocks.dxf"
|
allgemein_cfg_path = config_dir / "allgemein.cfg"
|
||||||
|
default_lib_path = Path(args.lib) if args.lib else data_dir / "blocks.dxf"
|
||||||
output_path = Path(args.output) if args.output else (work_dir / f"{csv_path.stem}.dxf")
|
output_path = Path(args.output) if args.output else (work_dir / f"{csv_path.stem}.dxf")
|
||||||
|
|
||||||
main(csv_path, lib_path, cfg_path, output_path, verbose=args.verbose)
|
main(csv_path, default_lib_path, cfg_path, output_path, verbose=args.verbose)
|
||||||
|
|||||||
Reference in New Issue
Block a user