14 Commits

Author SHA1 Message Date
1000a3a19a Merge pull request 'Fix group overflows' (#19) from fix/issue-18-group-size into dev
All checks were successful
CI / tests (push) Successful in 13s
Reviewed-on: #19
2025-07-28 22:18:06 +00:00
f3763cb1f7 updated special-group test
All checks were successful
CI / tests (pull_request) Successful in 15s
2025-07-29 00:17:11 +02:00
c19d507486 fixed self-sequence overflow
Some checks failed
CI / tests (pull_request) Failing after 15s
2025-07-29 00:04:24 +02:00
fe01e63dd0 fixed group name and description overflow 2025-07-28 23:45:06 +02:00
d6c390f3c5 fixed uncommitted ref image
All checks were successful
CI / tests (push) Successful in 13s
2025-07-28 22:48:57 +02:00
bbc8bb0339 added test for groups
Some checks failed
CI / tests (push) Failing after 14s
2025-07-28 22:47:28 +02:00
f39e14654a fixed #17
All checks were successful
CI / tests (push) Successful in 17s
2025-07-28 22:35:57 +02:00
aca2d858fe changed participant name alignment to base
All checks were successful
CI / tests (push) Successful in 20s
2025-07-16 19:13:54 +02:00
6c97bb807f Merge pull request 'Fix notes width not taken into account' (#16) from fix/issue-13-note-in-group into dev
All checks were successful
CI / tests (push) Successful in 1m1s
Reviewed-on: #16
2025-07-16 16:53:08 +00:00
f812ac93c2 fixed missing import
All checks were successful
CI / tests (pull_request) Successful in 26s
2025-07-16 18:45:37 +02:00
caad9ed823 fixed group width containing notes 2025-07-16 18:45:10 +02:00
0b401df67d fixed start column width with note 2025-07-16 17:55:46 +02:00
8ee14167de fixed ignored multiple linked notes 2025-07-16 17:21:20 +02:00
1f24ba8efe added allow-overlap parameter for notes 2025-07-16 17:20:31 +02:00
22 changed files with 244 additions and 51 deletions

View File

@@ -5,13 +5,15 @@
/// - color (color): The note's color /// - color (color): The note's color
/// - shape (str): The note's shape (see @@SHAPES for accepted values) /// - shape (str): The note's shape (see @@SHAPES for accepted values)
/// - aligned (bool): True if the note is aligned with another note, in which case `side` must be `"over"`, false otherwise /// - aligned (bool): True if the note is aligned with another note, in which case `side` must be `"over"`, false otherwise
/// - allow-overlap (bool): If set to `false`, the note will try to reserve space in the column to avoid overlapping with neighboring participants. If set to `true`, the not will overlap other participants
#let _note( #let _note(
side, side,
content, content,
pos: none, pos: none,
color: rgb("#FEFFDD"), color: rgb("#FEFFDD"),
shape: "default", shape: "default",
aligned: false aligned: false,
allow-overlap: true
) = {} ) = {}
/// Accepted values for `shape` argument of @@_note() /// Accepted values for `shape` argument of @@_note()

Binary file not shown.

View File

@@ -1,7 +1,10 @@
#import "/src/cetz.typ": draw #import "/src/cetz.typ": draw
#import "/src/consts.typ": * #import "/src/consts.typ": *
#import "/src/core/utils.typ": get-ctx, set-ctx #import "/src/core/utils.typ": get-ctx, set-ctx, expand-parent-group
#let display-name(name) = text(name, weight: "bold")
#let display-desc(desc) = text([\[#desc\]], weight: "bold", size: .8em)
#let render-start(grp) = get-ctx(ctx => { #let render-start(grp) = get-ctx(ctx => {
let grp = grp let grp = grp
@@ -18,14 +21,21 @@
) )
) )
ctx.groups = ctx.groups.map(g => { ctx.groups = ctx.groups.map(g => {
if g.at(1).min-i == grp.min-i { g.at(2) += 1 } if g.group.min-i == grp.min-i { g.start-lvl += 1 }
if g.at(1).max-i == grp.max-i { g.at(3) += 1 } if g.group.max-i == grp.max-i { g.end-lvl += 1 }
g g
}) })
if grp.grp-type == "alt" { if grp.grp-type == "alt" {
grp.insert("elses", ()) grp.insert("elses", ())
} }
ctx.groups.push((ctx.y, grp, 0, 0)) ctx.groups.push((
start-y: ctx.y,
group: grp,
start-lvl: 0,
end-lvl: 0,
min-x: ctx.x-pos.at(grp.min-i) - 10,
max-x: ctx.x-pos.at(grp.max-i) + 10
))
ctx.y -= m.height / 1pt ctx.y -= m.height / 1pt
set-ctx(c => { set-ctx(c => {
@@ -37,8 +47,8 @@
#let draw-group(x0, x1, y0, y1, group) = { #let draw-group(x0, x1, y0, y1, group) = {
let name = text(group.name, weight: "bold") let name = display-name(group.name)
let m = measure(box(name)) let m = measure(name)
let w = m.width / 1pt + 15 let w = m.width / 1pt + 15
let h = m.height / 1pt + 6 let h = m.height / 1pt + 6
draw.rect( draw.rect(
@@ -64,7 +74,7 @@
if group.desc != none { if group.desc != none {
draw.content( draw.content(
(x0 + w, y0), (x0 + w, y0),
text([\[#group.desc\]], weight: "bold", size: .8em), display-desc(group.desc),
anchor: "north-west", anchor: "north-west",
padding: 3pt padding: 3pt
) )
@@ -79,7 +89,7 @@
) )
draw.content( draw.content(
(x0, y), (x0, y),
text([\[#elmt.desc\]], weight: "bold", size: .8em), display-desc(elmt.desc),
anchor: "north-west", anchor: "north-west",
padding: 3pt padding: 3pt
) )
@@ -87,9 +97,32 @@
#let render-end(group) = get-ctx(ctx => { #let render-end(group) = get-ctx(ctx => {
ctx.y -= Y-SPACE ctx.y -= Y-SPACE
let (start-y, group, start-lvl, end-lvl) = ctx.groups.pop() let (
let x0 = ctx.x-pos.at(group.min-i) - start-lvl * 10 - 20 start-y,
let x1 = ctx.x-pos.at(group.max-i) + end-lvl * 10 + 20 group,
start-lvl,
end-lvl,
min-x,
max-x
) = ctx.groups.pop()
let x0 = min-x - 10
let x1 = max-x + 10
// Fit name and descriptions
let name-m = measure(display-name(group.name))
let width = name-m.width / 1pt + 15
if group.desc != none {
let desc-m = measure(display-desc(group.desc))
width += desc-m.width / 1pt + 6
}
if group.grp-type == "alt" {
width = calc.max(width, ..group.elses.map(e => {
let elmt = e.at(1)
let desc-m = measure(display-desc(elmt.desc))
return desc-m.width / 1pt + 6
}))
}
x1 = calc.max(x1, x0 + width + 3)
draw-group(x0, x1, start-y, ctx.y, group) draw-group(x0, x1, start-y, ctx.y, group)
@@ -104,12 +137,14 @@
c.groups = ctx.groups c.groups = ctx.groups
return c return c
}) })
expand-parent-group(x0, x1)
}) })
#let render-else(else_) = set-ctx(ctx => { #let render-else(else_) = set-ctx(ctx => {
ctx.y -= Y-SPACE ctx.y -= Y-SPACE
let m = measure(text([\[#else_.desc\]], weight: "bold", size: .8em)) let m = measure(text([\[#else_.desc\]], weight: "bold", size: .8em))
ctx.groups.last().at(1).elses.push(( ctx.groups.last().group.elses.push((
ctx.y, else_ ctx.y, else_
)) ))
ctx.y -= m.height / 1pt ctx.y -= m.height / 1pt

View File

@@ -1,7 +1,7 @@
#import "/src/cetz.typ": draw #import "/src/cetz.typ": draw
#import "/src/consts.typ": * #import "/src/consts.typ": *
#import "/src/core/utils.typ": get-ctx, set-ctx #import "/src/core/utils.typ": get-ctx, set-ctx, expand-parent-group
#let get-size(note) = { #let get-size(note) = {
let PAD = if note.shape == "hex" {NOTE-HEX-PAD} else {NOTE-PAD} let PAD = if note.shape == "hex" {NOTE-HEX-PAD} else {NOTE-PAD}
@@ -159,5 +159,7 @@
return c return c
}) })
} }
expand-parent-group(x0, x2)
}) })
} }

View File

@@ -81,7 +81,7 @@
draw.content( draw.content(
(x, y), (x, y),
p.display-name, p.display-name,
anchor: if bottom {"north"} else {"south"} anchor: if bottom {"north"} else {"base"}
) )
} }
@@ -109,7 +109,7 @@
draw.content( draw.content(
(x, y), (x, y),
p.display-name, p.display-name,
anchor: if bottom {"north"} else {"south"} anchor: if bottom {"north"} else {"base"}
) )
} }
@@ -127,7 +127,7 @@
draw.content( draw.content(
(x, y), (x, y),
p.display-name, p.display-name,
anchor: if bottom {"north"} else {"south"} anchor: if bottom {"north"} else {"base"}
) )
} }
@@ -150,7 +150,7 @@
draw.content( draw.content(
(x, y), (x, y),
p.display-name, p.display-name,
anchor: if bottom {"north"} else {"south"} anchor: if bottom {"north"} else {"base"}
) )
} }
@@ -183,7 +183,7 @@
draw.content( draw.content(
(x, y), (x, y),
p.display-name, p.display-name,
anchor: if bottom {"north"} else {"south"} anchor: if bottom {"north"} else {"base"}
) )
} }
@@ -287,7 +287,7 @@
draw.content( draw.content(
(x, y), (x, y),
p.display-name, p.display-name,
anchor: if bottom {"north"} else {"south"} anchor: if bottom {"north"} else {"base"}
) )
} }

View File

@@ -1,8 +1,8 @@
#import "/src/cetz.typ": draw, vector #import "/src/cetz.typ": draw, vector, coordinate
#import "note.typ" #import "note.typ"
#import "/src/consts.typ": * #import "/src/consts.typ": *
#import "/src/core/utils.typ": get-ctx, set-ctx #import "/src/core/utils.typ": get-ctx, set-ctx, expand-parent-group
#let get-arrow-marks(sym, color) = { #let get-arrow-marks(sym, color) = {
if sym == none { if sym == none {
@@ -67,9 +67,12 @@
if comment != none { if comment != none {
h = calc.max(h, measure(comment).height / 1pt + 6) h = calc.max(h, measure(comment).height / 1pt + 6)
} }
if "linked-note" in seq { h = calc.max(
h = calc.max(h, note.get-size(seq.linked-note).height / 2) h,
} ..seq.linked-notes.map(n => {
note.get-size(n).height / 2
})
)
ctx.y -= h ctx.y -= h
let start-info = ( let start-info = (
@@ -165,9 +168,8 @@
) )
let y0 = start-info.y let y0 = start-info.y
if "linked-note" in seq { for n in seq.linked-notes {
// TODO: adapt note.render (n.draw)(n, y: start-info.y, forced: true)
(seq.linked-note.draw)(seq.linked-note, y: start-info.y, forced: true)
} }
let flip-mark = end-info.i <= start-info.i let flip-mark = end-info.i <= start-info.i
@@ -221,6 +223,11 @@
).at(seq.comment-align) ).at(seq.comment-align)
} }
expand-parent-group(
calc.min(x1, x2, x-mid),
calc.max(x1, x2, x-mid)
)
} else { } else {
pts = ( pts = (
(x1, start-info.y), (x1, start-info.y),
@@ -259,6 +266,11 @@
(p1, p2) = (p2, p1) (p1, p2) = (p2, p1)
} }
comment-angle = vector.angle2(p1, p2) comment-angle = vector.angle2(p1, p2)
expand-parent-group(
calc.min(x1, x2),
calc.max(x1, x2)
)
} }
// Start circle tip // Start circle tip
@@ -333,8 +345,23 @@
comment, comment,
anchor: comment-anchor, anchor: comment-anchor,
angle: comment-angle, angle: comment-angle,
padding: 3pt padding: 3pt,
name: "comment"
) )
// TODO: Improve this
draw.get-ctx(c => {
let (_, left, right) = coordinate.resolve(
c,
"comment.west",
"comment.east"
)
expand-parent-group(
left.at(0),
right.at(0)
)
})
} }
if seq.create-dst { if seq.create-dst {
@@ -348,9 +375,14 @@
ctx.lifelines.at(i2) = dst-line ctx.lifelines.at(i2) = dst-line
} }
if "linked-note" in seq { if seq.linked-notes.len() != 0 {
let m = note.get-size(seq.linked-note) end-info.y = calc.min(
end-info.y = calc.min(end-info.y, y0 - m.height / 2) end-info.y,
y0 - calc.max(..seq.linked-notes.map(n => {
let m = note.get-size(n)
return m.height / 2
}))
)
} }
set-ctx(c => { set-ctx(c => {

View File

@@ -82,12 +82,12 @@
let (p1, p2) = (none, none) let (p1, p2) = (none, none)
let cell = none let cell = none
if note.side == "left" { if note.side == "left" {
p1 = "[" p1 = note.pos2
p2 = note.pos p2 = note.pos
cell = get-note-box(note) cell = get-note-box(note)
} else if note.side == "right" { } else if note.side == "right" {
p1 = note.pos p1 = note.pos
p2 = "]" p2 = note.pos2
cell = get-note-box(note) cell = get-note-box(note)
} else if note.side == "over" and note.aligned-with != none { } else if note.side == "over" and note.aligned-with != none {
let box1 = get-note-box(note) let box1 = get-note-box(note)
@@ -220,7 +220,7 @@
} }
/// Compute remaining widths for longer sequences (spanning multiple columns) /// Compute remaining widths for longer sequences (spanning multiple columns)
#let long-seq-min-col-widths(cells, widths) = { #let long-seq-min-col-widths(participants, cells, widths) = {
let widths = widths let widths = widths
let multicol-cells = cells.filter(c => c.i2 - c.i1 > 1) let multicol-cells = cells.filter(c => c.i2 - c.i1 > 1)
multicol-cells = multicol-cells.sorted(key: c => { multicol-cells = multicol-cells.sorted(key: c => {
@@ -228,13 +228,23 @@
}) })
for cell in multicol-cells { for cell in multicol-cells {
let m = measure(cell.cell) let m = measure(cell.cell)
let i1 = cell.i1
let i2 = cell.i2 - 1
let i = i2
if cell.i1 == 0 and participants.at(0).name == "[" {
i = 0
i1 += 1
i2 += 1
}
let width = ( let width = (
m.width / 1pt + m.width / 1pt +
COMMENT-PAD - COMMENT-PAD -
widths.slice(cell.i1, cell.i2 - 1).sum() widths.slice(i1, i2).sum()
) )
widths.at(cell.i2 - 1) = calc.max(
widths.at(cell.i2 - 1), width widths.at(i) = calc.max(
widths.at(i), width
) )
} }
return widths return widths
@@ -307,7 +317,7 @@
widths = notes-min-col-widths(elements, widths, pars-i) widths = notes-min-col-widths(elements, widths, pars-i)
widths = simple-seq-min-col-widths(cells, widths) widths = simple-seq-min-col-widths(cells, widths)
widths = self-seq-min-col-widths(cells, widths) widths = self-seq-min-col-widths(cells, widths)
widths = long-seq-min-col-widths(cells, widths) widths = long-seq-min-col-widths(participants, cells, widths)
widths = col-widths-add-lifelines(participants, widths) widths = col-widths-add-lifelines(participants, widths)
widths = process-col-elements(elements, widths, pars-i) widths = process-col-elements(elements, widths, pars-i)
return widths return widths

View File

@@ -126,8 +126,8 @@
"linked", "linked",
note.pos == none and note.side != "across" note.pos == none and note.side != "across"
) )
let names = ctx.participants.map(p => p.name)
if note.pos == none and note.side != "across" { if note.pos == none and note.side != "across" {
let names = ctx.participants.map(p => p.name)
let i1 = names.position(n => n == ctx.last-seq.p1) let i1 = names.position(n => n == ctx.last-seq.p1)
let i2 = names.position(n => n == ctx.last-seq.p2) let i2 = names.position(n => n == ctx.last-seq.p2)
let pars = ( let pars = (
@@ -141,8 +141,8 @@
note.pos = pars.last().last() note.pos = pars.last().last()
} }
let seq = ctx.last-seq.seq let seq = ctx.elmts.at(ctx.last-seq.i)
seq.insert("linked-note", note) seq.linked-notes.push(note)
ctx.elmts.at(ctx.last-seq.i) = seq ctx.elmts.at(ctx.last-seq.i) = seq
} }
if note.aligned { if note.aligned {
@@ -150,10 +150,26 @@
n.aligned-with = note n.aligned-with = note
ctx.elmts.at(ctx.last-note.i) = n ctx.elmts.at(ctx.last-note.i) = n
} }
if note.side == "left" {
ctx.linked.push("[") if note.side in ("left", "right") {
} else if note.side == "right" { let i = names.position(n => n == note.pos)
ctx.linked.push("]") let pos2 = note.pos
if note.side == "left" {
if i <= 0 or note.allow-overlap {
ctx.linked.push("[")
pos2 = "["
} else {
pos2 = names.at(i - 1)
}
} else if note.side == "right" {
if i >= names.len() - 1 or note.allow-overlap {
ctx.linked.push("]")
pos2 = "]"
} else {
pos2 = names.at(i + 1)
}
}
note.insert("pos2", pos2)
} }
let pars = none let pars = none

View File

@@ -104,4 +104,14 @@
#let get-ctx(func) = draw.get-ctx(c => { #let get-ctx(func) = draw.get-ctx(c => {
let ctx = c.shared-state.chronos let ctx = c.shared-state.chronos
func(ctx) func(ctx)
})
#let expand-parent-group(x0, x1) = set-ctx(ctx => {
if ctx.groups.len() != 0 {
let group = ctx.groups.last()
group.min-x = calc.min(group.min-x, x0)
group.max-x = calc.max(group.max-x, x1)
ctx.groups.last() = group
}
return ctx
}) })

View File

@@ -39,5 +39,5 @@
} }
_grp(name, desc: desc, type: "loop", elmts) _grp(name, desc: desc, type: "loop", elmts)
} }
#let _opt(desc, elmts) = grp("opt", desc: desc, type: "opt", elmts) #let _opt(desc, elmts) = _grp("opt", desc: desc, type: "opt", elmts)
#let _break(desc, elmts) = grp("break", desc: desc, type: "break", elmts) #let _break(desc, elmts) = _grp("break", desc: desc, type: "break", elmts)

View File

@@ -1,4 +1,5 @@
#import "core/draw/delay.typ" #import "core/draw/delay.typ"
#import "core/draw/event.typ": render as evt-render
#import "core/draw/separator.typ" #import "core/draw/separator.typ"
#import "core/draw/sync.typ" #import "core/draw/sync.typ"
#import "core/utils.typ": set-ctx #import "core/utils.typ": set-ctx

View File

@@ -14,7 +14,15 @@
"hex" "hex"
) )
#let _note(side, content, pos: none, color: COL-NOTE, shape: "default", aligned: false) = { #let _note(
side,
content,
pos: none,
color: COL-NOTE,
shape: "default",
aligned: false,
allow-overlap: true
) = {
if side == "over" { if side == "over" {
if pos == none { if pos == none {
panic("Pos cannot be none with side 'over'") panic("Pos cannot be none with side 'over'")
@@ -37,6 +45,7 @@
color: color, color: color,
shape: shape, shape: shape,
aligned: aligned, aligned: aligned,
aligned-with: none aligned-with: none,
allow-overlap: allow-overlap
),) ),)
} }

View File

@@ -38,7 +38,8 @@
disable-src: disable-src, disable-src: disable-src,
destroy-src: destroy-src, destroy-src: destroy-src,
lifeline-style: lifeline-style, lifeline-style: lifeline-style,
slant: slant slant: slant,
linked-notes: ()
),) ),)
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 KiB

After

Width:  |  Height:  |  Size: 102 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB

4
tests/special-group/.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
# generated by tytanic, do not edit
diff/**
out/**

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

View File

@@ -0,0 +1,71 @@
#set page(width: auto, height: auto)
#import "/src/lib.typ": *
#let preamble = {
_par("a", display-name: [Alice])
_par("b", display-name: [Bob])
_col("a", "b", width: 2cm)
}
#diagram({
preamble
_grp("Group 1", {
_seq("a", "b")
})
_grp("Group 2", desc: [Description], {
_seq("a", "b")
})
})
#pagebreak()
#diagram({
preamble
_alt(
"case 1", {
_seq("a", "b")
},
"case 2", {
_seq("a", "b")
},
"case 3", {
_seq("a", "b")
}
)
})
#pagebreak()
#diagram({
preamble
_loop("loop 1", {
_seq("a", "b")
})
_loop("loop 2", min: 1, {
_seq("a", "b")
})
_loop("loop 3", max: 10, {
_seq("a", "b")
})
_loop("loop 3", min: 1, max: 10, {
_seq("a", "b")
})
})
#pagebreak()
#diagram({
preamble
_opt("Optional", {
_seq("a", "b")
})
})
#pagebreak()
#diagram({
preamble
_break("Break", {
_seq("a", "b")
})
})