2019-08-26 21:42:12 +08:00
|
|
|
import { Action } from "../../core/undo/Action";
|
|
|
|
import { QuestEntityModel } from "../model/QuestEntityModel";
|
|
|
|
import { entity_data } from "../../core/data_formats/parsing/quest/entities";
|
2019-08-27 20:50:16 +08:00
|
|
|
import { SectionModel } from "../model/SectionModel";
|
2019-09-29 03:11:57 +08:00
|
|
|
import { Vector3 } from "three";
|
2019-12-22 02:40:42 +08:00
|
|
|
import { QuestEditorStore } from "../stores/QuestEditorStore";
|
2019-08-26 21:42:12 +08:00
|
|
|
|
|
|
|
export class TranslateEntityAction implements Action {
|
|
|
|
readonly description: string;
|
|
|
|
|
|
|
|
constructor(
|
2019-12-22 02:40:42 +08:00
|
|
|
private readonly quest_editor_store: QuestEditorStore,
|
|
|
|
private readonly entity: QuestEntityModel,
|
|
|
|
private readonly old_section: SectionModel | undefined,
|
|
|
|
private readonly new_section: SectionModel | undefined,
|
|
|
|
private readonly old_position: Vector3,
|
|
|
|
private readonly new_position: Vector3,
|
|
|
|
private readonly world: boolean,
|
2019-08-26 21:42:12 +08:00
|
|
|
) {
|
|
|
|
this.description = `Move ${entity_data(entity.type).name}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
undo(): void {
|
2019-12-22 02:40:42 +08:00
|
|
|
this.quest_editor_store.set_selected_entity(this.entity);
|
2019-08-30 00:42:44 +08:00
|
|
|
|
2019-09-01 02:30:40 +08:00
|
|
|
if (this.old_section) {
|
|
|
|
this.entity.set_section(this.old_section);
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
2019-08-26 21:42:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
redo(): void {
|
2019-12-22 02:40:42 +08:00
|
|
|
this.quest_editor_store.set_selected_entity(this.entity);
|
2019-08-30 00:42:44 +08:00
|
|
|
|
2019-09-01 02:30:40 +08:00
|
|
|
if (this.new_section) {
|
|
|
|
this.entity.set_section(this.new_section);
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
2019-08-26 21:42:12 +08:00
|
|
|
}
|
|
|
|
}
|