-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Loading materials #4
Comments
Thanks for pointing out. As you noticed, https://github.com/syoyo/tinyobjloader-c/blob/master/tinyobj_loader_c.h#L1081 Updating The best way is to implement (portable) string hash table like this, http://stackoverflow.com/questions/20462826/hash-function-for-strings-in-c But for a while, simple linear search should be enough since the number of materials are usually small(~100) |
I haven't very fully tested it yet but I made a pull request at #5 where I implemented a simple hashtable with quadratic probing and added it to parse_obj and parse_mtl (I renamed parse_mtl to parse_and_index_mtl, which fills a hash table with the material names and their indices and their names, and created parse_mtl which calls parse_and_index without providing a hash table (parameter is NULL)). |
Also I forgot to mention this before, but shouldn't tinyobj_parse_obj have the material file's data as a parameter? If tinyobj_parse_obj's intention is to allow the user to load their file however they want (hence the buf and len parameters, but no filename parameter), then perhaps it should also allow the user to feed it the data from the material file, rather than designing the function to not use fopen but then requiring it once a material filename is encountered. I have a couple of ideas:
Again this is an API decision, would be great to get some feedback! |
Thanks for hashing feature! For API, yes, you can implement callback based API like Please see example in C++ version: https://github.com/syoyo/tinyobjloader/blob/master/tiny_obj_loader.h#L316 Callback based API also make it possible to read .mtl data from memory. |
So, possible API design is
I will consider to rewrite |
Not an issue per se, but I just wanted to get an update on some of the contributors' plans for completing this.
Scanning through the code, it seems like the thing that needs to be done to wrap up the material loading is mapping material IDs for each face. Is it worth implementing a hashmap right in the file, or should it suffice to just keep a list of hashed material names that you search through linearly?
The text was updated successfully, but these errors were encountered: