read key frames

This commit is contained in:
Benjamin Collins 2020-08-21 07:57:55 +09:00
parent 9a2b20a3fc
commit 45a58a1eee
2 changed files with 107 additions and 3 deletions

View File

@ -32,8 +32,9 @@ from NinjaMaterial import NinjaMaterial
from NinjaVertex import NinjaVertex
from NinjaFace import NinjaFace
from NinjaBone import NinjaBone
from NinjaMotion import NinjaMotion
class NinjaModel: # {
class NinjaModel:
def __init__(self, model_name, tex_name):
@ -436,6 +437,12 @@ class NinjaModel: # {
spline_interpolation = p[3] & 0x40
user_function_interpolation = p[3] & 0x80
anim = NinjaMotion()
anim.setName("anim_%03d" % len(self.anim_list))
anim.setFrames(frame_count)
anim.setSkeleton(self.bones)
self.anim_list.append(anim)
print("READING ANIMTION!!!!")
print(motion_type)
@ -491,9 +498,35 @@ class NinjaModel: # {
entry['scl_num'] = p[0]
anim_vals.append(entry)
print(entry)
c = 2 * 3.141592 / 0x10000;
for entry in anim_vals:
boneIndex = entry['bone_index']
self.file.seek(entry['pos_ofs'], 0)
for i in range(entry['pos_num']):
bytes = self.file.read(16)
p = struct.unpack('Ifff', bytes)
frame = p[0]
vec3 = [ p[1], p[2], p[3] ]
anim.appendKeyFrame(boneIndex, frame, vec3, 'pos')
self.file.seek(entry['rot_ofs'], 0)
for i in range(entry['rot_num']):
bytes = self.file.read(16)
p = struct.unpack('Ifff', bytes)
frame = p[0]
vec3 = [ p[1]*c, p[2]*c, p[3]*c ]
anim.appendKeyFrame(boneIndex, frame, vec3, 'rot')
self.file.seek(entry['scl_ofs'], 0)
for i in range(entry['scl_num']):
bytes = self.file.read(16)
p = struct.unpack('Ifff', bytes)
frame = p[0]
vec3 = [ p[1], p[2], p[3] ]
anim.appendKeyFrame(boneIndex, frame, vec3, 'scl')
return None

71
NinjaMotion.py Normal file
View File

@ -0,0 +1,71 @@
"""
MIT License
Copyright (c) 2020 Benjamin Collins (kion @ dashgl.com)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""
import math
import struct
from Mat4 import Mat4
class NinjaMotion:
def __init__(self):
self.name = "";
self.skeleton = []
self.frames = 0
self.fps = 30
self.keyFrames = []
return None
def setName(self, name):
self.name = name
return None
def setSkeleton(self, bones):
self.seleton = bones
for i in range(len(bones)):
self.keyFrames.append([])
return None
def setFrames(self, frames):
self.frames = frames
return None
def appendKeyFrame(self, boneIndex, frame, vec3, type):
keyFrames = self.keyFrames[boneIndex]
for keys in keyFrames:
if keys['frame'] != frame:
continue
keys[type] = vec3
return None
keyFrame = {
'frame' : frame,
type : vec3
}
keyFrames.append(keyFrame)
return None