This class is seperated from the converter file because otherwise it would get too big and needlessly complicated. More...
#include "daeMaterials.h"
Public Member Functions | |
DaeMaterials (const FCDGeometryInstance *geometry_instance) | |
void | add_material_instance (const FCDMaterialInstance *instance) |
Adds a material instance. More... | |
void | apply_to_group (const std::string semantic, const PT(EggGroup) to, bool invert_transparency=false) |
Applies the colorblend stuff to the given EggGroup. More... | |
void | apply_to_primitive (const std::string semantic, const PT(EggPrimitive) to) |
Applies the stuff to the given EggPrimitive. More... | |
virtual TypeHandle | force_init_type () |
virtual TypeHandle | get_type () const |
const std::string | get_uvset_name (const std::string semantic, FUDaeGeometryInput::Semantic input_semantic, int32 input_set) |
Returns the semantic of the uvset with the specified input set, or an empty string if the given material has no input set. More... | |
Public Member Functions inherited from TypedReferenceCount | |
TypedReferenceCount (const TypedReferenceCount ©) | |
void | operator= (const TypedReferenceCount ©) |
Public Member Functions inherited from TypedObject | |
TypedObject (const TypedObject ©)=default | |
TypedObject * | as_typed_object () |
Returns the object, upcast (if necessary) to a TypedObject pointer. More... | |
const TypedObject * | as_typed_object () const |
Returns the object, upcast (if necessary) to a TypedObject pointer. More... | |
int | get_best_parent_from_Set (const std::set< int > &) const |
int | get_type_index () const |
Returns the internal index number associated with this object's TypeHandle, a unique number for each different type. More... | |
bool | is_exact_type (TypeHandle handle) const |
Returns true if the current object is the indicated type exactly. More... | |
bool | is_of_type (TypeHandle handle) const |
Returns true if the current object is or derives from the indicated type. More... | |
TypedObject & | operator= (const TypedObject ©)=default |
Public Member Functions inherited from ReferenceCount | |
int | get_ref_count () const |
WeakReferenceList * | get_weak_list () const |
Returns the WeakReferenceList associated with this ReferenceCount object. More... | |
bool | has_weak_list () const |
Returns true if this particular ReferenceCount object has a WeakReferenceList created, false otherwise. More... | |
void | local_object () |
This function should be called, once, immediately after creating a new instance of some ReferenceCount-derived object on the stack. More... | |
void | ref () const |
Explicitly increments the reference count. More... | |
bool | ref_if_nonzero () const |
Atomically increases the reference count of this object if it is not zero. More... | |
bool | test_ref_count_integrity () const |
Does some easy checks to make sure that the reference count isn't completely bogus. More... | |
bool | test_ref_count_nonzero () const |
Does some easy checks to make sure that the reference count isn't zero, or completely bogus. More... | |
virtual bool | unref () const |
Explicitly decrements the reference count. More... | |
WeakReferenceList * | weak_ref () |
Adds the indicated PointerToVoid as a weak reference to this object. More... | |
void | weak_unref () |
Removes the indicated PointerToVoid as a weak reference to this object. More... | |
Static Public Member Functions | |
static EggTexture::FilterType | convert_filter_type (const FUDaeTextureFilterFunction::FilterFunction orig_type) |
Converts an FCollada filter function to the EggTexture wrap type equivalent. More... | |
static EggTexture::TextureType | convert_texture_type (const FCDEffectParameterSampler::SamplerType orig_type) |
Converts an FCollada sampler type to the EggTexture texture type equivalent. More... | |
static EggTexture::WrapMode | convert_wrap_mode (const FUDaeTextureWrapMode::WrapMode orig_mode) |
Converts an FCollada wrap mode to the EggTexture wrap mode equivalent. More... | |
static TypeHandle | get_class_type () |
static void | init_type () |
Static Public Member Functions inherited from TypedReferenceCount | |
static TypeHandle | get_class_type () |
static void | init_type () |
Static Public Member Functions inherited from TypedObject | |
static TypeHandle | get_class_type () |
static void | init_type () |
This function is declared non-inline to work around a compiler bug in g++ 2.96. More... | |
Static Public Member Functions inherited from ReferenceCount | |
static TypeHandle | get_class_type () |
static void | init_type () |
Additional Inherited Members | |
Public Attributes inherited from TypedObject | |
get_type | |
Public Attributes inherited from ReferenceCount | |
get_ref_count | |
Returns the current reference count. More... | |
This class is seperated from the converter file because otherwise it would get too big and needlessly complicated.
Definition at line 38 of file daeMaterials.h.
void DaeMaterials::add_material_instance | ( | const FCDMaterialInstance * | instance | ) |
Adds a material instance.
Normally automatically done by constructor.
Definition at line 50 of file daeMaterials.cxx.
void DaeMaterials::apply_to_group | ( | const std::string | semantic, |
const PT(EggGroup) | to, | ||
bool | invert_transparency = false |
||
) |
Applies the colorblend stuff to the given EggGroup.
Definition at line 230 of file daeMaterials.cxx.
References PT().
void DaeMaterials::apply_to_primitive | ( | const std::string | semantic, |
const PT(EggPrimitive) | to | ||
) |
Applies the stuff to the given EggPrimitive.
Definition at line 215 of file daeMaterials.cxx.
References EggPrimitive::add_texture(), EggPrimitive::set_bface_flag, and EggPrimitive::set_material.
|
static |
Converts an FCollada filter function to the EggTexture wrap type equivalent.
Definition at line 335 of file daeMaterials.cxx.
|
static |
Converts an FCollada sampler type to the EggTexture texture type equivalent.
Definition at line 289 of file daeMaterials.cxx.
|
static |
Converts an FCollada wrap mode to the EggTexture wrap mode equivalent.
Definition at line 309 of file daeMaterials.cxx.
const string DaeMaterials::get_uvset_name | ( | const std::string | semantic, |
FUDaeGeometryInput::Semantic | input_semantic, | ||
int32 | input_set | ||
) |
Returns the semantic of the uvset with the specified input set, or an empty string if the given material has no input set.
Definition at line 257 of file daeMaterials.cxx.