// // Copyright 2012-2013, Syoyo Fujita. // // Licensed under 2-clause BSD liecense. // // copied from Syoyo Fujita // https://github.com/syoyo/tinyobjloader #ifndef __CCOBJLOADER_H__ #define __CCOBJLOADER_H__ #include #include #include #include "base/ccTypes.h" NS_CC_BEGIN /** * @addtogroup _3d * @{ */ /** * @brief .obj file Loader **/ class ObjLoader { public: /** * model's material struct **/ typedef struct { std::string name; float ambient[3]; float diffuse[3]; float specular[3]; float transmittance[3]; float emission[3]; float shininess; float ior; // index of refraction float dissolve; // 1 == opaque; 0 == fully transparent // illumination model (see http://www.fileformat.info/format/material/) int illum; std::string ambient_texname; std::string diffuse_texname; std::string specular_texname; std::string normal_texname; std::map unknown_parameter; } material_t; /** * model's indices struct **/ typedef struct { std::vector indices; } mesh_t; /** * model's shape struct **/ typedef struct { std::string name; material_t material; mesh_t mesh; } shape_t; /** * model's shapes struct **/ typedef struct { std::vector positions; std::vector normals; std::vector texcoords; std::vector shapes; void reset() { positions.clear(); normals.clear(); texcoords.clear(); shapes.clear(); } }shapes_t; /** * Loads .obj from a file. * @param shapes will be filled with parsed shape data * @param filename the .obj file path . * @param mtl_basepath It's optional, and used for base path for .mtl file * @return The function returns error string, return empty string when loading .obj success. */ static std::string LoadObj( shapes_t& shapes, // [output] const char* filename, const char* mtl_basepath = NULL); }; // end of actions group /// @} NS_CC_END #endif // _TINY_OBJ_LOADER_H