Commit graph

56 commits

Author SHA1 Message Date
Richard Knight
9e2c3677b6 Bump version number to 1.3 2024-06-04 20:27:55 +01:00
Tiago Chaves
12b04fc1ab
Merge branch 'master' into patch-1 2023-12-30 14:05:57 -05:00
Richard Knight
724e09ff1e Fix fuzzer test when vertex index is garbage 2023-12-21 17:17:30 +00:00
Arseny Kapoulkine
b827219dbf Mark materials that weren't loaded from mtllib as fallback
This can happen when mtllib is absent, points to a non-existing file, or
material names are incorrect. In either case it helps the reader
differentiate between materials that are actually specified in the file,
even if their definition happens to match the default, from materials
that were never loaded in the first place.
2023-12-15 11:29:56 -08:00
Arseny Kapoulkine
33e0ee7162 Trim trailing whitespace for names
Some .obj files have extra whitespace after usemtl and other statements;
this may interfere with parsing, for example by adding a space to the
material name which can result in inability to find it in .mtl file.

For consistency, we replace all uses of is_end_of_name with skip_name
that handles this by leaving trailing whitespace alone. It will be
skipped in the parsing flow when we skip the newline, which is similar
to the behavior of trailing whitespace after numeric data (which
parse_float/int leave alone).
2023-08-13 10:08:29 -07:00
Max Rigout
491efbbb59 removed extra white spaces 2023-08-03 10:17:31 -04:00
Max Rigout
cd5be148c3 re-added mesh normal initialization that was accidently removed) 2023-08-03 08:40:58 -04:00
Max Rigout
27803406d7 reverted color parsing to original approach 2023-08-03 08:31:16 -04:00
Max Rigout
2c91cb2993 added lazy fill for vertex_color_index 2023-08-02 22:18:31 -04:00
Max Rigout
9037820f30 improved color parsing 2023-08-02 22:17:37 -04:00
Max Rigout
a511f60249 added support for colored vertices (issue #28) 2023-07-31 21:23:40 -04:00
Arseny Kapoulkine
66f467de8f Fix 32-bit integer overflow issues
When an array reached a size that would require >4GB allocation, the
argument to realloc would overflow during multiplication, resulting in a
very small allocation and a subsequent out of bounds access.

This change fixes that and also adjusts capacity calculation so that it
doesn't overflow 32-bit range until it's basically impossible not to.

This is not perfect - in particular, on 32-bit systems there's a risk of
size_t overflow that remains, however because we grow in 1.5x
increments, realistically an attempt to grow a 2GB allocation to the
next increment would fail before that. We can also technically overflow
capacity even after the adjustment, but that requires 3+B elements which
effectively means an .obj file on the scale of hundreds of gigabytes, at
which point maybe a streaming parser would be more practical.
2023-06-08 20:35:25 -07:00
Tiago Chaves
6f4e843882
Move material texture maps into fastObjMesh 2022-08-29 11:24:49 -03:00
cadenji
3a1efbcc79 Add index_count member to fastObjMesh struct
In some cases we need to know the length of `indices`.
Currently need to calculate the sum of the `face_vertices`
elements to get this value.

It would be convenient if we could get the value directly.
2022-01-29 23:15:20 +08:00
Richard Knight
d2c273248a Use the same struct definition for Object and Group. 2021-10-19 08:54:00 +01:00
Richard Knight
ed03b86e7f Fix stupid face counting bug in objects 2021-10-19 08:44:07 +01:00
Richard Knight
9f4b38eb1b Add support for object names 2021-10-18 15:56:38 +01:00
Richard Knight
49c810ae1c Bump version number 2021-08-01 14:07:18 +01:00
Richard Knight
92551724cf Avoid signed overflow with crazy exponents. Fixes #27. 2021-06-01 18:23:53 +01:00
Arseny Kapoulkine
fed0e5760f
Fix version number in the comment
Also fix copyright year while I'm at this.
2021-03-31 22:55:39 -07:00
Richard Knight
5d1a8529cf Tidy formatting, bump version number. 2021-03-13 08:23:38 +00:00
Richard Knight
eba6f59206 Fix #25. Check for 'map_Bump' as well as 'map_bump'. 2021-03-13 08:21:43 +00:00
BeastLe9enD
723e0e4775 Fixes 2021-03-05 23:07:01 +01:00
BeastLe9enD
597b5a8420 Some fixes 2021-03-05 00:56:31 +01:00
BeastLe9enD
cf2d64dea3 Virtual filesystem support 2021-03-04 20:25:38 +01:00
Arseny Kapoulkine
a40b84252a Fix base path handling for mixed slashes
On Windows, paths with mixed slashes weren't processed correctly as `\`
would be picked if it was anywhere in the path for the purpose of
determining base.

This also removes the #ifdef _WIN32 from the logic; this helps on
platforms like Emscripten where running the resulting binary that
wasn't compiled with WIN32 still needs backslash processing; paths with
backslashes on Linux should be exceedingly rare, plus we *already*
correct backslashes with forward slashes on Linux anyway...
2021-01-17 10:27:44 -08:00
Richard Knight
0f90b6fa0f Allow both direction of slash as a path separator for initial path on Windows 2020-10-28 22:07:20 +00:00
Aurélien Chatelain
76143f7ef2 Create materials for 'usemtl' declaration
Problem: I read a bare OBJ so no MTL is provided. I still want
to keep the materials setup across the scene for further edit.

Fix: Instead of using a fallback material (idx 0), create a material
for each not-defined material while keeping the name
so that the structure of the model is conserved.
2020-10-20 07:52:02 +00:00
Richard Knight
4bc640697f Add a version number 2020-08-21 20:31:47 +01:00
Richard Knight
48127431ad Fix compiler warning 2020-05-23 16:27:22 +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
Sergej Reich
fad51e216c
Add extern "C" directive 2020-03-24 06:14:14 +01: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
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
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
Alex Purdy
e39ff32e4d Fix bump map read to wrong field 2019-07-19 13:57:50 -07: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
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
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
HBurd
c32ce4ac6b removed posix dependency 2019-05-21 07:40:42 -07:00