Show instruction documentation on hover over.

This commit is contained in:
jtuu 2020-04-29 07:14:21 +03:00
parent 07c3319803
commit fb0f49611a
2 changed files with 78 additions and 2 deletions

View File

@ -131,7 +131,7 @@ Features that are in ***bold italics*** are planned but not yet implemented.
- ***Invalid label references***
- ***Mark all duplicate labels (the first one is not marked at the moment)***
- Instruction parameter hints
- ***Show instruction documentation on hover over***
- Show instruction documentation on hover over
- ***Show reserved register usage on hover over***
- ***When saving, ask user whether to really save when asm contains errors***
- ***Theme selection***

View File

@ -1,4 +1,11 @@
import { editor, languages, MarkerSeverity, MarkerTag, Position } from "monaco-editor";
import {
editor,
languages,
MarkerSeverity,
MarkerTag,
Position,
IMarkdownString,
} from "monaco-editor";
import { AssemblyAnalyser } from "../scripting/AssemblyAnalyser";
import { Disposer } from "../../core/observable/Disposer";
import { SimpleUndo } from "../../core/undo/SimpleUndo";
@ -18,6 +25,7 @@ import CompletionList = languages.CompletionList;
import IMarkerData = editor.IMarkerData;
import SignatureHelpResult = languages.SignatureHelpResult;
import LocationLink = languages.LocationLink;
import Hover = languages.Hover;
import IModelContentChange = editor.IModelContentChange;
const assembly_analyser = new AssemblyAnalyser();
@ -85,6 +93,74 @@ languages.registerDefinitionProvider("psoasm", {
},
});
languages.registerHoverProvider("psoasm", {
async provideHover(model: ITextModel, position: Position): Promise<Hover | undefined> {
const help = await assembly_analyser.provide_signature_help(
model.uri,
position.lineNumber,
position.column,
);
if (!help) {
return;
}
const sig = help.signatures[help.activeSignature];
const param = sig.parameters[help.activeParameter];
if (!sig || !sig.documentation) {
return;
}
const contents: IMarkdownString[] = [];
// Instruction signature. Parameter highlighted if possible.
if (param && Array.isArray(param.label)) {
// TODO: Figure out how to underline this instead of bolding
// to make it match the look of the signature help.
contents.push({
value:
sig.label.slice(0, param.label[0]) +
"__" +
sig.label.slice(param.label[0], param.label[1]) +
"__" +
sig.label.slice(param.label[1]),
});
} else {
contents.push({
value: sig.label,
});
}
// Put the parameter doc and the instruction doc
// in the same string to match the look of the signature help.
let doc = "";
// Parameter doc.
if (param && param.documentation) {
doc =
typeof param.documentation === "string"
? param.documentation
: param.documentation.value;
// TODO: Figure out how add an empty line here
// to make it match the look of the signature help.
doc += "\n\n";
}
// Instruction doc.
doc += typeof sig.documentation === "string" ? sig.documentation : sig.documentation.value;
contents.push({
value: doc,
});
return {
contents,
};
},
});
export class AsmEditorStore extends Store {
private readonly model_disposer = this.disposable(new Disposer());
private readonly _model: WritableProperty<ITextModel | undefined> = property(undefined);