Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Game Library
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Onuralp SEZER
Game Library
Commits
56586f45
Commit
56586f45
authored
2 years ago
by
Joseph Walton-Rivers
Browse files
Options
Downloads
Patches
Plain Diff
data structures for animation, not currently used
parent
bf922c91
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/fggl/animation/skeleton.hpp
+60
-0
60 additions, 0 deletions
include/fggl/animation/skeleton.hpp
include/fggl/math/types.hpp
+1
-0
1 addition, 0 deletions
include/fggl/math/types.hpp
with
61 additions
and
0 deletions
include/fggl/animation/skeleton.hpp
0 → 100644
+
60
−
0
View file @
56586f45
/*
* This file is part of FGGL.
*
* FGGL is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* FGGL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along with FGGL.
* If not, see <https://www.gnu.org/licenses/>.
*/
//
// Created by webpigeon on 19/06/22.
// Derived from Game Engine Architecture, 3rd Edition, Chapter 12
//
#ifndef FGGL_ANIMATION_SKELETON_HPP
#define FGGL_ANIMATION_SKELETON_HPP
#include
<array>
#include
"fggl/math/types.hpp"
namespace
fggl
::
anim
{
struct
Joint
{
math
::
mat4
m_invBindPose
;
math
::
uint8
m_parent
;
};
struct
Skeleton
{
std
::
size_t
m_size
;
std
::
array
<
Joint
,
255
>
m_joints
;
};
struct
JointPose
{
math
::
quat
m_rot
;
math
::
vec3
m_trans
;
float
m_scale
;
};
struct
SkeletonPose
{
Skeleton
*
m_skel
;
JointPose
*
m_localPose
;
math
::
mat4
*
m_globalPose
;
};
struct
SkinnedVertex
{
math
::
vec3
m_pos
;
math
::
vec3
m_normal
;
math
::
vec2
m_tex
;
std
::
array
<
math
::
uint8
,
4
>
m_joint_idx
;
std
::
array
<
float
,
3
>
m_joint_weights
;
};
}
// namespace fggl::anim
#endif //FGGL_ANIMATION_SKELETON_HPP
This diff is collapsed.
Click to expand it.
include/fggl/math/types.hpp
+
1
−
0
View file @
56586f45
...
@@ -39,6 +39,7 @@ namespace fggl::math {
...
@@ -39,6 +39,7 @@ namespace fggl::math {
constexpr
float
HALF_PI
=
M_PI_2
;
constexpr
float
HALF_PI
=
M_PI_2
;
constexpr
float
TAU
=
PI
*
2
;
constexpr
float
TAU
=
PI
*
2
;
using
uint8
=
std
::
uint8_t
;
// math types (aliased for ease of use)
// math types (aliased for ease of use)
using
vec4
=
glm
::
vec4
;
using
vec4
=
glm
::
vec4
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment