phantasmal-world/5.2674d4ca6f38b573a20c.js

1 line
23 KiB
JavaScript
Raw Normal View History

2020-01-03 01:36:18 +08:00
(window.webpackJsonp=window.webpackJsonp||[]).push([[5],{"7CyS":function(t,e,i){"use strict";i.d(e,"a",(function(){return r})),i.d(e,"b",(function(){return o}));var n=i("Womt"),s=i("VwSi");const r=30;function o(t,e){const i=e.interpolation===s.a.Spline?n.InterpolateSmooth:n.InterpolateLinear,o=[];return e.motion_data.forEach((e,a)=>{const _=t.get_bone(a);_&&e.tracks.forEach(({type:t,keyframes:e})=>{const u=[],h=[];for(const i of e)if(u.push(i.frame/r),t===s.b.Rotation){const t=_.evaluation_flags.zxy_rotation_order?"ZXY":"ZYX",e=(new n.Quaternion).setFromEuler(new n.Euler(i.value.x,i.value.y,i.value.z,t));h.push(e.x,e.y,e.z,e.w)}else h.push(i.value.x,i.value.y,i.value.z);if(t===s.b.Rotation)o.push(new n.QuaternionKeyframeTrack(`.bones[${a}].quaternion`,u,h,i));else{const e=t===s.b.Position?`.bones[${a}].position`:`.bones[${a}].scale`;o.push(new n.VectorKeyframeTrack(e,u,h,i))}})}),new n.AnimationClip("Animation",(e.frame_count-1)/r,o).optimize()}},"9Ykw":function(t,e,i){"use strict";function n(t){const e=[];for(;t.bytes_left;){const i=t.u32(),n=t.u32();if(n>t.bytes_left)break;e.push({type:i,data:t.take(n)})}return e}i.d(e,"a",(function(){return n}))},"9dYx":function(t,e,i){"use strict";var n=i("bcBH");class s{constructor(t,e){this._position=0,this.endianness=t,this.offset=e}get position(){return this._position}get endianness(){return this.little_endian?n.a.Little:n.a.Big}set endianness(t){this.little_endian=t===n.a.Little}get bytes_left(){return this.size-this.position}seek(t){return this.seek_start(this.position+t)}seek_start(t){if(t<0||t>this.size)throw new Error(`Offset ${t} is out of bounds.`);return this._position=t,this}seek_end(t){if(t<0||t>this.size)throw new Error(`Offset ${t} is out of bounds.`);return this._position=this.size-t,this}u8(){return this.u8_at(this._position++)}u8_at(t){return this.check_offset(t,1),this.dv.getUint8(this.offset+t)}u16(){const t=this.u16_at(this.position);return this._position+=2,t}u16_at(t){return this.check_offset(t,2),this.dv.getUint16(this.offset+t,this.little_endian)}u32(){const t=this.u32_at(this.position);return this._position+=4,t}u32_at(t){return this.check_offset(t,4),this.dv.getUint32(this.offset+t,this.little_endian)}i8(){return this.i8_at(this._position++)}i8_at(t){return this.check_offset(t,1),this.dv.getInt8(this.offset+t)}i16(){const t=this.i16_at(this.position);return this._position+=2,t}i16_at(t){return this.check_offset(t,2),this.dv.getInt16(this.offset+t,this.little_endian)}i32(){const t=this.i32_at(this.position);return this._position+=4,t}i32_at(t){return this.check_offset(t,4),this.dv.getInt32(this.offset+t,this.little_endian)}f32(){const t=this.f32_at(this.position);return this._position+=4,t}f32_at(t){return this.check_offset(t,4),this.dv.getFloat32(this.offset+t,this.little_endian)}u8_array(t){this.check_size("n",t,t);const e=[];for(let i=0;i<t;++i)e.push(this.dv.getUint8(this.offset+this._position++));return e}u16_array(t){this.check_size("n",t,2*t);const e=[];for(let i=0;i<t;++i)e.push(this.dv.getUint16(this.offset+this.position,this.little_endian)),this._position+=2;return e}u32_array(t){this.check_size("n",t,4*t);const e=[];for(let i=0;i<t;++i)e.push(this.dv.getUint32(this.offset+this.position,this.little_endian)),this._position+=4;return e}i32_array(t){this.check_size("n",t,4*t);const e=[];for(let i=0;i<t;++i)e.push(this.dv.getInt32(this.offset+this.position,this.little_endian)),this._position+=4;return e}vec2_f32(){return{x:this.f32(),y:this.f32()}}vec3_f32(){return{x:this.f32(),y:this.f32(),z:this.f32()}}string_ascii(t,e,i){const n=[];for(let s=0;s<t;s++){const r=this.u8();if(e&&0===r){i&&this.seek(t-s-1);break}n.push(r)}return String.fromCodePoint(...n)}string_utf16(t,e,i){const n=[],s=Math.floor(t/2);for(let t=0;t<s;t++){const r=this.u16();if(e&&0===r){i&&this.seek(2*(s-t-1));break}n.push(r)}return String.fromCodePoint(...n)}string_ascii_at(t,e,i){const n=[];for(let s=0;s<e;s++){const e=this.u8_at(t+s);if(i&&0===e)break;n.push(e)}return String.fromCodePoint(...n)}string_utf16_at(t,e,i){const n=[],s=Math.floor(e/2);for(let e=0;e<s;e++){const s=this.