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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
@dot
digraph D {
graph [label="Orthogonal edges", splines=ortho, nodesep=1.0];
node [shape=box fontname=Arial];
rankdir=LR;
color = "white"
bgcolor = "white"
fillcolor = "white"
fontcolor = "white"
pencolor = "white"
_1 [
label = <<b>Joystick</b>>
];
_2 [
label = <<b>Joystick<br/>Event</b>>
];
_3 [
label = <<b>Keyboard</b>>
];
_4 [
label = <<b>Keyboard<br/>Event</b>>
];
_5 [
label = <<b>Joystick</b><br/><font color="#777777"><i>CJoystick</i></font>>;
]
_6 [
label = <<b>Peripheral Event</b><br/><font color="#777777"><i>kodi::addon::PeripheralEvent</i></font>>;
]
_7 [
label = <<b>ButtonMap</b><br/><font color="#777777"><i>kodi::addon::JoystickFeatures*</i></font>>;
]
_8 [
label = <<b>C struct</b><br/><font color="#777777"><i>JOYSTICK_INFO</i></font>>;
]
_9 [
label = <<b>C struct</b><br/><font color="#777777"><i>PERIPHERAL_EVENT</i></font>>;
]
_10 [
label = <<b>C structs</b><br/><font color="#777777"><i>JOYSTICK_FEATURE*</i></font>>;
]
_11 [
label = <<b>Joystick Peripheral</b><br/><font color="#777777"><i>CPeripheralJoystick</i></font>>
]
_12 [
label = <<b>Event Handling</b><br/><font color="#777777"><i>IJoystickDriverHandler</i></font>>
]
_13 [
label = <<b>Keyboard Peripheral</b><br/><font color="#777777"><i>CPeripheralKeyboard</i></font>>
]
_14 [
label = <<b>Keyboard Handling</b><br/><font color="#777777"><i>IKeyboardHandler</i></font>>
]
_1 -> _5 [penwidth=3, weight=5];
_3 -> _13 [penwidth=3, weight=0];
_5 -> _8 [penwidth=3, weight=10];
_8 -> _11 [penwidth=3, weight=5];
subgraph cluster_1 {
graph [nodesep=6, ranksep=4];
label = <<b><font point-size='20'>OS</font></b>>;
fontcolor = "white";
bgcolor = "red";
_1 [style=filled, fillcolor=white];
_2 [style=filled, fillcolor=white];
_3 [style=filled, fillcolor=white];
_4 [style=filled, fillcolor=white];
}
subgraph cluster_2 {
graph [nodesep=6, ranksep=4];
label = <<b><font point-size='20'>Peripheral Add-on</font></b>>;
fontcolor = "white";
bgcolor = "red";
_5 [style=filled, fillcolor=white];
_6 [style=filled, fillcolor=white];
_7 [style=filled, fillcolor=white];
}
subgraph cluster_3 {
graph [nodesep=6, ranksep=4];
label = <<b><font point-size='20'>Peripheral API</font></b>>;
fontcolor = "white";
bgcolor = "red";
_8 [style=filled, fillcolor=white];
_9 [style=filled, fillcolor=white];
_10 [style=filled, fillcolor=white];
}
subgraph cluster_4 {
graph [nodesep=6, ranksep=4];
label = <<b><font point-size='20'>Peripheral Busses</font></b>>;
fontcolor = "white";
bgcolor = "red";
subgraph cluster_4_1 {
graph [nodesep=6, ranksep=4];
label = <<font point-size='18'><b>Virtual Add-on Bus</b></font><br/><font color="#777777"><i>CPeripheralBusAddon</i></font>>;
fontcolor = "black";
bgcolor = "white";
_11 [style=filled, fillcolor=white];
_12 [style=filled, fillcolor=white];
}
subgraph cluster_4_2 {
graph [nodesep=6, ranksep=4];
label = "";
"" [
color="red"
bgcolor = "red";
];
pencolor = "red";
}
subgraph cluster_4_3 {
graph [nodesep=6, ranksep=4];
label = <<font point-size='18'><b>Virtual Application Bus</b></font><br/><font color="#777777"><i>CPeripheralBusApplication</i></font>>;
fontcolor = "black";
bgcolor = "white";
_13 [style=filled, fillcolor=white];
_14 [style=filled, fillcolor=white];
}
}
}
@enddot
|