| 1 |
/* RCSid $Id: pmapparm.h,v 2.8 2017/08/14 21:12:10 rschregle Exp $ */
|
| 2 |
|
| 3 |
/*
|
| 4 |
======================================================================
|
| 5 |
Parameters for photon map generation and rendering; used by mkpmap
|
| 6 |
and rpict/rvu/rtrace.
|
| 7 |
|
| 8 |
Roland Schregle (roland.schregle@{hslu.ch, gmail.com}
|
| 9 |
(c) Fraunhofer Institute for Solar Energy Systems,
|
| 10 |
(c) Lucerne University of Applied Sciences and Arts,
|
| 11 |
supported by the Swiss National Science Foundation (SNSF, #147053)
|
| 12 |
======================================================================
|
| 13 |
|
| 14 |
$Id: pmapparm.h,v 2.8 2017/08/14 21:12:10 rschregle Exp $
|
| 15 |
*/
|
| 16 |
|
| 17 |
|
| 18 |
#ifndef PMAPPARAMS_H
|
| 19 |
#define PMAPPARAMS_H
|
| 20 |
|
| 21 |
#include "pmaptype.h"
|
| 22 |
|
| 23 |
|
| 24 |
/* Struct for passing params per photon map from rpict/rtrace/rvu */
|
| 25 |
typedef struct {
|
| 26 |
char *fileName; /* Photon map file */
|
| 27 |
unsigned minGather, maxGather; /* Num photons to gather */
|
| 28 |
unsigned long distribTarget; /* Num photons to store */
|
| 29 |
} PhotonMapParams;
|
| 30 |
|
| 31 |
/* Bounding box for region of interest */
|
| 32 |
typedef struct {
|
| 33 |
float min [3], max [3];
|
| 34 |
} PhotonMapROI;
|
| 35 |
|
| 36 |
|
| 37 |
extern PhotonMapParams pmapParams [NUM_PMAP_TYPES];
|
| 38 |
|
| 39 |
/* Macros for type specific photon map parameters */
|
| 40 |
#define globalPmapParams (pmapParams [PMAP_TYPE_GLOBAL])
|
| 41 |
#define preCompPmapParams (pmapParams [PMAP_TYPE_PRECOMP])
|
| 42 |
#define causticPmapParams (pmapParams [PMAP_TYPE_CAUSTIC])
|
| 43 |
#define volumePmapParams (pmapParams [PMAP_TYPE_VOLUME])
|
| 44 |
#define directPmapParams (pmapParams [PMAP_TYPE_DIRECT])
|
| 45 |
#define contribPmapParams (pmapParams [PMAP_TYPE_CONTRIB])
|
| 46 |
|
| 47 |
|
| 48 |
extern float pdfSamples, preDistrib, finalGather,
|
| 49 |
gatherTolerance, maxDistFix, pmapMaxDist,
|
| 50 |
photonMaxDist;
|
| 51 |
extern unsigned long photonHeapSizeInc, photonMaxBounce;
|
| 52 |
extern unsigned photonRepTime, maxPreDistrib, defaultGather,
|
| 53 |
verbose;
|
| 54 |
|
| 55 |
extern unsigned pmapNumROI;
|
| 56 |
extern PhotonMapROI *pmapROI;
|
| 57 |
|
| 58 |
#ifdef PMAP_OOC
|
| 59 |
extern float pmapCachePageSize;
|
| 60 |
extern unsigned long pmapCacheSize;
|
| 61 |
#endif
|
| 62 |
|
| 63 |
|
| 64 |
struct PhotonMap;
|
| 65 |
|
| 66 |
int setPmapParam (struct PhotonMap **pm, const PhotonMapParams *parm);
|
| 67 |
/* Allocate photon map and set its parameters from parm */
|
| 68 |
|
| 69 |
unsigned long parseMultiplier (const char *num);
|
| 70 |
/* Evaluate numeric parameter string with optional multiplier suffix
|
| 71 |
(G = 10^9, M = 10^6, K = 10^3). Returns 0 if parsing fails. */
|
| 72 |
#endif
|