ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/rcode_ident.c
(Generate patch)

Comparing ray/src/util/rcode_ident.c (file contents):
Revision 2.5 by greg, Wed Jul 24 00:17:22 2019 UTC vs.
Revision 2.6 by greg, Wed Jul 24 00:25:51 2019 UTC

# Line 214 | Line 214 | memerr:
214   }
215  
216  
217 < /* print out table IDs */
217 > /* print out ID table */
218   void
219   print_IDs(IDMAP *idmp)
220   {
# Line 234 | Line 234 | int
234   decode_select(const char *fname, int hdrflags)
235   {
236          IDMAP   *idmp = idmap_ropen(fname, hdrflags);
237 <        int     x, y;
237 >        int     i, j;
238  
239          if (!idmp)
240                  return 0;
# Line 248 | Line 248 | decode_select(const char *fname, int hdrflags)
248                  idmap_close(idmp);
249                  return 0;
250          }
251 <        while (scanf("%d %d", &x, &y) == 2) {
252 <                x = idmap_seek(idmp, x, idmp->res.yr-1 - y);
253 <                if (!x) {
251 >        while (scanf("%d %d", &i, &j) == 2) {
252 >                i = idmap_seek(idmp, i, idmp->res.yr-1 - j);
253 >                if (!i) {
254                          fputs(progname, stderr);
255                          fputs(": warning - pixel index is off map\n", stderr);
256                          continue;
257                  }
258 <                if (x > 0)
259 <                        x = idmap_next_i(idmp);
260 <                if (x < 0) {
258 >                if (i > 0)
259 >                        i = idmap_next_i(idmp);
260 >                if (i < 0) {
261                          fputs(fname, stderr);
262                          fputs(": read/seek error in decode_select()\n", stderr);
263                          idmap_close(idmp);
264                          return 0;
265                  }
266                  if (numeric) {
267 <                        printf("%d", x);
267 >                        printf("%d", i);
268                  } else {
269 <                        const char      *id = mapID(idmp, x);
269 >                        const char      *id = mapID(idmp, i);
270                          if (!id) {
271                                  fputs(fname, stderr);
272                                  fputs(": bad ID index in file\n", stderr);
# Line 308 | Line 308 | decode_all(const char *fname, int hdrflags)
308                  print_IDs(idmp);
309  
310          for (n = idmp->res.xr*idmp->res.yr; n-- > 0; ) {
311 <                int     ndx = idmap_next_i(idmp);
311 >                const int       ndx = idmap_next_i(idmp);
312                  if (ndx < 0) {
313                          fputs(fname, stderr);
314                          fputs(": unexpected EOF\n", stderr);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines