2019-07-01 01:55:30 +08:00
|
|
|
import Logger from 'js-logger';
|
|
|
|
import { action, observable } from "mobx";
|
2019-07-01 19:05:58 +08:00
|
|
|
import { AnimationAction, AnimationClip, AnimationMixer, SkinnedMesh } from "three";
|
2019-07-01 14:53:16 +08:00
|
|
|
import { BufferCursor } from "../data_formats/BufferCursor";
|
|
|
|
import { NinjaModel, NinjaObject, parse_nj, parse_xj } from "../data_formats/parsing/ninja";
|
2019-07-02 03:20:09 +08:00
|
|
|
import { parse_njm } from "../data_formats/parsing/ninja/motion";
|
2019-07-01 01:55:30 +08:00
|
|
|
import { PlayerModel } from '../domain';
|
2019-07-01 18:13:05 +08:00
|
|
|
import { create_animation_clip, PSO_FRAME_RATE } from "../rendering/animation";
|
|
|
|
import { ninja_object_to_skinned_mesh } from "../rendering/models";
|
2019-07-01 14:53:16 +08:00
|
|
|
import { get_player_data } from './binary_assets';
|
2019-07-01 01:55:30 +08:00
|
|
|
|
|
|
|
const logger = Logger.get('stores/ModelViewerStore');
|
2019-07-01 14:53:16 +08:00
|
|
|
const cache: Map<string, Promise<NinjaObject<NinjaModel>>> = new Map();
|
2019-07-01 01:55:30 +08:00
|
|
|
|
|
|
|
class ModelViewerStore {
|
|
|
|
readonly models: PlayerModel[] = [
|
|
|
|
new PlayerModel('HUmar', 1, 10, new Set([6])),
|
|
|
|
new PlayerModel('HUnewearl', 1, 10, new Set()),
|
|
|
|
new PlayerModel('HUcast', 5, 0, new Set()),
|
|
|
|
new PlayerModel('HUcaseal', 5, 0, new Set()),
|
|
|
|
new PlayerModel('RAmar', 1, 10, new Set([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])),
|
2019-07-01 05:55:28 +08:00
|
|
|
new PlayerModel('RAmarl', 1, 10, new Set([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])),
|
2019-07-01 01:55:30 +08:00
|
|
|
new PlayerModel('RAcast', 5, 0, new Set()),
|
|
|
|
new PlayerModel('RAcaseal', 5, 0, new Set()),
|
|
|
|
new PlayerModel('FOmarl', 1, 10, new Set([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])),
|
2019-07-01 05:55:28 +08:00
|
|
|
new PlayerModel('FOmar', 1, 10, new Set([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])),
|
2019-07-01 01:55:30 +08:00
|
|
|
new PlayerModel('FOnewm', 1, 10, new Set([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])),
|
|
|
|
new PlayerModel('FOnewearl', 1, 10, new Set([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])),
|
|
|
|
];
|
|
|
|
|
|
|
|
@observable.ref current_model?: NinjaObject<NinjaModel>;
|
2019-07-02 03:20:09 +08:00
|
|
|
@observable.ref current_bone_count: number = 0;
|
|
|
|
@observable.ref current_obj3d?: SkinnedMesh;
|
2019-07-01 18:13:05 +08:00
|
|
|
|
|
|
|
@observable.ref animation?: {
|
|
|
|
mixer: AnimationMixer,
|
|
|
|
clip: AnimationClip,
|
|
|
|
action: AnimationAction,
|
|
|
|
}
|
|
|
|
@observable animation_playing: boolean = false;
|
|
|
|
@observable animation_frame_rate: number = PSO_FRAME_RATE;
|
|
|
|
@observable animation_frame: number = 0;
|
|
|
|
@observable animation_frame_count: number = 0;
|
|
|
|
|
|
|
|
@observable show_skeleton: boolean = false;
|
|
|
|
|
|
|
|
set_animation_frame_rate = action('set_animation_frame_rate', (rate: number) => {
|
|
|
|
if (this.animation) {
|
|
|
|
this.animation.mixer.timeScale = rate / PSO_FRAME_RATE;
|
|
|
|
this.animation_frame_rate = rate;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
set_animation_frame = action('set_animation_frame', (frame: number) => {
|
|
|
|
if (this.animation) {
|
|
|
|
const frame_count = this.animation_frame_count;
|
|
|
|
frame = (frame - 1) % frame_count + 1;
|
|
|
|
if (frame < 1) frame = frame_count + frame;
|
|
|
|
this.animation.action.time = (frame - 1) / (frame_count - 1);
|
|
|
|
this.animation_frame = frame;
|
|
|
|
}
|
|
|
|
})
|
2019-07-01 01:55:30 +08:00
|
|
|
|
|
|
|
load_model = async (model: PlayerModel) => {
|
2019-07-01 14:53:16 +08:00
|
|
|
const object = await this.get_player_ninja_object(model);
|
2019-07-01 01:55:30 +08:00
|
|
|
this.set_model(object);
|
2019-07-02 03:20:09 +08:00
|
|
|
// Ignore the bones from the head parts.
|
|
|
|
this.current_bone_count = 64;
|
2019-07-01 01:55:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
load_file = (file: File) => {
|
|
|
|
const reader = new FileReader();
|
|
|
|
reader.addEventListener('loadend', () => { this.loadend(file, reader) });
|
|
|
|
reader.readAsArrayBuffer(file);
|
|
|
|
}
|
|
|
|
|
2019-07-01 18:13:05 +08:00
|
|
|
toggle_animation_playing = action('toggle_animation_playing', () => {
|
|
|
|
if (this.animation) {
|
|
|
|
this.animation.action.paused = !this.animation.action.paused;
|
|
|
|
this.animation_playing = !this.animation.action.paused;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
update_animation_frame = action('update_animation_frame', () => {
|
|
|
|
if (this.animation) {
|
|
|
|
const frame_count = this.animation_frame_count;
|
|
|
|
this.animation_frame = Math.floor(this.animation.action.time * (frame_count - 1) + 1);
|
2019-07-01 01:55:30 +08:00
|
|
|
}
|
2019-07-01 18:13:05 +08:00
|
|
|
})
|
2019-07-01 01:55:30 +08:00
|
|
|
|
2019-07-02 19:59:45 +08:00
|
|
|
private set_model = action('set_model', (model: NinjaObject<NinjaModel>) => {
|
|
|
|
if (this.current_obj3d && this.animation) {
|
|
|
|
this.animation.mixer.stopAllAction();
|
|
|
|
this.animation.mixer.uncacheRoot(this.current_obj3d);
|
|
|
|
this.animation = undefined;
|
2019-07-01 01:55:30 +08:00
|
|
|
}
|
2019-07-02 19:59:45 +08:00
|
|
|
|
|
|
|
this.current_model = model;
|
|
|
|
this.current_bone_count = model.bone_count();
|
|
|
|
|
|
|
|
const mesh = ninja_object_to_skinned_mesh(this.current_model);
|
|
|
|
mesh.translateY(-mesh.geometry.boundingSphere.radius);
|
|
|
|
this.current_obj3d = mesh;
|
|
|
|
})
|
2019-07-01 01:55:30 +08:00
|
|
|
|
|
|
|
// TODO: notify user of problems.
|
|
|
|
private loadend = async (file: File, reader: FileReader) => {
|
|
|
|
if (!(reader.result instanceof ArrayBuffer)) {
|
|
|
|
logger.error('Couldn\'t read file.');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (file.name.endsWith('.nj')) {
|
|
|
|
const model = parse_nj(new BufferCursor(reader.result, true))[0];
|
2019-07-02 19:59:45 +08:00
|
|
|
this.set_model(model);
|
2019-07-01 01:55:30 +08:00
|
|
|
} else if (file.name.endsWith('.xj')) {
|
|
|
|
const model = parse_xj(new BufferCursor(reader.result, true))[0];
|
2019-07-02 19:59:45 +08:00
|
|
|
this.set_model(model);
|
2019-07-01 01:55:30 +08:00
|
|
|
} else if (file.name.endsWith('.njm')) {
|
2019-07-01 19:05:58 +08:00
|
|
|
if (this.current_model) {
|
2019-07-02 03:20:09 +08:00
|
|
|
const njm = parse_njm(
|
|
|
|
new BufferCursor(reader.result, true),
|
|
|
|
this.current_bone_count
|
|
|
|
);
|
2019-07-01 19:05:58 +08:00
|
|
|
this.add_animation(create_animation_clip(this.current_model, njm));
|
|
|
|
}
|
2019-07-01 01:55:30 +08:00
|
|
|
} else {
|
|
|
|
logger.error(`Unknown file extension in filename "${file.name}".`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private add_to_bone(
|
|
|
|
object: NinjaObject<NinjaModel>,
|
|
|
|
head_part: NinjaObject<NinjaModel>,
|
2019-07-01 19:05:58 +08:00
|
|
|
bone_id: number
|
2019-07-01 01:55:30 +08:00
|
|
|
) {
|
2019-07-02 03:20:09 +08:00
|
|
|
const bone = object.get_bone(bone_id);
|
2019-07-01 01:55:30 +08:00
|
|
|
|
2019-07-01 19:05:58 +08:00
|
|
|
if (bone) {
|
|
|
|
bone.evaluation_flags.hidden = false;
|
|
|
|
bone.evaluation_flags.break_child_trace = false;
|
|
|
|
bone.children.push(head_part);
|
2019-07-01 01:55:30 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private add_animation = action('add_animation', (clip: AnimationClip) => {
|
2019-07-02 03:20:09 +08:00
|
|
|
if (!this.current_obj3d) return;
|
2019-07-01 01:55:30 +08:00
|
|
|
|
2019-07-01 18:13:05 +08:00
|
|
|
let mixer: AnimationMixer;
|
|
|
|
|
|
|
|
if (this.animation) {
|
|
|
|
this.animation.mixer.stopAllAction();
|
|
|
|
mixer = this.animation.mixer;
|
2019-07-01 01:55:30 +08:00
|
|
|
} else {
|
2019-07-02 03:20:09 +08:00
|
|
|
mixer = new AnimationMixer(this.current_obj3d)
|
2019-07-01 18:13:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
this.animation = {
|
|
|
|
mixer,
|
|
|
|
clip,
|
|
|
|
action: mixer.clipAction(clip)
|
2019-07-01 01:55:30 +08:00
|
|
|
}
|
|
|
|
|
2019-07-01 18:13:05 +08:00
|
|
|
this.animation.action.play();
|
|
|
|
this.animation_playing = true;
|
|
|
|
this.animation_frame_count = PSO_FRAME_RATE * clip.duration + 1;
|
2019-07-01 01:55:30 +08:00
|
|
|
})
|
2019-07-01 14:53:16 +08:00
|
|
|
|
|
|
|
private get_player_ninja_object(model: PlayerModel): Promise<NinjaObject<NinjaModel>> {
|
|
|
|
let ninja_object = cache.get(model.name);
|
|
|
|
|
|
|
|
if (ninja_object) {
|
|
|
|
return ninja_object;
|
|
|
|
} else {
|
|
|
|
ninja_object = this.get_all_assets(model);
|
|
|
|
cache.set(model.name, ninja_object);
|
|
|
|
return ninja_object;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private async get_all_assets(model: PlayerModel): Promise<NinjaObject<NinjaModel>> {
|
|
|
|
const body_data = await get_player_data(model.name, 'Body');
|
|
|
|
const body = parse_nj(new BufferCursor(body_data, true))[0];
|
|
|
|
|
|
|
|
if (!body) {
|
|
|
|
throw new Error(`Couldn't parse body for player class ${model.name}.`);
|
|
|
|
}
|
|
|
|
|
|
|
|
const head_data = await get_player_data(model.name, 'Head', 0);
|
|
|
|
const head = parse_nj(new BufferCursor(head_data, true))[0];
|
|
|
|
|
|
|
|
if (head) {
|
|
|
|
this.add_to_bone(body, head, 59);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (model.hair_styles_count > 0) {
|
|
|
|
const hair_data = await get_player_data(model.name, 'Hair', 0);
|
|
|
|
const hair = parse_nj(new BufferCursor(hair_data, true))[0];
|
|
|
|
|
|
|
|
if (hair) {
|
|
|
|
this.add_to_bone(body, hair, 59);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (model.hair_styles_with_accessory.has(0)) {
|
|
|
|
const accessory_data = await get_player_data(model.name, 'Accessory', 0);
|
|
|
|
const accessory = parse_nj(new BufferCursor(accessory_data, true))[0];
|
|
|
|
|
|
|
|
if (accessory) {
|
|
|
|
this.add_to_bone(body, accessory, 59);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return body;
|
|
|
|
}
|
2019-07-01 01:55:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const model_viewer_store = new ModelViewerStore();
|