Compare commits
4 Commits
0b5dd38b58
...
166dc651b4
Author | SHA1 | Date | |
---|---|---|---|
166dc651b4 | |||
af35f158cd | |||
b9919b09e5 | |||
a8e9418d18 |
2
.gitignore
vendored
2
.gitignore
vendored
@ -6,7 +6,7 @@ tbb
|
||||
gmon.out
|
||||
dummy-file
|
||||
|
||||
tools/covid-19.obj
|
||||
tools/*.obj
|
||||
tools/read_obj
|
||||
tools/xyz
|
||||
|
||||
|
2
Makefile
2
Makefile
@ -10,7 +10,7 @@
|
||||
|
||||
CC = gcc
|
||||
|
||||
OPT = -Wall -g -DDEBUG_LEVEL=0 -DMUST_ABORT
|
||||
OPT = -Wall -g -DDEBUG_LEVEL=0 -DMUST_ABORT=0
|
||||
|
||||
libbubulles.a: bubulles.o importobj.o
|
||||
ar r $@ $?
|
||||
|
12
bubulles.c
12
bubulles.c
@ -45,7 +45,7 @@ Bubulle *array;
|
||||
fprintf(stderr, "+++ %s '%s' %d 0x%X\n", __func__, name, sz, unused);
|
||||
#endif
|
||||
|
||||
if (NULL==(bblptr = malloc(sizeof(BBList)))) {
|
||||
if (NULL==(bblptr = calloc(1, sizeof(BBList)))) {
|
||||
fprintf(stderr, "no mem available in %s\n", __func__);
|
||||
return NULL;
|
||||
}
|
||||
@ -142,16 +142,12 @@ fprintf(stderr, "XYZ %f %f %f\n", what->p.x, what->p.y, what->p.z);
|
||||
if (where->fidx > where->size) {
|
||||
/* this is a very bad fatal error */
|
||||
fprintf(stderr, "%s : overflow in BBList at %p\n", __func__, where);
|
||||
#if MUST_ABORT
|
||||
abort();
|
||||
}
|
||||
|
||||
if (where->fidx > where->size) {
|
||||
/* array is full */
|
||||
#if DEBUG_LEVEL
|
||||
fprintf(stderr, "%s : array of %p is full\n", __func__, where);
|
||||
#endif
|
||||
#endif
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
memcpy(&where->bbs[where->fidx], what, sizeof(Bubulle));
|
||||
|
||||
|
36
importobj.c
36
importobj.c
@ -21,7 +21,9 @@ int try_to_read_an_OBJ_file(char *fname, int notused)
|
||||
FILE *fpin;
|
||||
char line[LINE_SZ+1], *cptr;
|
||||
float x, y, z;
|
||||
int foo;
|
||||
int foo, nbre;
|
||||
BBList *bublist;
|
||||
Bubulle bubulle;
|
||||
|
||||
#if DEBUG_LEVEL
|
||||
fprintf(stderr, ">>> %s ( '%s' %d )\n", __func__, fname, notused);
|
||||
@ -32,6 +34,14 @@ if (NULL==(fpin=fopen(fname, "r"))) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
bublist = alloc_bubulles(fname, 1000, 0);
|
||||
if (NULL==bublist) {
|
||||
fprintf(stderr, "err in %s, aborting...\n", __func__);
|
||||
abort();
|
||||
}
|
||||
print_bublist_desc(bublist, 0);
|
||||
|
||||
nbre = 0;
|
||||
while(cptr=fgets(line, LINE_SZ, fpin)) {
|
||||
|
||||
if (verbosity>1) fputs(line, stderr);
|
||||
@ -46,16 +56,28 @@ while(cptr=fgets(line, LINE_SZ, fpin)) {
|
||||
cptr = strtok(NULL, " ");
|
||||
foo = sscanf(cptr, "%f", &z);
|
||||
|
||||
fprintf(stdout, "%16g %16g %16g\n", x, y, z);
|
||||
memset(&bubulle, 0, sizeof(Bubulle));
|
||||
niceprint_bubulle(&bubulle, 0);
|
||||
|
||||
bubulle.p.x = x;
|
||||
bubulle.p.y = y;
|
||||
bubulle.p.z = z;
|
||||
niceprint_bubulle(&bubulle, 0);
|
||||
|
||||
foo = push_bubulle(bublist, &bubulle);
|
||||
if (foo) {
|
||||
fprintf(stderr, "err %d on push\n", foo);
|
||||
break;
|
||||
}
|
||||
nbre++;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
fclose(fpin);
|
||||
|
||||
return -7800;
|
||||
if(verbosity) {
|
||||
fprintf(stderr, "%s : %d vertices loaded\n", __func__, nbre);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* --------------------------------------------------------------------- */
|
||||
|
@ -1,5 +1,7 @@
|
||||
|
||||
BBFUNCS = ../libbubulles.a
|
||||
|
||||
read_obj: read_obj.c Makefile ${BBFUNCS}
|
||||
gcc -Wall -DDEBUG_LEVEL=1 $< ${BBFUNCS} -o $@
|
||||
OPT = -Wall -g -DDEBUG_LEVEL=1 -DMUST_ABORT
|
||||
|
||||
read_obj: read_obj.c Makefile $(BBFUNCS)
|
||||
gcc $(OPT) $< $(BBFUNCS) -o $@
|
||||
|
@ -18,12 +18,10 @@ if (2 != argc) {
|
||||
exit(0);
|
||||
}
|
||||
|
||||
verbosity = 0;
|
||||
verbosity = 1;
|
||||
|
||||
foo = try_to_read_an_OBJ_file(argv[1], 0);
|
||||
|
||||
|
||||
|
||||
fprintf(stderr, "try to read -> %d\n", foo);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user