2020-01-06 01:40:35 +08:00
|
|
|
import { Controller } from "../../../core/controllers/Controller";
|
|
|
|
import { Property } from "../../../core/observable/property/Property";
|
|
|
|
import { ModelStore } from "../../stores/ModelStore";
|
2020-01-06 06:20:53 +08:00
|
|
|
import { read_file } from "../../../core/files";
|
2020-01-06 01:40:35 +08:00
|
|
|
import { ArrayBufferCursor } from "../../../core/data_formats/cursor/ArrayBufferCursor";
|
|
|
|
import { Endianness } from "../../../core/data_formats/Endianness";
|
|
|
|
import { parse_nj, parse_xj } from "../../../core/data_formats/parsing/ninja";
|
|
|
|
import { parse_njm } from "../../../core/data_formats/parsing/ninja/motion";
|
2020-01-07 04:09:44 +08:00
|
|
|
import { is_xvm, parse_xvm, XvrTexture } from "../../../core/data_formats/parsing/ninja/texture";
|
2020-01-06 01:40:35 +08:00
|
|
|
import { parse_afs } from "../../../core/data_formats/parsing/afs";
|
|
|
|
import { LogManager } from "../../../core/Logger";
|
2020-01-07 04:09:44 +08:00
|
|
|
import { prs_decompress } from "../../../core/data_formats/compression/prs/decompress";
|
2020-01-07 06:32:14 +08:00
|
|
|
import { failure, Result, result_builder, success } from "../../../core/Result";
|
|
|
|
import { Severity } from "../../../core/Severity";
|
2020-01-06 01:40:35 +08:00
|
|
|
|
|
|
|
const logger = LogManager.get("viewer/controllers/model/ModelToolBarController");
|
|
|
|
|
|
|
|
export class ModelToolBarController extends Controller {
|
|
|
|
readonly show_skeleton: Property<boolean>;
|
|
|
|
readonly animation_frame_count: Property<number>;
|
|
|
|
readonly animation_frame_count_label: Property<string>;
|
|
|
|
readonly animation_controls_enabled: Property<boolean>;
|
|
|
|
readonly animation_playing: Property<boolean>;
|
|
|
|
readonly animation_frame_rate: Property<number>;
|
|
|
|
readonly animation_frame: Property<number>;
|
|
|
|
|
|
|
|
constructor(private readonly store: ModelStore) {
|
|
|
|
super();
|
|
|
|
|
|
|
|
this.show_skeleton = store.show_skeleton;
|
|
|
|
this.animation_frame_count = store.animation_frame_count;
|
|
|
|
this.animation_frame_count_label = store.animation_frame_count.map(count => `/ ${count}`);
|
|
|
|
this.animation_controls_enabled = store.current_nj_motion.map(njm => njm != undefined);
|
|
|
|
this.animation_playing = store.animation_playing;
|
|
|
|
this.animation_frame_rate = store.animation_frame_rate;
|
|
|
|
this.animation_frame = store.animation_frame.map(v => Math.round(v));
|
|
|
|
}
|
|
|
|
|
|
|
|
set_show_skeleton = (show_skeleton: boolean): void => {
|
|
|
|
this.store.set_show_skeleton(show_skeleton);
|
|
|
|
};
|
|
|
|
|
|
|
|
set_animation_playing = (playing: boolean): void => {
|
|
|
|
this.store.set_animation_playing(playing);
|
|
|
|
};
|
|
|
|
|
|
|
|
set_animation_frame_rate = (frame_rate: number): void => {
|
|
|
|
this.store.set_animation_frame_rate(frame_rate);
|
|
|
|
};
|
|
|
|
|
|
|
|
set_animation_frame = (frame: number): void => {
|
|
|
|
this.store.set_animation_frame(frame);
|
|
|
|
};
|
|
|
|
|
2020-01-09 04:42:12 +08:00
|
|
|
load_file = async (file: File): Promise<Result<unknown>> => {
|
2020-01-07 06:32:14 +08:00
|
|
|
let result: Result<unknown>;
|
|
|
|
|
2020-01-06 01:40:35 +08:00
|
|
|
try {
|
|
|
|
const buffer = await read_file(file);
|
|
|
|
const cursor = new ArrayBufferCursor(buffer, Endianness.Little);
|
|
|
|
|
|
|
|
if (file.name.endsWith(".nj")) {
|
2020-01-07 06:32:14 +08:00
|
|
|
const nj_result = (result = parse_nj(cursor));
|
2020-01-07 04:09:44 +08:00
|
|
|
|
2020-01-07 06:32:14 +08:00
|
|
|
if (nj_result.success) {
|
|
|
|
this.store.set_current_nj_object(nj_result.value[0]);
|
2020-01-07 04:09:44 +08:00
|
|
|
}
|
2020-01-06 01:40:35 +08:00
|
|
|
} else if (file.name.endsWith(".xj")) {
|
2020-01-07 06:32:14 +08:00
|
|
|
const xj_result = (result = parse_xj(cursor));
|
2020-01-07 04:09:44 +08:00
|
|
|
|
2020-01-07 06:32:14 +08:00
|
|
|
if (xj_result.success) {
|
|
|
|
this.store.set_current_nj_object(xj_result.value[0]);
|
2020-01-07 04:09:44 +08:00
|
|
|
}
|
2020-01-06 01:40:35 +08:00
|
|
|
} else if (file.name.endsWith(".njm")) {
|
|
|
|
this.store.set_current_animation(undefined);
|
|
|
|
this.store.set_current_nj_motion(undefined);
|
|
|
|
|
|
|
|
const nj_object = this.store.current_nj_object.val;
|
|
|
|
|
|
|
|
if (nj_object) {
|
|
|
|
this.set_animation_playing(true);
|
|
|
|
this.store.set_current_nj_motion(parse_njm(cursor, nj_object.bone_count()));
|
2020-01-07 06:32:14 +08:00
|
|
|
result = success(undefined);
|
|
|
|
} else {
|
|
|
|
result = failure([
|
|
|
|
{ severity: Severity.Error, ui_message: "No model to animate" },
|
|
|
|
]);
|
2020-01-06 01:40:35 +08:00
|
|
|
}
|
|
|
|
} else if (file.name.endsWith(".xvm")) {
|
2020-01-07 06:32:14 +08:00
|
|
|
const xvm_result = (result = parse_xvm(cursor));
|
2020-01-07 04:09:44 +08:00
|
|
|
|
2020-01-07 06:32:14 +08:00
|
|
|
if (xvm_result.success) {
|
|
|
|
this.store.set_current_textures(xvm_result.value.textures);
|
2020-01-07 04:09:44 +08:00
|
|
|
} else {
|
|
|
|
this.store.set_current_textures([]);
|
|
|
|
}
|
2020-01-06 01:40:35 +08:00
|
|
|
} else if (file.name.endsWith(".afs")) {
|
2020-01-07 04:09:44 +08:00
|
|
|
const rb = result_builder(logger);
|
2020-01-07 06:32:14 +08:00
|
|
|
const afs_result = parse_afs(cursor);
|
|
|
|
rb.add_result(afs_result);
|
2020-01-07 04:09:44 +08:00
|
|
|
|
2020-01-07 06:32:14 +08:00
|
|
|
if (!afs_result.success) {
|
|
|
|
result = rb.failure();
|
|
|
|
} else {
|
|
|
|
const textures: XvrTexture[] = afs_result.value.flatMap(file => {
|
|
|
|
const cursor = new ArrayBufferCursor(file, Endianness.Little);
|
|
|
|
|
|
|
|
if (is_xvm(cursor)) {
|
|
|
|
const xvm_result = parse_xvm(cursor);
|
|
|
|
rb.add_result(xvm_result);
|
|
|
|
return xvm_result.value?.textures ?? [];
|
|
|
|
} else {
|
|
|
|
const xvm_result = parse_xvm(prs_decompress(cursor.seek_start(0)));
|
|
|
|
rb.add_result(xvm_result);
|
|
|
|
return xvm_result.value?.textures ?? [];
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (textures.length) {
|
|
|
|
result = rb.success(textures);
|
2020-01-07 04:09:44 +08:00
|
|
|
} else {
|
2020-01-07 06:32:14 +08:00
|
|
|
result = rb.failure();
|
2020-01-07 04:09:44 +08:00
|
|
|
}
|
|
|
|
|
2020-01-07 06:32:14 +08:00
|
|
|
this.store.set_current_textures(textures);
|
2020-01-07 04:09:44 +08:00
|
|
|
}
|
2020-01-06 01:40:35 +08:00
|
|
|
} else {
|
2020-01-07 06:32:14 +08:00
|
|
|
logger.debug(`Unsupported file extension in filename "${file.name}".`);
|
|
|
|
result = failure([
|
|
|
|
{ severity: Severity.Error, ui_message: "Unsupported file type." },
|
|
|
|
]);
|
2020-01-06 01:40:35 +08:00
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
logger.error("Couldn't read file.", e);
|
2020-01-07 06:32:14 +08:00
|
|
|
result = failure();
|
2020-01-06 01:40:35 +08:00
|
|
|
}
|
2020-01-07 06:32:14 +08:00
|
|
|
|
2020-01-09 04:42:12 +08:00
|
|
|
return result;
|
2020-01-06 01:40:35 +08:00
|
|
|
};
|
|
|
|
}
|