Commit graph

95 commits

Author SHA1 Message Date
Richard Knight
f12fb80c54
Merge pull request #17 from Kuranes/patch-2
Add support for name with spaces
2020-04-17 16:43:29 +01:00
Tuan Kuranes
a33d94e41f
Add support for name with spaces
- allows filepath with spaces for textures
- allows names with space for internal names in obj (group, material)
- It fixes incorrect matching (material name matching on first part of a name like "my material" merges all material with same start)
2020-04-17 17:10:10 +02:00
Richard Knight
e16fb04bab
Merge pull request #16 from sergof/patch-1
Add extern "C" directive
2020-03-24 08:51:12 +00:00
Sergej Reich
fad51e216c
Add extern "C" directive 2020-03-24 06:14:14 +01:00
Richard Knight
13284900ee Attempt to clarify use of dummy entry in position/normal/texture coordinate arrays 2020-02-29 15:01:22 +00:00
Richard Knight
ca31ba8df4
Merge pull request #14 from zeux/master
Fix MSVC /W4 warning
2020-02-08 09:10:22 +00:00
Arseny Kapoulkine
30348b561a Fix MSVC /W4 warning
Conversion from size_t to unsigned int is lossy.
2020-02-07 20:45:58 -08:00
Richard Knight
74e8dc9e07 Convert tabs to spaces 2020-01-01 11:21:50 +00:00
Richard Knight
a22740ad84
Merge pull request #11 from Kuranes/Adds-big-file-support
Adds big obj files support
2019-11-26 08:40:53 +00:00
Kuranes
33ddb7ad33 Adds big obj files support
Problem: on a 22gb file, it fails on "out of bound write"

Fix: using size_t on 64bits for arithmetic ptr alloc/index system fixes it

Usage: user can define FAST_OBJ_UINT_TYPE as size_t on x64
2019-11-26 09:26:46 +01:00
Richard Knight
256f09e8d5
Merge pull request #9 from zeux/memmove
Fix memcpy with overlapping regions
2019-07-27 08:43:54 +01:00
Richard Knight
a92b6f4ad1
Merge pull request #8 from zeux/fix-overflow
Fix buffer overflow in string_equal
2019-07-27 08:43:33 +01:00
Arseny Kapoulkine
1670fe1c00 Fix memcpy with overlapping regions
When moving the unprocessed line to the beginning of the buffer, in rare
edge cases where the unprocessed chunk is larger than the processed
chunks (which means the lines are very long), the source & target range
will overlap. This is undefined as per C standard and triggers ubsan
errors.

Fix this by using memmove.
2019-07-26 22:27:31 -07:00
Arseny Kapoulkine
4053ffa30f Fix buffer overflow in string_equal
When string_equal's first argument is a prefix of the second argument
but the second argument is longer, the loop goes through all characters
of the first string, compares terminating NUL with a different character
in the right hand side string, discovers that it's different and leaves
the loop - with 'a' having already been incremented.

After this the condition proceeds to read from *a which causes a buffer
overrun.

Fix this by changing the function to something that's obviously correct,
even if somewhat less efficient.
2019-07-26 22:20:26 -07:00
Richard Knight
38b9f04613
Merge pull request #7 from aspurdy/fix-bump-map
Fix bump map parsing
2019-07-20 08:42:46 +01:00
Alex Purdy
e39ff32e4d Fix bump map read to wrong field 2019-07-19 13:57:50 -07:00
Richard Knight
00c6f32e37
Merge pull request #6 from zeux/master
Merge all face/index arrays together
2019-06-11 17:16:53 +01:00
Arseny Kapoulkine
9aaef40e36 Merge all face/index arrays together
Instead of each group storing a separate face/index array, we now store
one large face/index array and each group stores offsets inside it.

This makes it easier to parse .obj files when group information is
unimportant since one can just skip it - group information is often
inessential as it doesn't affect rendering behavior.

This makes parsing large files slightly faster (rungholt.obj parses in
~500ms instead of ~530ms after this change).
2019-06-11 07:35:30 -07:00
Richard Knight
c4c468f9db
Merge pull request #4 from zeux/master
Preserve texture name from .mtl as is
2019-06-02 09:06:12 +01:00
Arseny Kapoulkine
8685eea9a7 Preserve texture name from .mtl as is
For use-cases that require parsing the .obj file and outputting another
file, resolving texture paths is inconvenient since the result depends
on the path that's passed to obj_fast_read. While this can be resolved
by recomputing the relative path in user code, it seems cleaner to keep
the map names as is when parsing .mtl.

Of course, if .obj file is required for rendering, the path
concatenation is still convenient. This change makes
fastObjTexture::name contain the original data, and fastObjTexture::path
contains the resolved path that can be used to actually load the texture
if necessary.
2019-06-01 15:13:38 -07:00
Richard Knight
e46d667406
Merge pull request #3 from zeux/negative
Fix negative index parsing
2019-06-01 20:53:35 +01:00
Richard Knight
c8e30d83b4
Merge pull request #2 from zeux/master
Fix .obj parsing when empty 'g' is last
2019-06-01 20:52:33 +01:00
Arseny Kapoulkine
095a1b0b92 Fix negative index parsing
Negative indices refer to offsets of vertices (before multiplying by
stride), but array size of position/etc. is multiplied by stride.

Integer division isn't ideal for performance, however division by 3 is
lowered into integer multiplication on gcc/clang/msvc so this shouldn't
be a big concern.
2019-06-01 12:07:30 -07:00
Arseny Kapoulkine
293b83f259 Fix .obj parsing when empty 'g' is last
In some .obj files, there's a stray 'g' followed by a newline at the
very end of the file. What happens right now is that *p++ skips past the
"terminating newline", and then proceeds to process out of bounds memory
which leads to a crash.

I'm not sure if 'g' can actually be empty per spec, so this change just
fixes the crash without resetting the group to "default" or anything
like that; 'v'/'f' shouldn't be empty but this would fix crashing when
parsing malicious/malformed .obj files as well.
2019-06-01 11:31:34 -07:00
Richard Knight
814900cd31 Fix some compile warnings 2019-05-30 21:20:01 +01:00
Richard Knight
68692e0d42 Fix typo in previous change 2019-05-22 20:39:11 +01:00
unknown
c9aff21d1c Fix Windows compilation warnings 2019-05-22 10:55:27 +01:00
unknown
8abbedd6a1 Don't crash if we fail to read the material library 2019-05-22 10:50:31 +01:00
unknown
9ca2dc9796 Deal with differing path separators on Windows vs Mac/Linux 2019-05-22 10:48:54 +01:00
Richard Knight
c4fcea5a9f
Merge pull request #1 from HBurd/master
Removed POSIX dependency
2019-05-22 10:40:07 +01:00
HBurd
b1f8f1b17f demo fix for breaking api changes in tinyobj v1.3 2019-05-21 07:47:38 -07:00
HBurd
c32ce4ac6b removed posix dependency 2019-05-21 07:40:42 -07:00
Richard Knight
a4a143cfcd Remove Tr from material (now read as 'd' instead) 2019-05-19 17:40:24 +01:00
Richard Knight
023905f0ba Basic texture map information now read 2019-05-19 17:38:33 +01:00
Richard Knight
3fe5161190 Make sure redefined free callback is actually used 2019-05-19 12:02:41 +01:00
Richard Knight
c50de83c6b Add timing code to tests 2019-05-19 10:01:11 +01:00
Richard Knight
6f84c4fc9e Remove compile flags from CMakeLists.txt 2019-05-19 10:01:03 +01:00
Richard Knight
657e55922f Fix test when obj has no name 2019-05-19 09:52:26 +01:00
Richard Knight
57fe05171f Add CMakeLists.txt for tests 2019-05-19 09:52:11 +01:00
Richard Knight
092fea75d7 Add .gitignore file 2019-05-19 09:51:43 +01:00
Richard Knight
625043999c Allow memory allocation to be overridden 2019-05-19 09:51:23 +01:00
Richard Knight
005b738a2a Ensure static functions are static 2018-07-29 14:01:39 +01:00
Richard Knight
ef746985fb Slight reorganise to fit in with stb reqs 2018-07-29 13:59:16 +01:00
Richard Knight
bcc2d614f9 Add code, update readme 2018-07-29 13:41:09 +01:00
thisistherk
a0cfa7738d
Initial commit 2018-07-29 13:31:09 +01:00