use of com.willwinder.universalgcodesender.gcode.processors.CommentProcessor in project Universal-G-Code-Sender by winder.
the class CommandProcessorLoader method getHelpForConfig.
/**
* Helper to instantiate a processor by name and call the getHelp method.
* @param pc
* @return
*/
public static String getHelpForConfig(ProcessorConfig pc) {
CommandProcessor p;
try {
switch(pc.name) {
case "ArcExpander":
double length = pc.args.get("segmentLengthMM").getAsDouble();
p = new ArcExpander(true, length);
break;
case "CommandLengthProcessor":
int commandLength = pc.args.get("commandLength").getAsInt();
p = new CommandLengthProcessor(commandLength);
break;
case "CommentProcessor":
p = new CommentProcessor();
break;
case "DecimalProcessor":
int decimals = pc.args.get("decimals").getAsInt();
p = new DecimalProcessor(decimals);
break;
case "FeedOverrideProcessor":
double override = pc.args.get("speedOverridePercent").getAsDouble();
p = new FeedOverrideProcessor(override);
break;
case "M30Processor":
p = new M30Processor();
break;
case "PatternRemover":
String pattern = pc.args.get("pattern").getAsString();
p = new PatternRemover(pattern);
break;
case "WhitespaceProcessor":
p = new WhitespaceProcessor();
break;
case "M3Dweller":
int duration = pc.args.get("duration").getAsInt();
p = new M3Dweller(duration);
break;
default:
throw new IllegalArgumentException("Unknown processor: " + pc.name);
}
return p.getHelp();
} catch (Exception e) {
return Localization.getString("settings.processors.loadError") + ": " + Localization.getString(pc.name);
}
}
use of com.willwinder.universalgcodesender.gcode.processors.CommentProcessor in project Universal-G-Code-Sender by winder.
the class GcodeParserTest method testAddCommandProcessor.
/**
* Test of addCommandProcessor method, of class GcodeParser.
*/
@Test
public void testAddCommandProcessor() {
System.out.println("addCommandProcessor");
GcodeParser instance = new GcodeParser();
instance.addCommandProcessor(new CommentProcessor());
assertEquals(1, instance.numCommandProcessors());
}
use of com.willwinder.universalgcodesender.gcode.processors.CommentProcessor in project Universal-G-Code-Sender by winder.
the class GcodeParserTest method doubleParenCommentTest.
@Test
public void doubleParenCommentTest() throws Exception {
GcodeParser gcp = new GcodeParser();
gcp.addCommandProcessor(new CommentProcessor());
String command = "(comment (with subcomment) still in the comment) G01 X10";
GcodeParser instance = new GcodeParser();
instance.addCommandProcessor(new CommentProcessor());
List<String> result = instance.preprocessCommand(command, instance.getCurrentState());
assertEquals(1, result.size());
assertEquals(" G01 X10", result.get(0));
}
use of com.willwinder.universalgcodesender.gcode.processors.CommentProcessor in project Universal-G-Code-Sender by winder.
the class GcodeParserTest method testPreprocessCommandFeedOverride.
@Test
public void testPreprocessCommandFeedOverride() throws Exception {
System.out.println("preprocessCommandFeedOverride");
// Tests:
// '(comment)' is removed
// '; Comment!' is removed
// 'M30' is removed
// Decimal truncated to 0.88889
// Remove spaces
String command = "(comment) G01 X0.888888888888888888 M30 F100; Comment!";
GcodeParser instance = new GcodeParser();
instance.addCommandProcessor(new CommentProcessor());
instance.addCommandProcessor(new FeedOverrideProcessor(0.));
instance.addCommandProcessor(new DecimalProcessor(5));
instance.addCommandProcessor(new M30Processor());
instance.addCommandProcessor(new WhitespaceProcessor());
instance.addCommandProcessor(new CommandLengthProcessor(50));
List<String> result = instance.preprocessCommand(command, instance.getCurrentState());
assertEquals(1, result.size());
assertEquals("G01X0.88889F100", result.get(0));
instance.resetCommandProcessors();
instance.addCommandProcessor(new CommentProcessor());
instance.addCommandProcessor(new FeedOverrideProcessor(200.));
instance.addCommandProcessor(new DecimalProcessor(5));
instance.addCommandProcessor(new M30Processor());
instance.addCommandProcessor(new WhitespaceProcessor());
instance.addCommandProcessor(new CommandLengthProcessor(50));
result = instance.preprocessCommand(command, instance.getCurrentState());
assertEquals(1, result.size());
assertEquals("G01X0.88889F200.0", result.get(0));
}
use of com.willwinder.universalgcodesender.gcode.processors.CommentProcessor in project Universal-G-Code-Sender by winder.
the class GUIBackendPreprocessorTest method testRegularPreprocessAndExportToFile.
/**
* Test of preprocessAndExportToFile method, of class GUIBackend.
*/
@Test
public void testRegularPreprocessAndExportToFile() throws Exception {
System.out.println("regularPreprocessAndExportToFile");
GUIBackend backend = new GUIBackend();
GcodeParser gcp = new GcodeParser();
// Double all the commands that go in.
gcp.addCommandProcessor(commandDoubler);
gcp.addCommandProcessor(new CommentProcessor());
// Create input file, comment-only line shouldn't be processed twice.
List<String> lines = Arrays.asList("line one", "; comment", "line two");
Files.write(inputFile, lines, Charset.defaultCharset(), StandardOpenOption.WRITE);
backend.preprocessAndExportToFile(gcp, inputFile.toFile(), outputFile.toFile());
List<String> expectedResults = Arrays.asList("line one", "line one", "", "line two", "line two");
try (GcodeStreamReader reader = new GcodeStreamReader(outputFile.toFile())) {
Assert.assertEquals(expectedResults.size(), reader.getNumRows());
for (String expected : expectedResults) {
Assert.assertEquals(expected, reader.getNextCommand().getCommandString());
}
}
}
Aggregations