2011-04-27 11:58:34 +00:00
|
|
|
/*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Copyright 2011-2013 Blender Foundation
|
2011-04-27 11:58:34 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2011-04-27 11:58:34 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-04-27 11:58:34 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License
|
2011-04-27 11:58:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LIGHT_H__
|
|
|
|
#define __LIGHT_H__
|
|
|
|
|
2011-09-27 20:37:24 +00:00
|
|
|
#include "kernel_types.h"
|
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
#include "util_types.h"
|
|
|
|
#include "util_vector.h"
|
|
|
|
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
class Device;
|
|
|
|
class DeviceScene;
|
|
|
|
class Progress;
|
|
|
|
class Scene;
|
|
|
|
|
|
|
|
class Light {
|
|
|
|
public:
|
|
|
|
Light();
|
|
|
|
|
2011-09-27 20:37:24 +00:00
|
|
|
LightType type;
|
2011-04-27 11:58:34 +00:00
|
|
|
float3 co;
|
2011-09-27 20:37:24 +00:00
|
|
|
|
|
|
|
float3 dir;
|
|
|
|
float size;
|
|
|
|
|
|
|
|
float3 axisu;
|
|
|
|
float sizeu;
|
|
|
|
float3 axisv;
|
|
|
|
float sizev;
|
|
|
|
|
2012-01-20 17:49:17 +00:00
|
|
|
int map_resolution;
|
|
|
|
|
2012-06-04 17:17:10 +00:00
|
|
|
float spot_angle;
|
|
|
|
float spot_smooth;
|
|
|
|
|
2011-09-27 20:37:24 +00:00
|
|
|
bool cast_shadow;
|
2013-01-30 15:57:15 +00:00
|
|
|
bool use_mis;
|
2013-06-07 18:59:23 +00:00
|
|
|
bool use_diffuse;
|
|
|
|
bool use_glossy;
|
|
|
|
bool use_transmission;
|
2011-09-27 20:37:24 +00:00
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
int shader;
|
2012-06-13 11:44:48 +00:00
|
|
|
int samples;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
void tag_update(Scene *scene);
|
|
|
|
};
|
|
|
|
|
|
|
|
class LightManager {
|
|
|
|
public:
|
2013-06-08 13:43:38 +00:00
|
|
|
bool use_light_visibility;
|
2011-04-27 11:58:34 +00:00
|
|
|
bool need_update;
|
|
|
|
|
|
|
|
LightManager();
|
|
|
|
~LightManager();
|
|
|
|
|
|
|
|
void device_update(Device *device, DeviceScene *dscene, Scene *scene, Progress& progress);
|
|
|
|
void device_free(Device *device, DeviceScene *dscene);
|
|
|
|
|
|
|
|
void tag_update(Scene *scene);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void device_update_points(Device *device, DeviceScene *dscene, Scene *scene);
|
|
|
|
void device_update_distribution(Device *device, DeviceScene *dscene, Scene *scene, Progress& progress);
|
2012-01-20 17:49:17 +00:00
|
|
|
void device_update_background(Device *device, DeviceScene *dscene, Scene *scene, Progress& progress);
|
2011-04-27 11:58:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
CCL_NAMESPACE_END
|
|
|
|
|
|
|
|
#endif /* __LIGHT_H__ */
|
|
|
|
|