2020-01-02 07:55:55 +08:00
|
|
|
import { list_property } from "../../core/observable";
|
2020-01-03 07:50:19 +08:00
|
|
|
import { parse_xvm, XvrTexture } from "../../core/data_formats/parsing/ninja/texture";
|
2019-08-22 00:59:56 +08:00
|
|
|
import { read_file } from "../../core/read_file";
|
|
|
|
import { ArrayBufferCursor } from "../../core/data_formats/cursor/ArrayBufferCursor";
|
|
|
|
import { Endianness } from "../../core/data_formats/Endianness";
|
2019-12-25 07:17:02 +08:00
|
|
|
import { Store } from "../../core/stores/Store";
|
|
|
|
import { LogManager } from "../../core/Logger";
|
2020-01-02 07:55:55 +08:00
|
|
|
import { WritableListProperty } from "../../core/observable/property/list/WritableListProperty";
|
|
|
|
import { ListProperty } from "../../core/observable/property/list/ListProperty";
|
|
|
|
import { filename_extension } from "../../core/util";
|
|
|
|
import { parse_afs } from "../../core/data_formats/parsing/afs";
|
2019-08-22 00:59:56 +08:00
|
|
|
|
2019-12-25 07:17:02 +08:00
|
|
|
const logger = LogManager.get("viewer/stores/TextureStore");
|
2019-08-22 00:59:56 +08:00
|
|
|
|
2019-12-25 07:17:02 +08:00
|
|
|
export class TextureStore extends Store {
|
2020-01-03 07:50:19 +08:00
|
|
|
private readonly _textures: WritableListProperty<XvrTexture> = list_property();
|
|
|
|
readonly textures: ListProperty<XvrTexture> = this._textures;
|
2019-08-22 00:59:56 +08:00
|
|
|
|
2019-10-02 00:30:26 +08:00
|
|
|
load_file = async (file: File): Promise<void> => {
|
2019-08-22 00:59:56 +08:00
|
|
|
try {
|
2020-01-02 20:44:34 +08:00
|
|
|
const ext = filename_extension(file.name).toLowerCase();
|
2019-08-22 00:59:56 +08:00
|
|
|
const buffer = await read_file(file);
|
2020-01-02 07:55:55 +08:00
|
|
|
|
|
|
|
if (ext === "xvm") {
|
|
|
|
const xvm = parse_xvm(new ArrayBufferCursor(buffer, Endianness.Little));
|
|
|
|
|
2020-01-03 07:50:19 +08:00
|
|
|
this._textures.splice(0, Infinity, ...xvm.textures);
|
2020-01-02 07:55:55 +08:00
|
|
|
} else if (ext === "afs") {
|
|
|
|
const afs = parse_afs(new ArrayBufferCursor(buffer, Endianness.Little));
|
2020-01-03 07:50:19 +08:00
|
|
|
const textures: XvrTexture[] = [];
|
2020-01-02 07:55:55 +08:00
|
|
|
|
|
|
|
for (const buffer of afs) {
|
|
|
|
const xvm = parse_xvm(new ArrayBufferCursor(buffer, Endianness.Little));
|
2020-01-03 07:50:19 +08:00
|
|
|
textures.push(...xvm.textures);
|
2020-01-02 07:55:55 +08:00
|
|
|
}
|
|
|
|
|
2020-01-03 07:50:19 +08:00
|
|
|
this._textures.val = textures;
|
2020-01-02 07:55:55 +08:00
|
|
|
}
|
2019-08-22 00:59:56 +08:00
|
|
|
} catch (e) {
|
|
|
|
logger.error("Couldn't read file.", e);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|