aboutsummaryrefslogtreecommitdiffstats
path: root/doc/legend_for_fsm_diagrams.dot
blob: 732a894cd57109a8496925039171d2ee749bc2d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
digraph G {
rankdir=TB
labelloc=t; label="LEGEND FOR FSM GRAPHS"

	box [label="function_call()\nputs FSM into state",shape="box"]
	STATE [label="FSM_STATE"]
	STATE2 [label="FSM_STATE"]
	STATE3 [label="FSM_STATE"]
	box -> STATE
	STATE -> STATE2 [label="state transition"]
	STATE2 -> STATE3

	STATE -> STATE3 [label="transition\non error",style=dashed]

	other [label="other FSM\ninstance\nor remote program",shape=box3d]
	STATE2 -> other [label="event",style=dotted]
	other -> STATE2 [label="event",style=dotted]

	terminate [shape=octagon]
	STATE3 -> terminate

	err [label="common error\ntransition",shape=box,style=dashed]
	err -> STATE3 [style=dashed]
}