mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Script editor now supports line comments.
This commit is contained in:
parent
269b9cbd25
commit
7cfcf5222c
@ -19,6 +19,8 @@ Features that are in ***bold italics*** are planned and not yet implemented.
|
|||||||
- Save as dialog to choose name
|
- Save as dialog to choose name
|
||||||
- Support for .qst (BB, ***GC***, ***PC***, ***DC***)
|
- Support for .qst (BB, ***GC***, ***PC***, ***DC***)
|
||||||
- ***Notify user when and why quest saving fails***
|
- ***Notify user when and why quest saving fails***
|
||||||
|
- Custom text-based format
|
||||||
|
- Usable with SCM tools
|
||||||
|
|
||||||
## Undo/Redo
|
## Undo/Redo
|
||||||
|
|
||||||
@ -111,6 +113,7 @@ Features that are in ***bold italics*** are planned and not yet implemented.
|
|||||||
- ***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***
|
||||||
|
- ***Theme selection***
|
||||||
|
|
||||||
## Enemy Waves
|
## Enemy Waves
|
||||||
|
|
||||||
|
@ -143,6 +143,16 @@ export class AssemblyLexer {
|
|||||||
const char = this.peek();
|
const char = this.peek();
|
||||||
let token: Token;
|
let token: Token;
|
||||||
|
|
||||||
|
if ("/" === char) {
|
||||||
|
this.skip();
|
||||||
|
|
||||||
|
if ("/" === this.peek()) {
|
||||||
|
break;
|
||||||
|
} else {
|
||||||
|
this.back();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (/\s/.test(char)) {
|
if (/\s/.test(char)) {
|
||||||
this.skip();
|
this.skip();
|
||||||
continue;
|
continue;
|
||||||
@ -380,8 +390,17 @@ export class AssemblyLexer {
|
|||||||
this.mark();
|
this.mark();
|
||||||
|
|
||||||
while (this.has_next()) {
|
while (this.has_next()) {
|
||||||
if (/[\s,]/.test(this.peek())) {
|
const char = this.peek();
|
||||||
|
|
||||||
|
if (/[\s,]/.test(char)) {
|
||||||
break;
|
break;
|
||||||
|
} else if ("/" === char) {
|
||||||
|
this.skip();
|
||||||
|
|
||||||
|
if (this.peek() === "/") {
|
||||||
|
this.back();
|
||||||
|
break;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
this.skip();
|
this.skip();
|
||||||
}
|
}
|
||||||
|
@ -36,7 +36,7 @@ const ASM_SYNTAX: languages.IMonarchLanguage = {
|
|||||||
// Whitespace.
|
// Whitespace.
|
||||||
[/[ \t\r\n]+/, "white"],
|
[/[ \t\r\n]+/, "white"],
|
||||||
// [/\/\*/, "comment", "@comment"],
|
// [/\/\*/, "comment", "@comment"],
|
||||||
// [/\/\/.*$/, "comment"],
|
[/\/\/.*$/, "comment"],
|
||||||
|
|
||||||
// Delimiters.
|
// Delimiters.
|
||||||
[/,/, "delimiter"],
|
[/,/, "delimiter"],
|
||||||
@ -113,6 +113,9 @@ languages.setLanguageConfiguration("psoasm", {
|
|||||||
},
|
},
|
||||||
autoClosingPairs: [{ open: '"', close: '"' }],
|
autoClosingPairs: [{ open: '"', close: '"' }],
|
||||||
surroundingPairs: [{ open: '"', close: '"' }],
|
surroundingPairs: [{ open: '"', close: '"' }],
|
||||||
|
comments: {
|
||||||
|
lineComment: "//",
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
editor.defineTheme("phantasmal-world", {
|
editor.defineTheme("phantasmal-world", {
|
||||||
|
Loading…
Reference in New Issue
Block a user