-
Notifications
You must be signed in to change notification settings - Fork 130
/
meshcat_zmq.h
297 lines (273 loc) · 9.73 KB
/
meshcat_zmq.h
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
/*
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <iostream>
#include <crossguid/guid.hpp>
#include <nlohmann/json.hpp>
std::string generate_uuid() { return xg::newGuid().str(); }
#include "zmq.hpp"
#include "zmq_addon.hpp"
inline nlohmann::json create_delete_cmd(
const std::string &path = std::string("/meshcat")) {
nlohmann::json delete_cmd = {{"type", "delete"}, {"path", path.c_str()}};
return delete_cmd;
}
inline nlohmann::json create_sphere_cmd(double radius, double world_pos[3],
int color_rgb, const char *path,
bool transparent = false,
double opacity = 1.0) {
std::string geom_uid = generate_uuid();
std::string material_uid = generate_uuid();
std::string object_uid = generate_uuid();
nlohmann::json set_object_sphere_cmd = {
{"type", "set_object"},
{"path", path},
{"object",
{{"metadata", {{"type", "Object"}, {"version", 4.5}}},
{"geometries",
{{
{"radius", radius},
{"type", "SphereGeometry"},
{"uuid", geom_uid},
}}},
{"materials",
{{{"color", color_rgb},
{"reflectivity", 0.5},
{"side", 2},
{"transparent", transparent},
{"opacity", opacity},
{"type", "MeshPhongMaterial"},
{"uuid", material_uid}}}},
{
"object",
{{"geometry", geom_uid},
{"material", material_uid},
{"matrix",
{1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0,
world_pos[0], world_pos[1], world_pos[2], 1.0}},
{"type", "Mesh"},
{"uuid", object_uid}},
}}}};
return set_object_sphere_cmd;
}
inline nlohmann::json create_box_cmd(double width, double height, double length,
double world_pos[3], int color_rgb,
const char *path) {
std::string geom_uid = generate_uuid();
std::string material_uid = generate_uuid();
std::string object_uid = generate_uuid();
nlohmann::json set_object_box_cmd = {
{"type", "set_object"},
{"path", path},
{"object",
{{"metadata", {{"type", "Object"}, {"version", 4.5}}},
{"geometries",
{{{"depth", length},
{"height", height},
{"type", "BoxGeometry"},
{"uuid", geom_uid},
{"width", width}}}},
{"materials",
{{{"color", color_rgb},
{"reflectivity", 0.5},
{"side", 2},
{"transparent", false},
{"opacity", 1.0},
{"type", "MeshPhongMaterial"},
{"uuid", material_uid}}}},
{
"object",
{{"geometry", geom_uid},
{"material", material_uid},
{"matrix",
{1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0,
world_pos[0], world_pos[1], world_pos[2], 1.0}},
{"type", "Mesh"},
{"uuid", object_uid}},
}}}};
return set_object_box_cmd;
}
inline nlohmann::json create_mesh_cmd(const char *obj_data, double world_pos[3],
int color_rgb, const char *path) {
std::string geom_uid = generate_uuid();
std::string material_uid = generate_uuid();
std::string object_uid = generate_uuid();
nlohmann::json set_object_box_cmd = {
{"type", "set_object"},
{"path", path},
{"object",
{{"metadata", {{"type", "Object"}, {"version", 4.5}}},
{"geometries",
{{
{"type", "_meshfile"},
{"uuid", geom_uid},
{"format", "obj"},
{"data", obj_data},
}}},
{"materials",
{{{"color", color_rgb},
{"reflectivity", 0.5},
{"side", 2},
{"transparent", false},
{"opacity", 1.0},
{"type", "MeshPhongMaterial"},
{"uuid", material_uid}}}},
{
"object",
{{"geometry", geom_uid},
{"material", material_uid},
{"matrix",
{1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0,
world_pos[0], world_pos[1], world_pos[2], 1.0}},
{"type", "Mesh"},
{"uuid", object_uid}},
}}}};
return set_object_box_cmd;
}
inline nlohmann::json create_textured_mesh_cmd(const char *obj_data,
const char *texture_data,
double world_pos[3],
int color_rgb,
const char *path) {
std::string map_uuid = generate_uuid();
std::string image_uuid = generate_uuid();
std::string geom_uuid = generate_uuid();
std::string material_uuid = generate_uuid();
std::string object_uuid = generate_uuid();
nlohmann::json set_object_box_cmd = {
{"type", "set_object"},
{"path", path},
{"object",
{{"metadata", {{"type", "Object"}, {"version", 4.5}}},
{"geometries",
{{
{"type", "_meshfile"},
{"uuid", geom_uuid},
{"format", "obj"},
{"data", obj_data},
}}},
{"images",
{{
{"uuid", image_uuid},
{"url", texture_data},
}}},
{"textures",
{{{"wrap", {1, 1}},
{"uuid", map_uuid},
{"repeat", {1, 1}},
{"image", {image_uuid}}}}},
{"materials",
{{{"color", color_rgb},
{"reflectivity", 0.5},
{"side", 2},
{"transparent", false},
{"opacity", 1.0},
{"map", map_uuid},
{"type", "MeshPhongMaterial"},
{"uuid", material_uuid}}}},
{
"object",
{{"geometry", geom_uuid},
{"material", material_uuid},
{"matrix",
{1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0,
world_pos[0], world_pos[1], world_pos[2], 1.0}},
{"type", "Mesh"},
{"uuid", object_uuid}},
}}}};
return set_object_box_cmd;
}
inline nlohmann::json create_textured_mesh_cmd2(const char *obj_data,
std::string map_uuid,
double world_pos[3],
int color_rgb,
const char *path) {
std::string image_uuid = generate_uuid();
std::string geom_uuid = generate_uuid();
std::string material_uuid = generate_uuid();
std::string object_uuid = generate_uuid();
nlohmann::json set_object_box_cmd = {
{"type", "set_object"},
{"path", path},
{"object",
{{"metadata", {{"type", "Object"}, {"version", 4.5}}},
{"geometries",
{{
{"type", "_meshfile"},
{"uuid", geom_uuid},
{"format", "obj"},
{"data", obj_data},
}}},
{"materials",
{{{"color", color_rgb},
{"reflectivity", 0.5},
{"side", 2},
{"transparent", false},
{"opacity", 1.0},
{"map", map_uuid},
{"type", "MeshPhongMaterial"},
{"uuid", material_uuid}}}},
{
"object",
{{"geometry", geom_uuid},
{"material", material_uuid},
{"matrix",
{1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0,
world_pos[0], world_pos[1], world_pos[2], 1.0}},
{"type", "Mesh"},
{"uuid", object_uuid}},
}}}};
return set_object_box_cmd;
}
inline nlohmann::json create_transform_cmd(double world_pos[3],
double world_mat3x3[9],
const char *path) {
nlohmann::json transform_cmd = {
{"type", "set_transform"},
{"path", path},
{"matrix",
{world_mat3x3[0], world_mat3x3[1], world_mat3x3[2], 0., world_mat3x3[3],
world_mat3x3[4], world_mat3x3[5], 0., world_mat3x3[6], world_mat3x3[7],
world_mat3x3[8], 0., world_pos[0], world_pos[1], world_pos[2], 1.0}},
};
return transform_cmd;
}
inline void send_zmq(zmq::socket_t &sock, nlohmann::json cmd,
bool verbose = false) {
if (verbose) {
std::cout << cmd.dump(4) << std::endl;
}
std::vector<uint8_t> packed2 = nlohmann::json::to_msgpack(cmd);
std::string type_str = cmd["type"];
std::string path_str = cmd["path"];
zmq::multipart_t multipart;
multipart.add(zmq::message_t(type_str.c_str(), type_str.size()));
multipart.add(zmq::message_t(path_str.c_str(), path_str.size()));
multipart.add(zmq::message_t(&packed2[0], packed2.size()));
multipart.send(sock);
zmq::message_t reply(1024);
char buf[1024];
bool recv_result = sock.recv(&reply);
if (recv_result) {
memcpy(buf, reply.data(), reply.size());
buf[reply.size()] = 0;
std::string d(buf);
nlohmann::json result = nlohmann::json::from_msgpack(d, false);
if (verbose) {
std::cout << result.dump(4) << std::endl;
std::cout << "Received:" << d << std::endl;
}
}
}