Beispiel #1
0
class Test_SnapshotGcode(unittest.TestCase):
    def setUp(self):
        self.Settings = OctolapseSettings("c:\\temp\\octolapse.log")
        self.Extruder = Extruder(self.Settings)

    def tearDown(self):
        del self.Settings
        del self.Extruder

    def CreateOctoprintPrinterProfile(self):
        return dict(volume=dict(
            width=250,
            depth=200,
            height=200,
            formFactor="Not A Circle",
            custom_box=False,
        ))

    def test_GetSnapshotPosition_Absolute(self):
        """Test getting absolute snapshot positions for x and y"""
        # adjust the settings for absolute position and create the snapshot gcode generator
        self.Settings.CurrentStabilization().x_type = "fixed_coordinate"
        self.Settings.CurrentStabilization().x_fixed_coordinate = 10
        self.Settings.CurrentStabilization().y_type = "fixed_coordinate"
        self.Settings.CurrentStabilization().y_fixed_coordinate = 20
        snapshotGcodeGenerator = SnapshotGcodeGenerator(
            self.Settings, self.CreateOctoprintPrinterProfile())

        # get the coordinates and test
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 10 and coords["Y"] == 20)
        # get the coordinates and test
        coords = snapshotGcodeGenerator.GetSnapshotPosition(1, 1)
        self.assertTrue(coords["X"] == 10 and coords["Y"] == 20)
        # get the coordinates and test
        coords = snapshotGcodeGenerator.GetSnapshotPosition(100, 100)
        self.assertTrue(coords["X"] == 10 and coords["Y"] == 20)

    def test_GetSnapshotPosition_AbsolutePath(self):
        """Test getting absolute path snapshot positions for x and y"""
        # adjust the settings for absolute position and create the snapshot gcode generator
        self.Settings.CurrentStabilization().x_type = "fixed_path"
        self.Settings.CurrentStabilization().x_fixed_path = "0,1,2,3,4,5"
        self.Settings.CurrentStabilization().y_type = "fixed_path"
        self.Settings.CurrentStabilization().y_fixed_path = "5,4,3,2,1,0"

        # test with no loop
        self.Settings.CurrentStabilization().x_fixed_path_loop = False
        self.Settings.CurrentStabilization().x_fixed_path_invert_loop = False
        self.Settings.CurrentStabilization().y_fixed_path_loop = False
        self.Settings.CurrentStabilization().y_fixed_path_invert_loop = False
        snapshotGcodeGenerator = SnapshotGcodeGenerator(
            self.Settings, self.CreateOctoprintPrinterProfile())
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 0 and coords["Y"] == 5)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 1 and coords["Y"] == 4)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(1, 0)
        self.assertTrue(coords["X"] == 2 and coords["Y"] == 3)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(1, 1)
        self.assertTrue(coords["X"] == 3 and coords["Y"] == 2)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 1)
        self.assertTrue(coords["X"] == 4 and coords["Y"] == 1)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 5 and coords["Y"] == 0)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 5 and coords["Y"] == 0)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 5 and coords["Y"] == 0)

        # test with loop, no invert
        self.Settings.CurrentStabilization().x_fixed_path_loop = True
        self.Settings.CurrentStabilization().x_fixed_path_invert_loop = False
        self.Settings.CurrentStabilization().y_fixed_path_loop = True
        self.Settings.CurrentStabilization().y_fixed_path_invert_loop = False
        snapshotGcodeGenerator = SnapshotGcodeGenerator(
            self.Settings, self.CreateOctoprintPrinterProfile())
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 0 and coords["Y"] == 5)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 1 and coords["Y"] == 4)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(1, 0)
        self.assertTrue(coords["X"] == 2 and coords["Y"] == 3)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(1, 1)
        self.assertTrue(coords["X"] == 3 and coords["Y"] == 2)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 1)
        self.assertTrue(coords["X"] == 4 and coords["Y"] == 1)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 5 and coords["Y"] == 0)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 0 and coords["Y"] == 5)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 1 and coords["Y"] == 4)

        # test with loop and invert
        self.Settings.CurrentStabilization().x_fixed_path_loop = True
        self.Settings.CurrentStabilization().x_fixed_path_invert_loop = True
        self.Settings.CurrentStabilization().y_fixed_path_loop = True
        self.Settings.CurrentStabilization().y_fixed_path_invert_loop = True
        snapshotGcodeGenerator = SnapshotGcodeGenerator(
            self.Settings, self.CreateOctoprintPrinterProfile())
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 0 and coords["Y"] == 5)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 1 and coords["Y"] == 4)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(1, 0)
        self.assertTrue(coords["X"] == 2 and coords["Y"] == 3)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(1, 1)
        self.assertTrue(coords["X"] == 3 and coords["Y"] == 2)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 1)
        self.assertTrue(coords["X"] == 4 and coords["Y"] == 1)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 5 and coords["Y"] == 0)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 4 and coords["Y"] == 1)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 3 and coords["Y"] == 2)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 2 and coords["Y"] == 3)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 1 and coords["Y"] == 4)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 0 and coords["Y"] == 5)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 1 and coords["Y"] == 4)

    def test_GetSnapshotPosition_BedRelative(self):
        """Test getting bed relative snapshot positions for x and y"""
        # adjust the settings for absolute position and create the snapshot gcode generator
        self.Settings.CurrentStabilization().x_type = "relative"
        self.Settings.CurrentStabilization().x_relative = 0
        self.Settings.CurrentStabilization().y_type = "relative"
        self.Settings.CurrentStabilization().y_relative = 100
        snapshotGcodeGenerator = SnapshotGcodeGenerator(
            self.Settings, self.CreateOctoprintPrinterProfile())

        # get the coordinates and test
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 0 and coords["Y"] == 200)
        # get the coordinates and test
        coords = snapshotGcodeGenerator.GetSnapshotPosition(1, 1)
        self.assertTrue(coords["X"] == 0 and coords["Y"] == 200)
        # get the coordinates and test
        coords = snapshotGcodeGenerator.GetSnapshotPosition(100, 100)
        self.assertTrue(coords["X"] == 0 and coords["Y"] == 200)

    def test_GetSnapshotPosition_BedRelativePath(self):
        """Test getting bed relative path snapshot positions for x and y"""
        # adjust the settings for absolute position and create the snapshot gcode generator
        self.Settings.CurrentStabilization().x_type = "relative_path"
        self.Settings.CurrentStabilization().x_relative_path = "0,25,50,75,100"
        self.Settings.CurrentStabilization().y_type = "relative_path"
        self.Settings.CurrentStabilization().y_relative_path = "100,75,50,25,0"

        # test with no loop
        self.Settings.CurrentStabilization().x_relative_path_loop = False
        self.Settings.CurrentStabilization(
        ).x_relative_path_invert_loop = False
        self.Settings.CurrentStabilization().y_relative_path_loop = False
        self.Settings.CurrentStabilization(
        ).y_relative_path_invert_loop = False
        snapshotGcodeGenerator = SnapshotGcodeGenerator(
            self.Settings, self.CreateOctoprintPrinterProfile())
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 0 and coords["Y"] == 200)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 62.5 and coords["Y"] == 150)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(1, 0)
        self.assertTrue(coords["X"] == 125 and coords["Y"] == 100)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(1, 1)
        self.assertTrue(coords["X"] == 187.5 and coords["Y"] == 50)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 1)
        self.assertTrue(coords["X"] == 250 and coords["Y"] == 0)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 250 and coords["Y"] == 0)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 250 and coords["Y"] == 0)

        # test with loop, no invert
        self.Settings.CurrentStabilization().x_relative_path_loop = True
        self.Settings.CurrentStabilization(
        ).x_relative_path_invert_loop = False
        self.Settings.CurrentStabilization().y_relative_path_loop = True
        self.Settings.CurrentStabilization(
        ).y_relative_path_invert_loop = False
        snapshotGcodeGenerator = SnapshotGcodeGenerator(
            self.Settings, self.CreateOctoprintPrinterProfile())
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 0 and coords["Y"] == 200)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 62.5 and coords["Y"] == 150)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(1, 0)
        self.assertTrue(coords["X"] == 125 and coords["Y"] == 100)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(1, 1)
        self.assertTrue(coords["X"] == 187.5 and coords["Y"] == 50)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 1)
        self.assertTrue(coords["X"] == 250 and coords["Y"] == 0)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 0 and coords["Y"] == 200)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 62.5 and coords["Y"] == 150)

        # test with loop and invert
        self.Settings.CurrentStabilization().x_relative_path_loop = True
        self.Settings.CurrentStabilization().x_relative_path_invert_loop = True
        self.Settings.CurrentStabilization().y_relative_path_loop = True
        self.Settings.CurrentStabilization().y_relative_path_invert_loop = True
        snapshotGcodeGenerator = SnapshotGcodeGenerator(
            self.Settings, self.CreateOctoprintPrinterProfile())
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 0 and coords["Y"] == 200)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 62.5 and coords["Y"] == 150)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(1, 0)
        self.assertTrue(coords["X"] == 125 and coords["Y"] == 100)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(1, 1)
        self.assertTrue(coords["X"] == 187.5 and coords["Y"] == 50)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 1)
        self.assertTrue(coords["X"] == 250 and coords["Y"] == 0)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 187.5 and coords["Y"] == 50)
        coords = snapshotGcodeGenerator.GetSnapshotPosition(0, 0)
        self.assertTrue(coords["X"] == 125 and coords["Y"] == 100)

    def test_GetSnapshotGcode_Fixed_AbsoluteCoordintes_ExtruderRelative(self):
        """Test snapshot gcode in absolute coordinate system with relative extruder and fixed coordinate stabilization"""
        # adjust the settings for absolute position and create the snapshot gcode generator
        self.Settings.CurrentStabilization().x_type = "fixed_coordinate"
        self.Settings.CurrentStabilization().x_fixed_coordinate = 10
        self.Settings.CurrentStabilization().y_type = "fixed_coordinate"
        self.Settings.CurrentStabilization().y_fixed_coordinate = 20
        snapshotGcodeGenerator = SnapshotGcodeGenerator(
            self.Settings, self.CreateOctoprintPrinterProfile())
        self.Extruder.IsRetracted = True
        snapshotGcode = snapshotGcodeGenerator.CreateSnapshotGcode(
            0, 0, 0, False, True, self.Extruder, "SavedCommand")
        # verify the created gcode
        # this line should switch from absolute to relative for the ZHop
        self.assertTrue(snapshotGcode.GcodeCommands[0] == "G91")
        # this line should zhop by 0.500 mm
        self.assertTrue(snapshotGcode.GcodeCommands[1] == "G1 Z0.500 F7200")
        # this line should switch to absolute coordinates in prep for move
        self.assertTrue(snapshotGcode.GcodeCommands[2] == "G90")
        # this line should switch back to absolute coordinates
        self.assertTrue(
            snapshotGcode.GcodeCommands[3] == "G1 X10.000 Y20.000 F7200")
        # move back to the return position
        self.assertTrue(
            snapshotGcode.GcodeCommands[4] == "G1 X0.000 Y0.000 F7200")
        # change to relative coordinates
        self.assertTrue(snapshotGcode.GcodeCommands[5] == "G91")
        # this line should zhop by -0.500 mm
        self.assertTrue(snapshotGcode.GcodeCommands[6] == "G1 Z-0.500 F7200")
        # change back to the original coordinate system (absolute)
        self.assertTrue(snapshotGcode.GcodeCommands[7] == "G90")
        # the saved command
        self.assertTrue(snapshotGcode.GcodeCommands[8] == "SavedCommand")
        # verify the return commands
        self.assertTrue(
            snapshotGcode.ReturnCommands()[0] == "G1 X0.000 Y0.000 F7200")
        self.assertTrue(snapshotGcode.ReturnCommands()[1] == "G91")
        self.assertTrue(
            snapshotGcode.ReturnCommands()[2] == "G1 Z-0.500 F7200")
        self.assertTrue(snapshotGcode.ReturnCommands()[3] == "G90")
        self.assertTrue(snapshotGcode.ReturnCommands()[4] == "SavedCommand")
        # verify the snapshot commands
        self.assertTrue(snapshotGcode.SnapshotCommands()[0] == "G91")
        self.assertTrue(
            snapshotGcode.SnapshotCommands()[1] == "G1 Z0.500 F7200")
        self.assertTrue(snapshotGcode.SnapshotCommands()[2] == "G90")
        self.assertTrue(
            snapshotGcode.SnapshotCommands()[3] == "G1 X10.000 Y20.000 F7200")
        # verify the indexes of the generated gcode
        self.assertTrue(snapshotGcode.SnapshotIndex == 3)
        self.assertTrue(snapshotGcode.EndIndex() == 8)
        # verify the return coordinates
        self.assertTrue(snapshotGcode.ReturnX == 0)
        self.assertTrue(snapshotGcode.ReturnY == 0)
        self.assertTrue(snapshotGcode.ReturnZ == 0)

    def test_GetSnapshotGcode_RelativePath_RelativeCoordinates_ExtruderAbsolute_ZHop_Retraction(
            self):
        # test with relative paths, absolute extruder coordinates, retract and z hop
        # use relative coordinates for stabilizations
        self.Settings.CurrentStabilization().x_type = "relative_path"
        self.Settings.CurrentStabilization(
        ).x_relative_path = "50,100"  #125,250
        self.Settings.CurrentStabilization().x_relative_path_loop = False
        self.Settings.CurrentStabilization(
        ).x_relative_path_invert_loop = False
        self.Settings.CurrentStabilization().y_type = "relative_path"
        self.Settings.CurrentStabilization(
        ).y_relative_path = "50,100"  #100,200
        self.Settings.CurrentStabilization().y_relative_path_loop = False
        self.Settings.CurrentStabilization(
        ).y_relative_path_invert_loop = False
        self.Settings.CurrentSnapshot().retract_before_move = True
        snapshotGcodeGenerator = SnapshotGcodeGenerator(
            self.Settings, self.CreateOctoprintPrinterProfile())

        snapshotGcode = snapshotGcodeGenerator.CreateSnapshotGcode(
            10, 10, 10, True, False, self.Extruder, "SavedCommand")
        # verify the created gcode
        # this line should switch to absolute coordinates in prep for move

        self.assertTrue(snapshotGcode.GcodeCommands[0] == "M83")
        self.assertTrue(snapshotGcode.GcodeCommands[1] == "G1 E-4.000 F4800")
        self.assertTrue(snapshotGcode.GcodeCommands[2] == "G1 Z0.500 F7200")
        self.assertTrue(snapshotGcode.GcodeCommands[3] == "G90")
        self.assertTrue(
            snapshotGcode.GcodeCommands[4] == "G1 X125.000 Y100.000 F7200")
        # move back to the return position
        self.assertTrue(
            snapshotGcode.GcodeCommands[5] == "G1 X10.000 Y10.000 F7200")
        # change to relative coordinates
        self.assertTrue(snapshotGcode.GcodeCommands[6] == "G91")
        self.assertTrue(snapshotGcode.GcodeCommands[7] == "G1 Z-0.500 F7200")
        self.assertTrue(snapshotGcode.GcodeCommands[8] == "G1 E4.000 F4800")
        self.assertTrue(snapshotGcode.GcodeCommands[9] == "M82")
        # the saved command
        self.assertTrue(snapshotGcode.GcodeCommands[10] == "SavedCommand")

        # verify the return commands
        self.assertTrue(
            snapshotGcode.ReturnCommands()[0] == "G1 X10.000 Y10.000 F7200")
        self.assertTrue(snapshotGcode.ReturnCommands()[1] == "G91")
        self.assertTrue(
            snapshotGcode.ReturnCommands()[2] == "G1 Z-0.500 F7200")
        self.assertTrue(snapshotGcode.ReturnCommands()[3] == "G1 E4.000 F4800")
        self.assertTrue(snapshotGcode.ReturnCommands()[4] == "M82")
        self.assertTrue(snapshotGcode.ReturnCommands()[5] == "SavedCommand")
        # verify the snapshot commands
        self.assertTrue(snapshotGcode.SnapshotCommands()[0] == "M83")
        self.assertTrue(
            snapshotGcode.SnapshotCommands()[1] == "G1 E-4.000 F4800")
        self.assertTrue(
            snapshotGcode.SnapshotCommands()[2] == "G1 Z0.500 F7200")
        self.assertTrue(snapshotGcode.SnapshotCommands()[3] == "G90")
        self.assertTrue(snapshotGcode.SnapshotCommands()[4] ==
                        "G1 X125.000 Y100.000 F7200")
        # verify the indexes of the generated gcode
        self.assertTrue(snapshotGcode.SnapshotIndex == 4)
        self.assertTrue(snapshotGcode.EndIndex() == 10)
        # verify the return coordinates
        self.assertTrue(snapshotGcode.ReturnX == 10)
        self.assertTrue(snapshotGcode.ReturnY == 10)
        self.assertTrue(snapshotGcode.ReturnZ == 10)

        # test the second coordinate in the path
        snapshotGcode = snapshotGcodeGenerator.CreateSnapshotGcode(
            10, 10, 10, True, False, self.Extruder, "SavedCommand")
        # verify the created gcode
        # this line should switch to absolute coordinates in prep for move

        self.assertTrue(snapshotGcode.GcodeCommands[0] == "M83")
        self.assertTrue(snapshotGcode.GcodeCommands[1] == "G1 E-4.000 F4800")
        self.assertTrue(snapshotGcode.GcodeCommands[2] == "G1 Z0.500 F7200")
        self.assertTrue(snapshotGcode.GcodeCommands[3] == "G90")
        self.assertTrue(
            snapshotGcode.GcodeCommands[4] == "G1 X250.000 Y200.000 F7200")
        # move back to the return position
        self.assertTrue(
            snapshotGcode.GcodeCommands[5] == "G1 X10.000 Y10.000 F7200")
        # change to relative coordinates
        self.assertTrue(snapshotGcode.GcodeCommands[6] == "G91")
        self.assertTrue(snapshotGcode.GcodeCommands[7] == "G1 Z-0.500 F7200")
        self.assertTrue(snapshotGcode.GcodeCommands[8] == "G1 E4.000 F4800")
        self.assertTrue(snapshotGcode.GcodeCommands[9] == "M82")
        # the saved command
        self.assertTrue(snapshotGcode.GcodeCommands[10] == "SavedCommand")

        # verify the return commands
        self.assertTrue(
            snapshotGcode.ReturnCommands()[0] == "G1 X10.000 Y10.000 F7200")
        self.assertTrue(snapshotGcode.ReturnCommands()[1] == "G91")
        self.assertTrue(
            snapshotGcode.ReturnCommands()[2] == "G1 Z-0.500 F7200")
        self.assertTrue(snapshotGcode.ReturnCommands()[3] == "G1 E4.000 F4800")
        self.assertTrue(snapshotGcode.ReturnCommands()[4] == "M82")
        self.assertTrue(snapshotGcode.ReturnCommands()[5] == "SavedCommand")
        # verify the snapshot commands
        self.assertTrue(snapshotGcode.SnapshotCommands()[0] == "M83")
        self.assertTrue(
            snapshotGcode.SnapshotCommands()[1] == "G1 E-4.000 F4800")
        self.assertTrue(
            snapshotGcode.SnapshotCommands()[2] == "G1 Z0.500 F7200")
        self.assertTrue(snapshotGcode.SnapshotCommands()[3] == "G90")
        self.assertTrue(snapshotGcode.SnapshotCommands()[4] ==
                        "G1 X250.000 Y200.000 F7200")
        # verify the indexes of the generated gcode
        self.assertTrue(snapshotGcode.SnapshotIndex == 4)
        self.assertTrue(snapshotGcode.EndIndex() == 10)
        # verify the return coordinates
        self.assertTrue(snapshotGcode.ReturnX == 10)
        self.assertTrue(snapshotGcode.ReturnY == 10)
        self.assertTrue(snapshotGcode.ReturnZ == 10)

    def test_GetSnapshotGcode_FixedPath_RelativeCoordinates_ExtruderAbsolute_ZHop_AlreadyRetracted(
            self):
        # test with relative paths, absolute extruder coordinates, retract and z hop
        # use relative coordinates for stabilizations
        self.Settings.CurrentStabilization().x_type = "fixed_path"
        self.Settings.CurrentStabilization().x_fixed_path = "50,100"  #125,250
        self.Settings.CurrentStabilization().x_fixed_path_loop = False
        self.Settings.CurrentStabilization().x_fixed_path_invert_loop = False
        self.Settings.CurrentStabilization().y_type = "fixed_path"
        self.Settings.CurrentStabilization().y_fixed_path = "50,100"  #100,200
        self.Settings.CurrentStabilization().y_fixed_path_loop = False
        self.Settings.CurrentStabilization().y_fixed_path_invert_loop = False
        self.Settings.CurrentSnapshot().retract_before_move = True
        snapshotGcodeGenerator = SnapshotGcodeGenerator(
            self.Settings, self.CreateOctoprintPrinterProfile())
        self.Extruder.IsRetracted = True
        snapshotGcode = snapshotGcodeGenerator.CreateSnapshotGcode(
            100, 50, 0, True, False, self.Extruder, "SavedCommand")
        # verify the created gcode
        # this line should switch to absolute coordinates in prep for move
        self.assertTrue(snapshotGcode.GcodeCommands[0] == "G1 Z0.500 F7200")
        self.assertTrue(snapshotGcode.GcodeCommands[1] == "G90")
        self.assertTrue(
            snapshotGcode.GcodeCommands[2] == "G1 X50.000 Y50.000 F7200")
        # move back to the return position
        self.assertTrue(
            snapshotGcode.GcodeCommands[3] == "G1 X100.000 Y50.000 F7200")
        # change to relative coordinates
        self.assertTrue(snapshotGcode.GcodeCommands[4] == "G91")
        self.assertTrue(snapshotGcode.GcodeCommands[5] == "G1 Z-0.500 F7200")
        # the saved command
        self.assertTrue(snapshotGcode.GcodeCommands[6] == "SavedCommand")
        # verify the return commands
        self.assertTrue(
            snapshotGcode.ReturnCommands()[0] == "G1 X100.000 Y50.000 F7200")
        self.assertTrue(snapshotGcode.ReturnCommands()[1] == "G91")
        self.assertTrue(
            snapshotGcode.ReturnCommands()[2] == "G1 Z-0.500 F7200")
        self.assertTrue(snapshotGcode.ReturnCommands()[3] == "SavedCommand")
        # verify the snapshot commands
        self.assertTrue(
            snapshotGcode.SnapshotCommands()[0] == "G1 Z0.500 F7200")
        self.assertTrue(snapshotGcode.SnapshotCommands()[1] == "G90")
        self.assertTrue(
            snapshotGcode.SnapshotCommands()[2] == "G1 X50.000 Y50.000 F7200")

        # verify the indexes of the generated gcode
        self.assertTrue(snapshotGcode.SnapshotIndex == 2)
        self.assertTrue(snapshotGcode.EndIndex() == 6)
        # verify the return coordinates
        self.assertTrue(snapshotGcode.ReturnX == 100)
        self.assertTrue(snapshotGcode.ReturnY == 50)
        self.assertTrue(snapshotGcode.ReturnZ == 0)

        # Get the next coordinate in the path
        snapshotGcode = snapshotGcodeGenerator.CreateSnapshotGcode(
            101, 51, 0, True, False, self.Extruder, "SavedCommand")
        # verify the created gcode
        # this line should switch to absolute coordinates in prep for move
        self.assertTrue(snapshotGcode.GcodeCommands[0] == "G1 Z0.500 F7200")
        self.assertTrue(snapshotGcode.GcodeCommands[1] == "G90")
        self.assertTrue(
            snapshotGcode.GcodeCommands[2] == "G1 X100.000 Y100.000 F7200")
        # move back to the return position
        self.assertTrue(
            snapshotGcode.GcodeCommands[3] == "G1 X101.000 Y51.000 F7200")
        # change to relative coordinates
        self.assertTrue(snapshotGcode.GcodeCommands[4] == "G91")
        self.assertTrue(snapshotGcode.GcodeCommands[5] == "G1 Z-0.500 F7200")
        # the saved command
        self.assertTrue(snapshotGcode.GcodeCommands[6] == "SavedCommand")
        # verify the return commands
        self.assertTrue(
            snapshotGcode.ReturnCommands()[0] == "G1 X101.000 Y51.000 F7200")
        self.assertTrue(snapshotGcode.ReturnCommands()[1] == "G91")
        self.assertTrue(
            snapshotGcode.ReturnCommands()[2] == "G1 Z-0.500 F7200")
        self.assertTrue(snapshotGcode.ReturnCommands()[3] == "SavedCommand")
        # verify the snapshot commands
        self.assertTrue(
            snapshotGcode.SnapshotCommands()[0] == "G1 Z0.500 F7200")
        self.assertTrue(snapshotGcode.SnapshotCommands()[1] == "G90")
        self.assertTrue(snapshotGcode.SnapshotCommands()[2] ==
                        "G1 X100.000 Y100.000 F7200")
        # verify the indexes of the generated gcode
        self.assertTrue(snapshotGcode.SnapshotIndex == 2)
        self.assertTrue(snapshotGcode.EndIndex() == 6)
        # verify the return coordinates
        self.assertTrue(snapshotGcode.ReturnX == 101)
        self.assertTrue(snapshotGcode.ReturnY == 51)
        self.assertTrue(snapshotGcode.ReturnZ == 0)
        # test the second coordinate in the path
        snapshotGcode = snapshotGcodeGenerator.CreateSnapshotGcode(
            10, 10, 10, True, False, self.Extruder, "SavedCommand")

    def test_GetSnapshotGcode_Relative_RelativeCoordinates_AbsoluteExtruder_ZhopTooHigh(
            self):
        """Test snapshot gcode with relative stabilization, relative coordinates, absolute extruder, z is too high to hop, no retraction"""

        # test with relative coordinates, absolute extruder coordinates, z hop impossible (current z height will not allow this since it puts things outside of the bounds)
        # use relative coordinates for stabilizations
        self.Settings.CurrentStabilization().x_type = "relative"
        self.Settings.CurrentStabilization().x_relative = 50  #125
        self.Settings.CurrentStabilization().y_type = "relative"
        self.Settings.CurrentStabilization().y_relative = 100  #200
        self.Settings.CurrentSnapshot().retract_before_move = False
        snapshotGcodeGenerator = SnapshotGcodeGenerator(
            self.Settings, self.CreateOctoprintPrinterProfile())
        # create
        snapshotGcode = snapshotGcodeGenerator.CreateSnapshotGcode(
            10, 10, 200, True, False, self.Extruder, "SavedCommand")
        # verify the created gcode
        # this line should switch to absolute coordinates in prep for move
        self.assertTrue(snapshotGcode.GcodeCommands[0] == "G90")
        # this line should switch back to absolute coordinates
        self.assertTrue(
            snapshotGcode.GcodeCommands[1] == "G1 X125.000 Y200.000 F7200")
        # move back to the return position
        self.assertTrue(
            snapshotGcode.GcodeCommands[2] == "G1 X10.000 Y10.000 F7200")
        # change to relative coordinates
        self.assertTrue(snapshotGcode.GcodeCommands[3] == "G91")
        # the saved command
        self.assertTrue(snapshotGcode.GcodeCommands[4] == "SavedCommand")
        # verify the return commands
        self.assertTrue(
            snapshotGcode.ReturnCommands()[0] == "G1 X10.000 Y10.000 F7200")
        self.assertTrue(snapshotGcode.ReturnCommands()[1] == "G91")
        self.assertTrue(snapshotGcode.ReturnCommands()[2] == "SavedCommand")
        # verify the snapshot commands
        self.assertTrue(snapshotGcode.SnapshotCommands()[0] == "G90")
        self.assertTrue(snapshotGcode.SnapshotCommands()[1] ==
                        "G1 X125.000 Y200.000 F7200")
        # verify the indexes of the generated gcode
        self.assertTrue(snapshotGcode.SnapshotIndex == 1)
        self.assertTrue(snapshotGcode.EndIndex() == 4)
        # verify the return coordinates
        self.assertTrue(snapshotGcode.ReturnX == 10)
        self.assertTrue(snapshotGcode.ReturnY == 10)
        self.assertTrue(snapshotGcode.ReturnZ == 200)
Beispiel #2
0
class Test_LayerTrigger(unittest.TestCase):
	def setUp(self):
		self.Settings = OctolapseSettings("c:\\test\\")
		self.OctoprintPrinterProfile = self.CreateOctoprintPrinterProfile()
	def tearDown(self):
		del self.Settings
		del self.OctoprintPrinterProfile
	def CreateOctoprintPrinterProfile(self):
		return dict(
				volume = dict(
					width= 250,
					depth= 200,
					height= 200,
					formFactor="Not A Circle",
					custom_box=False,
				)
			)

	def TestReset(self):
		"""Test the reset function"""
		position = Position(self.Settings, self.OctoprintPrinterProfile, False)
		trigger = LayerTrigger(self.Settings)
		# test initial state
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)
		# set the flags to different valuse
		trigger.IsTriggered = True
		trigger.IsWaiting = True
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)
		
		# test the reset state
		trigger.Reset()
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)
	def test_LayerTrigger_LayerChange(self):
		"""Test the layer trigger for layer changes triggers"""

		position = Position(self.Settings, self.OctoprintPrinterProfile, False)
		trigger = LayerTrigger(self.Settings)
		trigger.ExtruderTriggers = ExtruderTriggers(None,None,None,None,None,None,None,None,None,None) #Ignore extruder
		trigger.RequireZHop = False # no zhop required
		trigger.HeightIncrement = 0 # Trigger on any height change
		# test initial state
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# send commands that normally would trigger a layer change, but without all axis homed.
		position.Update("g0 x0 y0 z.2 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# Home all axis and try again
		position.Update("g28")
		trigger.Update(position)
		position.Update("g0 x0 y0 z.2 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)

		# extrude again on the same layer and make sure it does NOT trigger
		position.Update("g0 x1 y1 z.2 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# move to higher layer, but do not extrude (no layer change)
		position.Update("g0 x1 y1 z.4")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)
		position.Update("g0 x2 y2 z.4")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# return to previous layer, do not extrude
		position.Update("g0 x2 y2 z.2")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)
		position.Update("g0 x4 y4 z.2")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# extrude again on current layer
		position.Update("g0 x2 y2 z.2 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		#move up two times, down and extrude (this should trigger after the final command
		position.Update("g0 x2 y2 z.4")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)
		position.Update("g0 x2 y2 z.6")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)
		position.Update("g0 x2 y2 z.4 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)

		# This should never happen in a print, but test extruding on previous layers
		# move down to previous layer, extrude,
		position.Update("g0 x2 y2 z.2 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)
		# move back to current layer (.4), extrude (no trigger)
		position.Update("g0 x2 y2 z.4 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)
		# move up one more layer and extrude (trigger)
		position.Update("g0 x2 y2 z.6 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)
	def test_LayerTrigger_LayerChange_DefaultExtruderTriggers(self):
		position = Position(self.Settings, self.OctoprintPrinterProfile, False)
		currentSnapshot = self.Settings.CurrentSnapshot()
		trigger = LayerTrigger(self.Settings)
		trigger.ExtruderTriggers = ExtruderTriggers(False, True, True, False, None, None, True, True, None, False) 
		trigger.RequireZHop = False # no zhop required
		trigger.HeightIncrement = 0 # Trigger on any height change
		#create some gcode
		gcode = []
		# get the startup gcode
		gcode.extend(self.GetPrintStartGcode())
		# start layer 1
		gcode.append(('G1 Z0.250 F7200.000',False,""))
		# start priming extruder
		gcode.append(('G1 X50.0 E80.0  F1000.0',False,"ExtrudingStart")) # forbidden
		gcode.append(('G1 X160.0 E20.0  F1000.0',True,"Extruding"))
		gcode.append(('G1 Z0.200 F7200.000',False,"Extruding"))
		gcode.append(('G1 X220.0 E13 F1000.0',False,"Extruding"))
		gcode.append(('G1 X240.0 E0 F1000.0',False,"Extruding"))
		# Object print is starting
		gcode.append(('G1 E-4.00000 F3000.00000',False,"On Retracting, OnRetractingStart"))
		gcode.append(('G1 Z0.700 F7200.000',False,"FullyRetracted, Zhop"))
		gcode.append(('G1 X117.061 Y98.921 F7200.000',False,"FullyRetracted, Zhop"))
		gcode.append(('G1 Z0.200 F7200.000',False,"FullyRetracted"))
		gcode.append(('G1 E4.00000 F3000.00000',False,"DetractingStart, Detracted"))
		gcode.append(('M204 S1000',False,"Primed"))
		gcode.append(('G1 F1800',False,"Primed"))
		# start extruding
		gcode.append(('G1 X117.508 Y98.104 E0.02922',False,"ExtrudingStart")) # forbidden
		gcode.append(('G1 X117.947 Y97.636 E0.02011',False,"Extruding"))
		gcode.append(('G1 X118.472 Y97.267 E0.02011',False,"Extruding"))
		gcode.append(('G1 X119.061 Y97.013 E0.02011',False,"Extruding"))
		gcode.append(('G1 X119.690 Y96.884 E0.02011',False,"Extruding"))
		gcode.append(('G1 X130.004 Y96.869 E0.32341',False,"Extruding"))
		gcode.append(('G1 X131.079 Y97.061 E0.03423',False,"Extruding"))
		#Retraction
		gcode.append(('G1 E-2.40000 F3000.00000',False,"RetractingStart, Retracting, PartiallyRetracted"))
		gcode.append(('G1 F5760',False,"Retracting, PartiallyRetracted"))
		gcode.append(('G1 X119.824 Y97.629 E-0.50464',False,"Retracting, PartiallyRetracted"))
		gcode.append(('G1 F5760',False,"Retracting, PartiallyRetracted"))
		gcode.append(('G1 X121.876 Y97.628 E-1.01536',False,"Retracting, PartiallyRetracted"))
		gcode.append(('G1 E-0.08000 F3000.00000',False,"Retracting, Fully Retracted"))
		# Retracted, Zhop
		gcode.append(('G1 Z0.700 F7200.000',False,"FullyRetracted, Zhop"))
		# Moved while lifted
		gcode.append(('G1 X120.587 Y100.587 F7200.000',False,"FullyRetracted, Zhop"))
		gcode.append(('G1 Z0.200 F7200.000',False,"FullyRetracted"))
		# Zhop complete
		gcode.append(('G1 E4.00000 F3000.00000',False,"DetractingStart, Detracted"))
		#Retraction Complete
		gcode.append(('G1 F1800',False,"Primed"))# primed
		gcode.append(('G1 X129.413 Y100.587 E0.27673',False,"ExtrudingStart"))
		gcode.append(('G1 X129.413 Y109.413 E0.27673',False,"Extruding"))
		gcode.append(('G1 X120.587 Y109.413 E0.27673',False,"Extruding"))
		gcode.append(('G1 X120.587 Y100.647 E0.27485',False,"Extruding"))
		gcode.append(('G1 X120.210 Y100.210 F7200.000',False,"Extruding"))

		# layer 2
		# after layer change
		# retract
		gcode.append(('G1 E-4.00000 F3000.00000',False,"RetractingStart"))
		# zhop
		gcode.append(('G1 Z0.900 F7200.000',False,"FullyRetracted, Zhop"))
		# move while lifted
		gcode.append(('G1 X133.089 Y99.490 F7200.000',False,"FullyRetracted, Zhop"))
		# end zhop
		gcode.append(('G1 Z0.400 F7200.000',False,"FullyRetracted"))
		# detract
		gcode.append(('G1 E4.00000 F3000.00000',False,"DetractingStart"))
		gcode.append(('G1 F3000',False,"Detracted, Primed"))
		# start etruding
		gcode.append(('G1 X133.128 Y110.149 E0.33418',False,"ExtrudingStart"))
		gcode.append(('G1 X132.942 Y111.071 E0.02950',True,"Extruding"))
		gcode.append(('G1 X132.492 Y111.896 E0.02950',False,"Extruding"))
		gcode.append(('G1 X132.020 Y112.393 E0.02148',False,"Extruding"))
		gcode.append(('G1 X131.447 Y112.777 E0.02161',False,"Extruding"))

		# layer 3
		gcode.append(('G1 Z2.600 F7200.000',False,"Primed"))
		gcode.append(('G1 X120.632 Y100.632 F7200.000',False,"Primed"))
		gcode.append(('M204 S800',False,"Primed"))
		gcode.append(('G1 F1200',False,"Primed"))
		gcode.append(('G1 X129.368 Y100.632 E0.29570',False,"ExtrudingStart"))
		gcode.append(('G1 X129.368 Y109.368 E0.29570',True,"Extruding"))
		gcode.append(('G1 X120.632 Y109.368 E0.29570',False,"Extruding"))
		gcode.append(('G1 X120.632 Y100.692 E0.29367',False,"Extruding"))
		gcode.append(('M204 S1000',False,"Primed"))
		gcode.append(('G1 X120.225 Y100.225 F7200.000',False,"Extruding"))
		gcode.append(('M204 S800',False,"Primed"))
		gcode.append(('G1 F1200',False,"Extruding"))
		gcode.append(('G1 X129.775 Y100.225 E0.32326',False,"Extruding"))

		# layer 4
		gcode.append(('G1 Z2.800 F7200.000',False,"Primed"))
		gcode.append(('G1 X120.632 Y109.368 F7200.000',False,"Primed"))
		gcode.append(('M204 S800',False,"Primed"))
		gcode.append(('G1 F1200',False,"Primed"))
		gcode.append(('G1 X120.632 Y100.632 E0.29570',False,"ExtrudingStart"))
		gcode.append(('G1 X129.368 Y100.632 E0.29570',True,"Extruding"))
		gcode.append(('G1 X129.368 Y109.368 E0.29570',False,"Extruding"))
		gcode.append(('G1 X120.692 Y109.368 E0.29367',False,"Extruding"))
		gcode.append(('M204 S1000',False,"Primed"))
		gcode.append(('G1 X120.225 Y109.775 F7200.000',False,""))
		gcode.append(('M204 S800',False,"Primed"))
		gcode.append(('G1 F1200',False,"Primed"))
		gcode.append(('G1 X120.225 Y100.225 E0.32326',False,"ExtrudingStart"))
		gcode.append(('G1 X129.775 Y100.225 E0.32326',False,"Extruding"))
		gcode.append(('G1 X129.775 Y109.775 E0.32326',False,"Extruding"))
		gcode.append(('G1 X120.285 Y109.775 E0.32123',False,"Extruding"))

		# loop through all of the Gcode and test triggering
		for command in gcode:
			gcodeCommand = command[0]
			shouldTrigger = command[1]
			comment = command[2]
			position.Update(gcodeCommand)
			trigger.Update(position)
			self.assertTrue(trigger.IsTriggered == shouldTrigger,"Should have triggered on {0} command.  Command comment:".format(gcodeCommand,comment))

	def GetPrintStartGcode(self):
		# create gcode list
		gcode = []
		# Print Start Code
		gcode.append(('T0',False,"select tool 0"))
		gcode.append(('M104 S255',False,"set extruder temp"))
		gcode.append(('M140 S100',False,"set bed temp"))
		gcode.append(('M190 S100',False,"wait for bed temp"))
		gcode.append(('M109 S255',False,"wait for extruder temp"))
		gcode.append(('G21',False,"set units to millimeters"))
		gcode.append(('G90',False,"use absolute coordinates"))
		gcode.append(('M83',False,"use relative distances for extrusion"))
		gcode.append(('G28 W',False,""))
		gcode.append(('G80',False,""))
		gcode.append(('G92 E0.0',False,""))
		gcode.append(('M203 E100',False,""))
		gcode.append(('M92 E140',False,""))
		gcode.append(('G92 E0.0',False,""))
		gcode.append(('M900 K200',False,""))

		return gcode

	def test_LayerTrigger_HeightChange(self):
		"""Test the layer trigger height change """

		position = Position(self.Settings, self.OctoprintPrinterProfile, False)
		trigger = LayerTrigger(self.Settings)
		trigger.ExtruderTriggers = ExtruderTriggers(None,None,None,None,None,None,None,None,None,None) #Ignore extruder
		trigger.RequireZHop = False # no zhop required
		trigger.HeightIncrement = .25 # Trigger every .25

		# test initial state
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# send commands that normally would trigger a layer change, but without all axis homed.
		position.Update("g0 x0 y0 z.2 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# cur increment 0.25
		# Home all axis and try again, under layer height
		position.Update("g28")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		position.Update("g0 x0 y0 z.2 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)

		# cur increment 0.25
		# extrude again on the same layer and make sure it does NOT trigger
		position.Update("g0 x1 y1 z.2 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# cur increment 0.25
		# move to higher layer, but do not extrude (no layer change)
		position.Update("g0 x1 y1 z.4")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)
		position.Update("g0 x2 y2 z.4")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# cur increment 0.25
		# return to previous layer, do not extrude
		position.Update("g0 x2 y2 z.2")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)
		position.Update("g0 x4 y4 z.2")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# cur increment 0.25
		# extrude again on current layer
		position.Update("g0 x2 y2 z.2 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# cur increment 0.25
		#move up two times, down and extrude (this should trigger after the final command
		position.Update("g0 x2 y2 z.4")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)
		position.Update("g0 x2 y2 z.6")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)
		position.Update("g0 x2 y2 z.4 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)

		# cur increment 0.5
		# This should never happen in a print, but test extruding on previous layers
		# move down to previous layer, extrude,
		position.Update("g0 x2 y2 z.2 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)
		# move back to current layer (.4), extrude (no trigger)
		position.Update("g0 x2 y2 z.4 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)
		# move up one more layer and extrude (trigger)
		position.Update("g0 x2 y2 z.6 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)

		# test very close to height increment (.75)
		# move up one more layer and extrude (trigger)
		position.Update("g0 x2 y2 z0.7499 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# Test at the increment (.75)
		position.Update("g0 x2 y2 z0.7500 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)
	def test_LayerTrigger_ExtruderTriggers_NotHomed(self):
		"""Make sure nothing triggers when the axis aren't homed"""
		position = Position(self.Settings, self.OctoprintPrinterProfile, False)
		trigger = LayerTrigger(self.Settings)
		trigger.RequireZHop = False # no zhop required
		trigger.HeightIncrement = 0 # Trigger on every layer change
		position.Extruder.PrinterRetractionLength = 4

		# Try on extruding start
		trigger.ExtruderTriggers = ExtruderTriggers(True,None,None,None,None,None,None,None,None,None) 
		position.Update("g0 x0 y0 z.2 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# try out on extruding
		trigger.ExtruderTriggers = ExtruderTriggers(None,True,None,None,None,None,None,None,None,None)
		position.Update("g0 x0 y0 z.3 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# try out on primed
		trigger.ExtruderTriggers = ExtruderTriggers(None,None,True,None,None,None,None,None,None,None)
		position.Update("g0 x0 y0 z.4 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# try out on retracting start
		trigger.ExtruderTriggers = ExtruderTriggers(None,None,None,True,None,None,None,None,None,None)
		position.Update("g0 x0 y0 z.5 e-1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# try out on retracting
		trigger.ExtruderTriggers = ExtruderTriggers(None,None,None,None,True,None,None,None,None,None)
		position.Update("g0 x0 y0 z.5 e-1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# try out on partially retracted
		trigger.ExtruderTriggers = ExtruderTriggers(None,None,None,None,None,True,None,None,None,None)
		position.Update("g0 x0 y0 z.5 e-1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# try out on retracted
		trigger.ExtruderTriggers = ExtruderTriggers(None,None,None,None,None,None,True,None,None,None)
		position.Update("g0 x0 y0 z.5 e-1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# try out on detracting
		trigger.ExtruderTriggers = ExtruderTriggers(None,None,None,None,None,None,True,None,None,None)
		position.Update("g0 x0 y0 z.5 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)
	def test_LayerTrigger_ExtruderTriggers(self):
		"""Test All Extruder Triggers"""
		position = Position(self.Settings, self.OctoprintPrinterProfile, False)
		# home the axis
		position.Update("G28")
		trigger = LayerTrigger(self.Settings)
		trigger.RequireZHop = False # no zhop required
		trigger.HeightIncrement = 0 # Trigger on every layer change

		#Reset the extruder
		
		position.Extruder.Reset()
		position.Extruder.IsPrimed = False
		trigger.IsWaiting = True
		# Try on extruding start right after home, should fail
		trigger.ExtruderTriggers = ExtruderTriggers(True,None,None,None,None,None,None,None,None,None)
		position.Extruder.IsExtrudingStart = True
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == True)

		# Try again, should trigger because the previous state was homed
		position.Update("m114");
		position.Extruder.IsExtrudingStart = True
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)


		#Reset the extruder
		position.Extruder.Reset()
		position.Extruder.IsPrimed = False
		trigger.IsWaiting = True
		# try out on extruding
		trigger.ExtruderTriggers = ExtruderTriggers(None,True,None,None,None,None,None,None,None,None)
		position.Extruder.IsExtruding = True
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)

		#Reset the extruder
		position.Extruder.Reset()
		position.Extruder.IsPrimed = False
		trigger.IsWaiting = True
		# try out on primed
		trigger.ExtruderTriggers = ExtruderTriggers(None,None,True,None,None,None,None,None,None,None)
		position.Extruder.IsPrimed = True
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)

		#Reset the extruder
		position.Extruder.Reset()
		position.Extruder.IsPrimed = False
		trigger.IsWaiting = True
		# try out on retracting start
		trigger.ExtruderTriggers = ExtruderTriggers(None,None,None,True,None,None,None,None,None,None)
		position.Extruder.IsRetractingStart = True
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)

		#Reset the extruder
		position.Extruder.Reset()
		position.Extruder.IsPrimed = False
		trigger.IsWaiting = True
		# try out on retracting
		trigger.ExtruderTriggers = ExtruderTriggers(None,None,None,None,True,None,None,None,None,None)
		position.Extruder.IsRetracting = True
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)

		#Reset the extruder
		position.Extruder.Reset()
		position.Extruder.IsPrimed = False
		trigger.IsWaiting = True
		# try out on partially retracted
		trigger.ExtruderTriggers = ExtruderTriggers(None,None,None,None,None,True,None,None,None,None)
		position.Extruder.IsPartiallyRetracted = True
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)

		#Reset the extruder
		position.Extruder.Reset()
		position.Extruder.IsPrimed = False
		trigger.IsWaiting = True
		# try out on retracted
		trigger.ExtruderTriggers = ExtruderTriggers(None,None,None,None,None,None,True,None,None,None)
		position.Extruder.IsRetracted = True
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)

		#Reset the extruder
		position.Extruder.Reset()
		position.Extruder.IsPrimed = False
		trigger.IsWaiting = True
		# try out on detracting Start
		trigger.ExtruderTriggers = ExtruderTriggers(None,None,None,None,None,None,None,True,None,None)
		position.Extruder.IsDetractingStart = True
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)

		#Reset the extruder
		position.Extruder.Reset()
		position.Extruder.IsPrimed = False
		trigger.IsWaiting = True
		# try out on detracting Start
		trigger.ExtruderTriggers = ExtruderTriggers(None,None,None,None,None,None,None,None,True,None)
		position.Extruder.IsDetracting = True
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)

		#Reset the extruder
		position.Extruder.Reset()
		position.Extruder.IsPrimed = False
		trigger.IsWaiting = True
		# try out on detracting Start
		trigger.ExtruderTriggers = ExtruderTriggers(None,None,None,None,None,None,None,None,None,True)
		position.Extruder.IsDetracted = True
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)
	def test_LayerTrigger_ExtruderTriggerWait(self):
		"""Test wait on extruder"""
		position = Position(self.Settings, self.OctoprintPrinterProfile, False)
		# home the axis and send another command to make sure the previous instruction was homed
		position.Update("G28")
		position.Update("PreviousHomed")
		trigger = LayerTrigger(self.Settings)
		trigger.RequireZHop = False # no zhop required
		trigger.HeightIncrement = 0 # Trigger on every layer change

		#Reset the extruder
		
		position.Extruder.Reset()
		position.Extruder.IsPrimed = False
		trigger.IsWaiting = False
		# Use on extruding start for this test.  
		trigger.ExtruderTriggers = ExtruderTriggers(True,None,None,None,None,None,None,None,None,None)
		position.Extruder.IsExtrudingStart = False
		position.IsLayerChange = True
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == True)

		# update again with no change
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == True)
		# set the trigger and try again
		position.Extruder.IsExtrudingStart = True
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)
	def test_LayerTrigger_LayerChange_ZHop(self):
		"""Test the layer trigger for layer changes triggers"""
		self.Settings.CurrentSnapshot().layer_trigger_require_zhop = True
		self.Settings.CurrentPrinter().z_hop = .5
		position = Position(self.Settings, self.OctoprintPrinterProfile, False)
		trigger = LayerTrigger(self.Settings)
		trigger.ExtruderTriggers = ExtruderTriggers(None,None,None,None,None,None,None,None,None,None) #Ignore extruder
		trigger.HeightIncrement = 0 # Trigger on any height change
		# test initial state
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# send commands that normally would trigger a layer change, but without all axis homed.
		position.Update("g0 x0 y0 z.2 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# Home all axis and try again, will not trigger or wait, previous axis not homed
		position.Update("g28")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == False)

		# Waiting on ZHop
		position.Update("g0 x0 y0 z.2 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == True)
		# try zhop
		position.Update("g0 x0 y0 z.7 ")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)

		# extrude on current layer, no trigger (wait on zhop)
		position.Update("g0 x0 y0 z.7 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == True)

		# do not extrude on current layer, still waiting
		position.Update("g0 x0 y0 z.7 ")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == True)

		# partial hop, but close enough based on our printer measurement tolerance (0.005)
		position.Update("g0 x0 y0 z1.1999")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)

		# creat wait state
		position.Update("g0 x0 y0 z1.3 e1")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == True)

		# move down (should never happen, should behave properly anyway)
		position.Update("g0 x0 y0 z.8")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == True)

		# move back up to current layer (should NOT trigger zhop)
		position.Update("g0 x0 y0 z1.3")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == True)

		# move up a bit, not enough to trigger zhop
		position.Update("g0 x0 y0 z1.79749")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == False)
		self.assertTrue(trigger.IsWaiting == True)

		# move up a bit, just enough to trigger zhop
		position.Update("g0 x0 y0 z1.79751")
		trigger.Update(position)
		self.assertTrue(trigger.IsTriggered == True)
		self.assertTrue(trigger.IsWaiting == False)
Beispiel #3
0
class Test_TimerTrigger(unittest.TestCase):
    def setUp(self):
        self.Settings = OctolapseSettings("c:\\test\\")
        self.OctoprintPrinterProfile = self.CreateOctoprintPrinterProfile()

    def tearDown(self):
        del self.Settings
        del self.OctoprintPrinterProfile

    def CreateOctoprintPrinterProfile(self):
        return dict(volume=dict(
            width=250,
            depth=200,
            height=200,
            formFactor="Not A Circle",
            custom_box=False,
        ))

    def test_TimerTrigger(self):
        """Test the timer trigger"""
        # use a short trigger time so that the test doesn't take too long
        self.Settings.CurrentSnapshot().timer_trigger_seconds = 2
        position = Position(self.Settings, self.OctoprintPrinterProfile, False)
        trigger = TimerTrigger(self.Settings)
        trigger.ExtruderTriggers = ExtruderTriggers(None, None, None, None,
                                                    None, None, None, None,
                                                    None,
                                                    None)  #Ignore extruder
        trigger.RequireZHop = False  # no zhop required
        trigger.HeightIncrement = 0  # Trigger on any height change
        # test initial state
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == False)

        # set interval time to 0, send another command and test again (should not trigger, no homed axis)
        trigger.IntervalSeconds = 0
        position.Update("g0 x0 y0 z.2 e1")
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == False)

        # Home all axis and try again with interval seconds 1 - should not trigger since the timer will start after the home command
        trigger.IntervalSeconds = 2
        position.Update("g28")
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == False)

        # send another command and try again, should not trigger cause we haven't waited 2 seconds yet
        position.Update("g0 x0 y0 z.2 e1")
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == False)

        # Set the last trigger time to 1 before the previous LastTrigger time(equal to interval seconds), should not trigger
        trigger.TriggerStartTime = time.time() - 1.01
        position.Update("g0 x0 y0 z.2 e1")
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == False)

        # Set the last trigger time to 1 before the previous LastTrigger time(equal to interval seconds), should trigger
        trigger.TriggerStartTime = time.time() - 2.01
        position.Update("g0 x0 y0 z.2 e1")
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == True)
        self.assertTrue(trigger.IsWaiting == False)

    def test_TimerTrigger_ExtruderTriggers(self):
        """Test All Extruder Triggers"""
        position = Position(self.Settings, self.OctoprintPrinterProfile, False)
        # home the axis
        position.Update("G28")
        trigger = TimerTrigger(self.Settings)
        trigger.IntervalSeconds = 1
        trigger.RequireZHop = False  # no zhop required

        #Reset the extruder

        position.Extruder.Reset()
        position.Extruder.IsPrimed = False
        trigger.IsWaiting = True
        # Try on extruding start - previous position not homed, do not trigger
        trigger.ExtruderTriggers = ExtruderTriggers(True, None, None, None,
                                                    None, None, None, None,
                                                    None, None)
        position.Extruder.IsExtrudingStart = True
        trigger.TriggerStartTime = time.time() - 1.01
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == True)

        # send another command, now the previous state has been homed, should trigger
        position.Update("AnotherCommandNowPreviousHomed")
        position.Extruder.IsExtrudingStart = True  # set is extruding start, wont be set by the above command!
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == True)
        self.assertTrue(trigger.IsWaiting == False)
        #Reset the extruder
        position.Extruder.Reset()
        position.Extruder.IsPrimed = False
        trigger.IsWaiting = True
        # try out on extruding
        trigger.ExtruderTriggers = ExtruderTriggers(None, True, None, None,
                                                    None, None, None, None,
                                                    None, None)
        position.Extruder.IsExtruding = True
        trigger.TriggerStartTime = time.time() - 1.01
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == True)
        self.assertTrue(trigger.IsWaiting == False)

        #Reset the extruder
        position.Extruder.Reset()
        position.Extruder.IsPrimed = False
        trigger.IsWaiting = True
        # try out on primed
        trigger.ExtruderTriggers = ExtruderTriggers(None, None, True, None,
                                                    None, None, None, None,
                                                    None, None)
        position.Extruder.IsPrimed = True
        trigger.TriggerStartTime = time.time() - 1.01
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == True)
        self.assertTrue(trigger.IsWaiting == False)

        #Reset the extruder
        position.Extruder.Reset()
        position.Extruder.IsPrimed = False
        trigger.IsWaiting = True
        # try out on retracting start
        trigger.ExtruderTriggers = ExtruderTriggers(None, None, None, True,
                                                    None, None, None, None,
                                                    None, None)
        position.Extruder.IsRetractingStart = True
        trigger.TriggerStartTime = time.time() - 1.01
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == True)
        self.assertTrue(trigger.IsWaiting == False)

        #Reset the extruder
        position.Extruder.Reset()
        position.Extruder.IsPrimed = False
        trigger.IsWaiting = True
        # try out on retracting
        trigger.ExtruderTriggers = ExtruderTriggers(None, None, None, None,
                                                    True, None, None, None,
                                                    None, None)
        position.Extruder.IsRetracting = True
        trigger.TriggerStartTime = time.time() - 1.01
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == True)
        self.assertTrue(trigger.IsWaiting == False)

        #Reset the extruder
        position.Extruder.Reset()
        position.Extruder.IsPrimed = False
        trigger.IsWaiting = True
        # try out on partially retracted
        trigger.ExtruderTriggers = ExtruderTriggers(None, None, None, None,
                                                    None, True, None, None,
                                                    None, None)
        position.Extruder.IsPartiallyRetracted = True
        trigger.TriggerStartTime = time.time() - 1.01
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == True)
        self.assertTrue(trigger.IsWaiting == False)

        #Reset the extruder
        position.Extruder.Reset()
        position.Extruder.IsPrimed = False
        trigger.IsWaiting = True
        # try out on retracted
        trigger.ExtruderTriggers = ExtruderTriggers(None, None, None, None,
                                                    None, None, True, None,
                                                    None, None)
        position.Extruder.IsRetracted = True
        trigger.TriggerStartTime = time.time() - 1.01
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == True)
        self.assertTrue(trigger.IsWaiting == False)

        #Reset the extruder
        position.Extruder.Reset()
        position.Extruder.IsPrimed = False
        trigger.IsWaiting = True
        # try out on detracting Start
        trigger.ExtruderTriggers = ExtruderTriggers(None, None, None, None,
                                                    None, None, None, True,
                                                    None, None)
        position.Extruder.IsDetractingStart = True
        trigger.TriggerStartTime = time.time() - 1.01
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == True)
        self.assertTrue(trigger.IsWaiting == False)

        #Reset the extruder
        position.Extruder.Reset()
        position.Extruder.IsPrimed = False
        trigger.IsWaiting = True
        # try out on detracting Start
        trigger.ExtruderTriggers = ExtruderTriggers(None, None, None, None,
                                                    None, None, None, None,
                                                    True, None)
        position.Extruder.IsDetracting = True
        trigger.TriggerStartTime = time.time() - 1.01
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == True)
        self.assertTrue(trigger.IsWaiting == False)

        #Reset the extruder
        position.Extruder.Reset()
        position.Extruder.IsPrimed = False
        trigger.IsWaiting = True
        # try out on detracting Start
        trigger.ExtruderTriggers = ExtruderTriggers(None, None, None, None,
                                                    None, None, None, None,
                                                    None, True)
        position.Extruder.IsDetracted = True
        trigger.TriggerStartTime = time.time() - 1.01
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == True)
        self.assertTrue(trigger.IsWaiting == False)

    def test_TimerTrigger_ExtruderTriggerWait(self):
        """Test wait on extruder"""
        position = Position(self.Settings, self.OctoprintPrinterProfile, False)
        # home the axis
        position.Update("G28")
        trigger = TimerTrigger(self.Settings)
        trigger.RequireZHop = False  # no zhop required
        trigger.IntervalSeconds = 1

        #Reset the extruder

        position.Extruder.Reset()
        position.Extruder.IsPrimed = False
        trigger.IsWaiting = False
        # Use on extruding start for this test.
        trigger.ExtruderTriggers = ExtruderTriggers(True, None, None, None,
                                                    None, None, None, None,
                                                    None, None)
        position.Extruder.IsExtrudingStart = False
        trigger.TriggerStartTime = time.time() - 1.01
        # will not wait or trigger because the previous position state was not homed
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == False)

        # send another command and try again
        position.Update("PreviousPositionIsNowHomed")
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == True)

        # update again with no change
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == True)
        # set the trigger and try again
        position.Extruder.IsExtrudingStart = True
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == True)
        self.assertTrue(trigger.IsWaiting == False)

    def test_TimerTrigger_LayerChange_ZHop(self):
        """Test the layer trigger for layer changes triggers"""
        self.Settings.CurrentSnapshot().timer_trigger_require_zhop = True
        self.Settings.CurrentPrinter().z_hop = .5
        position = Position(self.Settings, self.OctoprintPrinterProfile, False)
        trigger = TimerTrigger(self.Settings)
        trigger.ExtruderTriggers = ExtruderTriggers(None, None, None, None,
                                                    None, None, None, None,
                                                    None,
                                                    None)  #Ignore extruder
        trigger.IntervalSeconds = 1
        # test initial state
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == False)

        # send commands that normally would trigger a layer change, but without all axis homed.
        position.Update("g0 x0 y0 z.2 e1")
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == False)

        # Home all axis and try again, wait on zhop
        position.Update("g28")
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == False)
        position.Update("g0 x0 y0 z.2 e1")
        trigger.TriggerStartTime = time.time() - 1.01
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == True)

        # try zhop
        position.Update("g0 x0 y0 z.7 ")

        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == True)
        self.assertTrue(trigger.IsWaiting == False)

        # extrude on current layer, no trigger (wait on zhop)
        position.Update("g0 x0 y0 z.7 e1")
        trigger.TriggerStartTime = time.time() - 1.01
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == True)

        # do not extrude on current layer, still waiting
        position.Update("g0 x0 y0 z.7 ")
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == True)

        # partial hop, but close enough based on our printer measurement tolerance (0.005)
        position.Update("g0 x0 y0 z1.1999")
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == True)
        self.assertTrue(trigger.IsWaiting == False)

        # creat wait state
        position.Update("g0 x0 y0 z1.3 e1")
        trigger.TriggerStartTime = time.time() - 1.01
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == True)

        # move down (should never happen, should behave properly anyway)
        position.Update("g0 x0 y0 z.8")
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == True)

        # move back up to current layer (should NOT trigger zhop)
        position.Update("g0 x0 y0 z1.3")
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == True)

        # move up a bit, not enough to trigger zhop
        position.Update("g0 x0 y0 z1.79749")
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == True)

        # move up a bit, just enough to trigger zhop
        position.Update("g0 x0 y0 z1.79751")
        trigger.Update(position)
        self.assertTrue(trigger.IsTriggered == True)
        self.assertTrue(trigger.IsWaiting == False)
Beispiel #4
0
class Test_GcodeTrigger(unittest.TestCase):
    def setUp(self):
        self.Settings = OctolapseSettings("c:\\test\\")
        self.OctoprintPrinterProfile = self.CreateOctoprintPrinterProfile()

    def tearDown(self):
        del self.Settings
        del self.OctoprintPrinterProfile

    def CreateOctoprintPrinterProfile(self):
        return {
            "volume": {
                "custom_box": False,
                "width": 250,
                "depth": 200,
                "height": 200
            }
        }

    def test_GcodeTrigger(self):
        """Test the gcode triggers"""
        self.Settings.CurrentSnapshot().gcode_trigger_require_zhop = False

        position = Position(self.Settings, self.OctoprintPrinterProfile, False)
        trigger = GcodeTrigger(self.Settings)
        # test initial state
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == False)

        # send a command that is NOT the snapshot command using the defaults
        trigger.Update(position, "NotTheSnapshotCommand")
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == False)

        # send a command that is the snapshot command without the axis being homes
        trigger.Update(position, "snap")
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == False)

        # home the axis and resend the snap command - will be false because the PREVEIOUS state must be homed
        position.Update("g28")
        trigger.Update(position, "snap")
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == False)

        # try again, should now work
        position.Update("Snap")
        trigger.Update(position, "snap")
        self.assertTrue(trigger.IsTriggered == True)
        self.assertTrue(trigger.IsWaiting == False)

        # try again, but this time set RequresZHop to true
        trigger.RequireZHop = True
        trigger.Update(position, "snap")
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == True)
        # send another command to see if we are still waiting
        trigger.Update(position, "NotTheSnapshotCommand")
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == True)
        # fake a zhop
        position.IsZHop = True
        trigger.Update(position, "NotTheSnapshotCommand")
        self.assertTrue(trigger.IsTriggered == True)
        self.assertTrue(trigger.IsWaiting == False)

        # send a command that is NOT the snapshot command using the defaults
        trigger.Update(position, "NotTheSnapshotCommand")
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == False)

        # change the snapshot triggers and make sure they are working
        self.Settings.CurrentSnapshot().gcode_trigger_require_zhop = False
        self.Settings.CurrentSnapshot().gcode_trigger_on_extruding = True
        self.Settings.CurrentSnapshot(
        ).gcode_trigger_on_extruding_start = False
        self.Settings.CurrentSnapshot().gcode_trigger_on_primed = False
        self.Settings.CurrentSnapshot().gcode_trigger_on_retracting = False
        self.Settings.CurrentSnapshot().gcode_trigger_on_retracted = False
        self.Settings.CurrentSnapshot().gcode_trigger_on_detracting = False
        trigger = GcodeTrigger(self.Settings)
        position.Extruder.IsExtruding = False
        position.Extruder.IsExtrudingStart = False
        position.Extruder.IsPrimed = False
        position.Extruder.IsRetracting = False
        position.Extruder.IsRetracted = False
        position.Extruder.IsDetracting = False
        # send a command that is the snapshot command using the defaults
        trigger.Update(position, "snap")
        self.assertTrue(trigger.IsTriggered == False)
        self.assertTrue(trigger.IsWaiting == True)
        # change the extruder state and test
        position.Extruder.IsExtruding = True
        trigger.Update(position, "NotTheSnapshotCommand")
        self.assertTrue(trigger.IsTriggered == True)
        self.assertTrue(trigger.IsWaiting == False)