Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members | Related Pages

iphotontracer.h

Go to the documentation of this file.
00001 /*
00002     toxic - A Global Illumination Renderer
00003     Copyright (C) 2003-2004 Francois Beaune
00004     Contact: http://toxicengine.sourceforge.net/
00005 
00006     This file is part of toxic.
00007 
00008     toxic is free software; you can redistribute it and/or modify
00009     it under the terms of the GNU General Public License as published by
00010     the Free Software Foundation; either version 2 of the License, or
00011     (at your option) any later version.
00012 
00013     toxic is distributed in the hope that it will be useful,
00014     but WITHOUT ANY WARRANTY; without even the implied warranty of
00015     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00016     GNU General Public License for more details.
00017 
00018     You should have received a copy of the GNU General Public License
00019     along with toxic; if not, write to the Free Software
00020     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00021 */
00022 
00023 #ifndef TOXIC_RENDERER_IPHOTONTRACER_H
00024 #define TOXIC_RENDERER_IPHOTONTRACER_H
00025 
00026 #include "common/misc/progressmonitor.h"
00027 #include "globals.h"
00028 
00029 namespace toxic {
00030 
00031     class Color3;
00032     class Context;
00033     class ILight;
00034     class PhotonMap;
00035     class Ray;
00036     class Scene;
00037 
00038     class IPhotonTracer {
00039     public:
00040         virtual ~IPhotonTracer() {}
00041 
00042         //! 'nphotons' is the number of photons to trace for the whole scene
00043         //! (it is then divided amongst all lights).
00044         virtual void BuildPhotonMap(
00045             const Context &context,
00046             PhotonMap *photonmap,
00047             const Scene *scene,
00048             int photon_count,
00049             sheep::ProgressMonitor *progmon = 0
00050         ) const;
00051 
00052     protected:
00053         virtual void emit_photons(
00054             const Context &context,
00055             PhotonMap *photonmap,
00056             const Scene *scene,
00057             const ILight *light,
00058             int photon_count,
00059             sheep::ProgressMonitor *progmon
00060         ) const;
00061 
00062         virtual void trace_photon(
00063             const Context &context,
00064             PhotonMap *photonmap,
00065             const Scene *scene,
00066             Ray ray,
00067             Color3 power
00068         ) const = 0;
00069     };
00070 
00071 #include "iphotontracer.inl"
00072 
00073 }
00074 
00075 #endif  // !TOXIC_RENDERER_IPHOTONTRACER_H

Generated on Tue May 11 01:31:50 2004 for toxic by doxygen 1.3.6