Erweiterung der Konfigurationsdatei shapes.cfg zur Unterstützung zusätzlicher Formen und Anpassung der Funktionen zur Verarbeitung von "ILS 2.0 Kreisel" und "ILS 2.0 Gefällestrecke". Einführung der Funktion get_shape_cfg zum Auslesen von Blocknamen und Offsets aus der Konfiguration. Anpassung der Handler-Funktionen zur Verwendung dieser neuen Struktur.

This commit is contained in:
2025-07-23 15:46:15 +02:00
parent 7f2a8a0ffb
commit 2c697f87b9
2 changed files with 74 additions and 41 deletions
+9 -2
View File
@@ -1,2 +1,9 @@
[simple_types] [ILS 2.0 Kreisel]
shape_names = ILS 2.0 Kreisel items = SP8, AN8
offset_symb1 = 0,0
offset_symb2 = 0,0
[ILS 2.0 Gefällestrecke]
items = AE DS, EE DS
offset_symb1 = 0,0
offset_symb2 = 0,0
+65 -39
View File
@@ -16,18 +16,28 @@ import ezdxf
from pathlib import Path from pathlib import Path
import math import math
# --------------------------------------------------------- Mapping TeileArt → Blockname # --------------------------------------------------------- CFG-Leser für shapes.cfg
BLOCKNAME_MAPPING = { def get_shape_cfg(teileart, cfg_path):
"ILS 2.0 Kreisel": ["SP8", "AN8"] parser = configparser.ConfigParser()
#"ILS 2.0 Gefällestrecke": ["AE DS", "EE DS"] with open(cfg_path, encoding='utf-8') as f:
# Weitere Zuordnungen nach Bedarf parser.read_file(f)
} section = teileart
if section not in parser:
# --------------------------------------------------------- On-the-fly-Typen (werden direkt im Code erzeugt) return [], []
ON_THE_FLY_TYPES = { # Blöcke
"ILS 2.0 Gefällestrecke", items = parser.get(section, "items", fallback="").replace('"', '').split(",")
# Weitere Typen nach Bedarf blocks = [item.strip() for item in items if item.strip()]
} # Offsets (optional)
offset1 = parser.get(section, "offset_symb1", fallback="0,0")
offset2 = parser.get(section, "offset_symb2", fallback="0,0")
offsets = []
for off in (offset1, offset2):
try:
ox, oy = [float(x) for x in off.split(",")]
offsets.append((ox, oy))
except Exception:
offsets.append((0.0, 0.0))
return blocks, offsets
# --------------------------------------------------------- Konstante Parameter # --------------------------------------------------------- Konstante Parameter
ATTR_TAG = "TeileId" # Attributtag im Block ATTR_TAG = "TeileId" # Attributtag im Block
@@ -110,7 +120,8 @@ def transform_coords(x: float, y: float, height: float) -> tuple[float, float]:
"""Transformiert Bildschirmkoordinaten (0,0 oben links) ins DXF-KoSy (0,0 unten links).""" """Transformiert Bildschirmkoordinaten (0,0 oben links) ins DXF-KoSy (0,0 unten links)."""
return x, height - y return x, height - y
def handle_kreisel(msp, blocknames, teileid, merkmale, row, x, y, height, lib_doc, doc, verbose): def handle_ils_2_0_kreisel(msp, teileid, merkmale, x, y, doc, lib_doc, verbose, blocks, offsets):
# blocks: [block1, block2], offsets: [(ox1, oy1), (ox2, oy2)]
abstand_m = merkmale.get( abstand_m = merkmale.get(
"Abstand (Kreiselachse A - Kreiselachse) in Meter", "20" "Abstand (Kreiselachse A - Kreiselachse) in Meter", "20"
).replace(",", ".") ).replace(",", ".")
@@ -130,15 +141,15 @@ def handle_kreisel(msp, blocknames, teileid, merkmale, row, x, y, height, lib_do
halbabstand = abstand / 2 halbabstand = abstand / 2
dx = halbabstand * math.cos(winkel_rad) dx = halbabstand * math.cos(winkel_rad)
dy = halbabstand * math.sin(winkel_rad) dy = halbabstand * math.sin(winkel_rad)
pos1 = (x - dx, y - dy) pos1 = (x - dx + offsets[0][0], y - dy + offsets[0][1])
pos2 = (x + dx, y + dy) pos2 = (x + dx + offsets[1][0], y + dy + offsets[1][1])
positions = [pos1, pos2] positions = [pos1, pos2]
for blockname, pos in zip(blocknames, positions): for blockname, pos in zip(blocks, positions):
import_block(blockname, lib_doc, doc) import_block(blockname, lib_doc, doc)
bref = msp.add_blockref(blockname, pos) bref = msp.add_blockref(blockname, pos)
bref.add_auto_attribs({ATTR_TAG: teileid}) bref.add_auto_attribs({ATTR_TAG: teileid})
if verbose: if verbose:
print(f"[INFO] Block '{blockname}' (CSV: 'ILS 2.0 Kreisel') → {teileid} " print(f"[INFO] Block '{blockname}' (Kreisel) → {teileid} "
f"({pos[0]:.1f}, {pos[1]:.1f})") f"({pos[0]:.1f}, {pos[1]:.1f})")
# Linien zeichnen # Linien zeichnen
draw_kreisel_lines(msp, pos1, pos2) draw_kreisel_lines(msp, pos1, pos2)
@@ -152,7 +163,8 @@ def handle_standard(msp, blocknames, teileid, x, y, lib_doc, doc, verbose):
print(f"[INFO] Block '{blockname}' (Standard) → {teileid} " print(f"[INFO] Block '{blockname}' (Standard) → {teileid} "
f"({x:.1f}, {y:.1f})") f"({x:.1f}, {y:.1f})")
def handle_gefaellestrecke(msp, teileid, merkmale, x, y, verbose): def handle_ils_2_0_gefaellestrecke(msp, teileid, merkmale, x, y, doc, lib_doc, verbose, blocks, offsets):
# blocks: [block1, block2], offsets: [(ox1, oy1), (ox2, oy2)]
# Länge der Strecke (in Meter, Standard 10) # Länge der Strecke (in Meter, Standard 10)
laenge_m = merkmale.get("Länge in Meter", "10").replace(",", ".") laenge_m = merkmale.get("Länge in Meter", "10").replace(",", ".")
try: try:
@@ -176,6 +188,33 @@ def handle_gefaellestrecke(msp, teileid, merkmale, x, y, verbose):
msp.add_line(start, ende) msp.add_line(start, ende)
if verbose: if verbose:
print(f"[INFO] Gefällestrecke → {teileid} Linie von ({start[0]:.1f}, {start[1]:.1f}) nach ({ende[0]:.1f}, {ende[1]:.1f})") print(f"[INFO] Gefällestrecke → {teileid} Linie von ({start[0]:.1f}, {start[1]:.1f}) nach ({ende[0]:.1f}, {ende[1]:.1f})")
# Blöcke am Anfang und Ende der Strecke aus der CFG platzieren
if len(blocks) >= 2 and lib_doc is not None:
block_start = blocks[0]
block_end = blocks[1]
import_block(block_start, lib_doc, doc)
bref1 = msp.add_blockref(block_start, (start[0] + offsets[0][0], start[1] + offsets[0][1]))
bref1.add_auto_attribs({ATTR_TAG: teileid})
import_block(block_end, lib_doc, doc)
bref2 = msp.add_blockref(block_end, (ende[0] + offsets[1][0], ende[1] + offsets[1][1]))
bref2.add_auto_attribs({ATTR_TAG: teileid})
if verbose:
print(f"[INFO] Block '{block_start}' an Startpunkt {start} und Block '{block_end}' an Endpunkt {ende} für {teileid}")
elif lib_doc is None:
print("[WARN] lib_doc nicht verfügbar, Blöcke werden nicht eingefügt.")
def normalize_func_name(name):
return (
name.replace('ä', 'ae')
.replace('ö', 'oe')
.replace('ü', 'ue')
.replace('ß', 'ss')
.replace(' ', '_')
.replace('.', '_')
.lower()
)
# --------------------------------------------------------- Hauptfunktion # --------------------------------------------------------- Hauptfunktion
def main(csv_path: Path, lib_path: Path, cfg_path: Path, def main(csv_path: Path, lib_path: Path, cfg_path: Path,
output_path: Path, verbose=False): output_path: Path, verbose=False):
@@ -217,27 +256,14 @@ def main(csv_path: Path, lib_path: Path, cfg_path: Path,
print(f"[WARN] {teileid}: {e}") print(f"[WARN] {teileid}: {e}")
continue continue
# On-the-fly-Typen (werden direkt im Code erzeugt) # Funktions-Dispatch: handle_<teileart> (mit _ statt Leerzeichen und Punkten, alles klein)
if teileart in ON_THE_FLY_TYPES: func_name = f'handle_{normalize_func_name(teileart)}'
if teileart == "ILS 2.0 Gefällestrecke": handler = globals().get(func_name)
handle_gefaellestrecke(msp, teileid, merkmale, x, y, verbose) blocks, offsets = get_shape_cfg(teileart, cfg_path)
continue if handler:
# Hier können weitere on-the-fly-Typen ergänzt werden handler(msp, teileid, merkmale, x, y, doc, lib_doc, verbose, blocks, offsets)
else:
# Blocktypen aus Mapping print(f"[WARN] Keine Routine für TeileArt '{teileart}'. Überspringe '{teileid}'.")
blocknames = BLOCKNAME_MAPPING.get(teileart)
if blocknames:
if isinstance(blocknames, str):
blocknames = [blocknames]
if teileart == "ILS 2.0 Kreisel":
handle_kreisel(msp, blocknames, teileid, merkmale, row, x, y, height, lib_doc, doc, verbose)
continue
# Standardfall
handle_standard(msp, blocknames, teileid, x, y, lib_doc, doc, verbose)
continue
# Weder on-the-fly noch im Mapping
print(f"[WARN] Keine Zuordnung für TeileArt '{teileart}'. Überspringe '{teileid}'.")
continue continue
# DXF speichern # DXF speichern