kopia lustrzana https://github.com/OpenBuilds/OpenBuilds-CONTROL
				
				
				
			
		
			
				
	
	
		
			99 wiersze
		
	
	
		
			3.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
			
		
		
	
	
			99 wiersze
		
	
	
		
			3.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
ace.define("ace/mode/gcode_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"], function(require, exports, module) {
 | 
						|
    "use strict";
 | 
						|
 | 
						|
    var oop = require("../lib/oop");
 | 
						|
    var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
 | 
						|
 | 
						|
    var GcodeHighlightRules = function() {
 | 
						|
 | 
						|
        var keywords = (
 | 
						|
            "IF|DO|WHILE|ENDWHILE|CALL|ENDIF|SUB|ENDSUB|GOTO|REPEAT|ENDREPEAT|CALL"
 | 
						|
            );
 | 
						|
 | 
						|
        var builtinConstants = (
 | 
						|
            "PI"
 | 
						|
            );
 | 
						|
 | 
						|
        var builtinFunctions = (
 | 
						|
            "ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN"
 | 
						|
            );
 | 
						|
        var keywordMapper = this.createKeywordMapper({
 | 
						|
            "support.function": builtinFunctions,
 | 
						|
            "keyword": keywords,
 | 
						|
            "constant.language": builtinConstants
 | 
						|
        }, "identifier", true);
 | 
						|
 | 
						|
        this.$rules = {
 | 
						|
            "start" : [ {
 | 
						|
                token : "comment",
 | 
						|
                regex : "\\(.*\\)"
 | 
						|
            }, {
 | 
						|
                token : "comment",           // block number
 | 
						|
                regex : "([N])([0-9]+)"
 | 
						|
            }, {
 | 
						|
                token : "comment",
 | 
						|
                regex : ";.*$"
 | 
						|
            }, {
 | 
						|
                token : "string",           // " cut moves
 | 
						|
                regex : "([G])([0]+\\.?[0]?)"
 | 
						|
            }, {
 | 
						|
                token : "string",           // " CUT MOVES
 | 
						|
                regex : "G1|G2|G3|G01|G02|G03"
 | 
						|
            }, {
 | 
						|
                token : "string",           // " MODALS
 | 
						|
                regex : "G28|G90|G91|G92"
 | 
						|
            }, {
 | 
						|
                token : "keyword.operator",
 | 
						|
                regex : "T1|T0|X|Y|Z|E"
 | 
						|
            }, {
 | 
						|
                token : "string",           // ' string
 | 
						|
                regex : "([M])([0-9]+\\.?[0-9]?)"
 | 
						|
            }, {
 | 
						|
                token : "constant.numeric", // float
 | 
						|
                regex : "([-+]?([0-9]*\\.?[0-9]+\\.?))|(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)"
 | 
						|
            }, {
 | 
						|
                token : keywordMapper,
 | 
						|
                regex : "[A-Z]"
 | 
						|
            }, {
 | 
						|
                token : "keyword.operator",
 | 
						|
                regex : "EQ|LT|GT|NE|GE|LE|OR|XOR"
 | 
						|
            }, {
 | 
						|
                token : "paren.lparen",
 | 
						|
                regex : "[\\[]"
 | 
						|
            }, {
 | 
						|
                token : "paren.rparen",
 | 
						|
                regex : "[\\]]"
 | 
						|
            }, {
 | 
						|
                token : "text",
 | 
						|
                regex : "\\s+"
 | 
						|
            } ]
 | 
						|
        };
 | 
						|
    };
 | 
						|
 | 
						|
    oop.inherits(GcodeHighlightRules, TextHighlightRules);
 | 
						|
 | 
						|
    exports.GcodeHighlightRules = GcodeHighlightRules;
 | 
						|
});
 | 
						|
 | 
						|
ace.define("ace/mode/cncpro",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/gcode_highlight_rules","ace/range"], function(require, exports, module) {
 | 
						|
    "use strict";
 | 
						|
 | 
						|
    var oop = require("../lib/oop");
 | 
						|
    var TextMode = require("./text").Mode;
 | 
						|
    var GcodeHighlightRules = require("./gcode_highlight_rules").GcodeHighlightRules;
 | 
						|
    var Range = require("../range").Range;
 | 
						|
 | 
						|
    var Mode = function() {
 | 
						|
        this.HighlightRules = GcodeHighlightRules;
 | 
						|
        this.$behaviour = this.$defaultBehaviour;
 | 
						|
    };
 | 
						|
    oop.inherits(Mode, TextMode);
 | 
						|
 | 
						|
    (function() {
 | 
						|
        this.$id = "ace/mode/cncpro";
 | 
						|
    }).call(Mode.prototype);
 | 
						|
 | 
						|
    exports.Mode = Mode;
 | 
						|
 | 
						|
});
 |