여백이 많다는 지적. 도각 안쪽 작도영역(770x594)에서 5%를 떼고 배치해 사방에 70mm 가까이가 비었다. 2%로 줄이니 같은 블록으로 3장이 2장이 된다(16/7). 표가 제각각 높이에 뜨던 것은 블록을 칸 한가운데 놓았기 때문이다. 수량표 높이는 모든 블록이 같으므로 칸 아래 변에 맞춰 놓으면 표가 한 줄로 선다. 단면 높이 차이는 위쪽이 흡수한다. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
222 lines
8.6 KiB
Python
222 lines
8.6 KiB
Python
"""B07 횡단면도 장 배치 — A1 한 장에 들어가는 만큼 단면을 담는다.
|
|
|
|
채우는 순서는 **좌하단부터 아래에서 위로, 그다음 오른쪽 열**이다
|
|
(2026-08-29 사용자 확정). 한 장에 몇 개가 들어가는지는 단면 블록의 크기가
|
|
정하며, 블록 크기는 작성 척도(1/100)와 "설계선이 원지반과 갈라지는 구간"이
|
|
정한다 — 즉 종이가 허용하는 만큼만 담고 남으면 다음 장으로 넘긴다.
|
|
"""
|
|
|
|
import re
|
|
from typing import Any
|
|
|
|
from B07_DesignDetail.B07_DesignDetail_Engine_Cad import (
|
|
CROSS_MM,
|
|
CROSS_TABLE_LAYER_ID,
|
|
DESIGN_LAYER_ID,
|
|
DRAWING_FORMAT,
|
|
FRAME_LAYER_ID,
|
|
GROUND_LAYER_ID,
|
|
ROCK_LAYER_ID,
|
|
STRUCTURE_LAYER_ID,
|
|
_clip_polyline,
|
|
_layer,
|
|
_section_window,
|
|
build_cross_drawing,
|
|
points_from_samples,
|
|
)
|
|
from B07_DesignDetail.B07_DesignDetail_Engine_Cad_Table import (
|
|
cross_table_height,
|
|
cross_table_width,
|
|
)
|
|
from B07_DesignDetail.B07_DesignDetail_Engine_Template import (
|
|
entities_bbox,
|
|
frame_entities,
|
|
usable_area,
|
|
)
|
|
|
|
# 장 도면 id — 측점 도면(cross_00020m)과 겹치지 않는 형식.
|
|
CROSS_SHEET_ID = re.compile(r"cross_s(\d{2,})")
|
|
|
|
# 블록 사이 여백(mm)과 테두리 여유 — build_cross_drawing의 테두리 값과 맞춘다.
|
|
_BLOCK_GAP_MM = 8.0
|
|
_BORDER_PAD_MM = 4.0
|
|
|
|
|
|
def _design_points(design_line: list[Any] | None) -> list[tuple[float, float]]:
|
|
points: list[tuple[float, float]] = []
|
|
for point in design_line if isinstance(design_line, list) else []:
|
|
if not isinstance(point, dict):
|
|
continue
|
|
x = point.get("offset_m")
|
|
y = point.get("elevation_m")
|
|
if isinstance(x, (int, float)) and isinstance(y, (int, float)):
|
|
points.append((float(x), float(y)))
|
|
return points
|
|
|
|
|
|
def section_block_size(
|
|
source: dict[str, Any], design_line: list[Any] | None, with_table: bool = True
|
|
) -> tuple[float, float]:
|
|
"""단면 블록 하나의 종이 크기(mm) — 엔티티를 만들지 않고 치수만 잰다.
|
|
|
|
build_cross_drawing의 테두리 계산과 같은 규칙을 쓴다: 가로는 그리는 범위와
|
|
수량표 중 넓은 쪽, 세로는 단면 높이 + 수량표.
|
|
"""
|
|
ground = points_from_samples(source.get("samples", []), "offset_m")
|
|
design = _design_points(design_line)
|
|
x0, x1 = _section_window(ground, design)
|
|
ground_clipped = _clip_polyline(ground, x0, x1)
|
|
ys = [y for _x, y in ground_clipped] + [y for x, y in design if x0 <= x <= x1]
|
|
half_height = ((max(ys) - min(ys)) / 2.0 if ys else 5.0) * CROSS_MM + 5.0
|
|
|
|
width = 2.0 * max(
|
|
(x1 - x0) / 2.0 * CROSS_MM + _BORDER_PAD_MM,
|
|
cross_table_width() / 2.0 + _BORDER_PAD_MM,
|
|
)
|
|
# 위: 단면 반높이 + 테두리 여유 / 아래: 반높이 + (표 간격 + 표) + 테두리 여유
|
|
top = half_height + _BORDER_PAD_MM
|
|
below = half_height + _BORDER_PAD_MM
|
|
if with_table:
|
|
below += 8.0 + cross_table_height()
|
|
return (width, top + below)
|
|
|
|
|
|
def _pack(
|
|
blocks: list[tuple[int, float, float]], start: int, rows: int
|
|
) -> tuple[int, list[float], list[float]]:
|
|
"""blocks[start:]를 rows행 **열 우선**으로 담아 (담은 개수, 열폭, 행높이)를 낸다.
|
|
|
|
열폭은 그 열에 든 블록의 최대폭, 행높이는 그 행에 든 블록의 최대높이다 — 칸을
|
|
전체 최대치로 통일하지 않으면서 행·열은 맞춘다(2026-08-30 사용자 확정).
|
|
"""
|
|
usable_w, usable_h = usable_area()
|
|
col_widths: list[float] = []
|
|
row_heights: list[float] = [0.0] * rows
|
|
count = 0
|
|
for index, (_chainage, width, height) in enumerate(blocks[start:]):
|
|
column, row = divmod(index, rows)
|
|
current = col_widths[column] if column < len(col_widths) else 0.0
|
|
new_col = max(current, width + _BLOCK_GAP_MM)
|
|
new_row = max(row_heights[row], height + _BLOCK_GAP_MM)
|
|
if sum(col_widths[:column]) + new_col > usable_w:
|
|
break
|
|
if sum(row_heights) - row_heights[row] + new_row > usable_h:
|
|
break
|
|
if column < len(col_widths):
|
|
col_widths[column] = new_col
|
|
else:
|
|
col_widths.append(new_col)
|
|
row_heights[row] = new_row
|
|
count = index + 1
|
|
return count, col_widths, row_heights
|
|
|
|
|
|
def _slots(col_widths: list[float], row_heights: list[float], count: int) -> list[list[float]]:
|
|
"""칸의 (가로 중심, 아래 변) — 좌하단부터 아래→위로 채우고, 열이 차면 오른쪽 열.
|
|
|
|
세로는 중심이 아니라 **아래 변**을 준다. 수량표 높이는 모든 블록이 같으므로
|
|
아래를 맞추면 같은 행의 표가 한 줄로 선다(2026-08-30 사용자: 표는 행·열을 맞춘다).
|
|
"""
|
|
usable_w, usable_h = usable_area()
|
|
rows = len(row_heights)
|
|
slots: list[list[float]] = []
|
|
for index in range(count):
|
|
column, row = divmod(index, rows)
|
|
x = -usable_w / 2.0 + sum(col_widths[:column]) + col_widths[column] / 2.0
|
|
y = -usable_h / 2.0 + sum(row_heights[:row])
|
|
slots.append([x, y])
|
|
return slots
|
|
|
|
|
|
def plan_cross_sheets(blocks: list[tuple[int, float, float]]) -> list[dict[str, Any]]:
|
|
"""(측점, 폭, 높이) 목록을 A1 장으로 나눈다.
|
|
|
|
블록 크기를 먼저 재서 **가장 많이 담기는 행 수**를 고르고, 그 행·열 격자에
|
|
담는다(2026-08-30 사용자 지시 — 전체 최대치 통일은 여백이 너무 많았다).
|
|
"""
|
|
sheets: list[dict[str, Any]] = []
|
|
start = 0
|
|
while start < len(blocks):
|
|
best: tuple[int, list[float], list[float]] = (0, [], [])
|
|
for rows in range(1, len(blocks) - start + 1):
|
|
packed = _pack(blocks, start, rows)
|
|
if packed[0] > best[0]:
|
|
best = packed
|
|
count, col_widths, row_heights = best
|
|
if count == 0: # 한 칸도 못 담을 만큼 큰 블록 — 그래도 한 장에 하나는 놓는다.
|
|
count, col_widths, row_heights = 1, [blocks[start][1]], [blocks[start][2]]
|
|
group = blocks[start : start + count]
|
|
number = len(sheets) + 1
|
|
sheets.append(
|
|
{
|
|
"id": f"cross_s{number:02d}",
|
|
"number": number,
|
|
"chainages": [chainage for chainage, _w, _h in group],
|
|
"rows": len(row_heights),
|
|
"slots": _slots(col_widths, row_heights, count),
|
|
}
|
|
)
|
|
start += count
|
|
return sheets
|
|
|
|
|
|
def build_cross_sheet(sheet: dict[str, Any], sections: list[dict[str, Any]]) -> dict[str, Any]:
|
|
"""한 장을 만든다. sections는 이 장에 담을 측점 입력들(배치 순서대로)."""
|
|
entities: list[dict[str, Any]] = []
|
|
placements: list[dict[str, Any]] = []
|
|
slots = sheet.get("slots") or []
|
|
|
|
for index, section in enumerate(sections):
|
|
if index >= len(slots):
|
|
break
|
|
seed_id = f"{sheet['id']}:{section['chainage']}"
|
|
# 1) 원점(0,0)에 한 번 만들어 블록이 원점 대비 어디에 놓이는지 잰다.
|
|
probe = build_cross_drawing(
|
|
section["source"],
|
|
seed_id,
|
|
section.get("design_line"),
|
|
section.get("design"),
|
|
section.get("quantity_table"),
|
|
section.get("title", ""),
|
|
)
|
|
bbox = entities_bbox(probe["entities"])
|
|
if bbox is None:
|
|
continue
|
|
min_x, min_y, max_x, max_y = bbox
|
|
center_x, bottom_y = slots[index]
|
|
# 2) 가로는 칸 가운데, 세로는 칸 아래 변에 맞춰 원점을 옮겨 다시 만든다.
|
|
# 아래를 맞춰야 같은 행의 수량표가 한 줄로 선다.
|
|
origin = (
|
|
center_x - (min_x + max_x) / 2.0,
|
|
bottom_y + _BLOCK_GAP_MM / 2.0 - min_y,
|
|
)
|
|
placed = build_cross_drawing(
|
|
section["source"],
|
|
seed_id,
|
|
section.get("design_line"),
|
|
section.get("design"),
|
|
section.get("quantity_table"),
|
|
section.get("title", ""),
|
|
origin=origin,
|
|
)
|
|
entities.extend(placed["entities"])
|
|
placements.extend(placed.get("cross_placements") or [])
|
|
|
|
bbox = entities_bbox(entities)
|
|
if bbox:
|
|
entities.extend(frame_entities(sheet["id"], bbox, fit=False))
|
|
|
|
return {
|
|
"format": DRAWING_FORMAT,
|
|
"entities": entities,
|
|
"cross_placements": placements,
|
|
"layers": [
|
|
_layer(GROUND_LAYER_ID, "Existing Ground", locked=True),
|
|
_layer(DESIGN_LAYER_ID, "Design Plan"),
|
|
_layer(STRUCTURE_LAYER_ID, "Structure"),
|
|
_layer(ROCK_LAYER_ID, "Rock Boundary"),
|
|
_layer(CROSS_TABLE_LAYER_ID, "Quantity Table"),
|
|
_layer(FRAME_LAYER_ID, "Frame", locked=True),
|
|
],
|
|
}
|