mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 09:52:27 -04:00
took care of the dos file format on polylight* files and untabified
This commit is contained in:
parent
7e70887ab2
commit
9b3a2b9f98
@ -156,7 +156,7 @@ get_weight() const {
|
|||||||
// _contribution_type is a string that controls how
|
// _contribution_type is a string that controls how
|
||||||
// this division occurs.
|
// this division occurs.
|
||||||
// "proximal" : A light only contributes if the node
|
// "proximal" : A light only contributes if the node
|
||||||
// is inside its volume
|
// is inside its volume
|
||||||
// "all" : All lights added to the effect are used in
|
// "all" : All lights added to the effect are used in
|
||||||
// division irrespective of their light volumes
|
// division irrespective of their light volumes
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
|
@ -60,62 +60,62 @@ do_poly_light(const CullTraverserData *data, const TransformState *node_transfor
|
|||||||
// Cycle through all the lights in this effect's lightgroup
|
// Cycle through all the lights in this effect's lightgroup
|
||||||
for (light_iter = _lightgroup.begin(); light_iter != _lightgroup.end(); light_iter++){
|
for (light_iter = _lightgroup.begin(); light_iter != _lightgroup.end(); light_iter++){
|
||||||
const PolylightNode *light = DCAST(PolylightNode,light_iter->second.node());
|
const PolylightNode *light = DCAST(PolylightNode,light_iter->second.node());
|
||||||
// light holds the current PolylightNode
|
// light holds the current PolylightNode
|
||||||
if(light->is_enabled()) { // if enabled get all the properties
|
if(light->is_enabled()) { // if enabled get all the properties
|
||||||
float light_radius = light->get_radius();
|
float light_radius = light->get_radius();
|
||||||
PolylightNode::Attenuation_Type light_attenuation = light->get_attenuation();
|
PolylightNode::Attenuation_Type light_attenuation = light->get_attenuation();
|
||||||
float light_a0 = light->get_a0();
|
float light_a0 = light->get_a0();
|
||||||
float light_a1 = light->get_a1();
|
float light_a1 = light->get_a1();
|
||||||
float light_a2 = light->get_a2();
|
float light_a2 = light->get_a2();
|
||||||
if(light_a0 == 0 && light_a1 == 0 && light_a2 == 0) { // To prevent division by zero
|
if(light_a0 == 0 && light_a1 == 0 && light_a2 == 0) { // To prevent division by zero
|
||||||
light_a0 = 1.0;
|
light_a0 = 1.0;
|
||||||
}
|
}
|
||||||
Colorf light_color;
|
Colorf light_color;
|
||||||
if(light->is_flickering()) { // If flickering, modify color
|
if(light->is_flickering()) { // If flickering, modify color
|
||||||
light_color = light->flicker();
|
light_color = light->flicker();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
light_color = light->get_color();
|
light_color = light->get_color();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Calculate the distance of the node from the light
|
// Calculate the distance of the node from the light
|
||||||
//dist = light_iter->second->get_distance(data->_node_path.get_node_path());
|
//dist = light_iter->second->get_distance(data->_node_path.get_node_path());
|
||||||
const NodePath lightnp = light_iter->second;
|
const NodePath lightnp = light_iter->second;
|
||||||
LPoint3f point = data->_node_path.get_node_path().get_relative_point(lightnp,
|
LPoint3f point = data->_node_path.get_node_path().get_relative_point(lightnp,
|
||||||
light->get_pos());
|
light->get_pos());
|
||||||
dist = (point - _effect_center).length();
|
dist = (point - _effect_center).length();
|
||||||
|
|
||||||
if(dist < light_radius) { // If node is in range of this light
|
if(dist < light_radius) { // If node is in range of this light
|
||||||
if(light_attenuation == PolylightNode::ALINEAR) {
|
if(light_attenuation == PolylightNode::ALINEAR) {
|
||||||
light_scale = (light_radius - dist)/light_radius;
|
light_scale = (light_radius - dist)/light_radius;
|
||||||
}
|
}
|
||||||
else if(light_attenuation == PolylightNode::AQUADRATIC) {
|
else if(light_attenuation == PolylightNode::AQUADRATIC) {
|
||||||
fd = 1.0 / (light_a0 + light_a1 * dist + light_a2 * dist * dist);
|
fd = 1.0 / (light_a0 + light_a1 * dist + light_a2 * dist * dist);
|
||||||
if(fd < 1.0) {
|
if(fd < 1.0) {
|
||||||
light_scale = fd;
|
light_scale = fd;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
light_scale = 1.0;
|
light_scale = 1.0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
light_scale = 1.0;
|
light_scale = 1.0;
|
||||||
}
|
}
|
||||||
// Keep accumulating each lights contribution... we divide by
|
// Keep accumulating each lights contribution... we divide by
|
||||||
// number of lights later.
|
// number of lights later.
|
||||||
Rcollect += light_color[0] * light_scale;
|
Rcollect += light_color[0] * light_scale;
|
||||||
Gcollect += light_color[1] * light_scale;
|
Gcollect += light_color[1] * light_scale;
|
||||||
Bcollect += light_color[2] * light_scale;
|
Bcollect += light_color[2] * light_scale;
|
||||||
num_lights++;
|
num_lights++;
|
||||||
} // if dist< radius
|
} // if dist< radius
|
||||||
} // if light is enabled
|
} // if light is enabled
|
||||||
} // for all lights
|
} // for all lights
|
||||||
|
|
||||||
|
|
||||||
if( _contribution_type == CALL) {
|
if( _contribution_type == CALL) {
|
||||||
// Sometimes to prevent snapping of color at light volume boundaries
|
// Sometimes to prevent snapping of color at light volume boundaries
|
||||||
// just divide total contribution by all the lights in the effect
|
// just divide total contribution by all the lights in the effect
|
||||||
// whether or not they contribute color
|
// whether or not they contribute color
|
||||||
num_lights = _lightgroup.size();
|
num_lights = _lightgroup.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -155,7 +155,7 @@ compare_to_impl(const RenderEffect *other) const {
|
|||||||
DCAST_INTO_R(ta, other, 0);
|
DCAST_INTO_R(ta, other, 0);
|
||||||
|
|
||||||
if (_enabled != ta->_enabled) {
|
if (_enabled != ta->_enabled) {
|
||||||
return _enabled ? 1 : -1;
|
return _enabled ? 1 : -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_contribution_type != ta->_contribution_type) {
|
if (_contribution_type != ta->_contribution_type) {
|
||||||
@ -163,7 +163,7 @@ compare_to_impl(const RenderEffect *other) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (_weight != ta->_weight) {
|
if (_weight != ta->_weight) {
|
||||||
return _weight < ta->_weight ? -1 :1;
|
return _weight < ta->_weight ? -1 :1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_lightgroup != ta->_lightgroup) {
|
if (_lightgroup != ta->_lightgroup) {
|
||||||
|
@ -33,10 +33,10 @@
|
|||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Class : PolylightEffect
|
// Class : PolylightEffect
|
||||||
// Description : A PolylightEffect can be used on a node to define a
|
// Description : A PolylightEffect can be used on a node to define a
|
||||||
// LightGroup for that node. A LightGroup contains
|
// LightGroup for that node. A LightGroup contains
|
||||||
// Polylights which are essentially nodes that add
|
// Polylights which are essentially nodes that add
|
||||||
// color to the polygons of a model based on distance.
|
// color to the polygons of a model based on distance.
|
||||||
// PolylightNode is a cheap way to get lighting effects
|
// PolylightNode is a cheap way to get lighting effects
|
||||||
// specially for night scenes
|
// specially for night scenes
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
class EXPCL_PANDA PolylightEffect : public RenderEffect {
|
class EXPCL_PANDA PolylightEffect : public RenderEffect {
|
||||||
|
@ -79,27 +79,27 @@ Colorf PolylightNode::flicker() const {
|
|||||||
if(_flicker_type == FRANDOM) {
|
if(_flicker_type == FRANDOM) {
|
||||||
//srand((int)ClockObject::get_global_clock()->get_frame_time());
|
//srand((int)ClockObject::get_global_clock()->get_frame_time());
|
||||||
variation = (rand()%100);// * ClockObject::get_global_clock()->get_dt();
|
variation = (rand()%100);// * ClockObject::get_global_clock()->get_dt();
|
||||||
variation /= 100.0;
|
variation /= 100.0;
|
||||||
//printf("Random Variation: %f\n",variation);
|
//printf("Random Variation: %f\n",variation);
|
||||||
variation += _offset;
|
variation += _offset;
|
||||||
variation *= _scale;
|
variation *= _scale;
|
||||||
}
|
}
|
||||||
else if(_flicker_type == FSIN) {
|
else if(_flicker_type == FSIN) {
|
||||||
double now = ClockObject::get_global_clock()->get_frame_time();
|
double now = ClockObject::get_global_clock()->get_frame_time();
|
||||||
variation = sinf(now*_sin_freq);// * ClockObject::get_global_clock()->get_dt();
|
variation = sinf(now*_sin_freq);// * ClockObject::get_global_clock()->get_dt();
|
||||||
//printf("Variation: %f\n",variation);
|
//printf("Variation: %f\n",variation);
|
||||||
variation += _offset;
|
variation += _offset;
|
||||||
variation *= _scale;
|
variation *= _scale;
|
||||||
}
|
}
|
||||||
else if(_flicker_type == FCUSTOM) {
|
else if(_flicker_type == FCUSTOM) {
|
||||||
// fixed point list of variation values coming soon...
|
// fixed point list of variation values coming soon...
|
||||||
//double index = (ClockObject::get_global_clock()->get_frame_time() % len(fixed_points)) * ClockObject::get_global_clock()->get_dt();
|
//double index = (ClockObject::get_global_clock()->get_frame_time() % len(fixed_points)) * ClockObject::get_global_clock()->get_dt();
|
||||||
//index *= _speed;
|
//index *= _speed;
|
||||||
/*if(!(int)index > len(fixed_points) {
|
/*if(!(int)index > len(fixed_points) {
|
||||||
variation = _fixed_points[(int)index];
|
variation = _fixed_points[(int)index];
|
||||||
variation += _offset;
|
variation += _offset;
|
||||||
variation *= _scale;
|
variation *= _scale;
|
||||||
}*/
|
}*/
|
||||||
}
|
}
|
||||||
//printf("Variation: %f\n",variation);
|
//printf("Variation: %f\n",variation);
|
||||||
r+=variation;
|
r+=variation;
|
||||||
@ -126,7 +126,7 @@ Colorf PolylightNode::flicker() const {
|
|||||||
//
|
//
|
||||||
// Two PolylightNodes are considered equivalent if they
|
// Two PolylightNodes are considered equivalent if they
|
||||||
// consist of exactly the same properties
|
// consist of exactly the same properties
|
||||||
// Otherwise, they are different; different
|
// Otherwise, they are different; different
|
||||||
// PolylightNodes will be ranked in a consistent but
|
// PolylightNodes will be ranked in a consistent but
|
||||||
// undefined ordering; the ordering is useful only for
|
// undefined ordering; the ordering is useful only for
|
||||||
// placing the PolylightNodes in a sorted container like an
|
// placing the PolylightNodes in a sorted container like an
|
||||||
@ -136,62 +136,62 @@ int PolylightNode::
|
|||||||
compare_to(const PolylightNode &other) const {
|
compare_to(const PolylightNode &other) const {
|
||||||
|
|
||||||
if (_enabled != other._enabled) {
|
if (_enabled != other._enabled) {
|
||||||
return _enabled ? 1 :-1;
|
return _enabled ? 1 :-1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_radius != other._radius) {
|
if (_radius != other._radius) {
|
||||||
return _radius < other._radius ? -1 :1;
|
return _radius < other._radius ? -1 :1;
|
||||||
}
|
}
|
||||||
LVecBase3f position = get_pos();
|
LVecBase3f position = get_pos();
|
||||||
LVecBase3f other_position = other.get_pos();
|
LVecBase3f other_position = other.get_pos();
|
||||||
if (position != other_position) {
|
if (position != other_position) {
|
||||||
return position < other_position ? -1 :1;
|
return position < other_position ? -1 :1;
|
||||||
}
|
}
|
||||||
|
|
||||||
Colorf color = get_color();
|
Colorf color = get_color();
|
||||||
Colorf other_color = other.get_color();
|
Colorf other_color = other.get_color();
|
||||||
if (color != other_color) {
|
if (color != other_color) {
|
||||||
return color < other_color ? -1 :1;
|
return color < other_color ? -1 :1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_attenuation_type != other._attenuation_type) {
|
if (_attenuation_type != other._attenuation_type) {
|
||||||
return _attenuation_type < other._attenuation_type ? -1 :1;
|
return _attenuation_type < other._attenuation_type ? -1 :1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_a0 != other._a0) {
|
if (_a0 != other._a0) {
|
||||||
return _a0 < other._a0 ? -1 :1;
|
return _a0 < other._a0 ? -1 :1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_a1 != other._a1) {
|
if (_a1 != other._a1) {
|
||||||
return _a1 < other._a1 ? -1 :1;
|
return _a1 < other._a1 ? -1 :1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_a2 != other._a2) {
|
if (_a2 != other._a2) {
|
||||||
return _a2 < other._a2 ? -1 :1;
|
return _a2 < other._a2 ? -1 :1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_flickering != other._flickering) {
|
if (_flickering != other._flickering) {
|
||||||
return _flickering ? 1 :-1;
|
return _flickering ? 1 :-1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_flicker_type != other._flicker_type) {
|
if (_flicker_type != other._flicker_type) {
|
||||||
return _flicker_type < other._flicker_type ? -1 :1;
|
return _flicker_type < other._flicker_type ? -1 :1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_offset != other._offset) {
|
if (_offset != other._offset) {
|
||||||
return _offset < other._offset ? -1 :1;
|
return _offset < other._offset ? -1 :1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_scale != other._scale) {
|
if (_scale != other._scale) {
|
||||||
return _scale < other._scale ? -1 :1;
|
return _scale < other._scale ? -1 :1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_step_size != other._step_size) {
|
if (_step_size != other._step_size) {
|
||||||
return _step_size < other._step_size ? -1 :1;
|
return _step_size < other._step_size ? -1 :1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_sin_freq != other._sin_freq) {
|
if (_sin_freq != other._sin_freq) {
|
||||||
return _sin_freq < other._sin_freq ? -1 :1;
|
return _sin_freq < other._sin_freq ? -1 :1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -43,9 +43,9 @@ PUBLISHED:
|
|||||||
// have a simpler constructor and require the programmer
|
// have a simpler constructor and require the programmer
|
||||||
// to use set_* methods.
|
// to use set_* methods.
|
||||||
PolylightNode(const string &name, float x = 0.0, float y = 0.0, float z = 0.0,
|
PolylightNode(const string &name, float x = 0.0, float y = 0.0, float z = 0.0,
|
||||||
float r = 1.0, float g = 1.0, float b = 1.0,
|
float r = 1.0, float g = 1.0, float b = 1.0,
|
||||||
float radius=50.0, string attenuation_type= "linear",
|
float radius=50.0, string attenuation_type= "linear",
|
||||||
bool flickering =false, string flicker_type="random");
|
bool flickering =false, string flicker_type="random");
|
||||||
*/
|
*/
|
||||||
|
|
||||||
enum Flicker_Type {
|
enum Flicker_Type {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user