2019-08-26 21:42:12 +08:00
|
|
|
import { Action } from "../../core/undo/Action";
|
|
|
|
import { QuestEntityModel } from "../model/QuestEntityModel";
|
|
|
|
import { Vec3 } from "../../core/data_formats/vector";
|
|
|
|
import { entity_data } from "../../core/data_formats/parsing/quest/entities";
|
|
|
|
import { quest_editor_store } from "../stores/QuestEditorStore";
|
2019-08-27 20:50:16 +08:00
|
|
|
import { SectionModel } from "../model/SectionModel";
|
2019-08-26 21:42:12 +08:00
|
|
|
|
|
|
|
export class TranslateEntityAction implements Action {
|
|
|
|
readonly description: string;
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
private entity: QuestEntityModel,
|
2019-08-27 20:50:16 +08:00
|
|
|
private old_section: SectionModel | undefined,
|
|
|
|
private new_section: SectionModel | undefined,
|
2019-08-26 21:42:12 +08:00
|
|
|
private old_position: Vec3,
|
|
|
|
private new_position: Vec3,
|
2019-08-27 20:50:16 +08:00
|
|
|
private world: boolean,
|
2019-08-26 21:42:12 +08:00
|
|
|
) {
|
|
|
|
this.description = `Move ${entity_data(entity.type).name}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
undo(): void {
|
2019-08-27 20:50:16 +08:00
|
|
|
if (this.world) {
|
|
|
|
this.entity.set_world_position(this.old_position);
|
|
|
|
} else {
|
|
|
|
this.entity.set_position(this.old_position);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.old_section) {
|
|
|
|
this.entity.set_section(this.old_section);
|
|
|
|
}
|
|
|
|
|
2019-08-26 21:42:12 +08:00
|
|
|
quest_editor_store.set_selected_entity(this.entity);
|
|
|
|
}
|
|
|
|
|
|
|
|
redo(): void {
|
2019-08-27 20:50:16 +08:00
|
|
|
if (this.world) {
|
|
|
|
this.entity.set_world_position(this.new_position);
|
|
|
|
} else {
|
|
|
|
this.entity.set_position(this.new_position);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.new_section) {
|
|
|
|
this.entity.set_section(this.new_section);
|
|
|
|
}
|
|
|
|
|
2019-08-26 21:42:12 +08:00
|
|
|
quest_editor_store.set_selected_entity(this.entity);
|
|
|
|
}
|
|
|
|
}
|