2019-08-22 00:59:56 +08:00
|
|
|
import { property } from "../../core/observable";
|
|
|
|
import { parse_xvm, Xvm } from "../../core/data_formats/parsing/ninja/texture";
|
2019-08-30 00:24:03 +08:00
|
|
|
import { Property } from "../../core/observable/property/Property";
|
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";
|
|
|
|
import Logger = require("js-logger");
|
|
|
|
|
|
|
|
const logger = Logger.get("viewer/stores/TextureStore");
|
|
|
|
|
|
|
|
export class TextureStore {
|
|
|
|
private readonly _current_xvm = property<Xvm | undefined>(undefined);
|
|
|
|
readonly current_xvm: Property<Xvm | undefined> = this._current_xvm;
|
|
|
|
|
|
|
|
load_file = async (file: File) => {
|
|
|
|
try {
|
|
|
|
const buffer = await read_file(file);
|
2019-08-23 04:45:01 +08:00
|
|
|
this._current_xvm.val = parse_xvm(new ArrayBufferCursor(buffer, Endianness.Little));
|
2019-08-22 00:59:56 +08:00
|
|
|
} catch (e) {
|
|
|
|
logger.error("Couldn't read file.", e);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export const texture_store = new TextureStore();
|