| 91 |
|
if (load & IO_TREE) { |
| 92 |
|
/* get the octree */ |
| 93 |
|
scene->cutree = gettree(); |
| 94 |
< |
/* get the scene */ |
| 95 |
< |
if (nf == 0 && load & IO_SCENE) { |
| 94 |
> |
if (load & IO_SCENE) /* get the scene */ |
| 95 |
> |
if (nf == 0) { |
| 96 |
|
for (i = 0; *getstr(sbuf); i++) |
| 97 |
|
if ((otypmap[i] = otype(sbuf)) < 0) { |
| 98 |
|
sprintf(errmsg, "unknown type \"%s\"", |
| 101 |
|
} |
| 102 |
|
while (getobj() != OVOID) |
| 103 |
|
; |
| 104 |
< |
} else if (load & IO_SCENE) { /* consistency checks */ |
| 105 |
< |
/* check object count */ |
| 104 |
> |
} else { /* consistency checks */ |
| 105 |
> |
/* check object count */ |
| 106 |
|
if (nobjects != objorig+fnobjects) |
| 107 |
|
octerror(USER, "bad object count; octree stale?"); |
| 108 |
< |
/* check for non-surfaces */ |
| 108 |
> |
/* check for non-surfaces */ |
| 109 |
|
if (nonsurfinset(objorig, fnobjects)) |
| 110 |
< |
octerror(USER, "non-surface in set; octree stale?"); |
| 111 |
< |
} |
| 110 |
> |
octerror(USER, "modifier in tree; octree stale?"); |
| 111 |
> |
} |
| 112 |
|
} |
| 113 |
|
fclose(infp); |
| 114 |
|
return(nf); |