mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Only allow saving quest files in GC or BB format.
This commit is contained in:
parent
50d1ff7f93
commit
606b0661f4
@ -234,7 +234,17 @@ export class QuestEditorToolBarController extends Controller {
|
|||||||
};
|
};
|
||||||
|
|
||||||
set_version = (version: Version): void => {
|
set_version = (version: Version): void => {
|
||||||
this._version.val = version;
|
// We only support GC and BB at the moment.
|
||||||
|
switch (version) {
|
||||||
|
case Version.DC:
|
||||||
|
case Version.GC:
|
||||||
|
this._version.val = Version.GC;
|
||||||
|
break;
|
||||||
|
case Version.PC:
|
||||||
|
case Version.BB:
|
||||||
|
this._version.val = Version.BB;
|
||||||
|
break;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
debug = (): void => {
|
debug = (): void => {
|
||||||
|
@ -14,7 +14,7 @@ import { View } from "../../core/gui/View";
|
|||||||
import { Dialog } from "../../core/gui/Dialog";
|
import { Dialog } from "../../core/gui/Dialog";
|
||||||
import { TextInput } from "../../core/gui/TextInput";
|
import { TextInput } from "../../core/gui/TextInput";
|
||||||
import "./QuestEditorToolBarView.css";
|
import "./QuestEditorToolBarView.css";
|
||||||
import { Version, VERSIONS } from "../../core/data_formats/parsing/quest/Version";
|
import { Version } from "../../core/data_formats/parsing/quest/Version";
|
||||||
|
|
||||||
export class QuestEditorToolBarView extends View {
|
export class QuestEditorToolBarView extends View {
|
||||||
private readonly toolbar: ToolBar;
|
private readonly toolbar: ToolBar;
|
||||||
@ -130,7 +130,7 @@ export class QuestEditorToolBarView extends View {
|
|||||||
const version_select = this.disposable(
|
const version_select = this.disposable(
|
||||||
new Select({
|
new Select({
|
||||||
label: "Version:",
|
label: "Version:",
|
||||||
items: VERSIONS,
|
items: [Version.GC, Version.BB],
|
||||||
selected: ctrl.version,
|
selected: ctrl.version,
|
||||||
to_label: version => {
|
to_label: version => {
|
||||||
switch (version) {
|
switch (version) {
|
||||||
|
@ -1 +1 @@
|
|||||||
48
|
49
|
||||||
|
Loading…
Reference in New Issue
Block a user