| 1 |
< |
/* Copyright (c) 1995 Regents of the University of California */ |
| 2 |
< |
|
| 3 |
< |
/* SCCSid "$SunId$ LBL" */ |
| 4 |
< |
|
| 1 |
> |
/* RCSid $Id$ */ |
| 2 |
|
/* |
| 3 |
|
* source.h - header file for ray tracing sources. |
| 4 |
|
* |
| 5 |
< |
* 8/20/85 |
| 5 |
> |
* Include after ray.h |
| 6 |
|
*/ |
| 7 |
+ |
#ifndef _RAD_SOURCE_H_ |
| 8 |
+ |
#define _RAD_SOURCE_H_ |
| 9 |
|
|
| 10 |
+ |
#include <string.h> |
| 11 |
+ |
|
| 12 |
+ |
#ifdef __cplusplus |
| 13 |
+ |
extern "C" { |
| 14 |
+ |
#endif |
| 15 |
+ |
|
| 16 |
+ |
#ifndef AIMREQT |
| 17 |
|
#define AIMREQT 100 /* required aim success/failure */ |
| 18 |
+ |
#endif |
| 19 |
+ |
#ifndef SHADCACHE |
| 20 |
+ |
#define SHADCACHE 20 /* shadow cache resolution */ |
| 21 |
+ |
#endif |
| 22 |
+ |
#ifndef MINSHADCNT |
| 23 |
+ |
#define MINSHADCNT 2 /* test at least this many shadows */ |
| 24 |
+ |
#endif |
| 25 |
|
|
| 26 |
|
#define SDISTANT 01 /* source distant flag */ |
| 27 |
|
#define SSKIP 02 /* source skip flag */ |
| 29 |
|
#define SSPOT 010 /* source spotlight flag */ |
| 30 |
|
#define SVIRTUAL 020 /* source virtual flag */ |
| 31 |
|
#define SFLAT 040 /* source flat flag */ |
| 32 |
< |
#define SCYL 0100 /* source cylindrical flag */ |
| 33 |
< |
#define SFOLLOW 0200 /* source follow path flag */ |
| 32 |
> |
#define SCIR 0100 /* source circular flag */ |
| 33 |
> |
#define SCYL 0200 /* source cylindrical flag */ |
| 34 |
> |
#define SFOLLOW 0400 /* source follow path flag */ |
| 35 |
|
|
| 36 |
|
typedef struct { |
| 37 |
|
FVECT aim; /* aim direction or center */ |
| 40 |
|
} SPOT; /* spotlight */ |
| 41 |
|
|
| 42 |
|
typedef struct { |
| 43 |
< |
int sflags; /* source flags */ |
| 43 |
> |
union { |
| 44 |
> |
struct { |
| 45 |
> |
FVECT u, v; /* unit vectors */ |
| 46 |
> |
} f; /* flat source indexing */ |
| 47 |
> |
struct { |
| 48 |
> |
FVECT o; /* origin position */ |
| 49 |
> |
RREAL e1, e2; /* 1/extent */ |
| 50 |
> |
int ax; /* major direction */ |
| 51 |
> |
} d; /* distant source indexing */ |
| 52 |
> |
} p; /* indexing parameters */ |
| 53 |
> |
OBJECT obs[1]; /* cache obstructors (extends struct) */ |
| 54 |
> |
} OBSCACHE; /* obstructor cache */ |
| 55 |
> |
|
| 56 |
> |
typedef struct { |
| 57 |
|
FVECT sloc; /* direction or position of source */ |
| 58 |
|
FVECT ss[3]; /* source dimension vectors, U, V, and W */ |
| 59 |
|
float srad; /* maximum source radius */ |
| 60 |
|
float ss2; /* solid angle or projected area */ |
| 61 |
+ |
OBJREC *so; /* source destination object */ |
| 62 |
|
struct { |
| 63 |
|
float prox; /* proximity */ |
| 64 |
|
SPOT *s; /* spot */ |
| 70 |
|
int sn; /* next source to aim for */ |
| 71 |
|
} sv; /* virtual source */ |
| 72 |
|
} sa; /* source aiming information */ |
| 73 |
< |
long ntests, nhits; /* shadow tests and hits */ |
| 74 |
< |
OBJREC *so; /* source destination object */ |
| 73 |
> |
unsigned long |
| 74 |
> |
ntests, nhits; /* shadow tests and hits */ |
| 75 |
> |
#if SHADCACHE |
| 76 |
> |
OBSCACHE *obscache; /* obstructor cache */ |
| 77 |
> |
#endif |
| 78 |
> |
int sflags; /* source flags */ |
| 79 |
|
} SRCREC; /* light source */ |
| 80 |
|
|
| 81 |
|
#define MAXSPART 64 /* maximum partitions per source */ |
| 88 |
|
#define snorm ss[SW] /* normal vector for flat source */ |
| 89 |
|
|
| 90 |
|
typedef struct { |
| 91 |
+ |
double dom; /* solid angle of partition */ |
| 92 |
|
int sn; /* source number */ |
| 93 |
|
short np; /* number of partitions */ |
| 94 |
|
short sp; /* this partition number */ |
| 62 |
– |
double dom; /* solid angle of partition */ |
| 95 |
|
unsigned char spt[MAXSPART/2]; /* source partitioning */ |
| 96 |
|
} SRCINDEX; /* source index structure */ |
| 97 |
|
|
| 98 |
|
#define initsrcindex(s) ((s)->sn = (s)->sp = -1, (s)->np = 0) |
| 99 |
|
|
| 100 |
< |
#define clrpart(pt) bzero((char *)(pt), MAXSPART/2) |
| 100 |
> |
#define clrpart(pt) memset((char *)(pt), '\0', MAXSPART/2) |
| 101 |
|
#define setpart(pt,i,v) ((pt)[(i)>>2] |= (v)<<(((i)&3)<<1)) |
| 102 |
|
#define spart(pt,pi) ((pt)[(pi)>>2] >> (((pi)&3)<<1) & 3) |
| 103 |
|
|
| 117 |
|
* i passed to vproj runs from 0 to nproj-1. |
| 118 |
|
*/ |
| 119 |
|
|
| 120 |
< |
typedef struct { |
| 121 |
< |
int (*vproj)(); /* project virtual sources */ |
| 120 |
> |
typedef struct { /* project virtual sources */ |
| 121 |
> |
int (*vproj)(MAT4,OBJREC*,SRCREC*,int); |
| 122 |
|
int nproj; /* number of possible projections */ |
| 123 |
|
} VSMATERIAL; /* virtual source material functions */ |
| 124 |
|
|
| 125 |
|
typedef struct { |
| 126 |
< |
int (*setsrc)(); /* set light source for object */ |
| 127 |
< |
int (*partit)(); /* partition light source object */ |
| 128 |
< |
double (*getpleq)(); /* plane equation for surface */ |
| 129 |
< |
double (*getdisk)(); /* maximum disk for surface */ |
| 126 |
> |
void (*setsrc)(SRCREC*,OBJREC*); /* set light source for object */ |
| 127 |
> |
void (*partit)(SRCINDEX*,RAY*); /* partition light source object */ |
| 128 |
> |
double (*getpleq)(FVECT,OBJREC*); /* plane equation for surface */ |
| 129 |
> |
double (*getdisk)(FVECT,OBJREC*); /* maximum disk for surface */ |
| 130 |
|
} SOBJECT; /* source object functions */ |
| 131 |
|
|
| 132 |
|
typedef union { |
| 139 |
|
extern SRCREC *source; /* our source list */ |
| 140 |
|
extern int nsources; /* the number of sources */ |
| 141 |
|
|
| 110 |
– |
extern int srcvalue(); /* compute source value w/o shadows */ |
| 111 |
– |
extern double nextssamp(); /* get next source sample location */ |
| 112 |
– |
extern double scylform(); /* cosine to axis of cylinder */ |
| 113 |
– |
|
| 142 |
|
#define sflatform(sn,dir) -DOT(source[sn].snorm, dir) |
| 143 |
|
|
| 144 |
< |
extern OBJREC *vsmaterial(); /* virtual source material */ |
| 144 |
> |
#define getplaneq(c,o) (*sfun[(o)->otype].of->getpleq)(c,o) |
| 145 |
> |
#define getmaxdisk(c,o) (*sfun[(o)->otype].of->getdisk)(c,o) |
| 146 |
> |
#define setsource(s,o) (*sfun[(o)->otype].of->setsrc)(s,o) |
| 147 |
|
|
| 148 |
< |
extern double intercircle(); /* intersect two circles */ |
| 149 |
< |
extern double spotdisk(); /* intersecting disk for spot */ |
| 150 |
< |
extern double beamdisk(); /* intersecting disk for beam */ |
| 148 |
> |
/* defined in source.c */ |
| 149 |
> |
extern void marksources(void); |
| 150 |
> |
extern void distantsources(void); |
| 151 |
> |
extern void freesources(void); |
| 152 |
> |
extern int srcray(RAY *sr, RAY *r, SRCINDEX *si); |
| 153 |
> |
extern void srcvalue(RAY *r); |
| 154 |
> |
extern int sourcehit(RAY *r); |
| 155 |
> |
typedef void srcdirf_t(SCOLOR cv, void *np, FVECT ldir, double omega); |
| 156 |
> |
extern void direct(RAY *r, srcdirf_t *f, void *p); |
| 157 |
> |
extern void srcscatter(RAY *r); |
| 158 |
> |
extern int m_light(OBJREC *m, RAY *r); |
| 159 |
> |
/* defined in srcobstr.c */ |
| 160 |
> |
extern void initobscache(int sn); |
| 161 |
> |
extern int srcblocker(RAY *r); |
| 162 |
> |
extern int srcblocked(RAY *r); |
| 163 |
> |
extern void freeobscache(SRCREC *s); |
| 164 |
> |
extern void markclip(OBJREC *m); |
| 165 |
> |
/* defined in srcsamp.c */ |
| 166 |
> |
extern int srcskip(int sn, RAY *r); |
| 167 |
> |
extern double nextssamp(RAY *r, SRCINDEX *si); |
| 168 |
> |
extern int skipparts(int ct[3], int sz[3], int pp[2], unsigned char *pt); |
| 169 |
> |
extern void nopart(SRCINDEX *si, RAY *r); |
| 170 |
> |
extern void cylpart(SRCINDEX *si, RAY *r); |
| 171 |
> |
extern void flatpart(SRCINDEX *si, RAY *r); |
| 172 |
> |
extern double scylform(int sn, FVECT dir); |
| 173 |
> |
/* defined in srcskipload.c */ |
| 174 |
> |
extern int sskip_dim[2]; /* source skip image size */ |
| 175 |
> |
extern int srcskip_open(char *bmpspec, char *scorrimg); |
| 176 |
> |
extern int srcskip_getrow(int row, int *sndx, float *scorr); |
| 177 |
> |
extern int *srcskip_ndxmap(void); |
| 178 |
> |
extern float *srcskip_corrmap(void); |
| 179 |
> |
extern void srcskip_close(void); |
| 180 |
> |
extern void srcskip_free_maps(void); |
| 181 |
> |
/* defined in srcsupp.c */ |
| 182 |
> |
extern void initstypes(void); |
| 183 |
> |
extern int newsource(void); |
| 184 |
> |
extern void setflatss(SRCREC *src); |
| 185 |
> |
extern void fsetsrc(SRCREC *src, OBJREC *so); |
| 186 |
> |
extern void ssetsrc(SRCREC *src, OBJREC *so); |
| 187 |
> |
extern void sphsetsrc(SRCREC *src, OBJREC *so); |
| 188 |
> |
extern void rsetsrc(SRCREC *src, OBJREC *so); |
| 189 |
> |
extern void cylsetsrc(SRCREC *src, OBJREC *so); |
| 190 |
> |
extern SPOT *makespot(OBJREC *m); |
| 191 |
> |
extern int spotout(RAY *r, SPOT *s); |
| 192 |
> |
extern double fgetmaxdisk(FVECT ocent, OBJREC *op); |
| 193 |
> |
extern double rgetmaxdisk(FVECT ocent, OBJREC *op); |
| 194 |
> |
extern double fgetplaneq(FVECT nvec, OBJREC *op); |
| 195 |
> |
extern double rgetplaneq(FVECT nvec, OBJREC *op); |
| 196 |
> |
extern int commonspot(SPOT *sp1, SPOT *sp2, FVECT org); |
| 197 |
> |
extern int commonbeam(SPOT *sp1, SPOT *sp2, FVECT org); |
| 198 |
> |
extern int checkspot(SPOT *sp, FVECT nrm); |
| 199 |
> |
extern double spotdisk(FVECT oc, OBJREC *op, SPOT *sp, FVECT pos); |
| 200 |
> |
extern double beamdisk(FVECT oc, OBJREC *op, SPOT *sp, FVECT dir); |
| 201 |
> |
extern double intercircle(FVECT cc, FVECT c1, FVECT c2, |
| 202 |
> |
double r1s, double r2s); |
| 203 |
> |
/* defined in virtuals.c */ |
| 204 |
> |
extern void markvirtuals(void); |
| 205 |
> |
extern void addvirtuals(int sn, int nr); |
| 206 |
> |
extern void vproject(OBJREC *o, int sn, int n); |
| 207 |
> |
extern OBJREC *vsmaterial(OBJREC *o); |
| 208 |
> |
extern int makevsrc(OBJREC *op, int sn, MAT4 pm); |
| 209 |
> |
extern double getdisk(FVECT oc, OBJREC *op, int sn); |
| 210 |
> |
extern int vstestvis(int f, OBJREC *o, FVECT oc, double or2, int sn); |
| 211 |
> |
extern void virtverb(int sn, FILE *fp); |
| 212 |
|
|
| 122 |
– |
extern SPOT *makespot(); /* make spotlight */ |
| 213 |
|
|
| 214 |
< |
extern double dstrsrc; /* source distribution amount */ |
| 215 |
< |
extern double shadthresh; /* relative shadow threshold */ |
| 216 |
< |
extern double shadcert; /* shadow testing certainty */ |
| 217 |
< |
extern double srcsizerat; /* max. ratio of source size/dist. */ |
| 128 |
< |
extern int directrelay; /* maximum number of source relays */ |
| 129 |
< |
extern int vspretest; /* virtual source pretest density */ |
| 130 |
< |
extern int directvis; /* sources visible? */ |
| 214 |
> |
#ifdef __cplusplus |
| 215 |
> |
} |
| 216 |
> |
#endif |
| 217 |
> |
#endif /* _RAD_SOURCE_H_ */ |
| 218 |
|
|
| 132 |
– |
#define getplaneq(c,o) (*sfun[(o)->otype].of->getpleq)(c,o) |
| 133 |
– |
#define getmaxdisk(c,o) (*sfun[(o)->otype].of->getdisk)(c,o) |
| 134 |
– |
#define setsource(s,o) (*sfun[(o)->otype].of->setsrc)(s,o) |