| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | |
| | |
| | |
| | |
| | |
| |
|
| | #ifndef TINY_OBJ_LOADER_H_ |
| | #define TINY_OBJ_LOADER_H_ |
| |
|
| | #include <map> |
| | #include <string> |
| | #include <vector> |
| |
|
| | namespace tinyobj { |
| |
|
| | |
| | #if __cplusplus > 199711L |
| | #define TINYOBJ_OVERRIDE override |
| | #else |
| | #define TINYOBJ_OVERRIDE |
| | #endif |
| |
|
| | #ifdef __clang__ |
| | #pragma clang diagnostic push |
| | #if __has_warning("-Wzero-as-null-pointer-constant") |
| | #pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" |
| | #endif |
| |
|
| | #pragma clang diagnostic ignored "-Wpadded" |
| |
|
| | #endif |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | #ifdef TINYOBJLOADER_USE_DOUBLE |
| | |
| | typedef double real_t; |
| | #else |
| | |
| | typedef float real_t; |
| | #endif |
| |
|
| | typedef enum { |
| | TEXTURE_TYPE_NONE, |
| | TEXTURE_TYPE_SPHERE, |
| | TEXTURE_TYPE_CUBE_TOP, |
| | TEXTURE_TYPE_CUBE_BOTTOM, |
| | TEXTURE_TYPE_CUBE_FRONT, |
| | TEXTURE_TYPE_CUBE_BACK, |
| | TEXTURE_TYPE_CUBE_LEFT, |
| | TEXTURE_TYPE_CUBE_RIGHT |
| | } texture_type_t; |
| |
|
| | struct texture_option_t { |
| | texture_type_t type; |
| | real_t sharpness; |
| | real_t brightness; |
| | real_t contrast; |
| | real_t origin_offset[3]; |
| | real_t scale[3]; |
| | real_t turbulence[3]; |
| | int texture_resolution; |
| | |
| | bool clamp; |
| | char imfchan; |
| | bool blendu; |
| | bool blendv; |
| | real_t bump_multiplier; |
| |
|
| | |
| | std::string colorspace; |
| | |
| | }; |
| |
|
| | struct material_t { |
| | std::string name; |
| |
|
| | real_t ambient[3]; |
| | real_t diffuse[3]; |
| | real_t specular[3]; |
| | real_t transmittance[3]; |
| | real_t emission[3]; |
| | real_t shininess; |
| | real_t ior; |
| | real_t dissolve; |
| | |
| | int illum; |
| |
|
| | int dummy; |
| |
|
| | std::string ambient_texname; |
| | std::string diffuse_texname; |
| | std::string specular_texname; |
| | std::string specular_highlight_texname; |
| | std::string bump_texname; |
| | std::string displacement_texname; |
| | std::string alpha_texname; |
| | std::string reflection_texname; |
| |
|
| | texture_option_t ambient_texopt; |
| | texture_option_t diffuse_texopt; |
| | texture_option_t specular_texopt; |
| | texture_option_t specular_highlight_texopt; |
| | texture_option_t bump_texopt; |
| | texture_option_t displacement_texopt; |
| | texture_option_t alpha_texopt; |
| | texture_option_t reflection_texopt; |
| |
|
| | |
| | |
| | real_t roughness; |
| | real_t metallic; |
| | real_t sheen; |
| | real_t clearcoat_thickness; |
| | real_t clearcoat_roughness; |
| | real_t anisotropy; |
| | real_t anisotropy_rotation; |
| | real_t pad0; |
| | std::string roughness_texname; |
| | std::string metallic_texname; |
| | std::string sheen_texname; |
| | std::string emissive_texname; |
| | std::string normal_texname; |
| |
|
| | texture_option_t roughness_texopt; |
| | texture_option_t metallic_texopt; |
| | texture_option_t sheen_texopt; |
| | texture_option_t emissive_texopt; |
| | texture_option_t normal_texopt; |
| |
|
| | int pad2; |
| |
|
| | std::map<std::string, std::string> unknown_parameter; |
| |
|
| | #ifdef TINY_OBJ_LOADER_PYTHON_BINDING |
| | |
| | std::array<double, 3> GetDiffuse() { |
| | std::array<double, 3> values; |
| | values[0] = double(diffuse[0]); |
| | values[1] = double(diffuse[1]); |
| | values[2] = double(diffuse[2]); |
| |
|
| | return values; |
| | } |
| |
|
| | std::array<double, 3> GetSpecular() { |
| | std::array<double, 3> values; |
| | values[0] = double(specular[0]); |
| | values[1] = double(specular[1]); |
| | values[2] = double(specular[2]); |
| |
|
| | return values; |
| | } |
| |
|
| | std::array<double, 3> GetTransmittance() { |
| | std::array<double, 3> values; |
| | values[0] = double(transmittance[0]); |
| | values[1] = double(transmittance[1]); |
| | values[2] = double(transmittance[2]); |
| |
|
| | return values; |
| | } |
| |
|
| | std::array<double, 3> GetEmission() { |
| | std::array<double, 3> values; |
| | values[0] = double(emission[0]); |
| | values[1] = double(emission[1]); |
| | values[2] = double(emission[2]); |
| |
|
| | return values; |
| | } |
| |
|
| | std::array<double, 3> GetAmbient() { |
| | std::array<double, 3> values; |
| | values[0] = double(ambient[0]); |
| | values[1] = double(ambient[1]); |
| | values[2] = double(ambient[2]); |
| |
|
| | return values; |
| | } |
| |
|
| | void SetDiffuse(std::array<double, 3> &a) { |
| | diffuse[0] = real_t(a[0]); |
| | diffuse[1] = real_t(a[1]); |
| | diffuse[2] = real_t(a[2]); |
| | } |
| |
|
| | void SetAmbient(std::array<double, 3> &a) { |
| | ambient[0] = real_t(a[0]); |
| | ambient[1] = real_t(a[1]); |
| | ambient[2] = real_t(a[2]); |
| | } |
| |
|
| | void SetSpecular(std::array<double, 3> &a) { |
| | specular[0] = real_t(a[0]); |
| | specular[1] = real_t(a[1]); |
| | specular[2] = real_t(a[2]); |
| | } |
| |
|
| | void SetTransmittance(std::array<double, 3> &a) { |
| | transmittance[0] = real_t(a[0]); |
| | transmittance[1] = real_t(a[1]); |
| | transmittance[2] = real_t(a[2]); |
| | } |
| |
|
| | std::string GetCustomParameter(const std::string &key) { |
| | std::map<std::string, std::string>::const_iterator it = |
| | unknown_parameter.find(key); |
| |
|
| | if (it != unknown_parameter.end()) { |
| | return it->second; |
| | } |
| | return std::string(); |
| | } |
| |
|
| | #endif |
| | }; |
| |
|
| | struct tag_t { |
| | std::string name; |
| |
|
| | std::vector<int> intValues; |
| | std::vector<real_t> floatValues; |
| | std::vector<std::string> stringValues; |
| | }; |
| |
|
| | struct joint_and_weight_t { |
| | int joint_id; |
| | real_t weight; |
| | }; |
| |
|
| | struct skin_weight_t { |
| | int vertex_id; |
| | |
| | |
| | std::vector<joint_and_weight_t> weightValues; |
| | }; |
| |
|
| | |
| | |
| | struct index_t { |
| | int vertex_index; |
| | int normal_index; |
| | int texcoord_index; |
| | }; |
| |
|
| | struct mesh_t { |
| | std::vector<index_t> indices; |
| | std::vector<unsigned char> |
| | num_face_vertices; |
| | |
| | |
| | std::vector<int> material_ids; |
| | std::vector<unsigned int> smoothing_group_ids; |
| | |
| | |
| | std::vector<tag_t> tags; |
| | }; |
| |
|
| | |
| | |
| | |
| |
|
| | struct lines_t { |
| | |
| | std::vector<index_t> indices; |
| | std::vector<int> num_line_vertices; |
| | }; |
| |
|
| | struct points_t { |
| | std::vector<index_t> indices; |
| | }; |
| |
|
| | struct shape_t { |
| | std::string name; |
| | mesh_t mesh; |
| | lines_t lines; |
| | points_t points; |
| | }; |
| |
|
| | |
| | struct attrib_t { |
| | std::vector<real_t> vertices; |
| |
|
| | |
| | std::vector<real_t> vertex_weights; |
| | std::vector<real_t> normals; |
| | std::vector<real_t> texcoords; |
| |
|
| | |
| | |
| | std::vector<real_t> texcoord_ws; |
| | std::vector<real_t> colors; |
| |
|
| | |
| | |
| | |
| |
|
| | |
| | |
| | |
| | |
| | std::vector<skin_weight_t> skin_weights; |
| |
|
| | attrib_t() {} |
| |
|
| | |
| | |
| | |
| | const std::vector<real_t> &GetVertices() const { return vertices; } |
| |
|
| | const std::vector<real_t> &GetVertexWeights() const { return vertex_weights; } |
| | }; |
| |
|
| | struct callback_t { |
| | |
| | void (*vertex_cb)(void *user_data, real_t x, real_t y, real_t z, real_t w); |
| | void (*normal_cb)(void *user_data, real_t x, real_t y, real_t z); |
| |
|
| | |
| | |
| | void (*texcoord_cb)(void *user_data, real_t x, real_t y, real_t z); |
| |
|
| | |
| | |
| | |
| | void (*index_cb)(void *user_data, index_t *indices, int num_indices); |
| | |
| | |
| | |
| | void (*usemtl_cb)(void *user_data, const char *name, int material_id); |
| | |
| | void (*mtllib_cb)(void *user_data, const material_t *materials, |
| | int num_materials); |
| | |
| | void (*group_cb)(void *user_data, const char **names, int num_names); |
| | void (*object_cb)(void *user_data, const char *name); |
| |
|
| | callback_t() |
| | : vertex_cb(NULL), |
| | normal_cb(NULL), |
| | texcoord_cb(NULL), |
| | index_cb(NULL), |
| | usemtl_cb(NULL), |
| | mtllib_cb(NULL), |
| | group_cb(NULL), |
| | object_cb(NULL) {} |
| | }; |
| |
|
| | class MaterialReader { |
| | public: |
| | MaterialReader() {} |
| | virtual ~MaterialReader(); |
| |
|
| | virtual bool operator()(const std::string &matId, |
| | std::vector<material_t> *materials, |
| | std::map<std::string, int> *matMap, std::string *warn, |
| | std::string *err) = 0; |
| | }; |
| |
|
| | |
| | |
| | |
| | class MaterialFileReader : public MaterialReader { |
| | public: |
| | |
| | explicit MaterialFileReader(const std::string &mtl_basedir) |
| | : m_mtlBaseDir(mtl_basedir) {} |
| | virtual ~MaterialFileReader() TINYOBJ_OVERRIDE {} |
| | virtual bool operator()(const std::string &matId, |
| | std::vector<material_t> *materials, |
| | std::map<std::string, int> *matMap, std::string *warn, |
| | std::string *err) TINYOBJ_OVERRIDE; |
| |
|
| | private: |
| | std::string m_mtlBaseDir; |
| | }; |
| |
|
| | |
| | |
| | |
| | class MaterialStreamReader : public MaterialReader { |
| | public: |
| | explicit MaterialStreamReader(std::istream &inStream) |
| | : m_inStream(inStream) {} |
| | virtual ~MaterialStreamReader() TINYOBJ_OVERRIDE {} |
| | virtual bool operator()(const std::string &matId, |
| | std::vector<material_t> *materials, |
| | std::map<std::string, int> *matMap, std::string *warn, |
| | std::string *err) TINYOBJ_OVERRIDE; |
| |
|
| | private: |
| | std::istream &m_inStream; |
| | }; |
| |
|
| | |
| | struct ObjReaderConfig { |
| | bool triangulate; |
| |
|
| | |
| | |
| | |
| | std::string triangulation_method; |
| |
|
| | |
| | |
| | |
| | |
| | bool vertex_color; |
| |
|
| | |
| | |
| | |
| | |
| | |
| | std::string mtl_search_path; |
| |
|
| | ObjReaderConfig() |
| | : triangulate(true), triangulation_method("simple"), vertex_color(true) {} |
| | }; |
| |
|
| | |
| | |
| | |
| | class ObjReader { |
| | public: |
| | ObjReader() : valid_(false) {} |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | bool ParseFromFile(const std::string &filename, |
| | const ObjReaderConfig &config = ObjReaderConfig()); |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | bool ParseFromString(const std::string &obj_text, const std::string &mtl_text, |
| | const ObjReaderConfig &config = ObjReaderConfig()); |
| |
|
| | |
| | |
| | |
| | bool Valid() const { return valid_; } |
| |
|
| | const attrib_t &GetAttrib() const { return attrib_; } |
| |
|
| | const std::vector<shape_t> &GetShapes() const { return shapes_; } |
| |
|
| | const std::vector<material_t> &GetMaterials() const { return materials_; } |
| |
|
| | |
| | |
| | |
| | const std::string &Warning() const { return warning_; } |
| |
|
| | |
| | |
| | |
| | const std::string &Error() const { return error_; } |
| |
|
| | private: |
| | bool valid_; |
| |
|
| | attrib_t attrib_; |
| | std::vector<shape_t> shapes_; |
| | std::vector<material_t> materials_; |
| |
|
| | std::string warning_; |
| | std::string error_; |
| | }; |
| |
|
| | |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | bool LoadObj(attrib_t *attrib, std::vector<shape_t> *shapes, |
| | std::vector<material_t> *materials, std::string *warn, |
| | std::string *err, const char *filename, |
| | const char *mtl_basedir = NULL, bool triangulate = true, |
| | bool default_vcols_fallback = true); |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | bool LoadObjWithCallback(std::istream &inStream, const callback_t &callback, |
| | void *user_data = NULL, |
| | MaterialReader *readMatFn = NULL, |
| | std::string *warn = NULL, std::string *err = NULL); |
| |
|
| | |
| | |
| | |
| | |
| | bool LoadObj(attrib_t *attrib, std::vector<shape_t> *shapes, |
| | std::vector<material_t> *materials, std::string *warn, |
| | std::string *err, std::istream *inStream, |
| | MaterialReader *readMatFn = NULL, bool triangulate = true, |
| | bool default_vcols_fallback = true); |
| |
|
| | |
| | void LoadMtl(std::map<std::string, int> *material_map, |
| | std::vector<material_t> *materials, std::istream *inStream, |
| | std::string *warning, std::string *err); |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | bool ParseTextureNameAndOption(std::string *texname, texture_option_t *texopt, |
| | const char *linebuf); |
| |
|
| | |
| |
|
| | } |
| |
|
| | #endif |
| |
|
| | #ifdef TINYOBJLOADER_IMPLEMENTATION |
| | #include <cassert> |
| | #include <cctype> |
| | #include <cmath> |
| | #include <cstddef> |
| | #include <cstdlib> |
| | #include <cstring> |
| | #include <fstream> |
| | #include <limits> |
| | #include <set> |
| | #include <sstream> |
| | #include <utility> |
| |
|
| | #ifdef TINYOBJLOADER_USE_MAPBOX_EARCUT |
| |
|
| | #ifdef TINYOBJLOADER_DONOT_INCLUDE_MAPBOX_EARCUT |
| | |
| | #else |
| |
|
| | #ifdef __clang__ |
| | #pragma clang diagnostic push |
| | #pragma clang diagnostic ignored "-Weverything" |
| | #endif |
| |
|
| | #include <array> |
| | #include "mapbox/earcut.hpp" |
| |
|
| | #ifdef __clang__ |
| | #pragma clang diagnostic pop |
| | #endif |
| |
|
| | #endif |
| |
|
| | #endif |
| |
|
| | namespace tinyobj { |
| |
|
| | MaterialReader::~MaterialReader() {} |
| |
|
| | struct vertex_index_t { |
| | int v_idx, vt_idx, vn_idx; |
| | vertex_index_t() : v_idx(-1), vt_idx(-1), vn_idx(-1) {} |
| | explicit vertex_index_t(int idx) : v_idx(idx), vt_idx(idx), vn_idx(idx) {} |
| | vertex_index_t(int vidx, int vtidx, int vnidx) |
| | : v_idx(vidx), vt_idx(vtidx), vn_idx(vnidx) {} |
| | }; |
| |
|
| | |
| | |
| | struct face_t { |
| | unsigned int |
| | smoothing_group_id; |
| | int pad_; |
| | std::vector<vertex_index_t> vertex_indices; |
| |
|
| | face_t() : smoothing_group_id(0), pad_(0) {} |
| | }; |
| |
|
| | |
| | struct __line_t { |
| | |
| | |
| | |
| | std::vector<vertex_index_t> vertex_indices; |
| | }; |
| |
|
| | |
| | struct __points_t { |
| | |
| | |
| | |
| | std::vector<vertex_index_t> vertex_indices; |
| | }; |
| |
|
| | struct tag_sizes { |
| | tag_sizes() : num_ints(0), num_reals(0), num_strings(0) {} |
| | int num_ints; |
| | int num_reals; |
| | int num_strings; |
| | }; |
| |
|
| | struct obj_shape { |
| | std::vector<real_t> v; |
| | std::vector<real_t> vn; |
| | std::vector<real_t> vt; |
| | }; |
| |
|
| | |
| | |
| | struct PrimGroup { |
| | std::vector<face_t> faceGroup; |
| | std::vector<__line_t> lineGroup; |
| | std::vector<__points_t> pointsGroup; |
| |
|
| | void clear() { |
| | faceGroup.clear(); |
| | lineGroup.clear(); |
| | pointsGroup.clear(); |
| | } |
| |
|
| | bool IsEmpty() const { |
| | return faceGroup.empty() && lineGroup.empty() && pointsGroup.empty(); |
| | } |
| |
|
| | |
| | }; |
| |
|
| | |
| | |
| | static std::istream &safeGetline(std::istream &is, std::string &t) { |
| | t.clear(); |
| |
|
| | |
| | |
| | |
| | |
| | |
| |
|
| | std::istream::sentry se(is, true); |
| | std::streambuf *sb = is.rdbuf(); |
| |
|
| | if (se) { |
| | for (;;) { |
| | int c = sb->sbumpc(); |
| | switch (c) { |
| | case '\n': |
| | return is; |
| | case '\r': |
| | if (sb->sgetc() == '\n') sb->sbumpc(); |
| | return is; |
| | case EOF: |
| | |
| | if (t.empty()) is.setstate(std::ios::eofbit); |
| | return is; |
| | default: |
| | t += static_cast<char>(c); |
| | } |
| | } |
| | } |
| |
|
| | return is; |
| | } |
| |
|
| | #define IS_SPACE(x) (((x) == ' ') || ((x) == '\t')) |
| | #define IS_DIGIT(x) \ |
| | (static_cast<unsigned int>((x) - '0') < static_cast<unsigned int>(10)) |
| | #define IS_NEW_LINE(x) (((x) == '\r') || ((x) == '\n') || ((x) == '\0')) |
| |
|
| | |
| | static inline bool fixIndex(int idx, int n, int *ret) { |
| | if (!ret) { |
| | return false; |
| | } |
| |
|
| | if (idx > 0) { |
| | (*ret) = idx - 1; |
| | return true; |
| | } |
| |
|
| | if (idx == 0) { |
| | |
| | return false; |
| | } |
| |
|
| | if (idx < 0) { |
| | (*ret) = n + idx; |
| | return true; |
| | } |
| |
|
| | return false; |
| | } |
| |
|
| | static inline std::string parseString(const char **token) { |
| | std::string s; |
| | (*token) += strspn((*token), " \t"); |
| | size_t e = strcspn((*token), " \t\r"); |
| | s = std::string((*token), &(*token)[e]); |
| | (*token) += e; |
| | return s; |
| | } |
| |
|
| | static inline int parseInt(const char **token) { |
| | (*token) += strspn((*token), " \t"); |
| | int i = atoi((*token)); |
| | (*token) += strcspn((*token), " \t\r"); |
| | return i; |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | static bool tryParseDouble(const char *s, const char *s_end, double *result) { |
| | if (s >= s_end) { |
| | return false; |
| | } |
| |
|
| | double mantissa = 0.0; |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | int exponent = 0; |
| |
|
| | |
| | |
| | char sign = '+'; |
| | char exp_sign = '+'; |
| | char const *curr = s; |
| |
|
| | |
| | int read = 0; |
| | |
| | bool end_not_reached = false; |
| | bool leading_decimal_dots = false; |
| |
|
| | |
| | |
| | |
| |
|
| | |
| | if (*curr == '+' || *curr == '-') { |
| | sign = *curr; |
| | curr++; |
| | if ((curr != s_end) && (*curr == '.')) { |
| | |
| | leading_decimal_dots = true; |
| | } |
| | } else if (IS_DIGIT(*curr)) { |
| | } else if (*curr == '.') { |
| | |
| | leading_decimal_dots = true; |
| | } else { |
| | goto fail; |
| | } |
| |
|
| | |
| | end_not_reached = (curr != s_end); |
| | if (!leading_decimal_dots) { |
| | while (end_not_reached && IS_DIGIT(*curr)) { |
| | mantissa *= 10; |
| | mantissa += static_cast<int>(*curr - 0x30); |
| | curr++; |
| | read++; |
| | end_not_reached = (curr != s_end); |
| | } |
| |
|
| | |
| | if (read == 0) goto fail; |
| | } |
| |
|
| | |
| | if (!end_not_reached) goto assemble; |
| |
|
| | |
| | if (*curr == '.') { |
| | curr++; |
| | read = 1; |
| | end_not_reached = (curr != s_end); |
| | while (end_not_reached && IS_DIGIT(*curr)) { |
| | static const double pow_lut[] = { |
| | 1.0, 0.1, 0.01, 0.001, 0.0001, 0.00001, 0.000001, 0.0000001, |
| | }; |
| | const int lut_entries = sizeof pow_lut / sizeof pow_lut[0]; |
| |
|
| | |
| | mantissa += static_cast<int>(*curr - 0x30) * |
| | (read < lut_entries ? pow_lut[read] : std::pow(10.0, -read)); |
| | read++; |
| | curr++; |
| | end_not_reached = (curr != s_end); |
| | } |
| | } else if (*curr == 'e' || *curr == 'E') { |
| | } else { |
| | goto assemble; |
| | } |
| |
|
| | if (!end_not_reached) goto assemble; |
| |
|
| | |
| | if (*curr == 'e' || *curr == 'E') { |
| | curr++; |
| | |
| | end_not_reached = (curr != s_end); |
| | if (end_not_reached && (*curr == '+' || *curr == '-')) { |
| | exp_sign = *curr; |
| | curr++; |
| | } else if (IS_DIGIT(*curr)) { |
| | } else { |
| | |
| | goto fail; |
| | } |
| |
|
| | read = 0; |
| | end_not_reached = (curr != s_end); |
| | while (end_not_reached && IS_DIGIT(*curr)) { |
| | |
| | |
| | if (exponent > (2147483647/10)) { |
| | |
| | goto fail; |
| | } |
| | exponent *= 10; |
| | exponent += static_cast<int>(*curr - 0x30); |
| | curr++; |
| | read++; |
| | end_not_reached = (curr != s_end); |
| | } |
| | exponent *= (exp_sign == '+' ? 1 : -1); |
| | if (read == 0) goto fail; |
| | } |
| |
|
| | assemble: |
| | *result = (sign == '+' ? 1 : -1) * |
| | (exponent ? std::ldexp(mantissa * std::pow(5.0, exponent), exponent) |
| | : mantissa); |
| | return true; |
| | fail: |
| | return false; |
| | } |
| |
|
| | static inline real_t parseReal(const char **token, double default_value = 0.0) { |
| | (*token) += strspn((*token), " \t"); |
| | const char *end = (*token) + strcspn((*token), " \t\r"); |
| | double val = default_value; |
| | tryParseDouble((*token), end, &val); |
| | real_t f = static_cast<real_t>(val); |
| | (*token) = end; |
| | return f; |
| | } |
| |
|
| | static inline bool parseReal(const char **token, real_t *out) { |
| | (*token) += strspn((*token), " \t"); |
| | const char *end = (*token) + strcspn((*token), " \t\r"); |
| | double val; |
| | bool ret = tryParseDouble((*token), end, &val); |
| | if (ret) { |
| | real_t f = static_cast<real_t>(val); |
| | (*out) = f; |
| | } |
| | (*token) = end; |
| | return ret; |
| | } |
| |
|
| | static inline void parseReal2(real_t *x, real_t *y, const char **token, |
| | const double default_x = 0.0, |
| | const double default_y = 0.0) { |
| | (*x) = parseReal(token, default_x); |
| | (*y) = parseReal(token, default_y); |
| | } |
| |
|
| | static inline void parseReal3(real_t *x, real_t *y, real_t *z, |
| | const char **token, const double default_x = 0.0, |
| | const double default_y = 0.0, |
| | const double default_z = 0.0) { |
| | (*x) = parseReal(token, default_x); |
| | (*y) = parseReal(token, default_y); |
| | (*z) = parseReal(token, default_z); |
| | } |
| |
|
| | static inline void parseV(real_t *x, real_t *y, real_t *z, real_t *w, |
| | const char **token, const double default_x = 0.0, |
| | const double default_y = 0.0, |
| | const double default_z = 0.0, |
| | const double default_w = 1.0) { |
| | (*x) = parseReal(token, default_x); |
| | (*y) = parseReal(token, default_y); |
| | (*z) = parseReal(token, default_z); |
| | (*w) = parseReal(token, default_w); |
| | } |
| |
|
| | |
| | static inline bool parseVertexWithColor(real_t *x, real_t *y, real_t *z, |
| | real_t *r, real_t *g, real_t *b, |
| | const char **token, |
| | const double default_x = 0.0, |
| | const double default_y = 0.0, |
| | const double default_z = 0.0) { |
| | (*x) = parseReal(token, default_x); |
| | (*y) = parseReal(token, default_y); |
| | (*z) = parseReal(token, default_z); |
| |
|
| | const bool found_color = |
| | parseReal(token, r) && parseReal(token, g) && parseReal(token, b); |
| |
|
| | if (!found_color) { |
| | (*r) = (*g) = (*b) = 1.0; |
| | } |
| |
|
| | return found_color; |
| | } |
| |
|
| | static inline bool parseOnOff(const char **token, bool default_value = true) { |
| | (*token) += strspn((*token), " \t"); |
| | const char *end = (*token) + strcspn((*token), " \t\r"); |
| |
|
| | bool ret = default_value; |
| | if ((0 == strncmp((*token), "on", 2))) { |
| | ret = true; |
| | } else if ((0 == strncmp((*token), "off", 3))) { |
| | ret = false; |
| | } |
| |
|
| | (*token) = end; |
| | return ret; |
| | } |
| |
|
| | static inline texture_type_t parseTextureType( |
| | const char **token, texture_type_t default_value = TEXTURE_TYPE_NONE) { |
| | (*token) += strspn((*token), " \t"); |
| | const char *end = (*token) + strcspn((*token), " \t\r"); |
| | texture_type_t ty = default_value; |
| |
|
| | if ((0 == strncmp((*token), "cube_top", strlen("cube_top")))) { |
| | ty = TEXTURE_TYPE_CUBE_TOP; |
| | } else if ((0 == strncmp((*token), "cube_bottom", strlen("cube_bottom")))) { |
| | ty = TEXTURE_TYPE_CUBE_BOTTOM; |
| | } else if ((0 == strncmp((*token), "cube_left", strlen("cube_left")))) { |
| | ty = TEXTURE_TYPE_CUBE_LEFT; |
| | } else if ((0 == strncmp((*token), "cube_right", strlen("cube_right")))) { |
| | ty = TEXTURE_TYPE_CUBE_RIGHT; |
| | } else if ((0 == strncmp((*token), "cube_front", strlen("cube_front")))) { |
| | ty = TEXTURE_TYPE_CUBE_FRONT; |
| | } else if ((0 == strncmp((*token), "cube_back", strlen("cube_back")))) { |
| | ty = TEXTURE_TYPE_CUBE_BACK; |
| | } else if ((0 == strncmp((*token), "sphere", strlen("sphere")))) { |
| | ty = TEXTURE_TYPE_SPHERE; |
| | } |
| |
|
| | (*token) = end; |
| | return ty; |
| | } |
| |
|
| | static tag_sizes parseTagTriple(const char **token) { |
| | tag_sizes ts; |
| |
|
| | (*token) += strspn((*token), " \t"); |
| | ts.num_ints = atoi((*token)); |
| | (*token) += strcspn((*token), "/ \t\r"); |
| | if ((*token)[0] != '/') { |
| | return ts; |
| | } |
| |
|
| | (*token)++; |
| |
|
| | (*token) += strspn((*token), " \t"); |
| | ts.num_reals = atoi((*token)); |
| | (*token) += strcspn((*token), "/ \t\r"); |
| | if ((*token)[0] != '/') { |
| | return ts; |
| | } |
| | (*token)++; |
| |
|
| | ts.num_strings = parseInt(token); |
| |
|
| | return ts; |
| | } |
| |
|
| | |
| | static bool parseTriple(const char **token, int vsize, int vnsize, int vtsize, |
| | vertex_index_t *ret) { |
| | if (!ret) { |
| | return false; |
| | } |
| |
|
| | vertex_index_t vi(-1); |
| |
|
| | if (!fixIndex(atoi((*token)), vsize, &(vi.v_idx))) { |
| | return false; |
| | } |
| |
|
| | (*token) += strcspn((*token), "/ \t\r"); |
| | if ((*token)[0] != '/') { |
| | (*ret) = vi; |
| | return true; |
| | } |
| | (*token)++; |
| |
|
| | |
| | if ((*token)[0] == '/') { |
| | (*token)++; |
| | if (!fixIndex(atoi((*token)), vnsize, &(vi.vn_idx))) { |
| | return false; |
| | } |
| | (*token) += strcspn((*token), "/ \t\r"); |
| | (*ret) = vi; |
| | return true; |
| | } |
| |
|
| | |
| | if (!fixIndex(atoi((*token)), vtsize, &(vi.vt_idx))) { |
| | return false; |
| | } |
| |
|
| | (*token) += strcspn((*token), "/ \t\r"); |
| | if ((*token)[0] != '/') { |
| | (*ret) = vi; |
| | return true; |
| | } |
| |
|
| | |
| | (*token)++; |
| | if (!fixIndex(atoi((*token)), vnsize, &(vi.vn_idx))) { |
| | return false; |
| | } |
| | (*token) += strcspn((*token), "/ \t\r"); |
| |
|
| | (*ret) = vi; |
| |
|
| | return true; |
| | } |
| |
|
| | |
| | static vertex_index_t parseRawTriple(const char **token) { |
| | vertex_index_t vi(static_cast<int>(0)); |
| |
|
| | vi.v_idx = atoi((*token)); |
| | (*token) += strcspn((*token), "/ \t\r"); |
| | if ((*token)[0] != '/') { |
| | return vi; |
| | } |
| | (*token)++; |
| |
|
| | |
| | if ((*token)[0] == '/') { |
| | (*token)++; |
| | vi.vn_idx = atoi((*token)); |
| | (*token) += strcspn((*token), "/ \t\r"); |
| | return vi; |
| | } |
| |
|
| | |
| | vi.vt_idx = atoi((*token)); |
| | (*token) += strcspn((*token), "/ \t\r"); |
| | if ((*token)[0] != '/') { |
| | return vi; |
| | } |
| |
|
| | |
| | (*token)++; |
| | vi.vn_idx = atoi((*token)); |
| | (*token) += strcspn((*token), "/ \t\r"); |
| | return vi; |
| | } |
| |
|
| | bool ParseTextureNameAndOption(std::string *texname, texture_option_t *texopt, |
| | const char *linebuf) { |
| | |
| | bool found_texname = false; |
| | std::string texture_name; |
| |
|
| | const char *token = linebuf; |
| |
|
| | while (!IS_NEW_LINE((*token))) { |
| | token += strspn(token, " \t"); |
| | if ((0 == strncmp(token, "-blendu", 7)) && IS_SPACE((token[7]))) { |
| | token += 8; |
| | texopt->blendu = parseOnOff(&token, true); |
| | } else if ((0 == strncmp(token, "-blendv", 7)) && IS_SPACE((token[7]))) { |
| | token += 8; |
| | texopt->blendv = parseOnOff(&token, true); |
| | } else if ((0 == strncmp(token, "-clamp", 6)) && IS_SPACE((token[6]))) { |
| | token += 7; |
| | texopt->clamp = parseOnOff(&token, true); |
| | } else if ((0 == strncmp(token, "-boost", 6)) && IS_SPACE((token[6]))) { |
| | token += 7; |
| | texopt->sharpness = parseReal(&token, 1.0); |
| | } else if ((0 == strncmp(token, "-bm", 3)) && IS_SPACE((token[3]))) { |
| | token += 4; |
| | texopt->bump_multiplier = parseReal(&token, 1.0); |
| | } else if ((0 == strncmp(token, "-o", 2)) && IS_SPACE((token[2]))) { |
| | token += 3; |
| | parseReal3(&(texopt->origin_offset[0]), &(texopt->origin_offset[1]), |
| | &(texopt->origin_offset[2]), &token); |
| | } else if ((0 == strncmp(token, "-s", 2)) && IS_SPACE((token[2]))) { |
| | token += 3; |
| | parseReal3(&(texopt->scale[0]), &(texopt->scale[1]), &(texopt->scale[2]), |
| | &token, 1.0, 1.0, 1.0); |
| | } else if ((0 == strncmp(token, "-t", 2)) && IS_SPACE((token[2]))) { |
| | token += 3; |
| | parseReal3(&(texopt->turbulence[0]), &(texopt->turbulence[1]), |
| | &(texopt->turbulence[2]), &token); |
| | } else if ((0 == strncmp(token, "-type", 5)) && IS_SPACE((token[5]))) { |
| | token += 5; |
| | texopt->type = parseTextureType((&token), TEXTURE_TYPE_NONE); |
| | } else if ((0 == strncmp(token, "-texres", 7)) && IS_SPACE((token[7]))) { |
| | token += 7; |
| | |
| | texopt->texture_resolution = parseInt(&token); |
| | } else if ((0 == strncmp(token, "-imfchan", 8)) && IS_SPACE((token[8]))) { |
| | token += 9; |
| | token += strspn(token, " \t"); |
| | const char *end = token + strcspn(token, " \t\r"); |
| | if ((end - token) == 1) { |
| | texopt->imfchan = (*token); |
| | } |
| | token = end; |
| | } else if ((0 == strncmp(token, "-mm", 3)) && IS_SPACE((token[3]))) { |
| | token += 4; |
| | parseReal2(&(texopt->brightness), &(texopt->contrast), &token, 0.0, 1.0); |
| | } else if ((0 == strncmp(token, "-colorspace", 11)) && |
| | IS_SPACE((token[11]))) { |
| | token += 12; |
| | texopt->colorspace = parseString(&token); |
| | } else { |
| | |
| | #if 0 |
| | size_t len = strcspn(token, " \t\r"); |
| | texture_name = std::string(token, token + len); |
| | token += len; |
| |
|
| | token += strspn(token, " \t"); |
| | #else |
| | |
| | |
| | texture_name = std::string(token); |
| | token += texture_name.length(); |
| | #endif |
| |
|
| | found_texname = true; |
| | } |
| | } |
| |
|
| | if (found_texname) { |
| | (*texname) = texture_name; |
| | return true; |
| | } else { |
| | return false; |
| | } |
| | } |
| |
|
| | static void InitTexOpt(texture_option_t *texopt, const bool is_bump) { |
| | if (is_bump) { |
| | texopt->imfchan = 'l'; |
| | } else { |
| | texopt->imfchan = 'm'; |
| | } |
| | texopt->bump_multiplier = static_cast<real_t>(1.0); |
| | texopt->clamp = false; |
| | texopt->blendu = true; |
| | texopt->blendv = true; |
| | texopt->sharpness = static_cast<real_t>(1.0); |
| | texopt->brightness = static_cast<real_t>(0.0); |
| | texopt->contrast = static_cast<real_t>(1.0); |
| | texopt->origin_offset[0] = static_cast<real_t>(0.0); |
| | texopt->origin_offset[1] = static_cast<real_t>(0.0); |
| | texopt->origin_offset[2] = static_cast<real_t>(0.0); |
| | texopt->scale[0] = static_cast<real_t>(1.0); |
| | texopt->scale[1] = static_cast<real_t>(1.0); |
| | texopt->scale[2] = static_cast<real_t>(1.0); |
| | texopt->turbulence[0] = static_cast<real_t>(0.0); |
| | texopt->turbulence[1] = static_cast<real_t>(0.0); |
| | texopt->turbulence[2] = static_cast<real_t>(0.0); |
| | texopt->texture_resolution = -1; |
| | texopt->type = TEXTURE_TYPE_NONE; |
| | } |
| |
|
| | static void InitMaterial(material_t *material) { |
| | InitTexOpt(&material->ambient_texopt, false); |
| | InitTexOpt(&material->diffuse_texopt, false); |
| | InitTexOpt(&material->specular_texopt, false); |
| | InitTexOpt(&material->specular_highlight_texopt, false); |
| | InitTexOpt(&material->bump_texopt, true); |
| | InitTexOpt(&material->displacement_texopt, false); |
| | InitTexOpt(&material->alpha_texopt, false); |
| | InitTexOpt(&material->reflection_texopt, false); |
| | InitTexOpt(&material->roughness_texopt, false); |
| | InitTexOpt(&material->metallic_texopt, false); |
| | InitTexOpt(&material->sheen_texopt, false); |
| | InitTexOpt(&material->emissive_texopt, false); |
| | InitTexOpt(&material->normal_texopt, |
| | false); |
| | material->name = ""; |
| | material->ambient_texname = ""; |
| | material->diffuse_texname = ""; |
| | material->specular_texname = ""; |
| | material->specular_highlight_texname = ""; |
| | material->bump_texname = ""; |
| | material->displacement_texname = ""; |
| | material->reflection_texname = ""; |
| | material->alpha_texname = ""; |
| | for (int i = 0; i < 3; i++) { |
| | material->ambient[i] = static_cast<real_t>(0.0); |
| | material->diffuse[i] = static_cast<real_t>(0.0); |
| | material->specular[i] = static_cast<real_t>(0.0); |
| | material->transmittance[i] = static_cast<real_t>(0.0); |
| | material->emission[i] = static_cast<real_t>(0.0); |
| | } |
| | material->illum = 0; |
| | material->dissolve = static_cast<real_t>(1.0); |
| | material->shininess = static_cast<real_t>(1.0); |
| | material->ior = static_cast<real_t>(1.0); |
| |
|
| | material->roughness = static_cast<real_t>(0.0); |
| | material->metallic = static_cast<real_t>(0.0); |
| | material->sheen = static_cast<real_t>(0.0); |
| | material->clearcoat_thickness = static_cast<real_t>(0.0); |
| | material->clearcoat_roughness = static_cast<real_t>(0.0); |
| | material->anisotropy_rotation = static_cast<real_t>(0.0); |
| | material->anisotropy = static_cast<real_t>(0.0); |
| | material->roughness_texname = ""; |
| | material->metallic_texname = ""; |
| | material->sheen_texname = ""; |
| | material->emissive_texname = ""; |
| | material->normal_texname = ""; |
| |
|
| | material->unknown_parameter.clear(); |
| | } |
| |
|
| | |
| | template <typename T> |
| | static int pnpoly(int nvert, T *vertx, T *verty, T testx, T testy) { |
| | int i, j, c = 0; |
| | for (i = 0, j = nvert - 1; i < nvert; j = i++) { |
| | if (((verty[i] > testy) != (verty[j] > testy)) && |
| | (testx < |
| | (vertx[j] - vertx[i]) * (testy - verty[i]) / (verty[j] - verty[i]) + |
| | vertx[i])) |
| | c = !c; |
| | } |
| | return c; |
| | } |
| |
|
| | |
| | static bool exportGroupsToShape(shape_t *shape, const PrimGroup &prim_group, |
| | const std::vector<tag_t> &tags, |
| | const int material_id, const std::string &name, |
| | bool triangulate, const std::vector<real_t> &v, |
| | std::string *warn) { |
| | if (prim_group.IsEmpty()) { |
| | return false; |
| | } |
| |
|
| | shape->name = name; |
| |
|
| | |
| | if (!prim_group.faceGroup.empty()) { |
| | |
| | for (size_t i = 0; i < prim_group.faceGroup.size(); i++) { |
| | const face_t &face = prim_group.faceGroup[i]; |
| |
|
| | size_t npolys = face.vertex_indices.size(); |
| |
|
| | if (npolys < 3) { |
| | |
| | if (warn) { |
| | (*warn) += "Degenerated face found\n."; |
| | } |
| | continue; |
| | } |
| |
|
| | if (triangulate) { |
| | if (npolys == 4) { |
| | vertex_index_t i0 = face.vertex_indices[0]; |
| | vertex_index_t i1 = face.vertex_indices[1]; |
| | vertex_index_t i2 = face.vertex_indices[2]; |
| | vertex_index_t i3 = face.vertex_indices[3]; |
| |
|
| | size_t vi0 = size_t(i0.v_idx); |
| | size_t vi1 = size_t(i1.v_idx); |
| | size_t vi2 = size_t(i2.v_idx); |
| | size_t vi3 = size_t(i3.v_idx); |
| |
|
| | if (((3 * vi0 + 2) >= v.size()) || ((3 * vi1 + 2) >= v.size()) || |
| | ((3 * vi2 + 2) >= v.size()) || ((3 * vi3 + 2) >= v.size())) { |
| | |
| | |
| | if (warn) { |
| | (*warn) += "Face with invalid vertex index found.\n"; |
| | } |
| | continue; |
| | } |
| |
|
| | real_t v0x = v[vi0 * 3 + 0]; |
| | real_t v0y = v[vi0 * 3 + 1]; |
| | real_t v0z = v[vi0 * 3 + 2]; |
| | real_t v1x = v[vi1 * 3 + 0]; |
| | real_t v1y = v[vi1 * 3 + 1]; |
| | real_t v1z = v[vi1 * 3 + 2]; |
| | real_t v2x = v[vi2 * 3 + 0]; |
| | real_t v2y = v[vi2 * 3 + 1]; |
| | real_t v2z = v[vi2 * 3 + 2]; |
| | real_t v3x = v[vi3 * 3 + 0]; |
| | real_t v3y = v[vi3 * 3 + 1]; |
| | real_t v3z = v[vi3 * 3 + 2]; |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | real_t e02x = v2x - v0x; |
| | real_t e02y = v2y - v0y; |
| | real_t e02z = v2z - v0z; |
| | real_t e13x = v3x - v1x; |
| | real_t e13y = v3y - v1y; |
| | real_t e13z = v3z - v1z; |
| |
|
| | real_t sqr02 = e02x * e02x + e02y * e02y + e02z * e02z; |
| | real_t sqr13 = e13x * e13x + e13y * e13y + e13z * e13z; |
| |
|
| | index_t idx0, idx1, idx2, idx3; |
| |
|
| | idx0.vertex_index = i0.v_idx; |
| | idx0.normal_index = i0.vn_idx; |
| | idx0.texcoord_index = i0.vt_idx; |
| | idx1.vertex_index = i1.v_idx; |
| | idx1.normal_index = i1.vn_idx; |
| | idx1.texcoord_index = i1.vt_idx; |
| | idx2.vertex_index = i2.v_idx; |
| | idx2.normal_index = i2.vn_idx; |
| | idx2.texcoord_index = i2.vt_idx; |
| | idx3.vertex_index = i3.v_idx; |
| | idx3.normal_index = i3.vn_idx; |
| | idx3.texcoord_index = i3.vt_idx; |
| |
|
| | if (sqr02 < sqr13) { |
| | |
| | shape->mesh.indices.push_back(idx0); |
| | shape->mesh.indices.push_back(idx1); |
| | shape->mesh.indices.push_back(idx2); |
| |
|
| | shape->mesh.indices.push_back(idx0); |
| | shape->mesh.indices.push_back(idx2); |
| | shape->mesh.indices.push_back(idx3); |
| | } else { |
| | |
| | shape->mesh.indices.push_back(idx0); |
| | shape->mesh.indices.push_back(idx1); |
| | shape->mesh.indices.push_back(idx3); |
| |
|
| | shape->mesh.indices.push_back(idx1); |
| | shape->mesh.indices.push_back(idx2); |
| | shape->mesh.indices.push_back(idx3); |
| | } |
| |
|
| | |
| | shape->mesh.num_face_vertices.push_back(3); |
| | shape->mesh.num_face_vertices.push_back(3); |
| |
|
| | shape->mesh.material_ids.push_back(material_id); |
| | shape->mesh.material_ids.push_back(material_id); |
| |
|
| | shape->mesh.smoothing_group_ids.push_back(face.smoothing_group_id); |
| | shape->mesh.smoothing_group_ids.push_back(face.smoothing_group_id); |
| |
|
| | } else { |
| | vertex_index_t i0 = face.vertex_indices[0]; |
| | vertex_index_t i1(-1); |
| | vertex_index_t i2 = face.vertex_indices[1]; |
| |
|
| | |
| | size_t axes[2] = {1, 2}; |
| | for (size_t k = 0; k < npolys; ++k) { |
| | i0 = face.vertex_indices[(k + 0) % npolys]; |
| | i1 = face.vertex_indices[(k + 1) % npolys]; |
| | i2 = face.vertex_indices[(k + 2) % npolys]; |
| | size_t vi0 = size_t(i0.v_idx); |
| | size_t vi1 = size_t(i1.v_idx); |
| | size_t vi2 = size_t(i2.v_idx); |
| |
|
| | if (((3 * vi0 + 2) >= v.size()) || ((3 * vi1 + 2) >= v.size()) || |
| | ((3 * vi2 + 2) >= v.size())) { |
| | |
| | |
| | continue; |
| | } |
| | real_t v0x = v[vi0 * 3 + 0]; |
| | real_t v0y = v[vi0 * 3 + 1]; |
| | real_t v0z = v[vi0 * 3 + 2]; |
| | real_t v1x = v[vi1 * 3 + 0]; |
| | real_t v1y = v[vi1 * 3 + 1]; |
| | real_t v1z = v[vi1 * 3 + 2]; |
| | real_t v2x = v[vi2 * 3 + 0]; |
| | real_t v2y = v[vi2 * 3 + 1]; |
| | real_t v2z = v[vi2 * 3 + 2]; |
| | real_t e0x = v1x - v0x; |
| | real_t e0y = v1y - v0y; |
| | real_t e0z = v1z - v0z; |
| | real_t e1x = v2x - v1x; |
| | real_t e1y = v2y - v1y; |
| | real_t e1z = v2z - v1z; |
| | real_t cx = std::fabs(e0y * e1z - e0z * e1y); |
| | real_t cy = std::fabs(e0z * e1x - e0x * e1z); |
| | real_t cz = std::fabs(e0x * e1y - e0y * e1x); |
| | const real_t epsilon = std::numeric_limits<real_t>::epsilon(); |
| | |
| | |
| | if (cx > epsilon || cy > epsilon || cz > epsilon) { |
| | |
| | |
| | if (cx > cy && cx > cz) { |
| | |
| | } else { |
| | |
| | axes[0] = 0; |
| | if (cz > cx && cz > cy) { |
| | |
| | axes[1] = 1; |
| | } |
| | } |
| | break; |
| | } |
| | } |
| |
|
| | #ifdef TINYOBJLOADER_USE_MAPBOX_EARCUT |
| | using Point = std::array<real_t, 2>; |
| |
|
| | |
| | |
| | std::vector<std::vector<Point> > polygon; |
| |
|
| | std::vector<Point> polyline; |
| |
|
| | |
| | for (size_t k = 0; k < npolys; k++) { |
| | i0 = face.vertex_indices[k]; |
| | size_t vi0 = size_t(i0.v_idx); |
| |
|
| | assert(((3 * vi0 + 2) < v.size())); |
| |
|
| | real_t v0x = v[vi0 * 3 + axes[0]]; |
| | real_t v0y = v[vi0 * 3 + axes[1]]; |
| |
|
| | polyline.push_back({v0x, v0y}); |
| | } |
| |
|
| | polygon.push_back(polyline); |
| | std::vector<uint32_t> indices = mapbox::earcut<uint32_t>(polygon); |
| | |
| |
|
| | assert(indices.size() % 3 == 0); |
| |
|
| | |
| | for (size_t k = 0; k < indices.size() / 3; k++) { |
| | { |
| | index_t idx0, idx1, idx2; |
| | idx0.vertex_index = face.vertex_indices[indices[3 * k + 0]].v_idx; |
| | idx0.normal_index = |
| | face.vertex_indices[indices[3 * k + 0]].vn_idx; |
| | idx0.texcoord_index = |
| | face.vertex_indices[indices[3 * k + 0]].vt_idx; |
| | idx1.vertex_index = face.vertex_indices[indices[3 * k + 1]].v_idx; |
| | idx1.normal_index = |
| | face.vertex_indices[indices[3 * k + 1]].vn_idx; |
| | idx1.texcoord_index = |
| | face.vertex_indices[indices[3 * k + 1]].vt_idx; |
| | idx2.vertex_index = face.vertex_indices[indices[3 * k + 2]].v_idx; |
| | idx2.normal_index = |
| | face.vertex_indices[indices[3 * k + 2]].vn_idx; |
| | idx2.texcoord_index = |
| | face.vertex_indices[indices[3 * k + 2]].vt_idx; |
| |
|
| | shape->mesh.indices.push_back(idx0); |
| | shape->mesh.indices.push_back(idx1); |
| | shape->mesh.indices.push_back(idx2); |
| |
|
| | shape->mesh.num_face_vertices.push_back(3); |
| | shape->mesh.material_ids.push_back(material_id); |
| | shape->mesh.smoothing_group_ids.push_back( |
| | face.smoothing_group_id); |
| | } |
| | } |
| |
|
| | #else |
| |
|
| |
|
| | face_t remainingFace = face; |
| | size_t guess_vert = 0; |
| | vertex_index_t ind[3]; |
| | real_t vx[3]; |
| | real_t vy[3]; |
| |
|
| | |
| | |
| | size_t remainingIterations = face.vertex_indices.size(); |
| | size_t previousRemainingVertices = |
| | remainingFace.vertex_indices.size(); |
| |
|
| | while (remainingFace.vertex_indices.size() > 3 && |
| | remainingIterations > 0) { |
| | |
| | |
| |
|
| | npolys = remainingFace.vertex_indices.size(); |
| | if (guess_vert >= npolys) { |
| | guess_vert -= npolys; |
| | } |
| |
|
| | if (previousRemainingVertices != npolys) { |
| | |
| | previousRemainingVertices = npolys; |
| | remainingIterations = npolys; |
| | } else { |
| | |
| | |
| | remainingIterations--; |
| | } |
| |
|
| | for (size_t k = 0; k < 3; k++) { |
| | ind[k] = remainingFace.vertex_indices[(guess_vert + k) % npolys]; |
| | size_t vi = size_t(ind[k].v_idx); |
| | if (((vi * 3 + axes[0]) >= v.size()) || |
| | ((vi * 3 + axes[1]) >= v.size())) { |
| | |
| | vx[k] = static_cast<real_t>(0.0); |
| | vy[k] = static_cast<real_t>(0.0); |
| | } else { |
| | vx[k] = v[vi * 3 + axes[0]]; |
| | vy[k] = v[vi * 3 + axes[1]]; |
| | } |
| | } |
| |
|
| | |
| | |
| | |
| | real_t e0x = vx[1] - vx[0]; |
| | real_t e0y = vy[1] - vy[0]; |
| | real_t e1x = vx[2] - vx[1]; |
| | real_t e1y = vy[2] - vy[1]; |
| | real_t cross = e0x * e1y - e0y * e1x; |
| | |
| | |
| | |
| |
|
| | real_t area = (vx[0] * vy[1] - vy[0] * vx[1]) * static_cast<real_t>(0.5); |
| | |
| | |
| | if (cross * area < static_cast<real_t>(0.0)) { |
| | |
| | guess_vert += 1; |
| | |
| | continue; |
| | } |
| |
|
| | |
| | bool overlap = false; |
| | for (size_t otherVert = 3; otherVert < npolys; ++otherVert) { |
| | size_t idx = (guess_vert + otherVert) % npolys; |
| |
|
| | if (idx >= remainingFace.vertex_indices.size()) { |
| | |
| | |
| | continue; |
| | } |
| |
|
| | size_t ovi = size_t(remainingFace.vertex_indices[idx].v_idx); |
| |
|
| | if (((ovi * 3 + axes[0]) >= v.size()) || |
| | ((ovi * 3 + axes[1]) >= v.size())) { |
| | |
| | |
| | continue; |
| | } |
| | real_t tx = v[ovi * 3 + axes[0]]; |
| | real_t ty = v[ovi * 3 + axes[1]]; |
| | if (pnpoly(3, vx, vy, tx, ty)) { |
| | |
| | overlap = true; |
| | break; |
| | } |
| | } |
| |
|
| | if (overlap) { |
| | |
| | guess_vert += 1; |
| | continue; |
| | } |
| |
|
| | |
| | { |
| | index_t idx0, idx1, idx2; |
| | idx0.vertex_index = ind[0].v_idx; |
| | idx0.normal_index = ind[0].vn_idx; |
| | idx0.texcoord_index = ind[0].vt_idx; |
| | idx1.vertex_index = ind[1].v_idx; |
| | idx1.normal_index = ind[1].vn_idx; |
| | idx1.texcoord_index = ind[1].vt_idx; |
| | idx2.vertex_index = ind[2].v_idx; |
| | idx2.normal_index = ind[2].vn_idx; |
| | idx2.texcoord_index = ind[2].vt_idx; |
| |
|
| | shape->mesh.indices.push_back(idx0); |
| | shape->mesh.indices.push_back(idx1); |
| | shape->mesh.indices.push_back(idx2); |
| |
|
| | shape->mesh.num_face_vertices.push_back(3); |
| | shape->mesh.material_ids.push_back(material_id); |
| | shape->mesh.smoothing_group_ids.push_back( |
| | face.smoothing_group_id); |
| | } |
| |
|
| | |
| | size_t removed_vert_index = (guess_vert + 1) % npolys; |
| | while (removed_vert_index + 1 < npolys) { |
| | remainingFace.vertex_indices[removed_vert_index] = |
| | remainingFace.vertex_indices[removed_vert_index + 1]; |
| | removed_vert_index += 1; |
| | } |
| | remainingFace.vertex_indices.pop_back(); |
| | } |
| |
|
| | |
| | |
| | if (remainingFace.vertex_indices.size() == 3) { |
| | i0 = remainingFace.vertex_indices[0]; |
| | i1 = remainingFace.vertex_indices[1]; |
| | i2 = remainingFace.vertex_indices[2]; |
| | { |
| | index_t idx0, idx1, idx2; |
| | idx0.vertex_index = i0.v_idx; |
| | idx0.normal_index = i0.vn_idx; |
| | idx0.texcoord_index = i0.vt_idx; |
| | idx1.vertex_index = i1.v_idx; |
| | idx1.normal_index = i1.vn_idx; |
| | idx1.texcoord_index = i1.vt_idx; |
| | idx2.vertex_index = i2.v_idx; |
| | idx2.normal_index = i2.vn_idx; |
| | idx2.texcoord_index = i2.vt_idx; |
| |
|
| | shape->mesh.indices.push_back(idx0); |
| | shape->mesh.indices.push_back(idx1); |
| | shape->mesh.indices.push_back(idx2); |
| |
|
| | shape->mesh.num_face_vertices.push_back(3); |
| | shape->mesh.material_ids.push_back(material_id); |
| | shape->mesh.smoothing_group_ids.push_back( |
| | face.smoothing_group_id); |
| | } |
| | } |
| | #endif |
| | } |
| | } else { |
| | for (size_t k = 0; k < npolys; k++) { |
| | index_t idx; |
| | idx.vertex_index = face.vertex_indices[k].v_idx; |
| | idx.normal_index = face.vertex_indices[k].vn_idx; |
| | idx.texcoord_index = face.vertex_indices[k].vt_idx; |
| | shape->mesh.indices.push_back(idx); |
| | } |
| |
|
| | shape->mesh.num_face_vertices.push_back( |
| | static_cast<unsigned char>(npolys)); |
| | shape->mesh.material_ids.push_back(material_id); |
| | shape->mesh.smoothing_group_ids.push_back( |
| | face.smoothing_group_id); |
| | } |
| | } |
| |
|
| | shape->mesh.tags = tags; |
| | } |
| |
|
| | |
| | if (!prim_group.lineGroup.empty()) { |
| | |
| | for (size_t i = 0; i < prim_group.lineGroup.size(); i++) { |
| | for (size_t j = 0; j < prim_group.lineGroup[i].vertex_indices.size(); |
| | j++) { |
| | const vertex_index_t &vi = prim_group.lineGroup[i].vertex_indices[j]; |
| |
|
| | index_t idx; |
| | idx.vertex_index = vi.v_idx; |
| | idx.normal_index = vi.vn_idx; |
| | idx.texcoord_index = vi.vt_idx; |
| |
|
| | shape->lines.indices.push_back(idx); |
| | } |
| |
|
| | shape->lines.num_line_vertices.push_back( |
| | int(prim_group.lineGroup[i].vertex_indices.size())); |
| | } |
| | } |
| |
|
| | |
| | if (!prim_group.pointsGroup.empty()) { |
| | |
| | for (size_t i = 0; i < prim_group.pointsGroup.size(); i++) { |
| | for (size_t j = 0; j < prim_group.pointsGroup[i].vertex_indices.size(); |
| | j++) { |
| | const vertex_index_t &vi = prim_group.pointsGroup[i].vertex_indices[j]; |
| |
|
| | index_t idx; |
| | idx.vertex_index = vi.v_idx; |
| | idx.normal_index = vi.vn_idx; |
| | idx.texcoord_index = vi.vt_idx; |
| |
|
| | shape->points.indices.push_back(idx); |
| | } |
| | } |
| | } |
| |
|
| | return true; |
| | } |
| |
|
| | |
| | |
| | static void SplitString(const std::string &s, char delim, char escape, |
| | std::vector<std::string> &elems) { |
| | std::string token; |
| |
|
| | bool escaping = false; |
| | for (size_t i = 0; i < s.size(); ++i) { |
| | char ch = s[i]; |
| | if (escaping) { |
| | escaping = false; |
| | } else if (ch == escape) { |
| | escaping = true; |
| | continue; |
| | } else if (ch == delim) { |
| | if (!token.empty()) { |
| | elems.push_back(token); |
| | } |
| | token.clear(); |
| | continue; |
| | } |
| | token += ch; |
| | } |
| |
|
| | elems.push_back(token); |
| | } |
| |
|
| | static std::string JoinPath(const std::string &dir, |
| | const std::string &filename) { |
| | if (dir.empty()) { |
| | return filename; |
| | } else { |
| | |
| | char lastChar = *dir.rbegin(); |
| | if (lastChar != '/') { |
| | return dir + std::string("/") + filename; |
| | } else { |
| | return dir + filename; |
| | } |
| | } |
| | } |
| |
|
| | void LoadMtl(std::map<std::string, int> *material_map, |
| | std::vector<material_t> *materials, std::istream *inStream, |
| | std::string *warning, std::string *err) { |
| | (void)err; |
| |
|
| | |
| | material_t material; |
| | InitMaterial(&material); |
| |
|
| | |
| | bool has_d = false; |
| | bool has_tr = false; |
| |
|
| | |
| | |
| | bool has_kd = false; |
| |
|
| | std::stringstream warn_ss; |
| |
|
| | size_t line_no = 0; |
| | std::string linebuf; |
| | while (inStream->peek() != -1) { |
| | safeGetline(*inStream, linebuf); |
| | line_no++; |
| |
|
| | |
| | if (linebuf.size() > 0) { |
| | linebuf = linebuf.substr(0, linebuf.find_last_not_of(" \t") + 1); |
| | } |
| |
|
| | |
| | if (linebuf.size() > 0) { |
| | if (linebuf[linebuf.size() - 1] == '\n') |
| | linebuf.erase(linebuf.size() - 1); |
| | } |
| | if (linebuf.size() > 0) { |
| | if (linebuf[linebuf.size() - 1] == '\r') |
| | linebuf.erase(linebuf.size() - 1); |
| | } |
| |
|
| | |
| | if (linebuf.empty()) { |
| | continue; |
| | } |
| |
|
| | |
| | const char *token = linebuf.c_str(); |
| | token += strspn(token, " \t"); |
| |
|
| | assert(token); |
| | if (token[0] == '\0') continue; |
| |
|
| | if (token[0] == '#') continue; |
| |
|
| | |
| | if ((0 == strncmp(token, "newmtl", 6)) && IS_SPACE((token[6]))) { |
| | |
| | if (!material.name.empty()) { |
| | material_map->insert(std::pair<std::string, int>( |
| | material.name, static_cast<int>(materials->size()))); |
| | materials->push_back(material); |
| | } |
| |
|
| | |
| | InitMaterial(&material); |
| |
|
| | has_d = false; |
| | has_tr = false; |
| |
|
| | |
| | token += 7; |
| | { |
| | std::stringstream sstr; |
| | sstr << token; |
| | material.name = sstr.str(); |
| | } |
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'K' && token[1] == 'a' && IS_SPACE((token[2]))) { |
| | token += 2; |
| | real_t r, g, b; |
| | parseReal3(&r, &g, &b, &token); |
| | material.ambient[0] = r; |
| | material.ambient[1] = g; |
| | material.ambient[2] = b; |
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'K' && token[1] == 'd' && IS_SPACE((token[2]))) { |
| | token += 2; |
| | real_t r, g, b; |
| | parseReal3(&r, &g, &b, &token); |
| | material.diffuse[0] = r; |
| | material.diffuse[1] = g; |
| | material.diffuse[2] = b; |
| | has_kd = true; |
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'K' && token[1] == 's' && IS_SPACE((token[2]))) { |
| | token += 2; |
| | real_t r, g, b; |
| | parseReal3(&r, &g, &b, &token); |
| | material.specular[0] = r; |
| | material.specular[1] = g; |
| | material.specular[2] = b; |
| | continue; |
| | } |
| |
|
| | |
| | if ((token[0] == 'K' && token[1] == 't' && IS_SPACE((token[2]))) || |
| | (token[0] == 'T' && token[1] == 'f' && IS_SPACE((token[2])))) { |
| | token += 2; |
| | real_t r, g, b; |
| | parseReal3(&r, &g, &b, &token); |
| | material.transmittance[0] = r; |
| | material.transmittance[1] = g; |
| | material.transmittance[2] = b; |
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'N' && token[1] == 'i' && IS_SPACE((token[2]))) { |
| | token += 2; |
| | material.ior = parseReal(&token); |
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'K' && token[1] == 'e' && IS_SPACE(token[2])) { |
| | token += 2; |
| | real_t r, g, b; |
| | parseReal3(&r, &g, &b, &token); |
| | material.emission[0] = r; |
| | material.emission[1] = g; |
| | material.emission[2] = b; |
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'N' && token[1] == 's' && IS_SPACE(token[2])) { |
| | token += 2; |
| | material.shininess = parseReal(&token); |
| | continue; |
| | } |
| |
|
| | |
| | if (0 == strncmp(token, "illum", 5) && IS_SPACE(token[5])) { |
| | token += 6; |
| | material.illum = parseInt(&token); |
| | continue; |
| | } |
| |
|
| | |
| | if ((token[0] == 'd' && IS_SPACE(token[1]))) { |
| | token += 1; |
| | material.dissolve = parseReal(&token); |
| |
|
| | if (has_tr) { |
| | warn_ss << "Both `d` and `Tr` parameters defined for \"" |
| | << material.name |
| | << "\". Use the value of `d` for dissolve (line " << line_no |
| | << " in .mtl.)\n"; |
| | } |
| | has_d = true; |
| | continue; |
| | } |
| | if (token[0] == 'T' && token[1] == 'r' && IS_SPACE(token[2])) { |
| | token += 2; |
| | if (has_d) { |
| | |
| | warn_ss << "Both `d` and `Tr` parameters defined for \"" |
| | << material.name |
| | << "\". Use the value of `d` for dissolve (line " << line_no |
| | << " in .mtl.)\n"; |
| | } else { |
| | |
| | |
| | |
| | material.dissolve = static_cast<real_t>(1.0) - parseReal(&token); |
| | } |
| | has_tr = true; |
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'P' && token[1] == 'r' && IS_SPACE(token[2])) { |
| | token += 2; |
| | material.roughness = parseReal(&token); |
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'P' && token[1] == 'm' && IS_SPACE(token[2])) { |
| | token += 2; |
| | material.metallic = parseReal(&token); |
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'P' && token[1] == 's' && IS_SPACE(token[2])) { |
| | token += 2; |
| | material.sheen = parseReal(&token); |
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'P' && token[1] == 'c' && IS_SPACE(token[2])) { |
| | token += 2; |
| | material.clearcoat_thickness = parseReal(&token); |
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "Pcr", 3)) && IS_SPACE(token[3])) { |
| | token += 4; |
| | material.clearcoat_roughness = parseReal(&token); |
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "aniso", 5)) && IS_SPACE(token[5])) { |
| | token += 6; |
| | material.anisotropy = parseReal(&token); |
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "anisor", 6)) && IS_SPACE(token[6])) { |
| | token += 7; |
| | material.anisotropy_rotation = parseReal(&token); |
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "map_Ka", 6)) && IS_SPACE(token[6])) { |
| | token += 7; |
| | ParseTextureNameAndOption(&(material.ambient_texname), |
| | &(material.ambient_texopt), token); |
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "map_Kd", 6)) && IS_SPACE(token[6])) { |
| | token += 7; |
| | ParseTextureNameAndOption(&(material.diffuse_texname), |
| | &(material.diffuse_texopt), token); |
| |
|
| | |
| | |
| | if (!has_kd) { |
| | material.diffuse[0] = static_cast<real_t>(0.6); |
| | material.diffuse[1] = static_cast<real_t>(0.6); |
| | material.diffuse[2] = static_cast<real_t>(0.6); |
| | } |
| |
|
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "map_Ks", 6)) && IS_SPACE(token[6])) { |
| | token += 7; |
| | ParseTextureNameAndOption(&(material.specular_texname), |
| | &(material.specular_texopt), token); |
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "map_Ns", 6)) && IS_SPACE(token[6])) { |
| | token += 7; |
| | ParseTextureNameAndOption(&(material.specular_highlight_texname), |
| | &(material.specular_highlight_texopt), token); |
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "map_bump", 8)) && IS_SPACE(token[8])) { |
| | token += 9; |
| | ParseTextureNameAndOption(&(material.bump_texname), |
| | &(material.bump_texopt), token); |
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "map_Bump", 8)) && IS_SPACE(token[8])) { |
| | token += 9; |
| | ParseTextureNameAndOption(&(material.bump_texname), |
| | &(material.bump_texopt), token); |
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "bump", 4)) && IS_SPACE(token[4])) { |
| | token += 5; |
| | ParseTextureNameAndOption(&(material.bump_texname), |
| | &(material.bump_texopt), token); |
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "map_d", 5)) && IS_SPACE(token[5])) { |
| | token += 6; |
| | material.alpha_texname = token; |
| | ParseTextureNameAndOption(&(material.alpha_texname), |
| | &(material.alpha_texopt), token); |
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "disp", 4)) && IS_SPACE(token[4])) { |
| | token += 5; |
| | ParseTextureNameAndOption(&(material.displacement_texname), |
| | &(material.displacement_texopt), token); |
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "refl", 4)) && IS_SPACE(token[4])) { |
| | token += 5; |
| | ParseTextureNameAndOption(&(material.reflection_texname), |
| | &(material.reflection_texopt), token); |
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "map_Pr", 6)) && IS_SPACE(token[6])) { |
| | token += 7; |
| | ParseTextureNameAndOption(&(material.roughness_texname), |
| | &(material.roughness_texopt), token); |
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "map_Pm", 6)) && IS_SPACE(token[6])) { |
| | token += 7; |
| | ParseTextureNameAndOption(&(material.metallic_texname), |
| | &(material.metallic_texopt), token); |
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "map_Ps", 6)) && IS_SPACE(token[6])) { |
| | token += 7; |
| | ParseTextureNameAndOption(&(material.sheen_texname), |
| | &(material.sheen_texopt), token); |
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "map_Ke", 6)) && IS_SPACE(token[6])) { |
| | token += 7; |
| | ParseTextureNameAndOption(&(material.emissive_texname), |
| | &(material.emissive_texopt), token); |
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "norm", 4)) && IS_SPACE(token[4])) { |
| | token += 5; |
| | ParseTextureNameAndOption(&(material.normal_texname), |
| | &(material.normal_texopt), token); |
| | continue; |
| | } |
| |
|
| | |
| | const char *_space = strchr(token, ' '); |
| | if (!_space) { |
| | _space = strchr(token, '\t'); |
| | } |
| | if (_space) { |
| | std::ptrdiff_t len = _space - token; |
| | std::string key(token, static_cast<size_t>(len)); |
| | std::string value = _space + 1; |
| | material.unknown_parameter.insert( |
| | std::pair<std::string, std::string>(key, value)); |
| | } |
| | } |
| | |
| | material_map->insert(std::pair<std::string, int>( |
| | material.name, static_cast<int>(materials->size()))); |
| | materials->push_back(material); |
| |
|
| | if (warning) { |
| | (*warning) = warn_ss.str(); |
| | } |
| | } |
| |
|
| | bool MaterialFileReader::operator()(const std::string &matId, |
| | std::vector<material_t> *materials, |
| | std::map<std::string, int> *matMap, |
| | std::string *warn, std::string *err) { |
| | if (!m_mtlBaseDir.empty()) { |
| | #ifdef _WIN32 |
| | char sep = ';'; |
| | #else |
| | char sep = ':'; |
| | #endif |
| |
|
| | |
| | std::vector<std::string> paths; |
| | std::istringstream f(m_mtlBaseDir); |
| |
|
| | std::string s; |
| | while (getline(f, s, sep)) { |
| | paths.push_back(s); |
| | } |
| |
|
| | for (size_t i = 0; i < paths.size(); i++) { |
| | std::string filepath = JoinPath(paths[i], matId); |
| |
|
| | std::ifstream matIStream(filepath.c_str()); |
| | if (matIStream) { |
| | LoadMtl(matMap, materials, &matIStream, warn, err); |
| |
|
| | return true; |
| | } |
| | } |
| |
|
| | std::stringstream ss; |
| | ss << "Material file [ " << matId |
| | << " ] not found in a path : " << m_mtlBaseDir << "\n"; |
| | if (warn) { |
| | (*warn) += ss.str(); |
| | } |
| | return false; |
| |
|
| | } else { |
| | std::string filepath = matId; |
| | std::ifstream matIStream(filepath.c_str()); |
| | if (matIStream) { |
| | LoadMtl(matMap, materials, &matIStream, warn, err); |
| |
|
| | return true; |
| | } |
| |
|
| | std::stringstream ss; |
| | ss << "Material file [ " << filepath |
| | << " ] not found in a path : " << m_mtlBaseDir << "\n"; |
| | if (warn) { |
| | (*warn) += ss.str(); |
| | } |
| |
|
| | return false; |
| | } |
| | } |
| |
|
| | bool MaterialStreamReader::operator()(const std::string &matId, |
| | std::vector<material_t> *materials, |
| | std::map<std::string, int> *matMap, |
| | std::string *warn, std::string *err) { |
| | (void)err; |
| | (void)matId; |
| | if (!m_inStream) { |
| | std::stringstream ss; |
| | ss << "Material stream in error state. \n"; |
| | if (warn) { |
| | (*warn) += ss.str(); |
| | } |
| | return false; |
| | } |
| |
|
| | LoadMtl(matMap, materials, &m_inStream, warn, err); |
| |
|
| | return true; |
| | } |
| |
|
| | bool LoadObj(attrib_t *attrib, std::vector<shape_t> *shapes, |
| | std::vector<material_t> *materials, std::string *warn, |
| | std::string *err, const char *filename, const char *mtl_basedir, |
| | bool triangulate, bool default_vcols_fallback) { |
| | attrib->vertices.clear(); |
| | attrib->normals.clear(); |
| | attrib->texcoords.clear(); |
| | attrib->colors.clear(); |
| | shapes->clear(); |
| |
|
| | std::stringstream errss; |
| |
|
| | std::ifstream ifs(filename); |
| | if (!ifs) { |
| | errss << "Cannot open file [" << filename << "]\n"; |
| | if (err) { |
| | (*err) = errss.str(); |
| | } |
| | return false; |
| | } |
| |
|
| | std::string baseDir = mtl_basedir ? mtl_basedir : ""; |
| | if (!baseDir.empty()) { |
| | #ifndef _WIN32 |
| | const char dirsep = '/'; |
| | #else |
| | const char dirsep = '\\'; |
| | #endif |
| | if (baseDir[baseDir.length() - 1] != dirsep) baseDir += dirsep; |
| | } |
| | MaterialFileReader matFileReader(baseDir); |
| |
|
| | return LoadObj(attrib, shapes, materials, warn, err, &ifs, &matFileReader, |
| | triangulate, default_vcols_fallback); |
| | } |
| |
|
| | bool LoadObj(attrib_t *attrib, std::vector<shape_t> *shapes, |
| | std::vector<material_t> *materials, std::string *warn, |
| | std::string *err, std::istream *inStream, |
| | MaterialReader *readMatFn , bool triangulate, |
| | bool default_vcols_fallback) { |
| | std::stringstream errss; |
| |
|
| | std::vector<real_t> v; |
| | std::vector<real_t> vn; |
| | std::vector<real_t> vt; |
| | std::vector<real_t> vc; |
| | std::vector<skin_weight_t> vw; |
| | std::vector<tag_t> tags; |
| | PrimGroup prim_group; |
| | std::string name; |
| |
|
| | |
| | std::set<std::string> material_filenames; |
| | std::map<std::string, int> material_map; |
| | int material = -1; |
| |
|
| | |
| | unsigned int current_smoothing_id = |
| | 0; |
| |
|
| | int greatest_v_idx = -1; |
| | int greatest_vn_idx = -1; |
| | int greatest_vt_idx = -1; |
| |
|
| | shape_t shape; |
| |
|
| | bool found_all_colors = true; |
| |
|
| | size_t line_num = 0; |
| | std::string linebuf; |
| | while (inStream->peek() != -1) { |
| | safeGetline(*inStream, linebuf); |
| |
|
| | line_num++; |
| |
|
| | |
| | if (linebuf.size() > 0) { |
| | if (linebuf[linebuf.size() - 1] == '\n') |
| | linebuf.erase(linebuf.size() - 1); |
| | } |
| | if (linebuf.size() > 0) { |
| | if (linebuf[linebuf.size() - 1] == '\r') |
| | linebuf.erase(linebuf.size() - 1); |
| | } |
| |
|
| | |
| | if (linebuf.empty()) { |
| | continue; |
| | } |
| |
|
| | |
| | const char *token = linebuf.c_str(); |
| | token += strspn(token, " \t"); |
| |
|
| | assert(token); |
| | if (token[0] == '\0') continue; |
| |
|
| | if (token[0] == '#') continue; |
| |
|
| | |
| | if (token[0] == 'v' && IS_SPACE((token[1]))) { |
| | token += 2; |
| | real_t x, y, z; |
| | real_t r, g, b; |
| |
|
| | found_all_colors &= parseVertexWithColor(&x, &y, &z, &r, &g, &b, &token); |
| |
|
| | v.push_back(x); |
| | v.push_back(y); |
| | v.push_back(z); |
| |
|
| | if (found_all_colors || default_vcols_fallback) { |
| | vc.push_back(r); |
| | vc.push_back(g); |
| | vc.push_back(b); |
| | } |
| |
|
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'v' && token[1] == 'n' && IS_SPACE((token[2]))) { |
| | token += 3; |
| | real_t x, y, z; |
| | parseReal3(&x, &y, &z, &token); |
| | vn.push_back(x); |
| | vn.push_back(y); |
| | vn.push_back(z); |
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'v' && token[1] == 't' && IS_SPACE((token[2]))) { |
| | token += 3; |
| | real_t x, y; |
| | parseReal2(&x, &y, &token); |
| | vt.push_back(x); |
| | vt.push_back(y); |
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'v' && token[1] == 'w' && IS_SPACE((token[2]))) { |
| | token += 3; |
| |
|
| | |
| | |
| | |
| |
|
| | |
| | int vid = 0; |
| | vid = parseInt(&token); |
| |
|
| | skin_weight_t sw; |
| |
|
| | sw.vertex_id = vid; |
| |
|
| | while (!IS_NEW_LINE(token[0])) { |
| | real_t j, w; |
| | |
| | |
| | parseReal2(&j, &w, &token, -1.0); |
| |
|
| | if (j < static_cast<real_t>(0)) { |
| | if (err) { |
| | std::stringstream ss; |
| | ss << "Failed parse `vw' line. joint_id is negative. " |
| | "line " |
| | << line_num << ".)\n"; |
| | (*err) += ss.str(); |
| | } |
| | return false; |
| | } |
| |
|
| | joint_and_weight_t jw; |
| |
|
| | jw.joint_id = int(j); |
| | jw.weight = w; |
| |
|
| | sw.weightValues.push_back(jw); |
| |
|
| | size_t n = strspn(token, " \t\r"); |
| | token += n; |
| | } |
| |
|
| | vw.push_back(sw); |
| | } |
| |
|
| | |
| | if (token[0] == 'l' && IS_SPACE((token[1]))) { |
| | token += 2; |
| |
|
| | __line_t line; |
| |
|
| | while (!IS_NEW_LINE(token[0])) { |
| | vertex_index_t vi; |
| | if (!parseTriple(&token, static_cast<int>(v.size() / 3), |
| | static_cast<int>(vn.size() / 3), |
| | static_cast<int>(vt.size() / 2), &vi)) { |
| | if (err) { |
| | std::stringstream ss; |
| | ss << "Failed parse `l' line(e.g. zero value for vertex index. " |
| | "line " |
| | << line_num << ".)\n"; |
| | (*err) += ss.str(); |
| | } |
| | return false; |
| | } |
| |
|
| | line.vertex_indices.push_back(vi); |
| |
|
| | size_t n = strspn(token, " \t\r"); |
| | token += n; |
| | } |
| |
|
| | prim_group.lineGroup.push_back(line); |
| |
|
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'p' && IS_SPACE((token[1]))) { |
| | token += 2; |
| |
|
| | __points_t pts; |
| |
|
| | while (!IS_NEW_LINE(token[0])) { |
| | vertex_index_t vi; |
| | if (!parseTriple(&token, static_cast<int>(v.size() / 3), |
| | static_cast<int>(vn.size() / 3), |
| | static_cast<int>(vt.size() / 2), &vi)) { |
| | if (err) { |
| | std::stringstream ss; |
| | ss << "Failed parse `p' line(e.g. zero value for vertex index. " |
| | "line " |
| | << line_num << ".)\n"; |
| | (*err) += ss.str(); |
| | } |
| | return false; |
| | } |
| |
|
| | pts.vertex_indices.push_back(vi); |
| |
|
| | size_t n = strspn(token, " \t\r"); |
| | token += n; |
| | } |
| |
|
| | prim_group.pointsGroup.push_back(pts); |
| |
|
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'f' && IS_SPACE((token[1]))) { |
| | token += 2; |
| | token += strspn(token, " \t"); |
| |
|
| | face_t face; |
| |
|
| | face.smoothing_group_id = current_smoothing_id; |
| | face.vertex_indices.reserve(3); |
| |
|
| | while (!IS_NEW_LINE(token[0])) { |
| | vertex_index_t vi; |
| | if (!parseTriple(&token, static_cast<int>(v.size() / 3), |
| | static_cast<int>(vn.size() / 3), |
| | static_cast<int>(vt.size() / 2), &vi)) { |
| | if (err) { |
| | std::stringstream ss; |
| | ss << "Failed parse `f' line(e.g. zero value for face index. line " |
| | << line_num << ".)\n"; |
| | (*err) += ss.str(); |
| | } |
| | return false; |
| | } |
| |
|
| | greatest_v_idx = greatest_v_idx > vi.v_idx ? greatest_v_idx : vi.v_idx; |
| | greatest_vn_idx = |
| | greatest_vn_idx > vi.vn_idx ? greatest_vn_idx : vi.vn_idx; |
| | greatest_vt_idx = |
| | greatest_vt_idx > vi.vt_idx ? greatest_vt_idx : vi.vt_idx; |
| |
|
| | face.vertex_indices.push_back(vi); |
| | size_t n = strspn(token, " \t\r"); |
| | token += n; |
| | } |
| |
|
| | |
| | prim_group.faceGroup.push_back(face); |
| |
|
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "usemtl", 6))) { |
| | token += 6; |
| | std::string namebuf = parseString(&token); |
| |
|
| | int newMaterialId = -1; |
| | std::map<std::string, int>::const_iterator it = |
| | material_map.find(namebuf); |
| | if (it != material_map.end()) { |
| | newMaterialId = it->second; |
| | } else { |
| | |
| | if (warn) { |
| | (*warn) += "material [ '" + namebuf + "' ] not found in .mtl\n"; |
| | } |
| | } |
| |
|
| | if (newMaterialId != material) { |
| | |
| | |
| | |
| | exportGroupsToShape(&shape, prim_group, tags, material, name, |
| | triangulate, v, warn); |
| | prim_group.faceGroup.clear(); |
| | material = newMaterialId; |
| | } |
| |
|
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "mtllib", 6)) && IS_SPACE((token[6]))) { |
| | if (readMatFn) { |
| | token += 7; |
| |
|
| | std::vector<std::string> filenames; |
| | SplitString(std::string(token), ' ', '\\', filenames); |
| |
|
| | if (filenames.empty()) { |
| | if (warn) { |
| | std::stringstream ss; |
| | ss << "Looks like empty filename for mtllib. Use default " |
| | "material (line " |
| | << line_num << ".)\n"; |
| |
|
| | (*warn) += ss.str(); |
| | } |
| | } else { |
| | bool found = false; |
| | for (size_t s = 0; s < filenames.size(); s++) { |
| | if (material_filenames.count(filenames[s]) > 0) { |
| | found = true; |
| | continue; |
| | } |
| |
|
| | std::string warn_mtl; |
| | std::string err_mtl; |
| | bool ok = (*readMatFn)(filenames[s].c_str(), materials, |
| | &material_map, &warn_mtl, &err_mtl); |
| | if (warn && (!warn_mtl.empty())) { |
| | (*warn) += warn_mtl; |
| | } |
| |
|
| | if (err && (!err_mtl.empty())) { |
| | (*err) += err_mtl; |
| | } |
| |
|
| | if (ok) { |
| | found = true; |
| | material_filenames.insert(filenames[s]); |
| | break; |
| | } |
| | } |
| |
|
| | if (!found) { |
| | if (warn) { |
| | (*warn) += |
| | "Failed to load material file(s). Use default " |
| | "material.\n"; |
| | } |
| | } |
| | } |
| | } |
| |
|
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'g' && IS_SPACE((token[1]))) { |
| | |
| | bool ret = exportGroupsToShape(&shape, prim_group, tags, material, name, |
| | triangulate, v, warn); |
| | (void)ret; |
| |
|
| | if (shape.mesh.indices.size() > 0) { |
| | shapes->push_back(shape); |
| | } |
| |
|
| | shape = shape_t(); |
| |
|
| | |
| | prim_group.clear(); |
| |
|
| | std::vector<std::string> names; |
| |
|
| | while (!IS_NEW_LINE(token[0])) { |
| | std::string str = parseString(&token); |
| | names.push_back(str); |
| | token += strspn(token, " \t\r"); |
| | } |
| |
|
| | |
| |
|
| | if (names.size() < 2) { |
| | |
| | if (warn) { |
| | std::stringstream ss; |
| | ss << "Empty group name. line: " << line_num << "\n"; |
| | (*warn) += ss.str(); |
| | name = ""; |
| | } |
| | } else { |
| | std::stringstream ss; |
| | ss << names[1]; |
| |
|
| | |
| | |
| | |
| |
|
| | for (size_t i = 2; i < names.size(); i++) { |
| | ss << " " << names[i]; |
| | } |
| |
|
| | name = ss.str(); |
| | } |
| |
|
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'o' && IS_SPACE((token[1]))) { |
| | |
| | bool ret = exportGroupsToShape(&shape, prim_group, tags, material, name, |
| | triangulate, v, warn); |
| | (void)ret; |
| |
|
| | if (shape.mesh.indices.size() > 0 || shape.lines.indices.size() > 0 || |
| | shape.points.indices.size() > 0) { |
| | shapes->push_back(shape); |
| | } |
| |
|
| | |
| | prim_group.clear(); |
| | shape = shape_t(); |
| |
|
| | |
| | token += 2; |
| | std::stringstream ss; |
| | ss << token; |
| | name = ss.str(); |
| |
|
| | continue; |
| | } |
| |
|
| | if (token[0] == 't' && IS_SPACE(token[1])) { |
| | const int max_tag_nums = 8192; |
| | tag_t tag; |
| |
|
| | token += 2; |
| |
|
| | tag.name = parseString(&token); |
| |
|
| | tag_sizes ts = parseTagTriple(&token); |
| |
|
| | if (ts.num_ints < 0) { |
| | ts.num_ints = 0; |
| | } |
| | if (ts.num_ints > max_tag_nums) { |
| | ts.num_ints = max_tag_nums; |
| | } |
| |
|
| | if (ts.num_reals < 0) { |
| | ts.num_reals = 0; |
| | } |
| | if (ts.num_reals > max_tag_nums) { |
| | ts.num_reals = max_tag_nums; |
| | } |
| |
|
| | if (ts.num_strings < 0) { |
| | ts.num_strings = 0; |
| | } |
| | if (ts.num_strings > max_tag_nums) { |
| | ts.num_strings = max_tag_nums; |
| | } |
| |
|
| | tag.intValues.resize(static_cast<size_t>(ts.num_ints)); |
| |
|
| | for (size_t i = 0; i < static_cast<size_t>(ts.num_ints); ++i) { |
| | tag.intValues[i] = parseInt(&token); |
| | } |
| |
|
| | tag.floatValues.resize(static_cast<size_t>(ts.num_reals)); |
| | for (size_t i = 0; i < static_cast<size_t>(ts.num_reals); ++i) { |
| | tag.floatValues[i] = parseReal(&token); |
| | } |
| |
|
| | tag.stringValues.resize(static_cast<size_t>(ts.num_strings)); |
| | for (size_t i = 0; i < static_cast<size_t>(ts.num_strings); ++i) { |
| | tag.stringValues[i] = parseString(&token); |
| | } |
| |
|
| | tags.push_back(tag); |
| |
|
| | continue; |
| | } |
| |
|
| | if (token[0] == 's' && IS_SPACE(token[1])) { |
| | |
| | token += 2; |
| |
|
| | |
| | token += strspn(token, " \t"); |
| |
|
| | if (token[0] == '\0') { |
| | continue; |
| | } |
| |
|
| | if (token[0] == '\r' || token[1] == '\n') { |
| | continue; |
| | } |
| |
|
| | if (strlen(token) >= 3 && token[0] == 'o' && token[1] == 'f' && |
| | token[2] == 'f') { |
| | current_smoothing_id = 0; |
| | } else { |
| | |
| | int smGroupId = parseInt(&token); |
| | if (smGroupId < 0) { |
| | |
| | |
| | current_smoothing_id = 0; |
| | } else { |
| | current_smoothing_id = static_cast<unsigned int>(smGroupId); |
| | } |
| | } |
| |
|
| | continue; |
| | } |
| |
|
| | |
| | } |
| |
|
| | |
| | if (!found_all_colors && !default_vcols_fallback) { |
| | vc.clear(); |
| | } |
| |
|
| | if (greatest_v_idx >= static_cast<int>(v.size() / 3)) { |
| | if (warn) { |
| | std::stringstream ss; |
| | ss << "Vertex indices out of bounds (line " << line_num << ".)\n\n"; |
| | (*warn) += ss.str(); |
| | } |
| | } |
| | if (greatest_vn_idx >= static_cast<int>(vn.size() / 3)) { |
| | if (warn) { |
| | std::stringstream ss; |
| | ss << "Vertex normal indices out of bounds (line " << line_num << ".)\n\n"; |
| | (*warn) += ss.str(); |
| | } |
| | } |
| | if (greatest_vt_idx >= static_cast<int>(vt.size() / 2)) { |
| | if (warn) { |
| | std::stringstream ss; |
| | ss << "Vertex texcoord indices out of bounds (line " << line_num << ".)\n\n"; |
| | (*warn) += ss.str(); |
| | } |
| | } |
| |
|
| | bool ret = exportGroupsToShape(&shape, prim_group, tags, material, name, |
| | triangulate, v, warn); |
| | |
| | |
| | |
| | |
| | if (ret || shape.mesh.indices |
| | .size()) { |
| | shapes->push_back(shape); |
| | } |
| | prim_group.clear(); |
| |
|
| | if (err) { |
| | (*err) += errss.str(); |
| | } |
| |
|
| | attrib->vertices.swap(v); |
| | attrib->vertex_weights.swap(v); |
| | attrib->normals.swap(vn); |
| | attrib->texcoords.swap(vt); |
| | attrib->texcoord_ws.swap(vt); |
| | attrib->colors.swap(vc); |
| | attrib->skin_weights.swap(vw); |
| |
|
| | return true; |
| | } |
| |
|
| | bool LoadObjWithCallback(std::istream &inStream, const callback_t &callback, |
| | void *user_data , |
| | MaterialReader *readMatFn , |
| | std::string *warn, |
| | std::string *err ) { |
| | std::stringstream errss; |
| |
|
| | |
| | std::set<std::string> material_filenames; |
| | std::map<std::string, int> material_map; |
| | int material_id = -1; |
| |
|
| | std::vector<index_t> indices; |
| | std::vector<material_t> materials; |
| | std::vector<std::string> names; |
| | names.reserve(2); |
| | std::vector<const char *> names_out; |
| |
|
| | std::string linebuf; |
| | while (inStream.peek() != -1) { |
| | safeGetline(inStream, linebuf); |
| |
|
| | |
| | if (linebuf.size() > 0) { |
| | if (linebuf[linebuf.size() - 1] == '\n') |
| | linebuf.erase(linebuf.size() - 1); |
| | } |
| | if (linebuf.size() > 0) { |
| | if (linebuf[linebuf.size() - 1] == '\r') |
| | linebuf.erase(linebuf.size() - 1); |
| | } |
| |
|
| | |
| | if (linebuf.empty()) { |
| | continue; |
| | } |
| |
|
| | |
| | const char *token = linebuf.c_str(); |
| | token += strspn(token, " \t"); |
| |
|
| | assert(token); |
| | if (token[0] == '\0') continue; |
| |
|
| | if (token[0] == '#') continue; |
| |
|
| | |
| | if (token[0] == 'v' && IS_SPACE((token[1]))) { |
| | token += 2; |
| | |
| | real_t x, y, z, w; |
| | parseV(&x, &y, &z, &w, &token); |
| | if (callback.vertex_cb) { |
| | callback.vertex_cb(user_data, x, y, z, w); |
| | } |
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'v' && token[1] == 'n' && IS_SPACE((token[2]))) { |
| | token += 3; |
| | real_t x, y, z; |
| | parseReal3(&x, &y, &z, &token); |
| | if (callback.normal_cb) { |
| | callback.normal_cb(user_data, x, y, z); |
| | } |
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'v' && token[1] == 't' && IS_SPACE((token[2]))) { |
| | token += 3; |
| | real_t x, y, z; |
| | parseReal3(&x, &y, &z, &token); |
| | if (callback.texcoord_cb) { |
| | callback.texcoord_cb(user_data, x, y, z); |
| | } |
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'f' && IS_SPACE((token[1]))) { |
| | token += 2; |
| | token += strspn(token, " \t"); |
| |
|
| | indices.clear(); |
| | while (!IS_NEW_LINE(token[0])) { |
| | vertex_index_t vi = parseRawTriple(&token); |
| |
|
| | index_t idx; |
| | idx.vertex_index = vi.v_idx; |
| | idx.normal_index = vi.vn_idx; |
| | idx.texcoord_index = vi.vt_idx; |
| |
|
| | indices.push_back(idx); |
| | size_t n = strspn(token, " \t\r"); |
| | token += n; |
| | } |
| |
|
| | if (callback.index_cb && indices.size() > 0) { |
| | callback.index_cb(user_data, &indices.at(0), |
| | static_cast<int>(indices.size())); |
| | } |
| |
|
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "usemtl", 6)) && IS_SPACE((token[6]))) { |
| | token += 7; |
| | std::stringstream ss; |
| | ss << token; |
| | std::string namebuf = ss.str(); |
| |
|
| | int newMaterialId = -1; |
| | std::map<std::string, int>::const_iterator it = |
| | material_map.find(namebuf); |
| | if (it != material_map.end()) { |
| | newMaterialId = it->second; |
| | } else { |
| | |
| | if (warn && (!callback.usemtl_cb)) { |
| | (*warn) += "material [ " + namebuf + " ] not found in .mtl\n"; |
| | } |
| | } |
| |
|
| | if (newMaterialId != material_id) { |
| | material_id = newMaterialId; |
| | } |
| |
|
| | if (callback.usemtl_cb) { |
| | callback.usemtl_cb(user_data, namebuf.c_str(), material_id); |
| | } |
| |
|
| | continue; |
| | } |
| |
|
| | |
| | if ((0 == strncmp(token, "mtllib", 6)) && IS_SPACE((token[6]))) { |
| | if (readMatFn) { |
| | token += 7; |
| |
|
| | std::vector<std::string> filenames; |
| | SplitString(std::string(token), ' ', '\\', filenames); |
| |
|
| | if (filenames.empty()) { |
| | if (warn) { |
| | (*warn) += |
| | "Looks like empty filename for mtllib. Use default " |
| | "material. \n"; |
| | } |
| | } else { |
| | bool found = false; |
| | for (size_t s = 0; s < filenames.size(); s++) { |
| | if (material_filenames.count(filenames[s]) > 0) { |
| | found = true; |
| | continue; |
| | } |
| |
|
| | std::string warn_mtl; |
| | std::string err_mtl; |
| | bool ok = (*readMatFn)(filenames[s].c_str(), &materials, |
| | &material_map, &warn_mtl, &err_mtl); |
| |
|
| | if (warn && (!warn_mtl.empty())) { |
| | (*warn) += warn_mtl; |
| | } |
| |
|
| | if (err && (!err_mtl.empty())) { |
| | (*err) += err_mtl; |
| | } |
| |
|
| | if (ok) { |
| | found = true; |
| | material_filenames.insert(filenames[s]); |
| | break; |
| | } |
| | } |
| |
|
| | if (!found) { |
| | if (warn) { |
| | (*warn) += |
| | "Failed to load material file(s). Use default " |
| | "material.\n"; |
| | } |
| | } else { |
| | if (callback.mtllib_cb) { |
| | callback.mtllib_cb(user_data, &materials.at(0), |
| | static_cast<int>(materials.size())); |
| | } |
| | } |
| | } |
| | } |
| |
|
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'g' && IS_SPACE((token[1]))) { |
| | names.clear(); |
| |
|
| | while (!IS_NEW_LINE(token[0])) { |
| | std::string str = parseString(&token); |
| | names.push_back(str); |
| | token += strspn(token, " \t\r"); |
| | } |
| |
|
| | assert(names.size() > 0); |
| |
|
| | if (callback.group_cb) { |
| | if (names.size() > 1) { |
| | |
| | names_out.resize(names.size() - 1); |
| | for (size_t j = 0; j < names_out.size(); j++) { |
| | names_out[j] = names[j + 1].c_str(); |
| | } |
| | callback.group_cb(user_data, &names_out.at(0), |
| | static_cast<int>(names_out.size())); |
| |
|
| | } else { |
| | callback.group_cb(user_data, NULL, 0); |
| | } |
| | } |
| |
|
| | continue; |
| | } |
| |
|
| | |
| | if (token[0] == 'o' && IS_SPACE((token[1]))) { |
| | |
| | token += 2; |
| |
|
| | std::stringstream ss; |
| | ss << token; |
| | std::string object_name = ss.str(); |
| |
|
| | if (callback.object_cb) { |
| | callback.object_cb(user_data, object_name.c_str()); |
| | } |
| |
|
| | continue; |
| | } |
| |
|
| | #if 0 |
| | if (token[0] == 't' && IS_SPACE(token[1])) { |
| | tag_t tag; |
| |
|
| | token += 2; |
| | std::stringstream ss; |
| | ss << token; |
| | tag.name = ss.str(); |
| |
|
| | token += tag.name.size() + 1; |
| |
|
| | tag_sizes ts = parseTagTriple(&token); |
| |
|
| | tag.intValues.resize(static_cast<size_t>(ts.num_ints)); |
| |
|
| | for (size_t i = 0; i < static_cast<size_t>(ts.num_ints); ++i) { |
| | tag.intValues[i] = atoi(token); |
| | token += strcspn(token, "/ \t\r") + 1; |
| | } |
| |
|
| | tag.floatValues.resize(static_cast<size_t>(ts.num_reals)); |
| | for (size_t i = 0; i < static_cast<size_t>(ts.num_reals); ++i) { |
| | tag.floatValues[i] = parseReal(&token); |
| | token += strcspn(token, "/ \t\r") + 1; |
| | } |
| |
|
| | tag.stringValues.resize(static_cast<size_t>(ts.num_strings)); |
| | for (size_t i = 0; i < static_cast<size_t>(ts.num_strings); ++i) { |
| | std::stringstream ss; |
| | ss << token; |
| | tag.stringValues[i] = ss.str(); |
| | token += tag.stringValues[i].size() + 1; |
| | } |
| |
|
| | tags.push_back(tag); |
| | } |
| | #endif |
| |
|
| | |
| | } |
| |
|
| | if (err) { |
| | (*err) += errss.str(); |
| | } |
| |
|
| | return true; |
| | } |
| |
|
| | bool ObjReader::ParseFromFile(const std::string &filename, |
| | const ObjReaderConfig &config) { |
| | std::string mtl_search_path; |
| |
|
| | if (config.mtl_search_path.empty()) { |
| | |
| | |
| | |
| | |
| | size_t pos = filename.find_last_of("/\\"); |
| | if (pos != std::string::npos) { |
| | mtl_search_path = filename.substr(0, pos); |
| | } |
| | } else { |
| | mtl_search_path = config.mtl_search_path; |
| | } |
| |
|
| | valid_ = LoadObj(&attrib_, &shapes_, &materials_, &warning_, &error_, |
| | filename.c_str(), mtl_search_path.c_str(), |
| | config.triangulate, config.vertex_color); |
| |
|
| | return valid_; |
| | } |
| |
|
| | bool ObjReader::ParseFromString(const std::string &obj_text, |
| | const std::string &mtl_text, |
| | const ObjReaderConfig &config) { |
| | std::stringbuf obj_buf(obj_text); |
| | std::stringbuf mtl_buf(mtl_text); |
| |
|
| | std::istream obj_ifs(&obj_buf); |
| | std::istream mtl_ifs(&mtl_buf); |
| |
|
| | MaterialStreamReader mtl_ss(mtl_ifs); |
| |
|
| | valid_ = LoadObj(&attrib_, &shapes_, &materials_, &warning_, &error_, |
| | &obj_ifs, &mtl_ss, config.triangulate, config.vertex_color); |
| |
|
| | return valid_; |
| | } |
| |
|
| | #ifdef __clang__ |
| | #pragma clang diagnostic pop |
| | #endif |
| | } |
| |
|
| | #endif |
| |
|