open_toontown_panda3d/direct/src/interval/cConstrainHprInterval.cxx

85 lines
3.0 KiB
C++

// Filename: cConstrainHprInterval.cxx
// Created by: pratt (10Mar08)
//
////////////////////////////////////////////////////////////////////
//
// 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."
//
////////////////////////////////////////////////////////////////////
#include "cConstrainHprInterval.h"
#include "config_interval.h"
#include "lvecBase3.h"
TypeHandle CConstrainHprInterval::_type_handle;
////////////////////////////////////////////////////////////////////
// Function: CConstrainHprInterval::Constructor
// Access: Published
// Description: Constructs a constraint interval that will constrain
// the orientation of one node to the orientation of
// another, possibly with an added rotation.
//
// If wrt is true, the node's orientation will be
// transformed into the target node's parent's space
// before being copied. If wrt is false, the target
// node's local orientation will be copied unaltered.
////////////////////////////////////////////////////////////////////
CConstrainHprInterval::
CConstrainHprInterval(const string &name, double duration,
const NodePath &node, const NodePath &target,
bool wrt, const LVecBase3f hprOffset) :
CConstraintInterval(name, duration),
_node(node),
_target(target),
_wrt(wrt)
{
_quatOffset.set_hpr(hprOffset);
}
////////////////////////////////////////////////////////////////////
// Function: CConstrainHprInterval::step
// Access: Published, Virtual
// Description: Advances the time on the interval. The time may
// either increase (the normal case) or decrease
// (e.g. if the interval is being played by a slider).
////////////////////////////////////////////////////////////////////
void CConstrainHprInterval::
priv_step(double t) {
check_started(get_class_type(), "priv_step");
_state = S_started;
_curr_t = t;
if(! _target.is_empty()) {
if(_wrt) {
if(! _node.is_same_graph(_target)){
interval_cat.warning()
<< "Unable to copy orientation in CConstrainHprInterval::priv_step;\n"
<< "node (" << _node.get_name()
<< ") and target (" << _target.get_name()
<< ") are not in the same graph.\n";
return;
}
_target.set_quat(_node, _quatOffset);
} else {
_target.set_quat(_quatOffset*_node.get_quat());
}
}
}
////////////////////////////////////////////////////////////////////
// Function: CConstrainHprInterval::output
// Access: Published, Virtual
// Description:
////////////////////////////////////////////////////////////////////
void CConstrainHprInterval::
output(ostream &out) const {
out << get_name() << ":";
out << " dur " << get_duration();
}