mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
add set_ignore_scale
This commit is contained in:
parent
3cf1d513f2
commit
cd10f4fcbc
@ -17,8 +17,8 @@
|
|||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Function : get_render_node
|
// Function : BaseParticleRender::get_render_node
|
||||||
// Class : Public
|
// Class : Published
|
||||||
// Description : Query the geomnode pointer
|
// Description : Query the geomnode pointer
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
INLINE GeomNode *BaseParticleRenderer::
|
INLINE GeomNode *BaseParticleRenderer::
|
||||||
@ -27,8 +27,8 @@ get_render_node() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Function : set_alpha_mode
|
// Function : BaseParticleRender::set_alpha_mode
|
||||||
// Access : public
|
// Access : Published
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
INLINE void BaseParticleRenderer::
|
INLINE void BaseParticleRenderer::
|
||||||
set_alpha_mode(BaseParticleRenderer::ParticleRendererAlphaMode am) {
|
set_alpha_mode(BaseParticleRenderer::ParticleRendererAlphaMode am) {
|
||||||
@ -37,8 +37,8 @@ set_alpha_mode(BaseParticleRenderer::ParticleRendererAlphaMode am) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Function : get_alpha_mode
|
// Function : BaseParticleRender::get_alpha_mode
|
||||||
// Access : public
|
// Access : Published
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
INLINE BaseParticleRenderer::ParticleRendererAlphaMode BaseParticleRenderer::
|
INLINE BaseParticleRenderer::ParticleRendererAlphaMode BaseParticleRenderer::
|
||||||
get_alpha_mode() const {
|
get_alpha_mode() const {
|
||||||
@ -46,8 +46,8 @@ get_alpha_mode() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Function : set_user_alpha
|
// Function : BaseParticleRender::set_user_alpha
|
||||||
// Access : public
|
// Access : Published
|
||||||
// Description : sets alpha for "user" alpha mode
|
// Description : sets alpha for "user" alpha mode
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
INLINE void BaseParticleRenderer::
|
INLINE void BaseParticleRenderer::
|
||||||
@ -56,8 +56,8 @@ set_user_alpha(float ua) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Function : get_user_alpha
|
// Function : BaseParticleRender::get_user_alpha
|
||||||
// Access : public
|
// Access : Published
|
||||||
// Description : gets alpha for "user" alpha mode
|
// Description : gets alpha for "user" alpha mode
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
INLINE float BaseParticleRenderer::
|
INLINE float BaseParticleRenderer::
|
||||||
@ -66,8 +66,8 @@ get_user_alpha() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Function : set_color_blend_mode
|
// Function : BaseParticleRender::set_color_blend_mode
|
||||||
// Access : public
|
// Access : Published
|
||||||
// Description : sets the ColorBlendAttrib on the _render_node
|
// Description : sets the ColorBlendAttrib on the _render_node
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
INLINE void BaseParticleRenderer::
|
INLINE void BaseParticleRenderer::
|
||||||
@ -81,11 +81,22 @@ set_color_blend_mode(ColorBlendAttrib::Mode bm, ColorBlendAttrib::Operand oa, Co
|
|||||||
|
|
||||||
_render_node->set_attrib(ra);
|
_render_node->set_attrib(ra);
|
||||||
return;
|
return;
|
||||||
};
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Function : get_cur_alpha
|
// Function : BaseParticleRender::get_ignore_scale
|
||||||
// Access : public
|
// Access : Published
|
||||||
|
// Description : Returns the "ignore scale" flag. See
|
||||||
|
// set_ignore_scale().
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
INLINE bool BaseParticleRenderer::
|
||||||
|
get_ignore_scale() const {
|
||||||
|
return _ignore_scale;
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
// Function : BaseParticleRender::get_cur_alpha
|
||||||
|
// Access : Published
|
||||||
// Description : gets current alpha for a particle
|
// Description : gets current alpha for a particle
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
INLINE float BaseParticleRenderer::
|
INLINE float BaseParticleRenderer::
|
||||||
|
@ -20,10 +20,11 @@
|
|||||||
|
|
||||||
#include "baseParticleRenderer.h"
|
#include "baseParticleRenderer.h"
|
||||||
#include "transparencyAttrib.h"
|
#include "transparencyAttrib.h"
|
||||||
|
#include "compassEffect.h"
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Function : BaseParticleRenderer
|
// Function : BaseParticleRender::BaseParticleRenderer
|
||||||
// Access : Public
|
// Access : Published
|
||||||
// Description : Default Constructor
|
// Description : Default Constructor
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
BaseParticleRenderer::
|
BaseParticleRenderer::
|
||||||
@ -32,13 +33,14 @@ BaseParticleRenderer(ParticleRendererAlphaMode alpha_mode) :
|
|||||||
_render_node = new GeomNode("BaseParticleRenderer render node");
|
_render_node = new GeomNode("BaseParticleRenderer render node");
|
||||||
|
|
||||||
_user_alpha = 1.0f;
|
_user_alpha = 1.0f;
|
||||||
|
_ignore_scale = false;
|
||||||
|
|
||||||
update_alpha_mode(alpha_mode);
|
update_alpha_mode(alpha_mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Function : BaseParticleRenderer
|
// Function : BaseParticleRender::BaseParticleRenderer
|
||||||
// Access : Public
|
// Access : Published
|
||||||
// Description : Copy Constructor
|
// Description : Copy Constructor
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
BaseParticleRenderer::
|
BaseParticleRenderer::
|
||||||
@ -47,13 +49,14 @@ BaseParticleRenderer(const BaseParticleRenderer& copy) :
|
|||||||
_render_node = new GeomNode("BaseParticleRenderer render node");
|
_render_node = new GeomNode("BaseParticleRenderer render node");
|
||||||
|
|
||||||
_user_alpha = copy._user_alpha;
|
_user_alpha = copy._user_alpha;
|
||||||
|
set_ignore_scale(copy._ignore_scale);
|
||||||
|
|
||||||
update_alpha_mode(copy._alpha_mode);
|
update_alpha_mode(copy._alpha_mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Function : ~BaseParticleRenderer
|
// Function : BaseParticleRender::~BaseParticleRenderer
|
||||||
// Access : Public
|
// Access : Published
|
||||||
// Description : Destructor
|
// Description : Destructor
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
BaseParticleRenderer::
|
BaseParticleRenderer::
|
||||||
@ -61,28 +64,60 @@ BaseParticleRenderer::
|
|||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Function : enable_alpha
|
// Function : BaseParticleRender::set_ignore_scale
|
||||||
// Access : Private
|
// Access : Published
|
||||||
// Description : Builds an intermediate node and transition that
|
// Description : Sets the "ignore scale" flag. When this is true,
|
||||||
// enables alpha channeling.
|
// particles will be drawn as if they had no scale,
|
||||||
|
// regardless of whatever scale might be inherited from
|
||||||
|
// above the render node in the scene graph.
|
||||||
|
//
|
||||||
|
// This flag is mainly useful to support legacy code
|
||||||
|
// that was written for a very early version of Panda,
|
||||||
|
// whose sprite particle renderer had a bug that
|
||||||
|
// incorrectly ignored the inherited scale.
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
void BaseParticleRenderer::
|
void BaseParticleRenderer::
|
||||||
enable_alpha() {
|
set_ignore_scale(bool ignore_scale) {
|
||||||
_render_state = RenderState::make(TransparencyAttrib::make(TransparencyAttrib::M_alpha));
|
_ignore_scale = ignore_scale;
|
||||||
|
|
||||||
|
if (_ignore_scale) {
|
||||||
|
_render_node->set_effect(CompassEffect::make(NodePath(), CompassEffect::P_scale));
|
||||||
|
} else {
|
||||||
|
_render_node->clear_effect(CompassEffect::get_class_type());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Function : disable_alpha
|
// Function : BaseParticleRender::output
|
||||||
// Access : Private
|
// Access : Published
|
||||||
// Description : kills the intermediate alpha node/arc
|
// Description : Write a string representation of this instance to
|
||||||
|
// <out>.
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
void BaseParticleRenderer::
|
void BaseParticleRenderer::
|
||||||
disable_alpha() {
|
output(ostream &out) const {
|
||||||
_render_state = RenderState::make(TransparencyAttrib::make(TransparencyAttrib::M_none));
|
#ifndef NDEBUG //[
|
||||||
|
out<<"BaseParticleRenderer";
|
||||||
|
#endif //] NDEBUG
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Function : update_alpha_state
|
// Function : BaseParticleRender::write
|
||||||
|
// Access : Published
|
||||||
|
// Description : Write a string representation of this instance to
|
||||||
|
// <out>.
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
void BaseParticleRenderer::
|
||||||
|
write(ostream &out, int indent) const {
|
||||||
|
#ifndef NDEBUG //[
|
||||||
|
out.width(indent); out<<""; out<<"BaseParticleRenderer:\n";
|
||||||
|
out.width(indent+2); out<<""; out<<"_render_node "<<_render_node<<"\n";
|
||||||
|
out.width(indent+2); out<<""; out<<"_user_alpha "<<_user_alpha<<"\n";
|
||||||
|
//ReferenceCount::write(out, indent+2);
|
||||||
|
#endif //] NDEBUG
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////
|
||||||
|
// Function : BaseParticleRender::update_alpha_state
|
||||||
// Access : Private
|
// Access : Private
|
||||||
// Description : handles the base class part of alpha updating.
|
// Description : handles the base class part of alpha updating.
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
@ -100,30 +135,22 @@ update_alpha_mode(ParticleRendererAlphaMode am) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Function : output
|
// Function : BaseParticleRender::enable_alpha
|
||||||
// Access : Public
|
// Access : Private
|
||||||
// Description : Write a string representation of this instance to
|
// Description : Builds an intermediate node and transition that
|
||||||
// <out>.
|
// enables alpha channeling.
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
void BaseParticleRenderer::
|
void BaseParticleRenderer::
|
||||||
output(ostream &out) const {
|
enable_alpha() {
|
||||||
#ifndef NDEBUG //[
|
_render_state = RenderState::make(TransparencyAttrib::make(TransparencyAttrib::M_alpha));
|
||||||
out<<"BaseParticleRenderer";
|
|
||||||
#endif //] NDEBUG
|
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
// Function : write
|
// Function : BaseParticleRender::disable_alpha
|
||||||
// Access : Public
|
// Access : Private
|
||||||
// Description : Write a string representation of this instance to
|
// Description : kills the intermediate alpha node/arc
|
||||||
// <out>.
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
void BaseParticleRenderer::
|
void BaseParticleRenderer::
|
||||||
write(ostream &out, int indent) const {
|
disable_alpha() {
|
||||||
#ifndef NDEBUG //[
|
_render_state = RenderState::make(TransparencyAttrib::make(TransparencyAttrib::M_none));
|
||||||
out.width(indent); out<<""; out<<"BaseParticleRenderer:\n";
|
|
||||||
out.width(indent+2); out<<""; out<<"_render_node "<<_render_node<<"\n";
|
|
||||||
out.width(indent+2); out<<""; out<<"_user_alpha "<<_user_alpha<<"\n";
|
|
||||||
//ReferenceCount::write(out, indent+2);
|
|
||||||
#endif //] NDEBUG
|
|
||||||
}
|
}
|
||||||
|
@ -64,6 +64,9 @@ PUBLISHED:
|
|||||||
|
|
||||||
INLINE void set_color_blend_mode(ColorBlendAttrib::Mode bm, ColorBlendAttrib::Operand oa = ColorBlendAttrib::O_zero, ColorBlendAttrib::Operand ob = ColorBlendAttrib::O_zero);
|
INLINE void set_color_blend_mode(ColorBlendAttrib::Mode bm, ColorBlendAttrib::Operand oa = ColorBlendAttrib::O_zero, ColorBlendAttrib::Operand ob = ColorBlendAttrib::O_zero);
|
||||||
|
|
||||||
|
void set_ignore_scale(bool ignore_scale);
|
||||||
|
INLINE bool get_ignore_scale() const;
|
||||||
|
|
||||||
virtual void output(ostream &out) const;
|
virtual void output(ostream &out) const;
|
||||||
virtual void write(ostream &out, int indent=0) const;
|
virtual void write(ostream &out, int indent=0) const;
|
||||||
|
|
||||||
@ -91,6 +94,7 @@ private:
|
|||||||
PT(GeomNode) _render_node;
|
PT(GeomNode) _render_node;
|
||||||
|
|
||||||
float _user_alpha;
|
float _user_alpha;
|
||||||
|
bool _ignore_scale;
|
||||||
|
|
||||||
// birth and kill particle are for renderers that might do maintenance
|
// birth and kill particle are for renderers that might do maintenance
|
||||||
// faster if it was notified on a per-event basis. An example:
|
// faster if it was notified on a per-event basis. An example:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user