56 lines
1.3 KiB
C
56 lines
1.3 KiB
C
|
/**
|
||
|
* PANDA 3D SOFTWARE
|
||
|
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
||
|
*
|
||
|
* All use of this software is subject to the terms of the revised BSD
|
||
|
* license. You should have received a copy of this license along
|
||
|
* with this source code in a file named "LICENSE."
|
||
|
*
|
||
|
* @file partSubset.h
|
||
|
* @author drose
|
||
|
* @date 2006-01-19
|
||
|
*/
|
||
|
|
||
|
#ifndef PARTSUBSET_H
|
||
|
#define PARTSUBSET_H
|
||
|
|
||
|
#include "pandabase.h"
|
||
|
#include "globPattern.h"
|
||
|
|
||
|
/**
|
||
|
* This class is used to define a subset of part names to apply to the
|
||
|
* PartBundle::bind_anim() operation. Only those part names within the subset
|
||
|
* will be included in the bind.
|
||
|
*/
|
||
|
class EXPCL_PANDA_CHAN PartSubset {
|
||
|
PUBLISHED:
|
||
|
PartSubset();
|
||
|
PartSubset(const PartSubset ©);
|
||
|
void operator = (const PartSubset ©);
|
||
|
|
||
|
void add_include_joint(const GlobPattern &name);
|
||
|
void add_exclude_joint(const GlobPattern &name);
|
||
|
|
||
|
void append(const PartSubset &other);
|
||
|
|
||
|
void output(std::ostream &out) const;
|
||
|
|
||
|
bool is_include_empty() const;
|
||
|
bool matches_include(const std::string &joint_name) const;
|
||
|
bool matches_exclude(const std::string &joint_name) const;
|
||
|
|
||
|
private:
|
||
|
typedef pvector<GlobPattern> Joints;
|
||
|
Joints _include_joints;
|
||
|
Joints _exclude_joints;
|
||
|
};
|
||
|
|
||
|
INLINE std::ostream &operator << (std::ostream &out, const PartSubset &subset) {
|
||
|
subset.output(out);
|
||
|
return out;
|
||
|
}
|
||
|
|
||
|
#include "partSubset.I"
|
||
|
|
||
|
#endif
|