mujoco / data /src /user /user_util.h
introvoyz041's picture
Migrated from GitHub
2c55b92 verified
// 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.
#ifndef MUJOCO_SRC_USER_USER_UTIL_H_
#define MUJOCO_SRC_USER_USER_UTIL_H_
#include <algorithm>
#include <cstddef>
#include <cstdint>
#include <optional>
#include <string>
#include <string_view>
#include <vector>
const double mjEPS = 1E-14; // minimum value in various calculations
const double mjMINMASS = 1E-6; // minimum mass allowed
// check if numeric variable is defined: !_isnan(num)
bool mjuu_defined(double num);
// compute linear address of M[g1][g2] where M is triangular n-by-n
// return -1 if inputs are invalid
int mjuu_matadr(int g1, int g2, int n);
// set 4D vector
void mjuu_setvec(double* dest, double x, double y, double z, double w);
void mjuu_setvec(float* dest, double x, double y, double z, double w);
// set 3D vector
void mjuu_setvec(double* dest, double x, double y, double z);
void mjuu_setvec(float* dest, double x, double y, double z);
// set 2D vector
void mjuu_setvec(double* dest, double x, double y);
// copy real-valued vector
template <class T1, class T2>
void mjuu_copyvec(T1* dest, const T2* src, int n) {
std::copy(src, src + n, dest);
}
// add to double array
void mjuu_addtovec(double* dest, const double* src, int n);
// zero array
void mjuu_zerovec(double* dest, int n);
// zero float array
void mjuu_zerovec(float* dest, int n);
// dot-product in 3D
double mjuu_dot3(const double* a, const double* b);
// distance between 3D points
double mjuu_dist3(const double* a, const double* b);
// L1 norm between vectors
double mjuu_L1(const double* a, const double* b, int n);
// normalize vector to unit length, return previous length
// if norm(vec)<mjEPS, return 0 and do not change vector
double mjuu_normvec(double* vec, int n);
float mjuu_normvec(float* vec, int n);
// convert quaternion to rotation matrix
void mjuu_quat2mat(double* res, const double* quat);
// multiply two unit quaternions
void mjuu_mulquat(double* res, const double* qa, const double* qb);
// multiply matrix by vector, 3-by-3
void mjuu_mulvecmat(double* res, const double* vec, const double* mat);
// multiply transposed matrix by vector, 3-by-3
void mjuu_mulvecmatT(double* res, const double* vec, const double* mat);
// compute res = R * M * R'
void mjuu_mulRMRT(double* res, const double* R, const double* M);
// compute res = A * B, all 3-by-3
void mjuu_mulmat(double* res, const double* A, const double* B);
// transpose 3-by-3 matrix
void mjuu_transposemat(double* res, const double* mat);
// convert global to local axis relative to given frame
void mjuu_localaxis(double* al, const double* ag, const double* quat);
// convert global to local position relative to given frame
void mjuu_localpos(double* pl, const double* pg, const double* pos, const double* quat);
// compute quaternion rotation from parent to child
void mjuu_localquat(double* local, const double* child, const double* parent);
// compute vector cross-product a = b x c
void mjuu_crossvec(double* a, const double* b, const double* c);
// compute normal vector to given triangle
template<typename T> double mjuu_makenormal(double* normal, const T a[3],
const T b[3], const T c[3]);
// compute quaternion corresponding to minimal rotation from [0;0;1] to vec
void mjuu_z2quat(double* quat, const double* vec);
// compute quaternion corresponding to given rotation matrix (i.e. frame)
void mjuu_frame2quat(double* quat, const double* x, const double* y, const double* z);
// invert frame transformation
void mjuu_frameinvert(double newpos[3], double newquat[4],
const double oldpos[3], const double oldquat[4]);
// accumulate frame transformation into parent frame
void mjuu_frameaccum(double pos[3], double quat[4],
const double childpos[3], const double childquat[4]);
// accumulate frame transformation into child frame
void mjuu_frameaccumChild(const double pos[3], const double quat[4],
double childpos[3], double childquat[4]);
// invert frame accumulation
void mjuu_frameaccuminv(double pos[3], double quat[4],
const double childpos[3], const double childquat[4]);
// convert local_inertia[3] to global_inertia[6]
void mjuu_globalinertia(double* global, const double* local, const double* quat);
// compute off-center correction to inertia matrix
void mjuu_offcenter(double* res, double mass, const double* vec);
// compute viscosity coefficients from mass and inertia
void mjuu_visccoef(double* visccoef, double mass, const double* inertia, double scl=1);
// rotate vector by quaternion
void mjuu_rotVecQuat(double res[3], const double vec[3], const double quat[4]);
// update moving frame along a discrete curve or initialize it, returns edge length
double mjuu_updateFrame(double quat[4], double normal[3], const double edge[3],
const double tprv[3], const double tnxt[3], int first);
// eigenvalue decomposition of symmetric 3x3 matrix
int mjuu_eig3(double eigval[3], double eigvec[9], double quat[4], const double mat[9]);
// transform vector by pose
void mjuu_trnVecPose(double res[3], const double pos[3], const double quat[4], const double vec[3]);
// compute frame quat and diagonal inertia from full inertia matrix, return error if any
const char* mjuu_fullInertia(double quat[4], double inertia[3], const double fullinertia[6]);
namespace mujoco::user {
// utility class for handling file paths
class FilePath {
public:
FilePath() = default;
explicit FilePath(const std::string& str) : path_(PathReduce(str)) {}
explicit FilePath(const char* str) { path_ = PathReduce(str); }
FilePath(const std::string& str1, const std::string& str2) {
path_ = PathReduce(Combine(str1, str2));
}
FilePath(FilePath&& other) = default;
FilePath& operator=(FilePath&& other) = default;
FilePath(const FilePath&) = default;
FilePath& operator=(const FilePath&) = default;
// return true if the path is absolute
bool IsAbs() const { return !AbsPrefix(path_).empty(); }
// return string with the absolute prefix of the path
// e.g. "c:\", "http://", etc
std::string AbsPrefix() const { return AbsPrefix(path_); }
// return copy of the internal path string
const std::string& Str() const { return path_; }
// return copy of the internal path string in lower case
// (for case insensitive purposes)
std::string StrLower() const;
// return the extension of the file path (e.g. "hello.txt" -> ".txt")
std::string Ext() const;
// concatenate two paths together
FilePath operator+(const FilePath& path) const;
// return a new FilePath with the extension stripped
FilePath StripExt() const;
// return a new FilePath with the path stripped
FilePath StripPath() const;
// return a new FilePath with path lower cased
FilePath Lower() const { return FilePathFast(StrLower()); }
// C++ string methods
std::size_t size() const { return path_.size(); }
const char* c_str() const { return path_.c_str(); }
bool empty() const { return path_.empty(); }
char operator[](int i) const { return path_[i]; }
private:
static std::string AbsPrefix(const std::string& str);
static std::string PathReduce(const std::string& str);
static bool IsSeparator(char c) {
return c == '/' || c == '\\';
}
static std::string Combine(const std::string& s1, const std::string& s2);
// fast constructor that does not call PathReduce
static FilePath FilePathFast(const std::string& str) {
FilePath path;
path.path_ = str;
return path;
}
static FilePath FilePathFast(std::string&& str) {
FilePath path;
path.path_ = str;
return path;
}
std::string path_;
};
// read file into memory buffer
std::vector<uint8_t> FileToMemory(const char* filename);
// convert vector to string separating elements by whitespace
template<typename T> std::string VectorToString(const std::vector<T>& v);
// convert string to vector
template<typename T> std::vector<T> StringToVector(char *cs);
template<typename T> std::vector<T> StringToVector(const std::string& s);
} // namespace mujoco::user
// strip path from filename
std::string mjuu_strippath(std::string filename);
// strip extension from filename
std::string mjuu_stripext(std::string filename);
// get the extension of a filename
std::string mjuu_getext(std::string_view filename);
// check if path is absolute
bool mjuu_isabspath(std::string path);
// assemble file paths
std::string mjuu_combinePaths(const std::string& path1, const std::string& path2);
std::string mjuu_combinePaths(const std::string& path1, const std::string& path2,
const std::string& path3);
// return type from content_type format {type}/{subtype}[;{parameter}={value}]
std::optional<std::string_view> mjuu_parseContentTypeAttrType(std::string_view text);
// return subtype from content_type format {type}/{subtype}[;{parameter}={value}]
std::optional<std::string_view> mjuu_parseContentTypeAttrSubtype(std::string_view text);
// convert filename extension to content type; return empty string if not found
std::string mjuu_extToContentType(std::string_view filename);
// get the length of the dirname portion of a given path
int mjuu_dirnamelen(const char* path);
#endif // MUJOCO_SRC_USER_USER_UTIL_H_