-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproto.proto
201 lines (161 loc) · 2.69 KB
/
proto.proto
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
syntax = "proto3";
package COD.Level;
message Level
{
uint32 formatVersion = 1;
string title = 2;
repeated string tags = 9;
string creators = 3;
string description = 4;
uint32 complexity = 5;
uint32 maxCheckpointCount = 7;
AmbienceSettings ambienceSettings = 8;
repeated LevelNode levelNodes = 6;
}
message Vector
{
float x = 1;
float y = 2;
float z = 3;
}
message Quaternion
{
float x = 1;
float y = 2;
float z = 3;
float w = 4;
}
message Color
{
float r = 1;
float g = 2;
float b = 3;
float a = 4;
}
message AmbienceSettings
{
Color skyZenithColor = 1;
Color skyHorizonColor = 2;
float sunAltitude = 3;
float sunAzimuth = 4;
float sunSize = 5;
float fogDDensity = 6;
}
enum LevelNodeShape
{
START = 0;
FINISH = 1;
SIGN = 2;
__END_OF_SPECIAL_PARTS__ = 3;
CUBE = 1000;
SPHERE = 1001;
CYLINDER = 1002;
PYRAMID = 1003;
PRISM = 1004;
CONE = 1005;
}
enum LevelNodeMaterial
{
DEFAULT = 0;
GRABBABLE = 1;
ICE = 2;
LAVA = 3;
WOOD = 4;
GRAPPLABLE = 5;
GRAPPLABLE_LAVA = 6;
GRABBABLE_CRUMBLING= 7;
DEFAULT_COLORED = 8;
BOUNCING = 9;
}
message LevelNodeGroup
{
Vector position = 1;
Vector scale = 2;
Quaternion rotation = 3;
repeated LevelNode childNodes = 4;
}
message LevelNodeStart
{
Vector position = 1;
Quaternion rotation = 2;
float radius = 3;
}
message LevelNodeFinish
{
Vector position = 1;
float radius = 2;
}
message LevelNodeStatic
{
LevelNodeShape shape = 1;
LevelNodeMaterial material = 2;
Vector position = 3;
Vector scale = 4;
Quaternion rotation = 5;
Color color1 = 6;
Color color2 = 9;
bool isNeon = 7;
bool isTransparent = 8;
}
message LevelNodeCrumbling
{
LevelNodeShape shape = 1;
LevelNodeMaterial material = 2;
Vector position = 3;
Vector scale = 4;
Quaternion rotation = 5;
float stableTime = 6;
float respawnTime = 7;
}
message LevelNodeSign
{
Vector position = 1;
Quaternion rotation = 2;
string text = 3;
}
message LevelNodeGravity
{
enum Mode
{
DEFAULT = 0;
NOLEGS = 1;
}
Mode mode = 1;
Vector position = 2;
Vector scale = 3;
Quaternion rotation = 4;
Vector direction = 5;
}
message AnimationFrame
{
float time = 1;
Vector position = 2;
Quaternion rotation = 3;
}
message Animation
{
enum Direction
{
RESTART = 0;
PINGPONG = 1;
}
string name = 1;
repeated AnimationFrame frames = 2;
Direction direction = 3;
float speed = 4;
}
message LevelNode
{
bool isLocked = 6;
oneof content
{
LevelNodeStart levelNodeStart = 1;
LevelNodeFinish levelNodeFinish = 2;
LevelNodeStatic levelNodeStatic = 3;
LevelNodeSign levelNodeSign = 4;
LevelNodeCrumbling levelNodeCrumbling = 5;
LevelNodeGroup levelNodeGroup = 7;
LevelNodeGravity levelNodeGravity = 8;
}
repeated Animation animations = 15;
}