luckyrobots 0.1.69__py3-none-any.whl → 0.1.71__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- luckyrobots/__init__.py +8 -1
- luckyrobots/client.py +98 -4
- luckyrobots/grpc/generated/agent_pb2.py +36 -32
- luckyrobots/grpc/generated/agent_pb2_grpc.py +110 -128
- luckyrobots/grpc/generated/camera_pb2.py +20 -18
- luckyrobots/grpc/generated/camera_pb2_grpc.py +62 -73
- luckyrobots/grpc/generated/common_pb2.py +20 -16
- luckyrobots/grpc/generated/common_pb2_grpc.py +7 -10
- luckyrobots/grpc/generated/hazel_rpc_pb2.py +43 -0
- luckyrobots/grpc/generated/hazel_rpc_pb2_grpc.py +24 -0
- luckyrobots/grpc/generated/media_pb2.py +16 -12
- luckyrobots/grpc/generated/media_pb2_grpc.py +7 -10
- luckyrobots/grpc/generated/mujoco_pb2.py +28 -24
- luckyrobots/grpc/generated/mujoco_pb2_grpc.py +110 -128
- luckyrobots/grpc/generated/scene_pb2.py +30 -28
- luckyrobots/grpc/generated/scene_pb2_grpc.py +108 -127
- luckyrobots/grpc/generated/telemetry_pb2.py +24 -20
- luckyrobots/grpc/generated/telemetry_pb2_grpc.py +62 -73
- luckyrobots/grpc/generated/viewport_pb2.py +24 -22
- luckyrobots/grpc/generated/viewport_pb2_grpc.py +62 -73
- luckyrobots/grpc/proto/agent.proto +33 -1
- luckyrobots/grpc/proto/camera.proto +1 -1
- luckyrobots/grpc/proto/common.proto +1 -1
- luckyrobots/grpc/proto/hazel_rpc.proto +1 -1
- luckyrobots/grpc/proto/media.proto +1 -1
- luckyrobots/grpc/proto/mujoco.proto +1 -1
- luckyrobots/grpc/proto/scene.proto +1 -1
- luckyrobots/grpc/proto/telemetry.proto +1 -1
- luckyrobots/grpc/proto/viewport.proto +1 -1
- luckyrobots/luckyrobots.py +28 -0
- luckyrobots/models/__init__.py +2 -0
- luckyrobots/models/randomization.py +77 -0
- {luckyrobots-0.1.69.dist-info → luckyrobots-0.1.71.dist-info}/METADATA +1 -1
- luckyrobots-0.1.71.dist-info/RECORD +47 -0
- luckyrobots-0.1.69.dist-info/RECORD +0 -44
- {luckyrobots-0.1.69.dist-info → luckyrobots-0.1.71.dist-info}/WHEEL +0 -0
- {luckyrobots-0.1.69.dist-info → luckyrobots-0.1.71.dist-info}/licenses/LICENSE +0 -0
|
@@ -5,31 +5,29 @@ import warnings
|
|
|
5
5
|
|
|
6
6
|
from . import mujoco_pb2 as mujoco__pb2
|
|
7
7
|
|
|
8
|
-
GRPC_GENERATED_VERSION =
|
|
8
|
+
GRPC_GENERATED_VERSION = '1.76.0'
|
|
9
9
|
GRPC_VERSION = grpc.__version__
|
|
10
10
|
_version_not_supported = False
|
|
11
11
|
|
|
12
12
|
try:
|
|
13
13
|
from grpc._utilities import first_version_is_lower
|
|
14
|
-
|
|
15
|
-
_version_not_supported = first_version_is_lower(
|
|
16
|
-
GRPC_VERSION, GRPC_GENERATED_VERSION
|
|
17
|
-
)
|
|
14
|
+
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
18
15
|
except ImportError:
|
|
19
16
|
_version_not_supported = True
|
|
20
17
|
|
|
21
18
|
if _version_not_supported:
|
|
22
19
|
raise RuntimeError(
|
|
23
|
-
f
|
|
24
|
-
+
|
|
25
|
-
+ f
|
|
26
|
-
+ f
|
|
27
|
-
+ f
|
|
20
|
+
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
21
|
+
+ ' but the generated code in mujoco_pb2_grpc.py depends on'
|
|
22
|
+
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
23
|
+
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
24
|
+
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
28
25
|
)
|
|
29
26
|
|
|
30
27
|
|
|
31
28
|
class MujocoServiceStub(object):
|
|
32
|
-
"""MuJoCo state + control IO.
|
|
29
|
+
"""MuJoCo state + control IO.
|
|
30
|
+
"""
|
|
33
31
|
|
|
34
32
|
def __init__(self, channel):
|
|
35
33
|
"""Constructor.
|
|
@@ -38,112 +36,106 @@ class MujocoServiceStub(object):
|
|
|
38
36
|
channel: A grpc.Channel.
|
|
39
37
|
"""
|
|
40
38
|
self.GetJointState = channel.unary_unary(
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
)
|
|
39
|
+
'/hazel.rpc.MujocoService/GetJointState',
|
|
40
|
+
request_serializer=mujoco__pb2.GetJointStateRequest.SerializeToString,
|
|
41
|
+
response_deserializer=mujoco__pb2.GetJointStateResponse.FromString,
|
|
42
|
+
_registered_method=True)
|
|
46
43
|
self.SendControl = channel.unary_unary(
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
)
|
|
44
|
+
'/hazel.rpc.MujocoService/SendControl',
|
|
45
|
+
request_serializer=mujoco__pb2.SendControlRequest.SerializeToString,
|
|
46
|
+
response_deserializer=mujoco__pb2.SendControlResponse.FromString,
|
|
47
|
+
_registered_method=True)
|
|
52
48
|
self.GetMujocoInfo = channel.unary_unary(
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
)
|
|
49
|
+
'/hazel.rpc.MujocoService/GetMujocoInfo',
|
|
50
|
+
request_serializer=mujoco__pb2.GetMujocoInfoRequest.SerializeToString,
|
|
51
|
+
response_deserializer=mujoco__pb2.GetMujocoInfoResponse.FromString,
|
|
52
|
+
_registered_method=True)
|
|
58
53
|
self.StreamJointState = channel.unary_stream(
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
)
|
|
54
|
+
'/hazel.rpc.MujocoService/StreamJointState',
|
|
55
|
+
request_serializer=mujoco__pb2.GetJointStateRequest.SerializeToString,
|
|
56
|
+
response_deserializer=mujoco__pb2.GetJointStateResponse.FromString,
|
|
57
|
+
_registered_method=True)
|
|
64
58
|
|
|
65
59
|
|
|
66
60
|
class MujocoServiceServicer(object):
|
|
67
|
-
"""MuJoCo state + control IO.
|
|
61
|
+
"""MuJoCo state + control IO.
|
|
62
|
+
"""
|
|
68
63
|
|
|
69
64
|
def GetJointState(self, request, context):
|
|
70
65
|
"""Missing associated documentation comment in .proto file."""
|
|
71
66
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
72
|
-
context.set_details(
|
|
73
|
-
raise NotImplementedError(
|
|
67
|
+
context.set_details('Method not implemented!')
|
|
68
|
+
raise NotImplementedError('Method not implemented!')
|
|
74
69
|
|
|
75
70
|
def SendControl(self, request, context):
|
|
76
71
|
"""Missing associated documentation comment in .proto file."""
|
|
77
72
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
78
|
-
context.set_details(
|
|
79
|
-
raise NotImplementedError(
|
|
73
|
+
context.set_details('Method not implemented!')
|
|
74
|
+
raise NotImplementedError('Method not implemented!')
|
|
80
75
|
|
|
81
76
|
def GetMujocoInfo(self, request, context):
|
|
82
77
|
"""Missing associated documentation comment in .proto file."""
|
|
83
78
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
84
|
-
context.set_details(
|
|
85
|
-
raise NotImplementedError(
|
|
79
|
+
context.set_details('Method not implemented!')
|
|
80
|
+
raise NotImplementedError('Method not implemented!')
|
|
86
81
|
|
|
87
82
|
def StreamJointState(self, request, context):
|
|
88
|
-
"""Streaming variant for continuous state observation
|
|
83
|
+
"""Streaming variant for continuous state observation
|
|
84
|
+
"""
|
|
89
85
|
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
90
|
-
context.set_details(
|
|
91
|
-
raise NotImplementedError(
|
|
86
|
+
context.set_details('Method not implemented!')
|
|
87
|
+
raise NotImplementedError('Method not implemented!')
|
|
92
88
|
|
|
93
89
|
|
|
94
90
|
def add_MujocoServiceServicer_to_server(servicer, server):
|
|
95
91
|
rpc_method_handlers = {
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
92
|
+
'GetJointState': grpc.unary_unary_rpc_method_handler(
|
|
93
|
+
servicer.GetJointState,
|
|
94
|
+
request_deserializer=mujoco__pb2.GetJointStateRequest.FromString,
|
|
95
|
+
response_serializer=mujoco__pb2.GetJointStateResponse.SerializeToString,
|
|
96
|
+
),
|
|
97
|
+
'SendControl': grpc.unary_unary_rpc_method_handler(
|
|
98
|
+
servicer.SendControl,
|
|
99
|
+
request_deserializer=mujoco__pb2.SendControlRequest.FromString,
|
|
100
|
+
response_serializer=mujoco__pb2.SendControlResponse.SerializeToString,
|
|
101
|
+
),
|
|
102
|
+
'GetMujocoInfo': grpc.unary_unary_rpc_method_handler(
|
|
103
|
+
servicer.GetMujocoInfo,
|
|
104
|
+
request_deserializer=mujoco__pb2.GetMujocoInfoRequest.FromString,
|
|
105
|
+
response_serializer=mujoco__pb2.GetMujocoInfoResponse.SerializeToString,
|
|
106
|
+
),
|
|
107
|
+
'StreamJointState': grpc.unary_stream_rpc_method_handler(
|
|
108
|
+
servicer.StreamJointState,
|
|
109
|
+
request_deserializer=mujoco__pb2.GetJointStateRequest.FromString,
|
|
110
|
+
response_serializer=mujoco__pb2.GetJointStateResponse.SerializeToString,
|
|
111
|
+
),
|
|
116
112
|
}
|
|
117
113
|
generic_handler = grpc.method_handlers_generic_handler(
|
|
118
|
-
|
|
119
|
-
)
|
|
114
|
+
'hazel.rpc.MujocoService', rpc_method_handlers)
|
|
120
115
|
server.add_generic_rpc_handlers((generic_handler,))
|
|
121
|
-
server.add_registered_method_handlers(
|
|
122
|
-
"hazel.rpc.v1.MujocoService", rpc_method_handlers
|
|
123
|
-
)
|
|
116
|
+
server.add_registered_method_handlers('hazel.rpc.MujocoService', rpc_method_handlers)
|
|
124
117
|
|
|
125
118
|
|
|
126
|
-
# This class is part of an EXPERIMENTAL API.
|
|
119
|
+
# This class is part of an EXPERIMENTAL API.
|
|
127
120
|
class MujocoService(object):
|
|
128
|
-
"""MuJoCo state + control IO.
|
|
121
|
+
"""MuJoCo state + control IO.
|
|
122
|
+
"""
|
|
129
123
|
|
|
130
124
|
@staticmethod
|
|
131
|
-
def GetJointState(
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
metadata=None,
|
|
142
|
-
):
|
|
125
|
+
def GetJointState(request,
|
|
126
|
+
target,
|
|
127
|
+
options=(),
|
|
128
|
+
channel_credentials=None,
|
|
129
|
+
call_credentials=None,
|
|
130
|
+
insecure=False,
|
|
131
|
+
compression=None,
|
|
132
|
+
wait_for_ready=None,
|
|
133
|
+
timeout=None,
|
|
134
|
+
metadata=None):
|
|
143
135
|
return grpc.experimental.unary_unary(
|
|
144
136
|
request,
|
|
145
137
|
target,
|
|
146
|
-
|
|
138
|
+
'/hazel.rpc.MujocoService/GetJointState',
|
|
147
139
|
mujoco__pb2.GetJointStateRequest.SerializeToString,
|
|
148
140
|
mujoco__pb2.GetJointStateResponse.FromString,
|
|
149
141
|
options,
|
|
@@ -154,26 +146,23 @@ class MujocoService(object):
|
|
|
154
146
|
wait_for_ready,
|
|
155
147
|
timeout,
|
|
156
148
|
metadata,
|
|
157
|
-
_registered_method=True
|
|
158
|
-
)
|
|
149
|
+
_registered_method=True)
|
|
159
150
|
|
|
160
151
|
@staticmethod
|
|
161
|
-
def SendControl(
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
metadata=None,
|
|
172
|
-
):
|
|
152
|
+
def SendControl(request,
|
|
153
|
+
target,
|
|
154
|
+
options=(),
|
|
155
|
+
channel_credentials=None,
|
|
156
|
+
call_credentials=None,
|
|
157
|
+
insecure=False,
|
|
158
|
+
compression=None,
|
|
159
|
+
wait_for_ready=None,
|
|
160
|
+
timeout=None,
|
|
161
|
+
metadata=None):
|
|
173
162
|
return grpc.experimental.unary_unary(
|
|
174
163
|
request,
|
|
175
164
|
target,
|
|
176
|
-
|
|
165
|
+
'/hazel.rpc.MujocoService/SendControl',
|
|
177
166
|
mujoco__pb2.SendControlRequest.SerializeToString,
|
|
178
167
|
mujoco__pb2.SendControlResponse.FromString,
|
|
179
168
|
options,
|
|
@@ -184,26 +173,23 @@ class MujocoService(object):
|
|
|
184
173
|
wait_for_ready,
|
|
185
174
|
timeout,
|
|
186
175
|
metadata,
|
|
187
|
-
_registered_method=True
|
|
188
|
-
)
|
|
176
|
+
_registered_method=True)
|
|
189
177
|
|
|
190
178
|
@staticmethod
|
|
191
|
-
def GetMujocoInfo(
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
metadata=None,
|
|
202
|
-
):
|
|
179
|
+
def GetMujocoInfo(request,
|
|
180
|
+
target,
|
|
181
|
+
options=(),
|
|
182
|
+
channel_credentials=None,
|
|
183
|
+
call_credentials=None,
|
|
184
|
+
insecure=False,
|
|
185
|
+
compression=None,
|
|
186
|
+
wait_for_ready=None,
|
|
187
|
+
timeout=None,
|
|
188
|
+
metadata=None):
|
|
203
189
|
return grpc.experimental.unary_unary(
|
|
204
190
|
request,
|
|
205
191
|
target,
|
|
206
|
-
|
|
192
|
+
'/hazel.rpc.MujocoService/GetMujocoInfo',
|
|
207
193
|
mujoco__pb2.GetMujocoInfoRequest.SerializeToString,
|
|
208
194
|
mujoco__pb2.GetMujocoInfoResponse.FromString,
|
|
209
195
|
options,
|
|
@@ -214,26 +200,23 @@ class MujocoService(object):
|
|
|
214
200
|
wait_for_ready,
|
|
215
201
|
timeout,
|
|
216
202
|
metadata,
|
|
217
|
-
_registered_method=True
|
|
218
|
-
)
|
|
203
|
+
_registered_method=True)
|
|
219
204
|
|
|
220
205
|
@staticmethod
|
|
221
|
-
def StreamJointState(
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
metadata=None,
|
|
232
|
-
):
|
|
206
|
+
def StreamJointState(request,
|
|
207
|
+
target,
|
|
208
|
+
options=(),
|
|
209
|
+
channel_credentials=None,
|
|
210
|
+
call_credentials=None,
|
|
211
|
+
insecure=False,
|
|
212
|
+
compression=None,
|
|
213
|
+
wait_for_ready=None,
|
|
214
|
+
timeout=None,
|
|
215
|
+
metadata=None):
|
|
233
216
|
return grpc.experimental.unary_stream(
|
|
234
217
|
request,
|
|
235
218
|
target,
|
|
236
|
-
|
|
219
|
+
'/hazel.rpc.MujocoService/StreamJointState',
|
|
237
220
|
mujoco__pb2.GetJointStateRequest.SerializeToString,
|
|
238
221
|
mujoco__pb2.GetJointStateResponse.FromString,
|
|
239
222
|
options,
|
|
@@ -244,5 +227,4 @@ class MujocoService(object):
|
|
|
244
227
|
wait_for_ready,
|
|
245
228
|
timeout,
|
|
246
229
|
metadata,
|
|
247
|
-
_registered_method=True
|
|
248
|
-
)
|
|
230
|
+
_registered_method=True)
|
|
@@ -9,9 +9,13 @@ from google.protobuf import descriptor_pool as _descriptor_pool
|
|
|
9
9
|
from google.protobuf import runtime_version as _runtime_version
|
|
10
10
|
from google.protobuf import symbol_database as _symbol_database
|
|
11
11
|
from google.protobuf.internal import builder as _builder
|
|
12
|
-
|
|
13
12
|
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
14
|
-
_runtime_version.Domain.PUBLIC,
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
6,
|
|
15
|
+
31,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'scene.proto'
|
|
15
19
|
)
|
|
16
20
|
# @@protoc_insertion_point(imports)
|
|
17
21
|
|
|
@@ -21,34 +25,32 @@ _sym_db = _symbol_database.Default()
|
|
|
21
25
|
from . import common_pb2 as common__pb2
|
|
22
26
|
|
|
23
27
|
|
|
24
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(
|
|
25
|
-
b'\n\x0bscene.proto\x12\x0chazel.rpc.v1\x1a\x0c\x63ommon.proto"~\n\nEntityInfo\x12"\n\x02id\x18\x01 \x01(\x0b\x32\x16.hazel.rpc.v1.EntityId\x12\x0c\n\x04name\x18\x02 \x01(\t\x12*\n\ttransform\x18\x03 \x01(\x0b\x32\x17.hazel.rpc.v1.Transform\x12\x12\n\ncomponents\x18\x04 \x03(\t"\x15\n\x13GetSceneInfoRequest"T\n\x14GetSceneInfoResponse\x12\x12\n\nscene_name\x18\x01 \x01(\t\x12\x12\n\nscene_path\x18\x02 \x01(\t\x12\x14\n\x0c\x65ntity_count\x18\x03 \x01(\r"M\n\x13ListEntitiesRequest\x12\x1a\n\x12include_transforms\x18\x01 \x01(\x08\x12\x1a\n\x12include_components\x18\x02 \x01(\x08"B\n\x14ListEntitiesResponse\x12*\n\x08\x65ntities\x18\x01 \x03(\x0b\x32\x18.hazel.rpc.v1.EntityInfo"V\n\x10GetEntityRequest\x12$\n\x02id\x18\x01 \x01(\x0b\x32\x16.hazel.rpc.v1.EntityIdH\x00\x12\x0e\n\x04name\x18\x02 \x01(\tH\x00\x42\x0c\n\nidentifier"L\n\x11GetEntityResponse\x12\r\n\x05\x66ound\x18\x01 \x01(\x08\x12(\n\x06\x65ntity\x18\x02 \x01(\x0b\x32\x18.hazel.rpc.v1.EntityInfo"k\n\x19SetEntityTransformRequest\x12"\n\x02id\x18\x01 \x01(\x0b\x32\x16.hazel.rpc.v1.EntityId\x12*\n\ttransform\x18\x02 \x01(\x0b\x32\x17.hazel.rpc.v1.Transform">\n\x1aSetEntityTransformResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\x12\x0f\n\x07message\x18\x02 \x01(\t2\xf3\x02\n\x0cSceneService\x12U\n\x0cGetSceneInfo\x12!.hazel.rpc.v1.GetSceneInfoRequest\x1a".hazel.rpc.v1.GetSceneInfoResponse\x12U\n\x0cListEntities\x12!.hazel.rpc.v1.ListEntitiesRequest\x1a".hazel.rpc.v1.ListEntitiesResponse\x12L\n\tGetEntity\x12\x1e.hazel.rpc.v1.GetEntityRequest\x1a\x1f.hazel.rpc.v1.GetEntityResponse\x12g\n\x12SetEntityTransform\x12\'.hazel.rpc.v1.SetEntityTransformRequest\x1a(.hazel.rpc.v1.SetEntityTransformResponseB\x03\xf8\x01\x01\x62\x06proto3'
|
|
26
|
-
)
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0bscene.proto\x12\thazel.rpc\x1a\x0c\x63ommon.proto\"x\n\nEntityInfo\x12\x1f\n\x02id\x18\x01 \x01(\x0b\x32\x13.hazel.rpc.EntityId\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\'\n\ttransform\x18\x03 \x01(\x0b\x32\x14.hazel.rpc.Transform\x12\x12\n\ncomponents\x18\x04 \x03(\t\"\x15\n\x13GetSceneInfoRequest\"T\n\x14GetSceneInfoResponse\x12\x12\n\nscene_name\x18\x01 \x01(\t\x12\x12\n\nscene_path\x18\x02 \x01(\t\x12\x14\n\x0c\x65ntity_count\x18\x03 \x01(\r\"M\n\x13ListEntitiesRequest\x12\x1a\n\x12include_transforms\x18\x01 \x01(\x08\x12\x1a\n\x12include_components\x18\x02 \x01(\x08\"?\n\x14ListEntitiesResponse\x12\'\n\x08\x65ntities\x18\x01 \x03(\x0b\x32\x15.hazel.rpc.EntityInfo\"S\n\x10GetEntityRequest\x12!\n\x02id\x18\x01 \x01(\x0b\x32\x13.hazel.rpc.EntityIdH\x00\x12\x0e\n\x04name\x18\x02 \x01(\tH\x00\x42\x0c\n\nidentifier\"I\n\x11GetEntityResponse\x12\r\n\x05\x66ound\x18\x01 \x01(\x08\x12%\n\x06\x65ntity\x18\x02 \x01(\x0b\x32\x15.hazel.rpc.EntityInfo\"e\n\x19SetEntityTransformRequest\x12\x1f\n\x02id\x18\x01 \x01(\x0b\x32\x13.hazel.rpc.EntityId\x12\'\n\ttransform\x18\x02 \x01(\x0b\x32\x14.hazel.rpc.Transform\">\n\x1aSetEntityTransformResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\x12\x0f\n\x07message\x18\x02 \x01(\t2\xdb\x02\n\x0cSceneService\x12O\n\x0cGetSceneInfo\x12\x1e.hazel.rpc.GetSceneInfoRequest\x1a\x1f.hazel.rpc.GetSceneInfoResponse\x12O\n\x0cListEntities\x12\x1e.hazel.rpc.ListEntitiesRequest\x1a\x1f.hazel.rpc.ListEntitiesResponse\x12\x46\n\tGetEntity\x12\x1b.hazel.rpc.GetEntityRequest\x1a\x1c.hazel.rpc.GetEntityResponse\x12\x61\n\x12SetEntityTransform\x12$.hazel.rpc.SetEntityTransformRequest\x1a%.hazel.rpc.SetEntityTransformResponseB\x03\xf8\x01\x01\x62\x06proto3')
|
|
27
29
|
|
|
28
30
|
_globals = globals()
|
|
29
31
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
30
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR,
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'scene_pb2', _globals)
|
|
31
33
|
if not _descriptor._USE_C_DESCRIPTORS:
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
34
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
35
|
+
_globals['DESCRIPTOR']._serialized_options = b'\370\001\001'
|
|
36
|
+
_globals['_ENTITYINFO']._serialized_start=40
|
|
37
|
+
_globals['_ENTITYINFO']._serialized_end=160
|
|
38
|
+
_globals['_GETSCENEINFOREQUEST']._serialized_start=162
|
|
39
|
+
_globals['_GETSCENEINFOREQUEST']._serialized_end=183
|
|
40
|
+
_globals['_GETSCENEINFORESPONSE']._serialized_start=185
|
|
41
|
+
_globals['_GETSCENEINFORESPONSE']._serialized_end=269
|
|
42
|
+
_globals['_LISTENTITIESREQUEST']._serialized_start=271
|
|
43
|
+
_globals['_LISTENTITIESREQUEST']._serialized_end=348
|
|
44
|
+
_globals['_LISTENTITIESRESPONSE']._serialized_start=350
|
|
45
|
+
_globals['_LISTENTITIESRESPONSE']._serialized_end=413
|
|
46
|
+
_globals['_GETENTITYREQUEST']._serialized_start=415
|
|
47
|
+
_globals['_GETENTITYREQUEST']._serialized_end=498
|
|
48
|
+
_globals['_GETENTITYRESPONSE']._serialized_start=500
|
|
49
|
+
_globals['_GETENTITYRESPONSE']._serialized_end=573
|
|
50
|
+
_globals['_SETENTITYTRANSFORMREQUEST']._serialized_start=575
|
|
51
|
+
_globals['_SETENTITYTRANSFORMREQUEST']._serialized_end=676
|
|
52
|
+
_globals['_SETENTITYTRANSFORMRESPONSE']._serialized_start=678
|
|
53
|
+
_globals['_SETENTITYTRANSFORMRESPONSE']._serialized_end=740
|
|
54
|
+
_globals['_SCENESERVICE']._serialized_start=743
|
|
55
|
+
_globals['_SCENESERVICE']._serialized_end=1090
|
|
54
56
|
# @@protoc_insertion_point(module_scope)
|