LinuxCNC.py 4.29 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
# -*- coding: utf-8 -*-
"""

Copyright 2012 Lars Kruse <devel@sumpfralle.de>

This file is part of PyCAM.

PyCAM is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

PyCAM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with PyCAM.  If not, see <http://www.gnu.org/licenses/>.
"""

import os
import pycam.Exporters.GCode
from pycam.Toolpath import CORNER_STYLE_EXACT_PATH, CORNER_STYLE_EXACT_STOP, \
        CORNER_STYLE_OPTIMIZE_SPEED, CORNER_STYLE_OPTIMIZE_TOLERANCE


DEFAULT_HEADER = (("G40", "disable tool radius compensation"),
                ("G49", "disable tool length compensation"),
                ("G80", "cancel modal motion"),
                ("G54", "select coordinate system 1"),
                ("G90", "disable incremental moves"))

DEFAULT_DIGITS = 6

def _render_number(number):
    if int(number) == number:
        return "%d" % number
    else:
        return ("%%.%df" % DEFAULT_DIGITS) % number


class LinuxCNC(pycam.Exporters.GCode.BaseGenerator):


    def add_header(self):
        for command, comment in DEFAULT_HEADER:
            self.add_command(command, comment=comment)
        # TODO: use a "unit" filter
        if True:
            self.add_command("G21", "metric")
        else:
            self.add_command("G20", "imperial")

    def add_footer(self):
        self.add_command("M2", "end program")

    def add_comment(self, comment):
        self.add_command("; %s" % comment)

    def add_command(self, command, comment=None):
        self.destination.write(command)
        if comment:
            self.destination.write("\t")
            self.add_comment(comment)
        else:
            self.destination.write(os.linesep)

    def add_move(self, coordinates, is_rapid=False):
        components = []
        # the cached value may be:
        #   True: the last move was G0
        #   False: the last move was G1
        #   None: some non-move happened before
        if self._get_cache("rapid_move", None) != is_rapid:
            components.append("G0" if is_rapid else "G1")
        else:
            # improve gcode style
            components.append(" ")
        axes = [axis for axis in "XYZABCUVW"]
        previous = self._get_cache("position", [None] * len(coordinates))
        for (axis, value, last) in zip(axes, coordinates, previous):
            if (last is None) or (last != value):
                components.append("%s%.6f" % (axis, value))
        command = " ".join(components)
        if command.strip():
            self.add_command(command)

    def command_feedrate(self, feedrate):
        self.add_command("F%s" % _render_number(feedrate), "set feedrate")

    def command_select_tool(self, tool_id):
        self.add_command("T%d M6" % tool_id, "select tool")

    def command_spindle_speed(self, speed):
        self.add_command("S%s" % _render_number(speed), "set spindle speed")

    def command_spindle_enabled(self, state):
        if state:
            self.add_command("M3", "start spindle")
        else:
            self.add_command("M5", "stop spindle")

    def command_delay(self, seconds):
        self.add_command("G04 P%d" % seconds, "wait for %d seconds" % seconds)

    def command_corner_style(self,
            (path_mode, motion_tolerance, naive_tolerance)):
        if path_mode == CORNER_STYLE_EXACT_PATH:
            self.add_command("G61", "exact path mode")
        elif path_mode == CORNER_STYLE_EXACT_STOP:
            self.add_command("G61.1", "exact stop mode")
        elif path_mode == CORNER_STYLE_OPTIMIZE_SPEED:
            self.add_command("G64", "continuous mode with maximum speed")
        else:
            if not naive_tolerance:
                self.add_command("G64 P%f" % motion_tolerance,
                        "continuous mode with tolerance")
            else:
                self.add_command("G64 P%f Q%f" % \
                        (motion_tolerance, naive_tolerance),
                        "continuous mode with tolerance and cleanup")