| 16 |
|
#define CACHESIZE 16 /* default cache size (Mbytes, 0==inf) */ |
| 17 |
|
#endif |
| 18 |
|
#ifndef FREEBEAMS |
| 19 |
< |
#define FREEBEAMS 512 /* maximum beams to free at a time */ |
| 19 |
> |
#define FREEBEAMS 1024 /* maximum beams to free at a time */ |
| 20 |
|
#endif |
| 21 |
|
#ifndef PCTFREE |
| 22 |
< |
#define PCTFREE 20 /* maximum fraction to free (%) */ |
| 22 |
> |
#define PCTFREE 15 /* maximum fraction to free (%) */ |
| 23 |
|
#endif |
| 24 |
|
#ifndef MAXFRAG |
| 25 |
|
#define MAXFRAG 32767 /* maximum fragments/file to track (0==inf) */ |
| 105 |
|
int fd; /* corresponding file descriptor */ |
| 106 |
|
HDGRID *hproto; /* holodeck section grid */ |
| 107 |
|
{ |
| 108 |
+ |
long rtrunc; |
| 109 |
|
long fpos; |
| 110 |
|
register HOLO *hp; |
| 111 |
|
register int n; |
| 145 |
|
hdattach(fd); |
| 146 |
|
/* check rays on disk */ |
| 147 |
|
fpos = hdfilen(fd); |
| 148 |
< |
biglob(hp)->nrd = 0; |
| 148 |
> |
biglob(hp)->nrd = rtrunc = 0; |
| 149 |
|
for (n = hproto == NULL ? nbeams(hp) : 0; n > 0; n--) |
| 150 |
|
if (hp->bi[n].nrd) |
| 151 |
< |
if (hp->bi[n].fo + hp->bi[n].nrd > fpos) |
| 152 |
< |
hp->bi[n].nrd = 0; /* off end */ |
| 153 |
< |
else |
| 151 |
> |
if (hp->bi[n].fo + hp->bi[n].nrd > fpos) { |
| 152 |
> |
rtrunc += hp->bi[n].nrd; |
| 153 |
> |
hp->bi[n].nrd = 0; |
| 154 |
> |
} else |
| 155 |
|
biglob(hp)->nrd += hp->bi[n].nrd; |
| 156 |
+ |
if (rtrunc) { |
| 157 |
+ |
sprintf(errmsg, "truncated section, %ld rays lost (%.1f%%)", |
| 158 |
+ |
rtrunc, 100.*rtrunc/(rtrunc+biglob(hp)->nrd)); |
| 159 |
+ |
error(WARNING, errmsg); |
| 160 |
+ |
} |
| 161 |
|
/* add to holodeck list */ |
| 162 |
|
for (n = 0; n < HDMAX; n++) |
| 163 |
|
if (hdlist[n] == NULL) { |
| 648 |
|
{ |
| 649 |
|
register int i, j; |
| 650 |
|
/* insert each beam from hp */ |
| 651 |
< |
for (i = nbeams(hp); i > 0; i--) { |
| 651 |
> |
for (i = 1; i <= nbeams(hp); i++) { |
| 652 |
|
if (hp->bl[i] == NULL) /* check if loaded */ |
| 653 |
|
continue; |
| 654 |
|
#if 0 |