97 lines
3.2 KiB
C++
97 lines
3.2 KiB
C++
// Filename: deferredNodeProperty.cxx
|
|
// Created by: drose (20Mar02)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d-general@lists.sourceforge.net .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#include "deferredNodeProperty.h"
|
|
|
|
#include "collisionNode.h"
|
|
#include "pandaNode.h"
|
|
#include "dcast.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DeferredNodeProperty::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
DeferredNodeProperty::
|
|
DeferredNodeProperty() {
|
|
_flags = 0;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DeferredNodeProperty::Copy Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
DeferredNodeProperty::
|
|
DeferredNodeProperty(const DeferredNodeProperty ©) :
|
|
_flags(copy._flags),
|
|
_from_collide_mask(copy._from_collide_mask),
|
|
_into_collide_mask(copy._into_collide_mask)
|
|
{
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DeferredNodeProperty::Copy Assignment
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
void DeferredNodeProperty::
|
|
operator = (const DeferredNodeProperty ©) {
|
|
_flags = copy._flags;
|
|
_from_collide_mask = copy._from_collide_mask;
|
|
_into_collide_mask = copy._into_collide_mask;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DeferredNodeProperty::compose
|
|
// Access: Public
|
|
// Description: Composes this state with the next one encountered on
|
|
// a lower node during the apply traversal.
|
|
////////////////////////////////////////////////////////////////////
|
|
void DeferredNodeProperty::
|
|
compose(const DeferredNodeProperty &other) {
|
|
_flags |= other._flags;
|
|
|
|
if ((other._flags & F_has_from_collide_mask) != 0) {
|
|
_from_collide_mask = other._from_collide_mask;
|
|
}
|
|
|
|
if ((other._flags & F_has_into_collide_mask) != 0) {
|
|
_into_collide_mask = other._into_collide_mask;
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DeferredNodeProperty::apply_to_node
|
|
// Access: Public
|
|
// Description: Applies whatever state is appropriate to the node.
|
|
////////////////////////////////////////////////////////////////////
|
|
void DeferredNodeProperty::
|
|
apply_to_node(PandaNode *node) {
|
|
if (node->is_of_type(CollisionNode::get_class_type())) {
|
|
CollisionNode *cnode = DCAST(CollisionNode, node);
|
|
if ((_flags & F_has_from_collide_mask) != 0) {
|
|
cnode->set_from_collide_mask(_from_collide_mask);
|
|
}
|
|
if ((_flags & F_has_into_collide_mask) != 0) {
|
|
cnode->set_into_collide_mask(_into_collide_mask);
|
|
}
|
|
}
|
|
}
|
|
|