Atoms Crowd  4.1.0
GetAgentJointPose.h
1 #pragma once
2 // ===========================================================================
3 // Copyright (c) 2015 Toolchefs Ltd. All rights reserved.
4 //
5 // Use of this software is subject to the terms of the Toolchefs license
6 // agreement provided at the time of installation or download, or which
7 // otherwise accompanies this software in either electronic or hard copy form.
8 // ===========================================================================
9 
10 #include <AtomsGraph/Globals.h>
11 #include <AtomsGraph/Ports.h>
12 #include <Atoms/Graph/AgentNode.h>
13 
14 #include <Atoms/Globals.h>
15 #include <Atoms/Agent.h>
16 #include <AtomsUtils/Logger.h>
17 
18 namespace Atoms
19 {
20  class ATOMS_EXPORT GetAgentJointPoseNode : public AgentNode
21  {
22  public:
23  NODE_STANDARD_MEMBERS
24 
26 
27  virtual ~GetAgentJointPoseNode();
28 
29  bool compute(const AtomsGraph::ComputeData* computeData);
30 
31  void reset();
32 
33  private:
34 
35  AtomsGraph::PosePort* m_pose;
36 
37  AtomsGraph::LongPort* m_jointId;
38 
39  AtomsGraph::BooleanPort* m_worldSpace;
40 
41  AtomsGraph::VectorPort* m_outTranslation;
42 
43  AtomsGraph::VectorPort* m_outScale;
44 
45  AtomsGraph::QuaternionPort* m_outRotation;
46 
47  AtomsGraph::MatrixPort* m_outMatrix;
48 
49  };
50 }
Atoms::AgentNode
Agent node.
Definition: AgentNode.h:22
Atoms::GetAgentJointPoseNode
Definition: GetAgentJointPose.h:21
AtomsGraph::PortTemplate
Generic node port class.
Definition: PortTemplate.h:24
Atoms
Atoms namespace.
Definition: Agent.h:28
Atoms::GetAgentJointPoseNode::reset
void reset()
Reset function.
AtomsGraph::ComputeData
Definition: Node.h:21
Atoms::GetAgentJointPoseNode::compute
bool compute(const AtomsGraph::ComputeData *computeData)
Compute function.