2019-05-30 03:43:06 +08:00
|
|
|
import { observer } from "mobx-react";
|
2019-07-21 03:18:09 +08:00
|
|
|
import React, { Component, ReactNode } from "react";
|
|
|
|
import { get_quest_renderer } from "../../rendering/QuestRenderer";
|
|
|
|
import { application_store } from "../../stores/ApplicationStore";
|
2019-06-28 00:50:22 +08:00
|
|
|
import { quest_editor_store } from "../../stores/QuestEditorStore";
|
2019-07-21 03:18:09 +08:00
|
|
|
import { RendererComponent } from "../RendererComponent";
|
2019-05-30 03:43:06 +08:00
|
|
|
import { EntityInfoComponent } from "./EntityInfoComponent";
|
2019-07-22 02:44:34 +08:00
|
|
|
import "./QuestEditorComponent.less";
|
2019-05-30 03:43:06 +08:00
|
|
|
import { QuestInfoComponent } from "./QuestInfoComponent";
|
2019-07-21 03:18:09 +08:00
|
|
|
import { Toolbar } from "./Toolbar";
|
2019-07-22 02:44:34 +08:00
|
|
|
import { Tabs } from "antd";
|
|
|
|
import { ScriptEditorComponent } from "./ScriptEditorComponent";
|
|
|
|
import { AutoSizer } from "react-virtualized";
|
2019-05-30 03:43:06 +08:00
|
|
|
|
|
|
|
@observer
|
2019-07-21 03:18:09 +08:00
|
|
|
export class QuestEditorComponent extends Component<{}, { debug: boolean }> {
|
|
|
|
state = { debug: false };
|
2019-05-30 03:43:06 +08:00
|
|
|
|
2019-07-18 21:39:23 +08:00
|
|
|
componentDidMount(): void {
|
|
|
|
application_store.on_global_keyup("quest_editor", this.keyup);
|
|
|
|
}
|
|
|
|
|
2019-07-03 02:56:33 +08:00
|
|
|
render(): ReactNode {
|
2019-06-28 00:50:22 +08:00
|
|
|
const quest = quest_editor_store.current_quest;
|
2019-05-30 03:43:06 +08:00
|
|
|
|
|
|
|
return (
|
2019-06-01 05:20:13 +08:00
|
|
|
<div className="qe-QuestEditorComponent">
|
2019-07-21 03:18:09 +08:00
|
|
|
<Toolbar />
|
2019-06-01 05:20:13 +08:00
|
|
|
<div className="qe-QuestEditorComponent-main">
|
2019-05-30 03:43:06 +08:00
|
|
|
<QuestInfoComponent quest={quest} />
|
2019-07-22 02:44:34 +08:00
|
|
|
<Tabs type="card" className="qe-QuestEditorComponent-tabcontainer">
|
|
|
|
<Tabs.TabPane
|
|
|
|
tab="Entities"
|
|
|
|
key="entities"
|
|
|
|
className="qe-QuestEditorComponent-tab"
|
|
|
|
>
|
|
|
|
<div className="qe-QuestEditorComponent-tab-main">
|
|
|
|
<AutoSizer>
|
|
|
|
{({ width, height }) => (
|
|
|
|
<RendererComponent
|
|
|
|
renderer={get_quest_renderer()}
|
|
|
|
width={width}
|
|
|
|
height={height}
|
|
|
|
debug={this.state.debug}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</AutoSizer>
|
|
|
|
</div>
|
|
|
|
<EntityInfoComponent entity={quest_editor_store.selected_entity} />
|
|
|
|
</Tabs.TabPane>
|
|
|
|
<Tabs.TabPane
|
|
|
|
tab="Script"
|
|
|
|
key="script"
|
|
|
|
className="qe-QuestEditorComponent-tab"
|
|
|
|
>
|
|
|
|
<ScriptEditorComponent className="qe-QuestEditorComponent-tab-main" />
|
|
|
|
</Tabs.TabPane>
|
|
|
|
</Tabs>
|
2019-05-30 03:43:06 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-07-18 21:39:23 +08:00
|
|
|
private keyup = (e: KeyboardEvent) => {
|
|
|
|
if (e.ctrlKey && e.key === "z" && !e.altKey) {
|
|
|
|
quest_editor_store.undo_stack.undo();
|
|
|
|
} else if (e.ctrlKey && e.key === "Z" && !e.altKey) {
|
|
|
|
quest_editor_store.undo_stack.redo();
|
2019-07-20 03:49:59 +08:00
|
|
|
} else if (e.ctrlKey && e.altKey && e.key === "d") {
|
|
|
|
this.setState(state => ({ debug: !state.debug }));
|
2019-07-18 21:39:23 +08:00
|
|
|
}
|
|
|
|
};
|
2019-06-01 05:20:13 +08:00
|
|
|
}
|