-
Notifications
You must be signed in to change notification settings - Fork 0
/
diagram.dot
73 lines (63 loc) · 1.41 KB
/
diagram.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
digraph {
compound=true;
node [ fontname="Handlee" ];
subgraph cluster_wacosc {
label="WACOSC";
style="dotted";
subgraph cluster_dev_map {
label="find_devices_files";
style="solid";
eviocgname
evdev
}
subgraph cluster_carla {
label="Carla";
style="solid";
OSCInterface
MagicHandler
}
subgraph cluster_wacom {
label="Wacom";
style="solid";
stylus
touch
pad
thread
}
eviocgname -> thread [lhead=cluster_wacom]
evdev -> thread [lhead=cluster_wacom]
subgraph cluster_reactivedict {
label="ReactiveDict";
style="solid";
ReactiveDict
}
subgraph cluster_plugins {
label="Plugins\n*user action needed";
style="solid";
plugins
}
thread -> stylus [xlabel="polling"]
thread -> pad
thread -> touch
stylus -> ReactiveDict
pad -> ReactiveDict
touch -> ReactiveDict
ReactiveDict -> OSCInterface
plugins -> OSCInterface
subgraph cluster_config {
label="Config\n*user action needed";
style="solid";
cfg_stylus [label="stylus"]
cfg_pad [label="pad"]
cfg_touch [label="touch"]
}
OSCInterface -> MagicHandler [dir=both]
cfg_stylus -> MagicHandler
cfg_pad -> MagicHandler
cfg_touch -> MagicHandler
}
node [shape="octagon"];
MagicHandler -> CARLA [style="dashed" xlabel="OSC" dir=both]
WACOM -> thread [style="dashed" xlabel="input events"]
plugins -> LILV [style="dashed" xlabel="get ranges" dir=both]
}