mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
Object-specific properties are now editable.
This commit is contained in:
parent
e1f4c34588
commit
d51c12096e
28
src/quest_editor/actions/EditEntityPropAction.ts
Normal file
28
src/quest_editor/actions/EditEntityPropAction.ts
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
import { Action } from "../../core/undo/Action";
|
||||||
|
import { QuestEntityPropModel } from "../model/QuestEntityPropModel";
|
||||||
|
import { QuestEditorStore } from "../stores/QuestEditorStore";
|
||||||
|
import { QuestEntityModel } from "../model/QuestEntityModel";
|
||||||
|
|
||||||
|
export class EditEntityPropAction implements Action {
|
||||||
|
readonly description: string;
|
||||||
|
|
||||||
|
constructor(
|
||||||
|
private readonly quest_editor_store: QuestEditorStore,
|
||||||
|
private readonly entity: QuestEntityModel,
|
||||||
|
private readonly prop: QuestEntityPropModel,
|
||||||
|
private readonly old_value: number,
|
||||||
|
private readonly new_value: number,
|
||||||
|
) {
|
||||||
|
this.description = `Edit ${prop.name}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
redo(): void {
|
||||||
|
this.prop.set_value(this.new_value);
|
||||||
|
this.quest_editor_store.set_selected_entity(this.entity);
|
||||||
|
}
|
||||||
|
|
||||||
|
undo(): void {
|
||||||
|
this.prop.set_value(this.old_value);
|
||||||
|
this.quest_editor_store.set_selected_entity(this.entity);
|
||||||
|
}
|
||||||
|
}
|
@ -11,6 +11,7 @@ import { euler } from "../model/euler";
|
|||||||
import { entity_data } from "../../core/data_formats/parsing/quest/Quest";
|
import { entity_data } from "../../core/data_formats/parsing/quest/Quest";
|
||||||
import { ListProperty } from "../../core/observable/property/list/ListProperty";
|
import { ListProperty } from "../../core/observable/property/list/ListProperty";
|
||||||
import { QuestEntityPropModel } from "../model/QuestEntityPropModel";
|
import { QuestEntityPropModel } from "../model/QuestEntityPropModel";
|
||||||
|
import { EditEntityPropAction } from "../actions/EditEntityPropAction";
|
||||||
|
|
||||||
const DUMMY_VECTOR = Object.freeze(new Vector3());
|
const DUMMY_VECTOR = Object.freeze(new Vector3());
|
||||||
const DUMMY_EULER = Object.freeze(new Euler());
|
const DUMMY_EULER = Object.freeze(new Euler());
|
||||||
@ -173,4 +174,14 @@ export class EntityInfoController extends Controller {
|
|||||||
.redo();
|
.redo();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
set_prop_value(prop: QuestEntityPropModel, value: number): void {
|
||||||
|
const entity = this.store.selected_entity.val;
|
||||||
|
|
||||||
|
if (entity) {
|
||||||
|
this.store.undo
|
||||||
|
.push(new EditEntityPropAction(this.store, entity, prop, prop.value.val, value))
|
||||||
|
.redo();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -22,3 +22,7 @@
|
|||||||
.quest_editor_EntityInfoView .core_NumberInput {
|
.quest_editor_EntityInfoView .core_NumberInput {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.quest_editor_EntityInfoView table.quest_editor_EntityInfoView_specific_props {
|
||||||
|
margin-top: -2px;
|
||||||
|
}
|
||||||
|
@ -16,7 +16,9 @@ export class EntityInfoView extends ResizableView {
|
|||||||
private readonly no_entity_view = new UnavailableView("No entity selected.");
|
private readonly no_entity_view = new UnavailableView("No entity selected.");
|
||||||
|
|
||||||
private readonly standard_props_element = table();
|
private readonly standard_props_element = table();
|
||||||
private readonly specific_props_element = table();
|
private readonly specific_props_element = table({
|
||||||
|
className: "quest_editor_EntityInfoView_specific_props",
|
||||||
|
});
|
||||||
|
|
||||||
private readonly type_element: HTMLTableCellElement;
|
private readonly type_element: HTMLTableCellElement;
|
||||||
private readonly name_element: HTMLTableCellElement;
|
private readonly name_element: HTMLTableCellElement;
|
||||||
@ -114,7 +116,7 @@ export class EntityInfoView extends ResizableView {
|
|||||||
this.rot_z_element.enabled.val = enabled;
|
this.rot_z_element.enabled.val = enabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
private create_prop_row(prop: QuestEntityPropModel): [HTMLTableRowElement, Disposable] {
|
private create_prop_row = (prop: QuestEntityPropModel): [HTMLTableRowElement, Disposable] => {
|
||||||
const disposer = new Disposer();
|
const disposer = new Disposer();
|
||||||
|
|
||||||
let min: number | undefined;
|
let min: number | undefined;
|
||||||
@ -159,14 +161,16 @@ export class EntityInfoView extends ResizableView {
|
|||||||
min,
|
min,
|
||||||
max,
|
max,
|
||||||
round_to,
|
round_to,
|
||||||
enabled: false,
|
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
|
|
||||||
disposer.add_all(value_input.value.bind_to(prop.value));
|
disposer.add_all(
|
||||||
|
value_input.value.bind_to(prop.value),
|
||||||
|
value_input.value.observe(({ value }) => this.ctrl.set_prop_value(prop, value)),
|
||||||
|
);
|
||||||
|
|
||||||
const element = tr(th(`${prop.name}:`), td(value_input.element));
|
const element = tr(th(`${prop.name}:`), td(value_input.element));
|
||||||
|
|
||||||
return [element, disposer];
|
return [element, disposer];
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
@ -161,7 +161,9 @@ exports[`Renders correctly with an entity selected.: should render a table of ed
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<table />
|
<table
|
||||||
|
class="quest_editor_EntityInfoView_specific_props"
|
||||||
|
/>
|
||||||
<div
|
<div
|
||||||
class="quest_editor_UnavailableView"
|
class="quest_editor_UnavailableView"
|
||||||
hidden=""
|
hidden=""
|
||||||
@ -334,7 +336,9 @@ exports[`Renders correctly without an entity selected.: should render a "No enti
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<table />
|
<table
|
||||||
|
class="quest_editor_EntityInfoView_specific_props"
|
||||||
|
/>
|
||||||
<div
|
<div
|
||||||
class="quest_editor_UnavailableView"
|
class="quest_editor_UnavailableView"
|
||||||
>
|
>
|
||||||
@ -506,7 +510,9 @@ exports[`Renders correctly without an entity selected.: should render a "No enti
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<table />
|
<table
|
||||||
|
class="quest_editor_EntityInfoView_specific_props"
|
||||||
|
/>
|
||||||
<div
|
<div
|
||||||
class="quest_editor_UnavailableView"
|
class="quest_editor_UnavailableView"
|
||||||
>
|
>
|
||||||
|
Loading…
Reference in New Issue
Block a user