Panda3D
|
This is a global object that maintains the collection of named CullBins in the world. More...
#include <pandadoc.hpp>
Public Member Functions | |
int | addBin (str name, CullBinManager::BinType type, int sort) |
Defines a new bin with the indicated name, and returns the new bin_index. | |
int | findBin (str name) |
Returns the bin_index associated with the bin of the given name, or -1 if no bin has that name. | |
int | getBin (int n) |
Returns the bin_index of the nth bin in the set, where n is a number between 0 and get_num_bins(). | |
bool | getBinActive (int bin_index) |
Returns the active flag of the bin with the indicated bin_index (where bin_index was retrieved by get_bin() or find_bin()). | |
bool | getBinActive (str name) |
Returns the active flag of the bin with the indicated name. | |
bool | getBinFlashActive (int bin_index) |
Returns true if the bin with the given bin_index is configured to flash at a predetermined color (where bin_index was retrieved by get_bin() or find_bin()). | |
const LColor | getBinFlashColor (int bin_index) |
Returns the color that this bin has been configured to flash to, if configured. | |
str | getBinName (int bin_index) |
Returns the name of the bin with the indicated bin_index (where bin_index was retrieved by get_bin() or find_bin()). | |
list | getBins () |
int | getBinSort (int bin_index) |
Returns the sort order of the bin with the indicated bin_index (where bin_index was retrieved by get_bin() or find_bin()). | |
int | getBinSort (str name) |
Returns the sort order of the bin with the indicated name. | |
CullBinManager::BinType | getBinType (int bin_index) |
Returns the type of the bin with the indicated bin_index (where bin_index was retrieved by get_bin() or find_bin()). | |
CullBinManager::BinType | getBinType (str name) |
Returns the type of the bin with the indicated name. | |
int | getNumBins () |
Returns the number of bins in the world. | |
removeBin (int bin_index) | |
Permanently removes the indicated bin. | |
setBinActive (int bin_index, bool active) | |
Changes the active flag of the bin with the indicated bin_index (where bin_index was retrieved by get_bin() or find_bin()). | |
setBinActive (str name, bool active) | |
Changes the active flag of the bin with the indicated name. | |
setBinFlashActive (int bin_index, bool active) | |
When set to true, the given bin_index is configured to flash at a predetermined color (where bin_index was retrieved by get_bin() or find_bin()). | |
setBinFlashColor (int bin_index, const LColor color) | |
Changes the flash color for the given bin index. | |
setBinSort (int bin_index, int sort) | |
Changes the sort order of the bin with the indicated bin_index (where bin_index was retrieved by get_bin() or find_bin()). | |
setBinSort (str name, int sort) | |
Changes the sort order of the bin with the indicated name. | |
setBinType (int bin_index, CullBinManager::BinType type) | |
Changes the type of the bin with the indicated bin_index (where bin_index was retrieved by get_bin() or find_bin()). | |
setBinType (str name, CullBinManager::BinType type) | |
Changes the type of the bin with the indicated name. | |
write (Ostream out) | |
![]() | |
__init__ () | |
__init__ (const CullBinEnums) | |
Static Public Member Functions | |
static CullBinManager | getGlobalPtr () |
Returns the pointer to the global CullBinManager object. | |
Additional Inherited Members | |
![]() | |
enum | BinType { BT_invalid = 0 , BT_unsorted = 1 , BT_state_sorted = 2 , BT_back_to_front = 3 , BT_front_to_back = 4 , BT_fixed = 5 } |
This is a global object that maintains the collection of named CullBins in the world.
int addBin | ( | str | name, |
CullBinManager::BinType | type, | ||
int | sort ) |
Defines a new bin with the indicated name, and returns the new bin_index.
If there is already a bin with the same name returns its bin_index if it had the same properties; otherwise, reports an error and returns -1.
int findBin | ( | str | name | ) |
Returns the bin_index associated with the bin of the given name, or -1 if no bin has that name.
int getBin | ( | int | n | ) |
Returns the bin_index of the nth bin in the set, where n is a number between 0 and get_num_bins().
This returns the list of bin_index numbers, in sorted order (that is, in the order in which the bins should be rendered).
bool getBinActive | ( | int | bin_index | ) |
Returns the active flag of the bin with the indicated bin_index (where bin_index was retrieved by get_bin() or find_bin()).
When a bin is marked inactive, all geometry assigned to it is not rendered.
bool getBinActive | ( | str | name | ) |
Returns the active flag of the bin with the indicated name.
When a bin is marked inactive, all geometry assigned to it is not rendered.
bool getBinFlashActive | ( | int | bin_index | ) |
Returns true if the bin with the given bin_index is configured to flash at a predetermined color (where bin_index was retrieved by get_bin() or find_bin()).
This method is not available in release builds.
const LColor getBinFlashColor | ( | int | bin_index | ) |
Returns the color that this bin has been configured to flash to, if configured.
This method is not available in release builds.
str getBinName | ( | int | bin_index | ) |
Returns the name of the bin with the indicated bin_index (where bin_index was retrieved by get_bin() or find_bin()).
The bin's name may not be changed during the life of the bin.
list getBins | ( | ) |
int getBinSort | ( | int | bin_index | ) |
Returns the sort order of the bin with the indicated bin_index (where bin_index was retrieved by get_bin() or find_bin()).
The bins are rendered in increasing order by their sort order; this number may be changed from time to time to reorder the bins.
int getBinSort | ( | str | name | ) |
Returns the sort order of the bin with the indicated name.
The bins are rendered in increasing order by their sort order; this number may be changed from time to time to reorder the bins.
CullBinManager::BinType getBinType | ( | int | bin_index | ) |
Returns the type of the bin with the indicated bin_index (where bin_index was retrieved by get_bin() or find_bin()).
CullBinManager::BinType getBinType | ( | str | name | ) |
Returns the type of the bin with the indicated name.
|
static |
Returns the pointer to the global CullBinManager object.
int getNumBins | ( | ) |
Returns the number of bins in the world.
removeBin | ( | int | bin_index | ) |
Permanently removes the indicated bin.
This operation is not protected from the pipeline and will disturb whatever is currently rendering in draw. You should not call this during the normal course of rendering a frame; it is intended only as an aid to development, to allow the developer to interactively fiddle with the set of bins.
setBinActive | ( | int | bin_index, |
bool | active ) |
Changes the active flag of the bin with the indicated bin_index (where bin_index was retrieved by get_bin() or find_bin()).
When a bin is marked inactive, all geometry assigned to it is not rendered.
setBinActive | ( | str | name, |
bool | active ) |
Changes the active flag of the bin with the indicated name.
When a bin is marked inactive, all geometry assigned to it is not rendered.
setBinFlashActive | ( | int | bin_index, |
bool | active ) |
When set to true, the given bin_index is configured to flash at a predetermined color (where bin_index was retrieved by get_bin() or find_bin()).
This method is not available in release builds.
setBinFlashColor | ( | int | bin_index, |
const LColor | color ) |
Changes the flash color for the given bin index.
This method is not available in release builds.
setBinSort | ( | int | bin_index, |
int | sort ) |
Changes the sort order of the bin with the indicated bin_index (where bin_index was retrieved by get_bin() or find_bin()).
The bins are rendered in increasing order by their sort order; this number may be changed from time to time to reorder the bins.
setBinSort | ( | str | name, |
int | sort ) |
Changes the sort order of the bin with the indicated name.
The bins are rendered in increasing order by their sort order; this number may be changed from time to time to reorder the bins.
setBinType | ( | int | bin_index, |
CullBinManager::BinType | type ) |
Changes the type of the bin with the indicated bin_index (where bin_index was retrieved by get_bin() or find_bin()).
The change might be effective immediately, or it might take place next frame, depending on the bin type.
setBinType | ( | str | name, |
CullBinManager::BinType | type ) |
Changes the type of the bin with the indicated name.
The change might be effective immediately, or it might take place next frame, depending on the bin type.
write | ( | Ostream | out | ) |