File size: 53,888 Bytes
2c55b92 | 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 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 | // Copyright 2021 DeepMind Technologies Limited
//
// 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 <algorithm>
#include <climits>
#include <cmath>
#include <cstddef>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <sstream>
#include <stdexcept>
#include <string>
#include <vector>
#include <mujoco/mjmacro.h>
#include <mujoco/mjmodel.h>
#include <mujoco/mjtnum.h>
#include <mujoco/mjplugin.h>
#include "cc/array_safety.h"
#include "engine/engine_crossplatform.h"
#include "engine/engine_util_errmem.h"
#include "user/user_flexcomp.h"
#include <mujoco/mjspec.h>
#include "user/user_api.h"
#include "user/user_model.h"
#include "user/user_objects.h"
#include "user/user_resource.h"
#include "user/user_util.h"
namespace {
namespace mju = ::mujoco::util;
using std::vector;
using std::stringstream;
} // namespace
// strncpy with 0, return false
static bool comperr(char* error, const char* msg, int error_sz) {
mju_strncpy(error, msg, error_sz);
return false;
}
// Read data of type T from a potentially unaligned buffer pointer.
template <typename T>
static void ReadFromBuffer(T* dst, const char* src) {
std::memcpy(dst, src, sizeof(T));
}
static void ReadStrFromBuffer(char* dest, const char* src, int maxlen) {
std::strncpy(dest, src, maxlen);
}
bool IsValidElementOrNodeHeader22(const std::string& line) {
// making sure characters are numbers
for (char c : line) {
if (!std::isdigit(c)) {
return false;
}
}
return true;
}
// constructor: set defaults outside mjCDef
mjCFlexcomp::mjCFlexcomp(void) {
type = mjFCOMPTYPE_GRID;
count[0] = count[1] = count[2] = 10;
mjuu_setvec(spacing, 0.02, 0.02, 0.02);
mjuu_setvec(scale, 1, 1, 1);
mass = 1;
inertiabox = 0.005;
equality = false;
mjuu_setvec(pos, 0, 0, 0);
mjuu_setvec(quat, 1, 0, 0, 0);
rigid = false;
centered = false;
doftype = mjFCOMPDOF_FULL;
mjs_defaultPlugin(&plugin);
mjs_defaultOrientation(&alt);
plugin_name = "";
plugin_instance_name = "";
plugin.plugin_name = (mjString*)&plugin_name;
plugin.name = (mjString*)&plugin_instance_name;
}
// make flexcomp object
bool mjCFlexcomp::Make(mjsBody* body, char* error, int error_sz) {
mjCModel* model = static_cast<mjCBody*>(body->element)->model;
mjsCompiler* compiler = static_cast<mjCBody*>(body->element)->compiler;
mjsFlex* dflex = def.spec.flex;
bool direct = (type == mjFCOMPTYPE_DIRECT ||
type == mjFCOMPTYPE_MESH ||
type == mjFCOMPTYPE_GMSH);
// check parent body name
if (mjs_getName(body->element)->empty()) {
return comperr(error, "Parent body must have name", error_sz);
}
// check dim
if (dflex->dim < 1 || dflex->dim > 3) {
return comperr(error, "Invalid dim, must be between 1 and 3", error_sz);
}
// check counts
for (int i=0; i < 3; i++) {
if (count[i] < 1 || ((doftype == mjFCOMPDOF_RADIAL && count[i] < 2) && dflex->dim == 3)) {
return comperr(error, "Count too small", error_sz);
}
}
// check spacing
double minspace = 2*dflex->radius + dflex->margin;
if (!direct) {
if (spacing[0] < minspace ||
spacing[1] < minspace ||
spacing[2] < minspace) {
return comperr(error, "Spacing must be larger than geometry size", error_sz);
}
}
// check scale
if (scale[0] < mjMINVAL || scale[1] < mjMINVAL || scale[2] < mjMINVAL) {
return comperr(error, "Scale must be larger than mjMINVAL", error_sz);
}
// check mass and inertia
if (mass < mjMINVAL || inertiabox < mjMINVAL) {
return comperr(error, "Mass and inertiabox must be larger than mjMINVAL", error_sz);
}
// compute orientation
const char* alterr = mjs_resolveOrientation(quat, compiler->degree, compiler->eulerseq, &alt);
if (alterr) {
return comperr(error, alterr, error_sz);
}
// type-specific constructor: populate point and element, possibly set dim
bool res;
switch (type) {
case mjFCOMPTYPE_GRID:
case mjFCOMPTYPE_CIRCLE:
res = MakeGrid(error, error_sz);
break;
case mjFCOMPTYPE_BOX:
case mjFCOMPTYPE_CYLINDER:
case mjFCOMPTYPE_ELLIPSOID:
res = MakeBox(error, error_sz);
break;
case mjFCOMPTYPE_SQUARE:
case mjFCOMPTYPE_DISC:
res = MakeSquare(error, error_sz);
break;
case mjFCOMPTYPE_MESH:
res = MakeMesh(model, error, error_sz);
break;
case mjFCOMPTYPE_GMSH:
res = MakeGMSH(model, error, error_sz);
break;
case mjFCOMPTYPE_DIRECT:
res = true;
break;
default:
return comperr(error, "Unknown flexcomp type", error_sz);
}
if (!res) {
return false;
}
// force flatskin shading for box, cylinder and 3D grid
if (type == mjFCOMPTYPE_BOX || type == mjFCOMPTYPE_CYLINDER ||
(type == mjFCOMPTYPE_GRID && dflex->dim == 3)) {
dflex->flatskin = true;
}
// check pin sizes
if (pinrange.size()%2) {
return comperr(error, "Pin range number must be multiple of 2", error_sz);
}
if (pingrid.size()%dflex->dim) {
return comperr(error, "Pin grid number must be multiple of dim", error_sz);
}
if (pingridrange.size()%(2*dflex->dim)) {
return comperr(error, "Pin grid range number of must be multiple of 2*dim", error_sz);
}
if (type != mjFCOMPTYPE_GRID && !(pingrid.empty() && pingridrange.empty())) {
return comperr(error, "Pin grid(range) can only be used with grid type", error_sz);
}
if (dflex->dim == 1 && !(pingrid.empty() && pingridrange.empty())) {
return comperr(error, "Pin grid(range) cannot be used with dim=1", error_sz);
}
// require element and point
if (point.empty() || element.empty()) {
return comperr(error, "Point and element required", error_sz);
}
// check point size
if (point.size()%3) {
return comperr(error, "Point size must be a multiple of 3", error_sz);
}
// check element size
if (element.size()%(dflex->dim+1)) {
return comperr(error, "Element size must be a multiple of dim+1", error_sz);
}
// get number of points
int npnt = point.size()/3;
// check elem vertex ids
for (int i=0; i < (int)element.size(); i++) {
if (element[i] < 0 || element[i] >= npnt) {
char msg[100];
snprintf(msg, sizeof(msg), "element %d has point id %d, number of points is %d", i,
element[i], npnt);
return comperr(error, msg, error_sz);
}
}
// apply scaling for direct types
if (direct && (scale[0] != 1 || scale[1] != 1 || scale[2] != 1)) {
for (int i=0; i < npnt; i++) {
point[3*i] *= scale[0];
point[3*i+1] *= scale[1];
point[3*i+2] *= scale[2];
}
}
// apply pose transform to points
for (int i=0; i < npnt; i++) {
double newp[3], oldp[3] = {point[3*i], point[3*i+1], point[3*i+2]};
mjuu_trnVecPose(newp, pos, quat, oldp);
point[3*i] = newp[0];
point[3*i+1] = newp[1];
point[3*i+2] = newp[2];
}
// compute bounding box of points
double minmax[6] = {mjMAXVAL, mjMAXVAL, mjMAXVAL, -mjMAXVAL, -mjMAXVAL, -mjMAXVAL};
for (int i=0; i < npnt; i++) {
for (int j=0; j < 3; j++) {
minmax[j+0] = std::min(minmax[j+0], point[3*i+j]);
minmax[j+3] = std::max(minmax[j+3], point[3*i+j]);
}
}
// construct pinned array
pinned = vector<bool>(npnt, rigid);
// handle pins if user did not specify rigid
if (!rigid) {
// process pinid
for (int i=0; i < (int)pinid.size(); i++) {
// check range
if (pinid[i] < 0 || pinid[i] >= npnt) {
return comperr(error, "pinid out of range", error_sz);
}
// set
pinned[pinid[i]] = true;
}
// process pinrange
for (int i=0; i < (int)pinrange.size(); i+=2) {
// check range
if (pinrange[i] < 0 || pinrange[i] >= npnt ||
pinrange[i+1] < 0 || pinrange[i+1] >= npnt) {
return comperr(error, "pinrange out of range", error_sz);
}
// set
for (int k=pinrange[i]; k <= pinrange[i+1]; k++) {
pinned[k] = true;
}
}
// process pingrid
for (int i=0; i < (int)pingrid.size(); i+=dflex->dim) {
// check range
for (int k=0; k < dflex->dim; k++) {
if (pingrid[i+k] < 0 || pingrid[i+k] >= count[k]) {
return comperr(error, "pingrid out of range", error_sz);
}
}
// set
if (dflex->dim == 2) {
pinned[GridID(pingrid[i], pingrid[i+1])] = true;
}
else if (dflex->dim == 3) {
pinned[GridID(pingrid[i], pingrid[i+1], pingrid[i+2])] = true;
}
}
// process pingridrange
for (int i=0; i < (int)pingridrange.size(); i+=2*dflex->dim) {
// check range
for (int k=0; k < 2*dflex->dim; k++) {
if (pingridrange[i+k] < 0 || pingridrange[i+k] >= count[k%dflex->dim]) {
return comperr(error, "pingridrange out of range", error_sz);
}
}
// set
if (dflex->dim == 2) {
for (int ix=pingridrange[i]; ix <= pingridrange[i+2]; ix++) {
for (int iy=pingridrange[i+1]; iy <= pingridrange[i+3]; iy++) {
pinned[GridID(ix, iy)] = true;
}
}
}
else if (dflex->dim == 3) {
for (int ix=pingridrange[i]; ix <= pingridrange[i+3]; ix++) {
for (int iy=pingridrange[i+1]; iy <= pingridrange[i+4]; iy++) {
for (int iz=pingridrange[i+2]; iz <= pingridrange[i+5]; iz++) {
pinned[GridID(ix, iy, iz)] = true;
}
}
}
}
}
// center of radial body is always pinned
if (doftype == mjFCOMPDOF_RADIAL) {
pinned[0] = true;
}
// check if all or none are pinned
bool allpin = true, nopin = true;
for (int i=0; i < npnt; i++) {
if (pinned[i]) {
nopin = false;
}
else {
allpin = false;
}
}
// adjust rigid and centered
if (allpin) {
rigid = true;
}
else if (nopin) {
centered = true;
}
}
// remove unreferenced for direct, mesh, gmsh
if (direct) {
// find used
used = std::vector<bool> (npnt, false);
for (int i=0; i < (int)element.size(); i++) {
used[element[i]] = true;
}
// construct reindex
bool hasunused = false;
std::vector<int> reindex (npnt, 0);
for (int i=0; i < npnt; i++) {
if (!used[i]) {
hasunused = true;
for (int k=i+1; k < npnt; k++) {
reindex[k]--;
}
}
}
// reindex elements if unused present
if (hasunused) {
for (int i=0; i < (int)element.size(); i++) {
element[i] += reindex[element[i]];
}
}
}
// nothing to remove for auto-generated types
else {
used = std::vector<bool> (npnt, true);
}
// create flex, copy parameters
mjCFlex* flex = model->AddFlex();
mjsFlex* pf = &flex->spec;
int id = flex->id;
*flex = def.Flex();
flex->PointToLocal();
flex->model = model;
flex->id = id;
mjs_setName(pf->element, name.c_str());
mjs_setInt(pf->elem, element.data(), element.size());
mjs_setFloat(pf->texcoord, texcoord.data(), texcoord.size());
mjs_setInt(pf->elemtexcoord, elemtexcoord.data(), elemtexcoord.size());
if (!centered) {
mjs_setDouble(pf->vert, point.data(), point.size());
}
// rigid: set parent name, nothing else to do
if (rigid) {
mjs_appendString(pf->vertbody, mjs_getName(body->element)->c_str());
return true;
}
// compute body mass and inertia matching specs
double bodymass = mass/npnt;
double bodyinertia = bodymass*(2.0*inertiabox*inertiabox)/3.0;
// overwrite plugin name
if (plugin.active && plugin_instance_name.empty()) {
plugin_instance_name = "flexcomp_" + name;
static_cast<mjCPlugin*>(plugin.element)->name = plugin_instance_name;
}
// create bodies, construct flex vert and vertbody
for (int i=0; i < npnt; i++) {
// not used: skip
if (!used[i]) {
continue;
}
// pinned or trilinear: parent body
if (pinned[i] || doftype == mjFCOMPDOF_TRILINEAR) {
mjs_appendString(pf->vertbody, mjs_getName(body->element)->c_str());
// add plugin
if (plugin.active) {
mjsPlugin* pplugin = &body->plugin;
pplugin->active = true;
pplugin->element = static_cast<mjsElement*>(plugin.element);
mjs_setString(pplugin->plugin_name, mjs_getString(plugin.plugin_name));
mjs_setString(pplugin->name, plugin_instance_name.c_str());
}
}
// not pinned and not trilinear: new body
else {
// add new body at vertex coordinates
mjsBody* pb = mjs_addBody(body, 0);
// add geom if vertcollide
if (dflex->vertcollide) {
mjsGeom* geom = mjs_addGeom(pb, 0);
geom->type = mjGEOM_SPHERE;
geom->size[0] = dflex->radius;
geom->group = 4;
}
// set frame and inertial
pb->pos[0] = point[3*i];
pb->pos[1] = point[3*i+1];
pb->pos[2] = point[3*i+2];
mjuu_zerovec(pb->ipos, 3);
pb->mass = bodymass;
pb->inertia[0] = bodyinertia;
pb->inertia[1] = bodyinertia;
pb->inertia[2] = bodyinertia;
pb->explicitinertial = true;
// add radial slider
if (doftype == mjFCOMPDOF_RADIAL) {
mjsJoint* jnt = mjs_addJoint(pb, 0);
// set properties
jnt->type = mjJNT_SLIDE;
mjuu_setvec(jnt->pos, 0, 0, 0);
mjuu_copyvec(jnt->axis, pb->pos, 3);
mjuu_normvec(jnt->axis, 3);
}
// add three orthogonal sliders
else if (doftype == mjFCOMPDOF_FULL) {
for (int j=0; j < 3; j++) {
// add joint to body
mjsJoint* jnt = mjs_addJoint(pb, 0);
// set properties
jnt->type = mjJNT_SLIDE;
mjuu_setvec(jnt->pos, 0, 0, 0);
mjuu_setvec(jnt->axis, 0, 0, 0);
jnt->axis[j] = 1;
}
}
// construct body name, add to vertbody
char txt[100];
mju::sprintf_arr(txt, "%s_%d", name.c_str(), i);
mjs_setName(pb->element, txt);
mjs_appendString(pf->vertbody, mjs_getName(pb->element)->c_str());
// clear flex vertex coordinates if allocated
if (!centered) {
point[3*i] = 0;
point[3*i+1] = 0;
point[3*i+2] = 0;
}
// add plugin
if (plugin.active) {
mjsPlugin* pplugin = &pb->plugin;
pplugin->active = true;
pplugin->element = static_cast<mjsElement*>(plugin.element);
mjs_setString(pplugin->plugin_name, mjs_getString(plugin.plugin_name));
mjs_setString(pplugin->name, plugin_instance_name.c_str());
}
}
}
// create nodal mesh for trilinear interpolation
if (doftype == mjFCOMPDOF_TRILINEAR) {
std::vector<double> node(24, 0);
for (int i=0; i < 2; i++) {
for (int j=0; j < 2; j++) {
for (int k=0; k < 2; k++) {
if (pinned[i*4+j*2+k]) {
node[3*(i*4+j*2+k)+0] = i == 0 ? minmax[0] : minmax[3];
node[3*(i*4+j*2+k)+1] = j == 0 ? minmax[1] : minmax[4];
node[3*(i*4+j*2+k)+2] = k == 0 ? minmax[2] : minmax[5];
mjs_appendString(pf->nodebody, mjs_getName(body->element)->c_str());
continue;
}
mjsBody* pb = mjs_addBody(body, 0);
pb->pos[0] = i == 0 ? minmax[0] : minmax[3];
pb->pos[1] = j == 0 ? minmax[1] : minmax[4];
pb->pos[2] = k == 0 ? minmax[2] : minmax[5];
mjuu_zerovec(pb->ipos, 3);
pb->mass = mass / 8;
pb->inertia[0] = pb->mass*(2.0*inertiabox*inertiabox)/3.0;
pb->inertia[1] = pb->mass*(2.0*inertiabox*inertiabox)/3.0;
pb->inertia[2] = pb->mass*(2.0*inertiabox*inertiabox)/3.0;
pb->explicitinertial = true;
// add geom if vertcollide
if (dflex->vertcollide) {
mjsGeom* geom = mjs_addGeom(pb, 0);
geom->type = mjGEOM_SPHERE;
geom->size[0] = dflex->radius;
}
for (int d=0; d < 3; d++) {
mjsJoint* jnt = mjs_addJoint(pb, 0);
jnt->type = mjJNT_SLIDE;
mjuu_setvec(jnt->pos, 0, 0, 0);
mjuu_setvec(jnt->axis, 0, 0, 0);
jnt->axis[d] = 1;
}
// construct node name, add to nodebody
char txt[100];
mju::sprintf_arr(txt, "%s_%d_%d_%d", name.c_str(), i, j, k);
mjs_setName(pb->element, txt);
mjs_appendString(pf->nodebody, mjs_getName(pb->element)->c_str());
}
}
}
if (!centered) {
mjs_setDouble(pf->node, node.data(), node.size());
}
}
if (!centered || doftype == mjFCOMPDOF_TRILINEAR) {
mjs_setDouble(pf->vert, point.data(), point.size());
}
// create edge equality constraint
if (equality) {
mjsEquality* pe = mjs_addEquality(&model->spec, &def.spec);
mjs_setDefault(pe->element, &model->Default()->spec);
pe->type = mjEQ_FLEX;
pe->active = true;
mjs_setString(pe->name1, name.c_str());
}
return true;
}
// get point id from grid coordinates
int mjCFlexcomp::GridID(int ix, int iy) {
return ix*count[1] + iy;
}
int mjCFlexcomp::GridID(int ix, int iy, int iz) {
return ix*count[1]*count[2] + iy*count[2] + iz;
}
// make grid
bool mjCFlexcomp::MakeGrid(char* error, int error_sz) {
int dim = def.Flex().spec.dim;
bool needtex = texcoord.empty() && mjs_getString(def.spec.flex->material)[0];
// 1D
if (dim == 1) {
for (int ix=0; ix < count[0]; ix++) {
if (type == mjFCOMPTYPE_CIRCLE) {
if (ix >= count[0]-1) {
continue;
}
// add point
double theta = 2*mjPI/(count[0]-1);
double radius = spacing[0]/std::sin(theta/2)/2;
point.push_back(radius*std::cos(theta*ix));
point.push_back(radius*std::sin(theta*ix));
point.push_back(0);
// add element
element.push_back(ix);
element.push_back(ix == count[0]-2 ? 0 : ix+1);
} else {
// add point
point.push_back(spacing[0]*(ix - 0.5*(count[0]-1)));
point.push_back(0);
point.push_back(0);
// add element
if (ix < count[0]-1) {
element.push_back(ix);
element.push_back(ix+1);
}
}
}
}
// 2D
else if (dim == 2) {
for (int ix=0; ix < count[0]; ix++) {
for (int iy=0; iy < count[1]; iy++) {
int quad2tri[2][3] = {{0, 1, 2}, {0, 2, 3}};
// add point
double pos[2] = {spacing[0]*(ix - 0.5*(count[0]-1)),
spacing[1]*(iy - 0.5*(count[1]-1))};
point.push_back(pos[0]);
point.push_back(pos[1]);
point.push_back(0);
// add texture coordinates, if not specified explicitly
if (needtex) {
texcoord.push_back(ix/(double)std::max(count[0]-1, 1));
texcoord.push_back(iy/(double)std::max(count[1]-1, 1));
}
// flip triangles if radial projection is requested
if (((pos[0] < -mjEPS && pos[1] > -mjEPS) ||
(pos[0] > -mjEPS && pos[1] < -mjEPS)) &&
type == mjFCOMPTYPE_DISC) {
quad2tri[0][2] = 3;
quad2tri[1][0] = 1;
}
// add elements
if (ix < count[0]-1 && iy < count[1]-1) {
int vert[4] = {
count[2]*count[1]*(ix+0) + count[2]*(iy+0),
count[2]*count[1]*(ix+1) + count[2]*(iy+0),
count[2]*count[1]*(ix+1) + count[2]*(iy+1),
count[2]*count[1]*(ix+0) + count[2]*(iy+1),
};
for (int s =0; s < 2; s++) {
for (int v=0; v < 3; v++) {
element.push_back(vert[quad2tri[s][v]]);
}
}
}
}
}
}
// 3D
else {
int cube2tets[6][4] = {{0, 3, 1, 7}, {0, 1, 4, 7},
{1, 3, 2, 7}, {1, 2, 6, 7},
{1, 5, 4, 7}, {1, 6, 5, 7}};
for (int ix=0; ix < count[0]; ix++) {
for (int iy=0; iy < count[1]; iy++) {
for (int iz=0; iz < count[2]; iz++) {
// add point
point.push_back(spacing[0]*(ix - 0.5*(count[0]-1)));
point.push_back(spacing[1]*(iy - 0.5*(count[1]-1)));
point.push_back(spacing[2]*(iz - 0.5*(count[2]-1)));
// add texture coordinates, if not specified explicitly
if (needtex) {
texcoord.push_back(ix/(float)std::max(count[0]-1, 1));
texcoord.push_back(iy/(float)std::max(count[1]-1, 1));
}
// add elements
if (ix < count[0]-1 && iy < count[1]-1 && iz < count[2]-1) {
int vert[8] = {
count[2]*count[1]*(ix+0) + count[2]*(iy+0) + iz+0,
count[2]*count[1]*(ix+1) + count[2]*(iy+0) + iz+0,
count[2]*count[1]*(ix+1) + count[2]*(iy+1) + iz+0,
count[2]*count[1]*(ix+0) + count[2]*(iy+1) + iz+0,
count[2]*count[1]*(ix+0) + count[2]*(iy+0) + iz+1,
count[2]*count[1]*(ix+1) + count[2]*(iy+0) + iz+1,
count[2]*count[1]*(ix+1) + count[2]*(iy+1) + iz+1,
count[2]*count[1]*(ix+0) + count[2]*(iy+1) + iz+1,
};
for (int s=0; s < 6; s++) {
for (int v=0; v < 4; v++) {
element.push_back(vert[cube2tets[s][v]]);
}
}
}
}
}
}
}
// check elements
if (element.empty()) {
return comperr(error, "No elements were created in grid", error_sz);
}
return true;
}
// get point id from box coordinates and side
int mjCFlexcomp::BoxID(int ix, int iy, int iz) {
// side iz=0
if (iz == 0) {
return ix*count[1] + iy + 1;
}
// side iz=max
else if (iz == count[2]-1) {
return count[0]*count[1] + ix*count[1] + iy + 1;
}
// side iy=0
else if (iy == 0) {
return 2*count[0]*count[1] + ix*(count[2]-2) + iz - 1 + 1;
}
// side iy=max
else if (iy == count[1]-1) {
return 2*count[0]*count[1] + count[0]*(count[2]-2) + ix*(count[2]-2) + iz - 1 + 1;
}
// side ix=0
else if (ix == 0) {
return 2*count[0]*count[1] + 2*count[0]*(count[2]-2) + (iy-1)*(count[2]-2) + iz - 1 + 1;
}
// side ix=max
else {
return 2*count[0]*count[1] + 2*count[0]*(count[2]-2) + (count[1]-2)*(count[2]-2) +
(iy-1)*(count[2]-2) + iz - 1 + 1;
}
}
// project from box to other shape
void mjCFlexcomp::BoxProject(double* pos, int ix, int iy, int iz) {
// init point
pos[0] = 2.0*ix/(count[0]-1) - 1;
pos[1] = 2.0*iy/(count[1]-1) - 1;
pos[2] = 2.0*iz/(count[2]-1) - 1;
// determine sizes
double size[3] = {
0.5*spacing[0]*(count[0]-1),
0.5*spacing[1]*(count[1]-1),
0.5*spacing[2]*(count[2]-1)
};
// box
if (type == mjFCOMPTYPE_BOX) {
pos[0] *= size[0];
pos[1] *= size[1];
pos[2] *= size[2];
}
// cylinder
else if (type == mjFCOMPTYPE_CYLINDER) {
double L0 = std::max(std::abs(pos[0]), std::abs(pos[1]));
mjuu_normvec(pos, 2);
pos[0] *= size[0]*L0;
pos[1] *= size[1]*L0;
pos[2] *= size[2];
}
// ellipsoid
else if (type == mjFCOMPTYPE_ELLIPSOID) {
mjuu_normvec(pos, 3);
pos[0] *= size[0];
pos[1] *= size[1];
pos[2] *= size[2];
}
}
// make 2d square or disc
bool mjCFlexcomp::MakeSquare(char* error, int error_sz) {
// set 2D
def.spec.flex->dim = 2;
// create square
if (!MakeGrid(error, error_sz)) {
return false;
}
// do projection
if (type == mjFCOMPTYPE_DISC) {
double size[2] = {
0.5*spacing[0]*(count[0]-1),
0.5*spacing[1]*(count[1]-1),
};
for (int i=0; i < point.size()/3; i++) {
double* pos = point.data() + i*3;
double L0 = std::max(std::abs(pos[0]), std::abs(pos[1]));
mjuu_normvec(pos, 2);
pos[0] *= size[0]*L0;
pos[1] *= size[1]*L0;
}
}
return true;
}
// make 3d box, ellipsoid or cylinder
bool mjCFlexcomp::MakeBox(char* error, int error_sz) {
double pos[3];
bool needtex = texcoord.empty() && mjs_getString(def.spec.flex->material)[0];
// set 3D
def.spec.flex->dim = 3;
// add center point
point.push_back(0);
point.push_back(0);
point.push_back(0);
// add texture coordinates, if not specified explicitly
if (needtex) {
texcoord.push_back(0);
texcoord.push_back(0);
}
// iz=0/max
for (int iz=0; iz < count[2]; iz+=count[2]-1) {
for (int ix=0; ix < count[0]; ix++) {
for (int iy=0; iy < count[1]; iy++) {
// add point
BoxProject(pos, ix, iy, iz);
point.push_back(pos[0]);
point.push_back(pos[1]);
point.push_back(pos[2]);
// add texture coordinates, if not specified explicitly
if (needtex) {
texcoord.push_back(ix/(float)std::max(count[0]-1, 1));
texcoord.push_back(iy/(float)std::max(count[1]-1, 1));
}
// add elements
if (ix < count[0]-1 && iy < count[1]-1) {
element.push_back(0);
element.push_back(BoxID(ix, iy, iz));
element.push_back(BoxID(ix+1, iy, iz));
element.push_back(BoxID(ix+1, iy+1, iz));
element.push_back(0);
element.push_back(BoxID(ix, iy, iz));
element.push_back(BoxID(ix, iy+1, iz));
element.push_back(BoxID(ix+1, iy+1, iz));
}
}
}
}
// iy=0/max
for (int iy=0; iy < count[1]; iy+=count[1]-1) {
for (int ix=0; ix < count[0]; ix++) {
for (int iz=0; iz < count[2]; iz++) {
// add point
if (iz > 0 && iz < count[2]-1) {
BoxProject(pos, ix, iy, iz);
point.push_back(pos[0]);
point.push_back(pos[1]);
point.push_back(pos[2]);
// add texture coordinates
if (needtex) {
texcoord.push_back(ix/(float)std::max(count[0]-1, 1));
texcoord.push_back(iz/(float)std::max(count[2]-1, 1));
}
}
// add elements
if (ix < count[0]-1 && iz < count[2]-1) {
element.push_back(0);
element.push_back(BoxID(ix, iy, iz));
element.push_back(BoxID(ix+1, iy, iz));
element.push_back(BoxID(ix+1, iy, iz+1));
element.push_back(0);
element.push_back(BoxID(ix, iy, iz));
element.push_back(BoxID(ix, iy, iz+1));
element.push_back(BoxID(ix+1, iy, iz+1));
}
}
}
}
// ix=0/max
for (int ix=0; ix < count[0]; ix+=count[0]-1) {
for (int iy=0; iy < count[1]; iy++) {
for (int iz=0; iz < count[2]; iz++) {
// add point
if (iz > 0 && iz < count[2]-1 && iy > 0 && iy < count[1]-1) {
BoxProject(pos, ix, iy, iz);
point.push_back(pos[0]);
point.push_back(pos[1]);
point.push_back(pos[2]);
// add texture coordinates
if (needtex) {
texcoord.push_back(iy/(float)std::max(count[1]-1, 1));
texcoord.push_back(iz/(float)std::max(count[2]-1, 1));
}
}
// add elements
if (iy < count[1]-1 && iz < count[2]-1) {
element.push_back(0);
element.push_back(BoxID(ix, iy, iz));
element.push_back(BoxID(ix, iy+1, iz));
element.push_back(BoxID(ix, iy+1, iz+1));
element.push_back(0);
element.push_back(BoxID(ix, iy, iz));
element.push_back(BoxID(ix, iy, iz+1));
element.push_back(BoxID(ix, iy+1, iz+1));
}
}
}
}
return true;
}
// copied from user_mesh.cc
template <typename T> static T* VecToArray(std::vector<T>& vector, bool clear = true){
if (vector.empty())
return nullptr;
else {
int n = (int)vector.size();
T* cvec = (T*) mju_malloc(n*sizeof(T));
memcpy(cvec, vector.data(), n*sizeof(T));
if (clear) {
vector.clear();
}
return cvec;
}
}
// make mesh
bool mjCFlexcomp::MakeMesh(mjCModel* model, char* error, int error_sz) {
// strip path
if (!file.empty() && model->spec.strippath) {
file = mjuu_strippath(file);
}
// file is required
if (file.empty()) {
return comperr(error, "File is required", error_sz);
}
// check dim
if (def.spec.flex->dim < 2) {
return comperr(error, "Flex dim must be at least 2 for mesh", error_sz);
}
// load resource
std::string filename = mjuu_combinePaths(mjs_getString(model->spec.meshdir), file);
mjResource* resource = nullptr;
if (mjCMesh::IsMSH(filename)) {
return comperr(error, "legacy MSH files are not supported in flexcomp", error_sz);
}
try {
resource = mjCBase::LoadResource(mjs_getString(model->spec.modelfiledir),
filename, 0);
} catch (mjCError err) {
return comperr(error, err.message, error_sz);
}
// load mesh
mjCMesh mesh;
try {
mesh.LoadFromResource(resource, true);
mju_closeResource(resource);
} catch (mjCError err) {
mju_closeResource(resource);
return comperr(error, err.message, error_sz);
}
// check sizes
if (mesh.Vert().empty() || mesh.Face().empty()) {
return comperr(error, "Vertex and face data required", error_sz);
}
// copy vertices
point = mesh.Vert();
if (mesh.HasTexcoord()) {
texcoord = mesh.Texcoord();
elemtexcoord = mesh.FaceTexcoord();
}
// copy faces or create 3D mesh
if (def.spec.flex->dim == 2) {
element = mesh.Face();
} else {
point.insert(point.begin() + 0, origin[0]);
point.insert(point.begin() + 1, origin[1]);
point.insert(point.begin() + 2, origin[2]);
for (int i=0; i < mesh.Face().size(); i+=3) {
// only add tetrahedra with positive volume
int tet[3] = {mesh.Face()[i+0]+1,
mesh.Face()[i+1]+1,
mesh.Face()[i+2]+1};
double edge1[3], edge2[3], edge3[3];
for (int i=0; i < 3; i++) {
edge1[i] = point[3*tet[0]+i] - origin[i];
edge2[i] = point[3*tet[1]+i] - origin[i];
edge3[i] = point[3*tet[2]+i] - origin[i];
}
double normal[3];
mjuu_crossvec(normal, edge1, edge2);
if (mjuu_dot3(normal, edge3) < mjMINVAL) {
continue;
}
element.push_back(0);
element.push_back(tet[0]);
element.push_back(tet[1]);
element.push_back(tet[2]);
}
}
return true;
}
// find string in buffer, return position or -1 if not found
static int findstring(const char* buffer, int buffer_sz, const char* str) {
int len = (int)strlen(str);
// scan buffer
for (int i=0; i < buffer_sz-len; i++) {
// check for string at position i
bool found = true;
for (int k=0; k < len; k++) {
if (buffer[i+k] != str[k]) {
found = false;
break;
}
}
// string found
if (found) {
return i;
}
}
// not found
return -1;
}
// load points and elements from GMSH file
bool mjCFlexcomp::MakeGMSH(mjCModel* model, char* error, int error_sz) {
// strip path
if (!file.empty() && model->spec.strippath) {
file = mjuu_strippath(file);
}
// file is required
if (file.empty()) {
return comperr(error, "File is required", error_sz);
}
// open resource
mjResource* resource = nullptr;
try {
std::string filename = mjuu_combinePaths(mjs_getString(model->spec.meshdir), file);
resource = mjCBase::LoadResource(mjs_getString(model->spec.modelfiledir),
filename, 0);
} catch (mjCError err) {
return comperr(error, err.message, error_sz);
}
// try to load, close resource properly
try {
LoadGMSH(model, resource);
mju_closeResource(resource);
} catch (mjCError err) {
mju_closeResource(resource);
return comperr(error, err.message, error_sz);
} catch (...) {
mju_closeResource(resource);
return comperr(error, "exception while reading GMSH file", error_sz);
}
return true;
}
// load GMSH format 4.1
void mjCFlexcomp::LoadGMSH41(char* buffer, int binary, int nodeend,
int nodebegin, int elemend, int elembegin){
// header size
constexpr int kGmsh41HeaderSize = 52;
// base for node tags, to be subtracted from element data
size_t minNodeTag, numEntityBlocks, numNodes, maxNodeTag, numNodesInBlock, tag;
int entityDim, entityTag, parametric;
// ascii nodes
if (binary == 0) {
// convert node char buffer to stringstream
stringstream ss(std::string(buffer + nodebegin, nodeend - nodebegin));
// read header
ss >> numEntityBlocks >> numNodes >> minNodeTag >> maxNodeTag;
ss >> entityDim >> entityTag >> parametric >> numNodesInBlock;
if (!ss.good()) {
throw mjCError(NULL, "Error reading Nodes header");
}
// check number of nodes is a positive number
if (numNodes < 0) {
throw mjCError(NULL, "Invalid number of nodes");
}
// require single block
if (numEntityBlocks != 1 || numNodes != numNodesInBlock) {
throw mjCError(NULL, "All nodes must be in single block");
}
// require maximum number of nodes be equal to maximum number of nodes in a block
if (maxNodeTag != numNodesInBlock){
throw mjCError(NULL, "Maximum number of nodes must be equal to number of nodes in a block");
}
// check dimensionality and save
if (entityDim < 1 || entityDim > 3) {
throw mjCError(NULL, "Entity must be 1D, 2D or 3D");
}
def.spec.flex->dim = entityDim;
// read and discard node tags; require range from minNodeTag to maxNodeTag
for (size_t i=0; i < numNodes; i++) {
size_t tag;
ss >> tag;
if (!ss.good()) {
throw mjCError(NULL, "Error reading node tags");
}
if (tag != i+minNodeTag) {
throw mjCError(NULL, "Node tags must be sequential");
}
}
// read points
if (numNodes < 0 || numNodes >= INT_MAX / 3) {
throw mjCError(NULL, "Invalid number of nodes.");
}
point.reserve(3*numNodes);
for (size_t i=0; i < 3*numNodes; i++) {
double x;
ss >> x;
if (!ss.good()) {
throw mjCError(NULL, "Error reading node coordinates");
}
point.push_back(x);
}
}
// binary nodes
else {
// check header size
if (nodeend-nodebegin < kGmsh41HeaderSize) {
throw mjCError(NULL, "Invalid nodes header");
}
// read header
ReadFromBuffer(&numEntityBlocks, buffer + nodebegin);
ReadFromBuffer(&numNodes, buffer + nodebegin + 8);
ReadFromBuffer(&minNodeTag, buffer + nodebegin + 16);
ReadFromBuffer(&maxNodeTag, buffer + nodebegin + 24);
ReadFromBuffer(&entityDim, buffer + nodebegin + 32);
ReadFromBuffer(&entityTag, buffer + nodebegin + 36);
ReadFromBuffer(¶metric, buffer + nodebegin + 40);
ReadFromBuffer(&numNodesInBlock, buffer + nodebegin + 44);
// require single block
if (numEntityBlocks != 1 || numNodes != numNodesInBlock) {
throw mjCError(NULL, "All nodes must be in single block");
}
// check number of nodes is a positive number
if (numNodes < 0) {
throw mjCError(NULL, "Invalid number of nodes");
}
// check dimensionality and save
if (entityDim < 1 || entityDim > 3) {
throw mjCError(NULL, "Entity must be 1D, 2D or 3D");
}
def.spec.flex->dim = entityDim;
// nodeData: node tag and 3 nodes
constexpr int numNodeComponents = 4;
constexpr int componentSize = 8;
int nodeDataSize = numNodeComponents*componentSize;
// check section byte size
if (nodeend-nodebegin < kGmsh41HeaderSize + numNodes*nodeDataSize) {
throw mjCError(NULL, "Insufficient byte size of Nodes");
}
// check node tags: must range from minNodeTag to maxNodeTag
const char* tagbuffer = buffer + nodebegin + kGmsh41HeaderSize;
for (size_t i=0; i < numNodes; i++) {
ReadFromBuffer(&tag, tagbuffer + i*componentSize);
if (tag != i+minNodeTag) {
throw mjCError(NULL, "Node tags must be sequential");
}
}
// read points
if (numNodes < 0 || numNodes >= INT_MAX / 3) {
throw mjCError(NULL, "Invalid number of nodes.");
}
point.reserve(3*numNodes);
const char* pointbuffer = buffer + nodebegin + kGmsh41HeaderSize + componentSize*numNodes;
for (size_t i=0; i < 3*numNodes; i++) {
double x;
ReadFromBuffer(&x, pointbuffer + i*componentSize);
point.push_back(x);
}
}
size_t numElements, minElementTag, maxElementTag, numElementsInBlock;
int elementType;
// ascii elements
if (binary == 0) {
// convert element char buffer to stringstream
buffer[elemend] = 0;
stringstream ss(std::string(buffer + elembegin, elemend - elembegin));
// read header
ss >> numEntityBlocks >> numElements >> minElementTag >> maxElementTag;
ss >> entityDim >> entityTag >> elementType >> numElementsInBlock;
if (!ss.good()) {
throw mjCError(NULL, "Error reading Elements header");
}
// require single block
if (numEntityBlocks != 1 || numElements != numElementsInBlock) {
throw mjCError(NULL, "All elements must be in single block");
}
// check number of elements is a positive number
if (numElements < 0) {
throw mjCError(NULL, "Invalid number of elements");
}
// dimensionality must be same as nodes
if (entityDim != def.spec.flex->dim) {
throw mjCError(NULL, "Inconsistent dimensionality in Elements");
}
if (numElements < 0 || numElements >= INT_MAX / 4) {
throw mjCError(NULL, "Invalid numElements.");
}
// type must be consistent with dimensionality
if ((entityDim == 1 && elementType != 1) ||
(entityDim == 2 && elementType != 2) ||
(entityDim == 3 && elementType != 4)) {
throw mjCError(NULL, "Element type inconsistent with dimensionality");
}
// read elements, discard tags
element.reserve((entityDim+1)*numElements);
for (size_t i=0; i < numElements; i++) {
size_t tag, nodeid;
ss >> tag;
for (int k=0; k <= entityDim; k++) {
ss >> nodeid;
if (!ss.good()) {
throw mjCError(NULL, "Error reading Elements");
}
element.push_back((int)(nodeid-minNodeTag));
}
}
}
// binary elements
else {
// check header size
if (elemend-elembegin < kGmsh41HeaderSize) {
throw mjCError(NULL, "Invalid elements header");
}
// read header
ReadFromBuffer(&numEntityBlocks, buffer + elembegin);
ReadFromBuffer(&numElements, buffer + elembegin + 8);
ReadFromBuffer(&minElementTag, buffer + elembegin + 16);
ReadFromBuffer(&maxElementTag, buffer + elembegin + 24);
ReadFromBuffer(&entityDim, buffer + elembegin + 32);
ReadFromBuffer(&entityTag, buffer + elembegin + 36);
ReadFromBuffer(&elementType, buffer + elembegin + 40);
ReadFromBuffer(&numElementsInBlock, buffer + elembegin + 44);
// require single block
if (numEntityBlocks != 1 || numElements != numElementsInBlock) {
throw mjCError(NULL, "All elements must be in single block");
}
// check number of elements is a positive number
if (numElements < 0) {
throw mjCError(NULL, "Invalid number of elements");
}
// dimensionality must be same as nodes
if (entityDim != def.spec.flex->dim) {
throw mjCError(NULL, "Inconsistent dimensionality in Elements");
}
// type must be consistent with dimensionality
if ((entityDim == 1 && elementType != 1) ||
(entityDim == 2 && elementType != 2) ||
(entityDim == 3 && elementType != 4)) {
throw mjCError(NULL, "Element type inconsistent with dimensionality");
}
if (numElements < 0 || numElements >= INT_MAX / 4) {
throw mjCError(NULL, "Invalid numElements.");
}
// elementData: element tag and n node tags
int numElementComponents = (entityDim+2);
constexpr int componentSize = 8;
int elementDataSize = numElementComponents*componentSize;
// check section byte size
if (elemend - elembegin < kGmsh41HeaderSize + numElements*elementDataSize) {
throw mjCError(NULL, "Insufficient byte size of Elements");
}
// read elements, discard tags
element.reserve((entityDim+1)*numElements);
const char* elembuffer = buffer + elembegin + kGmsh41HeaderSize;
for (size_t i=0; i < numElements; i++) {
// skip element tag
elembuffer += componentSize;
// read vertex ids
size_t elemid;
for (int k=0; k <= entityDim; k++) {
ReadFromBuffer(&elemid, elembuffer);
int elementid = elemid - minNodeTag;
element.push_back(elementid);
elembuffer += componentSize;
}
}
}
}
// load GMSH format 2.2
void mjCFlexcomp::LoadGMSH22(char* buffer, int binary, int nodeend,
int nodebegin, int elemend, int elembegin) {
// number of nodes
size_t numNodes = 0;
// ascii nodes
if (binary == 0) {
// convert node char buffer to stringstream
stringstream ss(std::string(buffer + nodebegin, nodeend - nodebegin));
std::string line;
// checking header template
std::getline(ss, line);
if (!IsValidElementOrNodeHeader22(line)) {
throw mjCError(NULL, "Invalid node header");
}
ss.seekg(-(line.size()+1), std::ios::cur);
// read header
size_t maxNodeTag = 0;
ss >> maxNodeTag;
if (!ss.good()) {
throw mjCError(NULL, "Error reading Nodes header");
}
numNodes = maxNodeTag;
if (numNodes < 0 || numNodes >= INT_MAX / 3) {
throw mjCError(NULL, "Invalid number of nodes.");
}
// read points, discard tag
point.reserve(3*numNodes);
for (size_t i=0; i < numNodes; i++) {
size_t tag;
double x;
ss >> tag;
if (!ss.good()) {
throw mjCError(NULL, "Error reading node tags");
}
// reading nodes
for (int k=0; k < 3; k++) {
ss >> x;
if (!ss.good()) {
throw mjCError(NULL, "Error reading node coordinates");
}
point.push_back(x);
}
}
}
// binary nodes
else {
// header size for gmshApp
constexpr int nodeHeaderSizeGmshApp = 5;
// header size compatible with both gmshApp and Ftetwild
constexpr int nodeHeaderSize = nodeHeaderSizeGmshApp - 1;
// check header size
if (nodeend-nodebegin < nodeHeaderSize) {
throw mjCError(NULL, "Invalid nodes header");
}
// parse maxNodeTag and then cast it to int
char maxNodeTagChar[11] = {0};
ReadStrFromBuffer(maxNodeTagChar, buffer + nodebegin, std::min(10, nodeend - nodebegin));
size_t measuredHeaderSize = strnlen(maxNodeTagChar, 10) - 1;
size_t maxNodeTag;
try {
maxNodeTag = std::stoi(maxNodeTagChar);
} catch (const std::out_of_range& e) {
throw mjCError(NULL, "Invalid number of nodes");
}
numNodes = maxNodeTag;
// check number of nodes is a positive number
if (numNodes < 0) {
throw mjCError(NULL, "Invalid number of nodes");
}
// node data: node tag and 3 nodes
int nodeSize = sizeof(double);
int indexSize = sizeof(int);
int nodeDataSize = indexSize + 3*nodeSize;
// check section byte size
if (nodeend - nodebegin < nodeHeaderSize + numNodes*nodeDataSize) {
throw mjCError(NULL, "Insufficient byte size of Nodes");
}
// read point, discard tag
if (numNodes < 0 || numNodes >= INT_MAX / 3) {
throw mjCError(NULL, "Invalid number of nodes.");
}
point.reserve(3*numNodes);
// beginning of buffer containing node info
const char* tagBuffer = buffer + nodebegin + measuredHeaderSize;
for (int i=0; i < numNodes; i++) {
int tag;
int offset = i*(sizeof(int) + sizeof(double)*3);
ReadFromBuffer(&tag, tagBuffer + offset);
for (int k=0; k < 3; k++) {
double x;
const char* nodeBuffer = tagBuffer + sizeof(int) + sizeof(double)*k;
ReadFromBuffer(&x, nodeBuffer + offset);
point.push_back(x);
}
}
}
// ascii elements
if (binary == 0) {
// convert element char buffer to stringstream
buffer[elemend] = 0;
stringstream ss(std::string(buffer + elembegin, elemend - elembegin));
std::string line;
// checking header template
std::getline(ss, line);
if (!IsValidElementOrNodeHeader22(line)) {
throw mjCError(NULL, "Invalid elements header");
}
ss.seekg(-(line.size()+1), std::ios::cur);
// read header
size_t maxElementTag = 0;
ss >> maxElementTag;
if (!ss.good()) {
throw mjCError(NULL, "Error reading Elements header");
}
size_t numElements = maxElementTag;
if (numElements < 0 || numElements >= INT_MAX / 4) {
throw mjCError(NULL, "Invalid number of elements.");
}
// check number of elements is a positive number
if (numElements < 0) {
throw mjCError(NULL, "Invalid number of elements");
}
// reading first element's type
int tag = 0, elementType = 0, numTags = 0;
ss >> tag >> elementType >> numTags;
if (!ss.good()) {
throw mjCError(NULL, "Error reading Elements");
}
size_t entityDim = 0;
int numNodeTags = 0;
// surface
if (elementType == 2) {
entityDim = 2;
numNodeTags = 3;
}
// tetrahedral
else if (elementType == 4) {
entityDim = 3;
numNodeTags = 4;
}
if (numNodeTags < 1 || numNodeTags > 4) {
throw mjCError(NULL, "Invalid number of node tags");
}
// setting entityDim
def.spec.flex->dim = entityDim;
// read elements, discard all tags
element.reserve(numNodeTags*numElements);
for (size_t i=0; i < numElements; i++) {
int nodeTag = 0, physicalEntityTag = 0, elementModelEntityTag = 0;
if (i != 0) {
ss >> tag >> elementType >> numTags;
if (!ss.good()) {
throw mjCError(NULL, "Error reading Elements");
}
}
if (numTags > 0) {
ss >> physicalEntityTag >> elementModelEntityTag;
if (!ss.good()) {
throw mjCError(NULL, "Error reading Elements");
}
}
for (int k=0; k < numNodeTags; k++) {
ss >> nodeTag;
if (!ss.good()) {
throw mjCError(NULL, "Error reading Elements");
}
if (nodeTag > numNodes || nodeTag < 1) {
throw mjCError(NULL, "Invalid node tag");
}
element.push_back((int)(nodeTag-1));
}
}
}
// binary elements
else {
// header size for gmshApp
constexpr int elementHeaderSizeGmshApp = 4;
// header size for Ftetwild
constexpr int elementHeaderSizeFtetwild = 17;
// check header size
if (elemend - elembegin < elementHeaderSizeGmshApp) {
throw mjCError(NULL, "Invalid elements header");
}
// reading elements
char maxElementTagChar[11] = {0};
ReadStrFromBuffer(maxElementTagChar, buffer + elembegin, std::min(10, elemend - elembegin));
int measuredHeaderSize = strnlen(maxElementTagChar, 10) - 1;
int maxElementTag;
try {
maxElementTag = std::stoi(maxElementTagChar);
} catch (const std::out_of_range& e) {
throw mjCError(NULL, "Invalid number of elements");
}
int numElements = maxElementTag;
int tag, numTags;
int nodeTag;
int elementType;
// check number of elements is a positive number
if (numElements < 0) {
throw mjCError(NULL, "Invalid number of elements");
}
// size of single component in element data
int componentSize = sizeof(int);
// element buffer
const char* elementsBuffer = buffer + elembegin + measuredHeaderSize;
ReadFromBuffer(&elementType, elementsBuffer);
ReadFromBuffer(&numTags, elementsBuffer + componentSize*2);
ReadFromBuffer(&tag, elementsBuffer + componentSize*3);
// tetrahedral has 4 node tags and surface has 3
int numNodeTags = 0;
size_t entityDim = 0;
// surface
if (elementType == 2) {
entityDim = 2;
numNodeTags = 3;
}
// tetrahedral
else if (elementType == 4) {
entityDim = 3;
numNodeTags = 4;
}
if (numNodeTags < 1 || numNodeTags > 4) {
throw mjCError(NULL, "Invalid number of node tags");
}
def.spec.flex->dim = entityDim;
// element data(Ftetwild): tag and 4 nodeTag
constexpr int numComponentsFtetwild = 5;
// element data(gmshApp): 4 Info components, 2 entity tag and entityDim+1 nodeTags
constexpr int numInfoComponents = 4;
constexpr int numEntityTagComponents = 2;
int numComponentsGmshApp = numInfoComponents + numEntityTagComponents + numNodeTags;
// single element data size
int elementDataSizeFtetwild = numComponentsFtetwild*componentSize;
int elementDataSizeGmshApp = numComponentsGmshApp*componentSize;
// elements section buffer size
int elementsBufferSizeFtetwild = elementHeaderSizeFtetwild +
numElements*elementDataSizeFtetwild;
int elementsBufferSizeGmshApp = elementHeaderSizeGmshApp +
numElements*elementDataSizeGmshApp;
// check section byte size for ftetwild
if (elemend - elembegin < elementsBufferSizeFtetwild) {
throw mjCError(NULL, "Insufficient byte size of Elements");
}
// Handling elements produced by gmsh
if (numTags > 0) {
// check section byte size for gmsh
if (elemend - elembegin < elementsBufferSizeGmshApp) {
throw mjCError(NULL, "Insufficient byte size of Elements");
}
// read first element
for (int k =0; k < numNodeTags; k++) {
ReadFromBuffer(&nodeTag, elementsBuffer + componentSize*(6+k));
if (nodeTag > numNodes || nodeTag < 1) {
throw mjCError(NULL, "Invalid node tag");
}
element.push_back(nodeTag-1);
}
// read every other element
for (int i=1; i < numElements; i++) {
const char* numTagsBuffer = elementsBuffer + componentSize*2;
const char* tagBuffer = elementsBuffer + componentSize*3;
int offset = i*elementDataSizeGmshApp;
ReadFromBuffer(&numTags, numTagsBuffer + offset);
ReadFromBuffer(&tag, tagBuffer+offset);
for (int k =0; k < numNodeTags; k++) {
const char* nodeTagBuffer = elementsBuffer + componentSize*(6+k);
ReadFromBuffer(&nodeTag, nodeTagBuffer + offset);
if (nodeTag > numElements || nodeTag < 1) {
throw mjCError(NULL, "Invalid node tag");
}
element.push_back(nodeTag-1);
}
}
}
// Handling elements produced by ftetwild
else {
// read first element
for (int k = 0; k < numNodeTags; k++) {
const char* nodeTagBuffer = elementsBuffer + componentSize*(4+k);
ReadFromBuffer(&nodeTag, nodeTagBuffer);
if (nodeTag > numNodes || nodeTag < 1) {
throw mjCError(NULL, "Invalid node tag");
}
element.push_back(nodeTag-1);
}
// read every other element
for (int i=0; i < numElements-1; i++) {
int offset = componentSize*(4+2) + i*elementDataSizeFtetwild;
const char* tagBuffer = elementsBuffer + componentSize*2;
ReadFromBuffer(&tag, tagBuffer + offset);
for (int k=0; k < numNodeTags; k++) {
const char* nodeTagBuffer = elementsBuffer + componentSize*(3+k);
ReadFromBuffer(&nodeTag, nodeTagBuffer + offset);
if (nodeTag > numElements || nodeTag < 1) {
throw mjCError(NULL, "Invalid node tag");
}
element.push_back(nodeTag-1);
}
}
}
}
}
// load GMSH file from resource
void mjCFlexcomp::LoadGMSH(mjCModel* model, mjResource* resource) {
// get buffer from resource
char* buffer = 0;
int buffer_sz = mju_readResource(resource, (const void**) &buffer);
// check buffer
if (buffer_sz < 0) {
throw mjCError(NULL, "Could not read GMSH file");
} else if (buffer_sz == 0) {
throw mjCError(NULL, "Empty GMSH file");
} else if (buffer_sz < 11 || strncmp(buffer, "$MeshFormat", 11)) {
throw mjCError(NULL, "GMSH file must begin with $MeshFormat");
}
// check version, determine ascii or binary
double version;
int binary;
if (sscanf(buffer + 11, "%lf %d", &version, &binary) != 2) {
throw mjCError(NULL, "Could not read GMSH file header");
}
if (mju_round(100*version) != 220 && mju_round(100*version) != 410) {
throw mjCError(NULL, "Only GMSH file format versions 4.1 and 2.2 are supported");
}
// find section begin/end
int nodebegin = findstring(buffer, buffer_sz, "$Nodes");
int nodeend = findstring(buffer, buffer_sz, "$EndNodes");
int elembegin = findstring(buffer, buffer_sz, "$Elements");
int elemend = findstring(buffer, buffer_sz, "$EndElements");
// correct begin for string size, +1 for LF in binary (CRLF in Win ascii works)
nodebegin += (int)strlen("$Nodes") + 1;
elembegin += (int)strlen("$Elements") + 1;
// check sections
if (nodebegin < 0) {
throw mjCError(NULL, "GMSH file missing $Nodes");
}
if (nodeend < nodebegin) {
throw mjCError(NULL, "GMSH file missing $EndNodes after $Nodes");
}
if (elembegin < 0) {
throw mjCError(NULL, "GMSH file missing $Elements");
}
if (elemend < elembegin) {
throw mjCError(NULL, "GMSH file missing $EndElements after $Elements");
}
// Support for 4.1
if (mju_round(100*version) == 410) {
LoadGMSH41(buffer, binary, nodeend, nodebegin, elemend, elembegin);
}
// Support for 2.2
else if (mju_round(100*version) == 220) {
LoadGMSH22(buffer, binary, nodeend, nodebegin, elemend, elembegin);
} else {
throw mjCError(NULL, "Unsupported GMSH file format version");
}
}
|