Skeletal Animation Multithread Face
Public Member Functions | Private Member Functions | Private Attributes | List of all members
SkeletalAnimation Class Reference

Class SkeletalAnimation. More...

#include <skeletal_animation.h>

Collaboration diagram for SkeletalAnimation:
Collaboration graph
[legend]

Public Member Functions

 SkeletalAnimation ()
 Constructor. More...
 
void initialize (igl::opengl::glfw::Viewer *viewer, Exoskeleton *left_exo, AnimatedHand *anim_hand, MenuHandler *menu_handler)
 Initialize animation. More...
 
bool animation_loop (igl::opengl::glfw::Viewer &viewer)
 Animation loop callback. More...
 

Private Member Functions

void setup_meshes (igl::opengl::glfw::Viewer &viewer)
 Setup meshes. More...
 

Private Attributes

std::string m_hand_mesh_name
 Mesh filename. More...
 
std::string m_hand_graph_name
 Skeleton graph filename. More...
 
std::string m_hand_texture_name
 Texture name. More...
 
Exoskeletonm_left_exo
 Exoskeleton handler pointer. More...
 
AnimatedHandm_anim_hand
 Animated hand pointer. More...
 
MenuHandlerm_menu_handler
 Menu handler pointer. More...
 
std::shared_ptr< Handm_left_hand
 Left and right hand. More...
 
std::shared_ptr< Handm_right_hand
 
std::shared_ptr< Facem_face
 Face handler. More...
 
Eigen::Vector3d m_left_origin = Eigen::Vector3d(1.0, 0.0, 0.0)
 Left hand origin. More...
 
Eigen::Vector3d m_right_origin = Eigen::Vector3d(-1.0, 0.0, 0.0)
 Right hand origin. More...
 
bool m_initialize_animation = 1
 Start animation flag. More...
 

Detailed Description

Class SkeletalAnimation.

This class implements the skeletal animation for the hand.

Definition at line 38 of file skeletal_animation.h.

Constructor & Destructor Documentation

◆ SkeletalAnimation()

SkeletalAnimation::SkeletalAnimation ( )
inline

Constructor.

Definition at line 44 of file skeletal_animation.h.

44{};

Member Function Documentation

◆ animation_loop()

bool SkeletalAnimation::animation_loop ( igl::opengl::glfw::Viewer &  viewer)

Animation loop callback.

This is the main animation callback function. This is where the rendering is happening. The function is passed as a lambda function to the Viewer handler (see main.cpp).

Parameters
viewerReference to the viewer handle.
Returns
true Animation should stop.
false Animations keeps playing.

Definition at line 33 of file skeletal_animation.cpp.

34{
35 if (viewer.core().is_animating)
36 {
37 // Initialize if ports are set
39 {
40 // Setup meshes
41 setup_meshes(viewer);
42
43 // Dont initialize animations again
45 }
46
48 {
49 // Get euler angles
50 auto euler_id =
52
53 // Update left hand
54 m_left_hand->update(euler_id);
55 viewer.data_list.at(0).set_vertices(m_left_hand->get_vertices());
56
57 // Update right hand
58 m_right_hand->update(euler_id);
59 viewer.data_list.at(1).set_vertices(m_right_hand->get_vertices());
60
61 // Update face
62 viewer.data_list.at(2).set_vertices(m_face->get_vertices());
63 }
64 }
65
66 return false;
67}
std::vector< EulerID > get_hand_angles(const std::vector< double > &joint_angles)
std::vector< double > get_joint_angles(void)
Get joint angles.
Definition: exoskeleton.cpp:55
bool are_ports_set(void)
Check whether the USB ports have been sent by the user (Is OK pressed?).
Definition: menu_handler.h:32
Exoskeleton * m_left_exo
Exoskeleton handler pointer.
MenuHandler * m_menu_handler
Menu handler pointer.
AnimatedHand * m_anim_hand
Animated hand pointer.
bool m_initialize_animation
Start animation flag.
std::shared_ptr< Face > m_face
Face handler.
std::shared_ptr< Hand > m_left_hand
Left and right hand.
std::shared_ptr< Hand > m_right_hand
void setup_meshes(igl::opengl::glfw::Viewer &viewer)
Setup meshes.
Here is the call graph for this function:
Here is the caller graph for this function:

◆ initialize()

void SkeletalAnimation::initialize ( igl::opengl::glfw::Viewer *  viewer,
Exoskeleton left_exo,
AnimatedHand anim_hand,
MenuHandler menu_handler 
)

Initialize animation.

Initializes skeletal animation by copying the input arguments to the member variables.

Parameters
viewerPointer to the igl Viewer object.
left_exoPointer to the left exoskeleton object.
anim_handPointer to the animated hand object.
menu_handlerPointer to menu handler object.

Definition at line 11 of file skeletal_animation.cpp.

13{
14 // Get exoskeleton handler pointer
15 m_left_exo = left_exo;
16
17 // Get animation hand pointer
18 m_anim_hand = anim_hand;
19
20 // Get menu handler pointer
21 m_menu_handler = menu_handler;
22}
Here is the caller graph for this function:

◆ setup_meshes()

void SkeletalAnimation::setup_meshes ( igl::opengl::glfw::Viewer &  viewer)
private

Setup meshes.

This function setups the exoskeletons. First it initializes the serial communications and defines the hand shared pointers. It also generates the hand meshes and passes them to the viewer mesh list (or data_list). See how libigl handles multiple meshes at https://github.com/libigl/libigl/blob/main/tutorial/107_MultipleMeshes/main.cpp.

Parameters
viewerA reference to the viewer handle.

Definition at line 77 of file skeletal_animation.cpp.

78{
79 // Resize viewer data list
80 viewer.data_list.resize(3);
81
82 // Set mesh for face
83 m_face = std::make_shared<Face>();
84
85 viewer.data_list.at(2).set_mesh(m_face->get_vertices(),
86 m_face->get_surface_indices());
87
88 // Define serial COM for left exoskeleton
89 std::string serial_com_left = m_menu_handler->get_left_exoskeleton_port();
90
91 // Define serial COM for right exoskeleton
92 std::string serial_com_right = m_menu_handler->get_right_exoskeleton_port();
93
94 // Define baudrate
95 unsigned int baud_rate = 115200;
96
97 // Initialize left exoskeleton
98 m_left_exo->initialize(serial_com_left, baud_rate);
99
100 // Initialize right exoskeleton (to be done)
101
102 // Initialize left hand
103 m_left_hand = std::make_shared<Hand>(m_left_exo, m_anim_hand,
106
107 // Set mesh for left hand
108 viewer.data_list.at(0).set_mesh(m_left_hand->get_vertices(),
109 m_left_hand->get_surface_indices());
110
111 // Initialze right hand
112 m_right_hand = std::make_shared<Hand>(m_left_exo, m_anim_hand,
115
116 // Set mesh for right hand
117 viewer.data_list.at(1).set_mesh(m_right_hand->get_vertices(),
118 m_right_hand->get_surface_indices());
119}
void initialize(const std::string &serial_com, unsigned int serial_baudrate)
Initialize the exoskeleton.
Definition: exoskeleton.cpp:10
std::string get_right_exoskeleton_port(void)
Get the USB port for the right exoskeleton.
Definition: menu_handler.h:38
std::string get_left_exoskeleton_port(void)
Get the USB port for the left exoskeleton.
Definition: menu_handler.h:35
std::string m_hand_texture_name
Texture name.
Eigen::Vector3d m_right_origin
Right hand origin.
Eigen::Vector3d m_left_origin
Left hand origin.
std::string m_hand_graph_name
Skeleton graph filename.
std::string m_hand_mesh_name
Mesh filename.
Here is the call graph for this function:
Here is the caller graph for this function:

Member Data Documentation

◆ m_anim_hand

AnimatedHand* SkeletalAnimation::m_anim_hand
private

Animated hand pointer.

Definition at line 74 of file skeletal_animation.h.

◆ m_face

std::shared_ptr<Face> SkeletalAnimation::m_face
private

Face handler.

Definition at line 83 of file skeletal_animation.h.

◆ m_hand_graph_name

std::string SkeletalAnimation::m_hand_graph_name
private
Initial value:
=
boost::filesystem::system_complete("share/hand.tgf").string()

Skeleton graph filename.

Definition at line 61 of file skeletal_animation.h.

◆ m_hand_mesh_name

std::string SkeletalAnimation::m_hand_mesh_name
private
Initial value:
=
boost::filesystem::system_complete("share/hand.mesh").string()

Mesh filename.

Definition at line 57 of file skeletal_animation.h.

◆ m_hand_texture_name

std::string SkeletalAnimation::m_hand_texture_name
private
Initial value:
=
boost::filesystem::system_complete("share/texture.png").string()

Texture name.

Definition at line 65 of file skeletal_animation.h.

◆ m_initialize_animation

bool SkeletalAnimation::m_initialize_animation = 1
private

Start animation flag.

Definition at line 92 of file skeletal_animation.h.

◆ m_left_exo

Exoskeleton* SkeletalAnimation::m_left_exo
private

Exoskeleton handler pointer.

Definition at line 71 of file skeletal_animation.h.

◆ m_left_hand

std::shared_ptr<Hand> SkeletalAnimation::m_left_hand
private

Left and right hand.

Definition at line 80 of file skeletal_animation.h.

◆ m_left_origin

Eigen::Vector3d SkeletalAnimation::m_left_origin = Eigen::Vector3d(1.0, 0.0, 0.0)
private

Left hand origin.

Definition at line 86 of file skeletal_animation.h.

◆ m_menu_handler

MenuHandler* SkeletalAnimation::m_menu_handler
private

Menu handler pointer.

Definition at line 77 of file skeletal_animation.h.

◆ m_right_hand

std::shared_ptr<Hand> SkeletalAnimation::m_right_hand
private

Definition at line 80 of file skeletal_animation.h.

◆ m_right_origin

Eigen::Vector3d SkeletalAnimation::m_right_origin = Eigen::Vector3d(-1.0, 0.0, 0.0)
private

Right hand origin.

Definition at line 89 of file skeletal_animation.h.


The documentation for this class was generated from the following files: