skeinforge_tools.craft_plugins.export_plugins.gcode_step ($Date: 2008/21/04 $)
index
/home/enrique/Desktop/backup/babbleold/script/reprap/pyRepRap/skeinforge_tools/craft_plugins/export_plugins/gcode_step.py

Previous / Next / Contents


Gcode step is an export plugin to convert gcode from float position to number of steps.

An export plugin is a script in the export_plugins folder which has the functions getOutput, isReplaceable and if it's output is not replaceable, writeOutput. It is meant to be run from the export tool. To ensure that the plugin works on platforms which do not handle file capitalization properly, give the plugin a lower case name.

The getOutput function of this script takes a gcode text and returns it with the positions converted into number of steps. The writeOutput function of this script takes a gcode text and writes that with the positions converted into number of steps.


Settings
  Add Feed Rate Even When Unchanging
  Add Space Between Words
  Add Z Even When Unchanging
  Feed Rate Step Length
  Offset
    X Offset
    Y Offset
    Z Offset
  Radius Rate Step Length
  Step Length
    X Step Length
    Y Step Length
    Z Step Length

Settings


Add Feed Rate Even When Unchanging

Default is on.

When selected, the feed rate will be added even when it did not change from the previous line.

Add Space Between Words

Default is on.

When selected, a space will be added between each gcode word.

Add Z Even When Unchanging

Default is on.

When selected, the z word will be added even when it did not change.

Feed Rate Step Length

Default is 0.1 millimeters/second.

Defines the feed rate step length.

Offset

X Offset

Default is zero.

Defines the X Offset.

Y Offset

Default is zero.

Defines the Y Offset.

Z Offset

Default is zero.

Defines the Z Offset.

Radius Rate Step Length

Default is 0.1 millimeters/second.

Defines the radius step length.

Step Length

X Step Length

Default is 0.1 millimeters.

Defines the X axis step length.

Y Step Length

Default is 0.1 millimeters.

Defines the Y axis step length.

Z Step Length

Default is 0.01 millimeters.

Defines the Z axis step length.


Previous / Next / Contents


 
Modules
       
__init__
cStringIO
skeinforge_tools.skeinforge_utilities.gcodec
skeinforge_tools.skeinforge_utilities.interpret
os
skeinforge_tools.meta_plugins.polyfile
skeinforge_tools.skeinforge_utilities.settings
sys

 
Classes
       
GcodeStepRepository
GcodeStepSkein

 
class GcodeStepRepository
    A class to handle the export settings.
 
  Methods defined here:
__init__(self)
Set the default settings, execute title & settings fileName.
execute(self)
Convert to gcode step button has been clicked.

 
class GcodeStepSkein
    A class to convert gcode into 16 byte binary segments.
 
  Methods defined here:
__init__(self)
addCharacterInteger(self, character, lineStringIO, offset, splitLine, stepLength)
Add a character and integer to line string.
addLine(self, line)
Add a line of text and a newline to the output.
addStringToLine(self, lineStringIO, wordString)
Add a character and integer to line string.
getCraftedGcode(self, gcodeStepRepository, gcodeText)
Parse gcode text and store the gcode.
parseLine(self, line)
Parse a gcode line.

 
Functions
       
getCharacterIntegerString(character, offset, splitLine, stepLength)
Get a character and integer string.
getFloatFromCharacterSplitLine(character, splitLine)
Get the float after the first occurence of the character in the split line.
getNewRepository()
Get the repository constructor.
getOutput(gcodeText, gcodeStepRepository=None)
Get the exported version of a gcode file.  This function, isReplaceable and if it's output is not replaceable, writeOutput are the only necessary functions in a skeinforge export plugin.
isReplaceable()
Return whether or not the output from this plugin is replaceable.  This should be true if the output is text and false if it is binary.
main()
Display the export dialog.
writeOutput(fileName, gcodeText='')
Write the exported version of a gcode file.

 
Data
        __author__ = 'Enrique Perez (perez_enrique@yahoo.com)'
__date__ = '$Date: 2008/21/04 $'
__license__ = 'GPL 3.0'
absolute_import = _Feature((2, 5, 0, 'alpha', 1), (2, 7, 0, 'alpha', 0), 16384)

 
Author
        Enrique Perez (perez_enrique@yahoo.com)