This repository was archived by the owner on Jul 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjojSS.xml
More file actions
80 lines (72 loc) · 3.52 KB
/
Copy pathjojSS.xml
File metadata and controls
80 lines (72 loc) · 3.52 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<organisational-specification
id="joj"
os-version="0.6"
xmlns='http://moise.sourceforge.net/os'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xsi:schemaLocation='http://moise.sourceforge.net/os http://moise.sourceforge.net/xml/os.xsd'>
<structural-specification>
<role-definitions>
<role id="player" />
<role id="coach" />
<role id="middle"> <extends role="player"/> </role>
<role id="leader"> <extends role="player"/> </role>
<role id="back"> <extends role="player"/> </role>
<role id="goalkeeper"> <extends role="back"/> </role>
<role id="attacker"> <extends role="player"/> </role>
</role-definitions>
<group-specification id="team">
<roles>
<role id="coach" min="1" max="2"/>
</roles>
<links>
<link from="leader" to="player" type="authority"
scope="inter-group" extends-subgroups="true" bi-dir="false"/>
<link from="coach" to="player" type="authority"
scope="inter-group" extends-subgroups="true" bi-dir="false"/>
<link from="player" to="player" type="communication"
scope="inter-group" extends-subgroups="true" bi-dir="false"/>
<link from="player" to="coach" type="communication"
scope="inter-group" extends-subgroups="true" bi-dir="false"/>
</links>
<subgroups>
<group-specification id="attack" min="1" max="1">
<roles>
<role id="middle" min="5" max="5" />
<role id="leader" min="0" max="1"/>
<role id="attacker" min="2" max="2" />
</roles>
<formation-constraints>
<compatibility from="middle" to="leader" type="compatibility"
scope="intra-group" extends-subgroups="false"
bi-dir="true"/>
</formation-constraints>
</group-specification>
<group-specification id="defense" min="1" max="1">
<roles>
<role id="leader" min="0" max="1" />
<role id="goalkeeper" min="1" max="1" />
<role id="back" min="3" max="3" />
</roles>
<links>
<link from="goalkeeper" to="back" type="authority"
scope="intra-group" extends-subgroups="false"
bi-dir="false"/>
</links>
<formation-constraints>
<compatibility from="back" to="leader" type="compatibility"
scope="intra-group" extends-subgroups="false"
bi-dir="true"/>
</formation-constraints>
</group-specification>
</subgroups>
<formation-constraints>
<!-- subgroups scope cardinality -->
<cardinality min="1" max="1" object="role" id="leader"/>
</formation-constraints>
</group-specification>
</structural-specification>
<functional-specification>
</functional-specification>
<normative-specification/>
</organisational-specification>