-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
regame-components.gv
52 lines (46 loc) · 1.03 KB
/
regame-components.gv
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
digraph G {
subgraph cluster_0 {
style=filled;
color="#3FBFFF";
node [style=filled,color="#ADB9CA"];
"Native UI" wsc0;
label = "cgc";
}
subgraph cluster_1 {
style=filled;
color="#3FBFFF";
node [style=filled,color="#ADB9CA"];
"Web UI" "WebRTC Client";
label = "WebBrowser";
}
subgraph cluster_2 {
style=filled;
color="#BFBFBF";
node [style=filled,color="#ADB9CA"];
"WebRTC Server" wsc1;
label = "cgs";
}
subgraph cluster_3 {
style=filled;
color="#3FBFFF";
node [style=filled,color="#ADB9CA"];
"WebSocket Server" "JSONRPC Client";
label = "cge";
}
subgraph cluster_4 {
style=filled;
color="#BFBFBF";
node [style=filled,color="#ADB9CA"];
"JSONRPC Server";
label = "User Service";
}
start -> "Native UI";
start -> "Web UI";
"WebRTC Client" -> "WebRTC Server";
wsc0 -> "WebSocket Server";
wsc1 -> "WebSocket Server";
"JSONRPC Client" -> "JSONRPC Server";
start [shape=Mdiamond, label="Palyer"];
wsc0 [label="WebSocket Client"];
wsc1 [label="WebSocket Client"];
}