From a33d94e41f4d8987c55205aa03bbbc7dc55ec698 Mon Sep 17 00:00:00 2001 From: Tuan Kuranes Date: Fri, 17 Apr 2020 17:10:10 +0200 Subject: [PATCH] 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) --- fast_obj.h | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/fast_obj.h b/fast_obj.h index a1ed4fb..8ccec12 100644 --- a/fast_obj.h +++ b/fast_obj.h @@ -405,6 +405,11 @@ int is_whitespace(char c) return (c == ' ' || c == '\t' || c == '\r'); } +static +int is_end_of_name(char c) +{ + return (c == '\t' || c == '\r' || c == '\n'); +} static int is_newline(char c) @@ -722,7 +727,7 @@ const char* parse_group(fastObjData* data, const char* ptr) ptr = skip_whitespace(ptr); s = ptr; - while (!is_whitespace(*ptr) && !is_newline(*ptr)) + while (!is_end_of_name(*ptr)) ptr++; e = ptr; @@ -803,7 +808,7 @@ const char* parse_usemtl(fastObjData* data, const char* ptr) /* Parse the material name */ s = ptr; - while (!is_whitespace(*ptr) && !is_newline(*ptr)) + while (!is_end_of_name(*ptr)) ptr++; e = ptr; @@ -901,7 +906,7 @@ const char* read_map(fastObjData* data, const char* ptr, fastObjTexture* map) /* Read name */ s = ptr; - while (!is_whitespace(*ptr) && !is_newline(*ptr)) + while (!is_end_of_name(*ptr)) ptr++; e = ptr; @@ -977,7 +982,7 @@ int read_mtllib(fastObjData* data, void* file) p++; s = p; - while (!is_whitespace(*p) && !is_newline(*p)) + while (!is_end_of_name(*p)) p++; mtl.name = string_copy(s, p); @@ -1120,7 +1125,7 @@ const char* parse_mtllib(fastObjData* data, const char* ptr) ptr = skip_whitespace(ptr); s = ptr; - while (!is_whitespace(*ptr) && !is_newline(*ptr)) + while (!is_end_of_name(*ptr)) ptr++; e = ptr; @@ -1404,4 +1409,3 @@ fastObjMesh* fast_obj_read(const char* path) } #endif -