mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Updated features list.
This commit is contained in:
parent
b8ff183808
commit
a619eaa8f7
@ -38,7 +38,7 @@ Features that are in ***bold italics*** are planned and not yet implemented.
|
|||||||
|
|
||||||
- Episode
|
- Episode
|
||||||
- Editable ID, name, short and long description
|
- Editable ID, name, short and long description
|
||||||
- ***Undo/redo***
|
- Undo/redo
|
||||||
- NPC counts
|
- NPC counts
|
||||||
|
|
||||||
## 3D View
|
## 3D View
|
||||||
@ -83,7 +83,7 @@ Features that are in ***bold italics*** are planned and not yet implemented.
|
|||||||
- Binary data
|
- Binary data
|
||||||
- Strings
|
- Strings
|
||||||
- Labels
|
- Labels
|
||||||
- ***Interpret code called from objects as code***
|
- Interpret code called from NPCs and objects as code
|
||||||
|
|
||||||
## Script Assembly Editor
|
## Script Assembly Editor
|
||||||
|
|
||||||
@ -101,17 +101,18 @@ Features that are in ***bold italics*** are planned and not yet implemented.
|
|||||||
- ***Missing 0 label***
|
- ***Missing 0 label***
|
||||||
- ***Missing floor handlers***
|
- ***Missing floor handlers***
|
||||||
- ***Missing map designations***
|
- ***Missing map designations***
|
||||||
- ***Threads (thread, thread_stg) that don't start with a sync***
|
- ***Threads (thread, thread_stg) that don't have a sync***
|
||||||
- ***Unreachable/unused instructions/data***
|
- ***Unreachable/unused instructions/data***
|
||||||
- ***Instructions after "ret" instruction***
|
- ***Instructions after "ret" instruction***
|
||||||
- ***Unused labels***
|
- ***Unused labels***
|
||||||
|
- Unnecessary section markers
|
||||||
- Errors
|
- Errors
|
||||||
- Invalid syntax
|
- Invalid syntax
|
||||||
- Invalid instruction
|
- Invalid instruction
|
||||||
- Invalid instruction arguments
|
- Invalid instruction arguments
|
||||||
- ***Invalid label references***
|
- ***Invalid label references***
|
||||||
- ***Mark all duplicate labels (the first one is not marked at the moment)***
|
- ***Mark all duplicate labels (the first one is not marked at the moment)***
|
||||||
- ***Instruction parameter hints***
|
- Instruction parameter hints
|
||||||
- ***Show instruction documentation on hover over***
|
- ***Show instruction documentation on hover over***
|
||||||
- ***Show reserved register usage on hover over***
|
- ***Show reserved register usage on hover over***
|
||||||
- ***When saving, ask user whether to really save when asm contains errors***
|
- ***When saving, ask user whether to really save when asm contains errors***
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { autorun } from "mobx";
|
import { autorun } from "mobx";
|
||||||
import { editor, languages, MarkerSeverity, Position } from "monaco-editor";
|
import { editor, languages, MarkerSeverity, MarkerTag, Position } from "monaco-editor";
|
||||||
import React, { Component, createRef, ReactNode } from "react";
|
import React, { Component, createRef, ReactNode } from "react";
|
||||||
import { AutoSizer } from "react-virtualized";
|
import { AutoSizer } from "react-virtualized";
|
||||||
import { AssemblyAnalyser } from "../scripting/AssemblyAnalyser";
|
import { AssemblyAnalyser } from "../scripting/AssemblyAnalyser";
|
||||||
@ -10,6 +10,7 @@ import CompletionList = languages.CompletionList;
|
|||||||
import ITextModel = editor.ITextModel;
|
import ITextModel = editor.ITextModel;
|
||||||
import IStandaloneCodeEditor = editor.IStandaloneCodeEditor;
|
import IStandaloneCodeEditor = editor.IStandaloneCodeEditor;
|
||||||
import SignatureHelp = languages.SignatureHelp;
|
import SignatureHelp = languages.SignatureHelp;
|
||||||
|
import IMarkerData = editor.IMarkerData;
|
||||||
|
|
||||||
const ASM_SYNTAX: languages.IMonarchLanguage = {
|
const ASM_SYNTAX: languages.IMonarchLanguage = {
|
||||||
defaultToken: "invalid",
|
defaultToken: "invalid",
|
||||||
@ -268,23 +269,28 @@ class MonacoComponent extends Component<MonacoProps> {
|
|||||||
model,
|
model,
|
||||||
"psoasm",
|
"psoasm",
|
||||||
assembly_analyser.warnings
|
assembly_analyser.warnings
|
||||||
.map(warning => ({
|
.map(
|
||||||
severity: MarkerSeverity.Warning,
|
(warning): IMarkerData => ({
|
||||||
message: warning.message,
|
severity: MarkerSeverity.Hint,
|
||||||
startLineNumber: warning.line_no,
|
message: warning.message,
|
||||||
endLineNumber: warning.line_no,
|
startLineNumber: warning.line_no,
|
||||||
startColumn: warning.col,
|
endLineNumber: warning.line_no,
|
||||||
endColumn: warning.col + warning.length,
|
startColumn: warning.col,
|
||||||
}))
|
endColumn: warning.col + warning.length,
|
||||||
|
tags: [MarkerTag.Unnecessary],
|
||||||
|
}),
|
||||||
|
)
|
||||||
.concat(
|
.concat(
|
||||||
assembly_analyser.errors.map(error => ({
|
assembly_analyser.errors.map(
|
||||||
severity: MarkerSeverity.Error,
|
(error): IMarkerData => ({
|
||||||
message: error.message,
|
severity: MarkerSeverity.Error,
|
||||||
startLineNumber: error.line_no,
|
message: error.message,
|
||||||
endLineNumber: error.line_no,
|
startLineNumber: error.line_no,
|
||||||
startColumn: error.col,
|
endLineNumber: error.line_no,
|
||||||
endColumn: error.col + error.length,
|
startColumn: error.col,
|
||||||
})),
|
endColumn: error.col + error.length,
|
||||||
|
}),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user