Skip to content

Commit

Permalink
feature: add 1C code highlight
Browse files Browse the repository at this point in the history
  • Loading branch information
Foxtrot1388 committed Jun 14, 2023
1 parent fb9a1a0 commit e3b0c86
Show file tree
Hide file tree
Showing 3 changed files with 275 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ import './mode/yacas/yacas'
import './mode/yaml/yaml'
import './mode/yaml-frontmatter/yaml-frontmatter'
import './mode/z80/z80'
import './mode/1c/1c'

export default class CMSyntaxHighlightPlugin extends Plugin {

Expand Down Expand Up @@ -158,4 +159,4 @@ export default class CMSyntaxHighlightPlugin extends Plugin {
// re-set the editor mode to refresh the syntax highlighting
this.app.workspace.iterateCodeMirrors(cm => cm.setOption("mode", cm.getOption("mode")))
}
}
}
272 changes: 272 additions & 0 deletions mode/1c/1c.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,272 @@
// CodeMirror, copyright (c) by Marijn Haverbeke and others
// for 1C - http://code1c.sikuda.ru/
// Distributed under an MIT license: http://codemirror.net/LICENSE

(function(mod) {
if (typeof exports == "object" && typeof module == "object") // CommonJS
mod(require("../../lib/codemirror"));
else if (typeof define == "function" && define.amd) // AMD
define(["../../lib/codemirror"], mod);
else // Plain browser env
mod(CodeMirror);
})(function(CodeMirror) {
"use strict";

CodeMirror.defineMode("1c", function(conf, parserConf) {
var ERRORCLASS = 'error';

function wordRegexp(words) {
return new RegExp("^((" + words.join(")|(") + "))([ ;\\/\\n\\t]|$)", "i"); //\\b \\W //[^$A-Za-z0-9А-ЯЁа-яё_]
}

var singleOperators = new RegExp("^[\\+\\-\\*/%&<>=]");
var singleDelimiters = new RegExp("^[\\(\\)\\[\\]\\{\\},:=;\\.]");
var doubleOperators = new RegExp("^((<>)|(<=)|(>=))");
var identifiers = new RegExp("^[_A-Za-zА-ЯЁа-яё][_A-Za-z0-9А-ЯЁа-яё]*");

var openingKeywords = ['если', 'if', 'пока', 'while', 'для', 'for', 'процедура', 'procedure', 'функция', 'function', 'попытка', 'try'];
var middleKeywords = ['иначе', 'else', 'иначеесли', 'elsif', 'исключение', 'except'];
var doubleClosing = wordRegexp(['конецесли', 'endif', 'конеццикла', 'enddo', 'конецпроцедуры', 'endprocedure', 'конецфункции', 'endfunction', 'конецпопытки', 'endtry']);
var endKeywords = ['loop'];
var operatorKeywords = ['and', 'or', 'not', 'xor', 'in'];
var commonKeywords = ['новый', 'new', 'каждого', 'each', 'из', 'from', 'цикл', 'do', 'или', 'or', 'не', 'not', 'ложь', 'false', 'истина', 'true', 'и','and', 'возврат', 'return', 'тогда', 'then', 'экспорт', 'export', 'неопределено', 'undefined', 'продолжить', 'continue', 'прервать', 'break', 'перейти', 'goto', 'по', 'to' , 'null'];
var commontypes = ['перем', 'var', 'знач', 'val'];

var wordOperators = wordRegexp(operatorKeywords);
var keywords = wordRegexp(commonKeywords);
var types = wordRegexp(commontypes);
var stringPrefixes = '"';
var stringNewLine = '|';

var opening = wordRegexp(openingKeywords);
var middle = wordRegexp(middleKeywords);
var closing = wordRegexp(endKeywords);
var doOpening = wordRegexp(['do', 'пока']);

var indentInfo = null;

CodeMirror.registerHelper("hintWords", "1c", openingKeywords.concat(middleKeywords).concat(endKeywords).concat(operatorKeywords).concat(commonKeywords).concat(commontypes));

//CodeMirror.registerHelper("hint", "1c", openingKeywords.concat(middleKeywords).concat(endKeywords).concat(operatorKeywords).concat(commonKeywords).concat(commontypes));

function indent(_stream, state) {
state.currentIndent++;
}

function dedent(_stream, state) {
state.currentIndent--;
}
// tokenizers
function tokenBase(stream, state) {
if (stream.eatSpace()) {
return null;
}

var ch = stream.peek();

// Handle Comments
if (ch === "/") {
var ch_next = stream.string.charAt(stream.pos+1) || undefined;
if (ch_next === "/") {
stream.skipToEnd();
return "comment";
}
}

//handle meta - &OnClient or #If
if (ch === "&" || ch === "#") {
stream.skipToEnd();
return "meta";
}

//~nameLabel
if (ch === "~"){
stream.next();
stream.match(identifiers);
return 'label';
}


// Handle Number Literals
if (stream.match(/^\.?[0-9]{1,}/i, false)) {
var floatLiteral = false;
// Floats
if (stream.match(/^\d*\.\d+F?/i)) { floatLiteral = true; }
else if (stream.match(/^\d+\.\d*F?/)) { floatLiteral = true; }
else if (stream.match(/^\.\d+F?/)) { floatLiteral = true; }

if (floatLiteral) {
// Float literals may be "imaginary"
stream.eat(/J/i);
return 'number';
}
// Integers
var intLiteral = false;
// Hex
if (stream.match(/^&H[0-9a-f]+/i)) { intLiteral = true; }
// Octal
else if (stream.match(/^&O[0-7]+/i)) { intLiteral = true; }
// Decimal
else if (stream.match(/^[0-9]\d*F?/)) {
// Decimal literals may be "imaginary"
stream.eat(/J/i);
// TODO - Can you have imaginary longs?
intLiteral = true;
}
// Zero by itself with no other piece of number.
else if (stream.match(/^0(?![\dx])/i)) { intLiteral = true; }
if (intLiteral) {
// Integer literals may be "long"
stream.eat(/L/i);
return 'number';
}
}

// Handle Strings
if (stream.match(stringPrefixes)) {
state.tokenize = tokenStringFactory(stringPrefixes);
return state.tokenize(stream, state);
}
if (stream.match(stringNewLine)) {
state.tokenize = tokenStringFactory(stringPrefixes);
return state.tokenize(stream, state);
}


if (stream.match(doubleOperators)
|| stream.match(singleOperators)
|| stream.match(wordOperators)) {
return 'operator';
}
if (stream.match(singleDelimiters)) {
return 'delimiter';
}
if (stream.match(doOpening)) {
indent(stream,state);
state.doInCurrentLine = true;
return 'keyword';
}
if (stream.match(opening)) {
if (! state.doInCurrentLine)
indent(stream,state);
else
state.doInCurrentLine = false;
return 'keyword';
}
if (stream.match(middle)) {
return 'keyword';
}

if (stream.match(doubleClosing)) {
//dedent(stream,state);
dedent(stream,state);
return 'keyword';
}
if (stream.match(closing)) {
dedent(stream,state);
return 'keyword';
}

if (stream.match(types)) {
return 'keyword';
}

if (stream.match(keywords)) {
return 'keyword';
}

if (stream.match(identifiers)) {
return 'variable';
}

// Handle non-detected items
stream.next();
return ERRORCLASS;
}

function tokenStringFactory(delimiter) {
var singleline = delimiter.length == 1;
var OUTCLASS = 'string';

return function(stream, state) {
while (!stream.eol()) {
stream.eatWhile(/[^'"]/);
if (stream.match(delimiter)) {
state.tokenize = tokenBase;
return OUTCLASS;
} else {
stream.eat(/['"]/);
}
}
if (singleline) {
if (parserConf.singleLineStringErrors) {
return ERRORCLASS;
} else {
state.tokenize = tokenBase;
}
}
return OUTCLASS;
};
}


function tokenLexer(stream, state) {
var style = state.tokenize(stream, state);
var current = stream.current();

var delimiter_index = '[({'.indexOf(current);
if (delimiter_index !== -1) {
indent(stream, state );
}
if (indentInfo === 'dedent') {
if (dedent(stream, state)) {
return ERRORCLASS;
}
}
delimiter_index = '])}'.indexOf(current);
if (delimiter_index !== -1) {
if (dedent(stream, state)) {
return ERRORCLASS;
}
}
return style;
}

var external = {
electricChars:"dDpPtTfFeE ",
startState: function() {
return {
tokenize: tokenBase,
lastToken: null,
currentIndent: 0,
nextLineIndent: 0,
doInCurrentLine: false
};
},

token: function(stream, state) {
if (stream.sol()) {
state.currentIndent += state.nextLineIndent;
state.nextLineIndent = 0;
state.doInCurrentLine = 0;
}
var style = tokenLexer(stream, state);
state.lastToken = {style:style, content: stream.current()};
return style;
},

indent: function(state, textAfter) {
var trueText = textAfter.replace(/^\s+|\s+$/g, '') ;
if (trueText.match(closing) || trueText.match(doubleClosing) || trueText.match(middle)) return conf.indentUnit*(state.currentIndent-1);
if(state.currentIndent < 0) return 0;
return state.currentIndent * conf.indentUnit;
},

lineComment: "'"
};
return external;
});

CodeMirror.defineMIME("text/x-1c", "1c");

});
1 change: 1 addition & 0 deletions mode/meta.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@
{name: "xu", mime: "text/x-xu", mode: "mscgen", ext: ["xu"]},
{name: "msgenny", mime: "text/x-msgenny", mode: "mscgen", ext: ["msgenny"]},
{name: "WebAssembly", mime: "text/webassembly", mode: "wast", ext: ["wat", "wast"]},
{name: "1c", mime: "text/x-1c", mode: "1c", ext: ["bsl"]},
];
// Ensure all modes have a mime property for backwards compatibility
for (var i = 0; i < CodeMirror.modeInfo.length; i++) {
Expand Down

0 comments on commit e3b0c86

Please sign in to comment.