Skip to content

Commit 5c955b8

Browse files
quaglacopybara-github
authored andcommitted
Add frame support to the cable composite.
Also cleanup user_composite.cc includes. PiperOrigin-RevId: 740730596 Change-Id: I05df59926d8e61de45fd6b2a3a63121b7a390448
1 parent d694373 commit 5c955b8

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

src/user/user_composite.cc

+7-11
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,17 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include <mujoco/mjspec.h>
1615
#include "user/user_composite.h"
1716

18-
#include <algorithm>
1917
#include <cmath>
20-
#include <cstddef>
21-
#include <cstdio>
2218
#include <cstring>
23-
#include <map>
24-
#include <stdexcept>
2519
#include <string>
26-
#include <utility>
2720
#include <vector>
2821

29-
#include <mujoco/mjmacro.h>
3022
#include <mujoco/mjmodel.h>
23+
#include <mujoco/mjspec.h>
3124
#include <mujoco/mjtnum.h>
3225
#include "cc/array_safety.h"
33-
#include "engine/engine_io.h"
3426
#include "engine/engine_util_blas.h"
3527
#include "engine/engine_util_errmem.h"
3628
#include "engine/engine_util_misc.h"
@@ -40,9 +32,9 @@
4032
#include "user/user_util.h"
4133

4234
namespace {
35+
4336
namespace mju = ::mujoco::util;
44-
using mujoco::user::VectorToString;
45-
using mujoco::user::StringToVector;
37+
4638
} // namespace
4739

4840
// strncpy with 0, return false
@@ -60,6 +52,7 @@ mjCComposite::mjCComposite(void) {
6052
type = mjCOMPTYPE_PARTICLE;
6153
count[0] = count[1] = count[2] = 1;
6254
mjuu_setvec(offset, 0, 0, 0);
55+
frame = nullptr;
6356

6457
// plugin variables
6558
mjs_defaultPlugin(&plugin);
@@ -381,6 +374,9 @@ mjsBody* mjCComposite::AddCableBody(mjCModel* model, mjsBody* body, int ix,
381374
offset[1]+uservert[3*ix+1],
382375
offset[2]+uservert[3*ix+2]);
383376
mjuu_copyvec(body->quat, this_quat, 4);
377+
if (frame) {
378+
mjs_setFrame(body->element, frame);
379+
}
384380
} else {
385381
mjuu_setvec(body->pos, length_prev, 0, 0);
386382
double negquat[4] = {prev_quat[0], -prev_quat[1], -prev_quat[2], -prev_quat[3]};

src/user/user_composite.h

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ class mjCComposite {
8080
std::vector<float> uservert; // user-specified vertex positions
8181
double size[3]; // rope size (meaning depends on the shape)
8282
mjtCompShape curve[3]; // geometric shape
83+
mjsFrame* frame; // frame where the composite is defined
8384

8485
// body names used in the skin
8586
std::vector<std::string> username;

src/xml/xml_native_reader.cc

+3-2
Original file line numberDiff line numberDiff line change
@@ -2388,7 +2388,7 @@ void mjXReader::OneActuator(XMLElement* elem, mjsActuator* actuator) {
23882388

23892389

23902390
// make composite
2391-
void mjXReader::OneComposite(XMLElement* elem, mjsBody* body, const mjsDefault* def) {
2391+
void mjXReader::OneComposite(XMLElement* elem, mjsBody* body, mjsFrame* frame, const mjsDefault* def) {
23922392
string text;
23932393
int n;
23942394

@@ -2402,6 +2402,7 @@ void mjXReader::OneComposite(XMLElement* elem, mjsBody* body, const mjsDefault*
24022402
}
24032403
ReadAttr(elem, "count", 3, comp.count, text, false, false);
24042404
ReadAttr(elem, "offset", 3, comp.offset, text);
2405+
comp.frame = frame;
24052406

24062407
// plugin
24072408
XMLElement* eplugin = FirstChildElement(elem, "plugin");
@@ -3467,7 +3468,7 @@ void mjXReader::Body(XMLElement* section, mjsBody* body, mjsFrame* frame,
34673468
// composite sub-element
34683469
else if (name == "composite") {
34693470
// parse composite
3470-
OneComposite(elem, body, def);
3471+
OneComposite(elem, body, frame, def);
34713472
}
34723473

34733474
// flexcomp sub-element

src/xml/xml_native_reader.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ class mjXReader : public mjXBase {
8080
void OneEquality(tinyxml2::XMLElement* elem, mjsEquality* pequality);
8181
void OneTendon(tinyxml2::XMLElement* elem, mjsTendon* ptendon);
8282
void OneActuator(tinyxml2::XMLElement* elem, mjsActuator* pactuator);
83-
void OneComposite(tinyxml2::XMLElement* elem, mjsBody* pbody, const mjsDefault* def);
83+
void OneComposite(tinyxml2::XMLElement* elem, mjsBody* pbody, mjsFrame* pframe,
84+
const mjsDefault* def);
8485
void OneFlexcomp(tinyxml2::XMLElement* elem, mjsBody* pbody, const mjVFS* vfs);
8586
void OnePlugin(tinyxml2::XMLElement* elem, mjsPlugin* plugin);
8687

0 commit comments

Comments
 (0)