Topic |
---|
Programming |
Level |
Medium programmer |
Time to complete |
15 minutes |
Authors |
Mario52 |
FreeCAD version |
All |
Example files |
None |
See also |
None |
Since v0.17 it is easy to add macros by using the Addon Manager. A regular user doesn't need to do more than use this tool. Keep reading for more information regarding installation of macros.
Macros are sequences of commands which are used to perform a complex drawing operation. Macros are Python scripts, which means they are text files that can be written and edited with a text editor.
While Python scripts normally have the .py
extension, FreeCAD macros should have the .FCMacro
extension. A collection of macros written by experienced users is found in the macros recipes page.
See Introduction to Python to learn about the Python programming language, and then Python scripting tutorial and FreeCAD Scripting Basics to learn about writing macros.
Here is a video on installing FreeCAD macros in Ubuntu.
Besides the tools in the toolbar, the following functions are also available in the Macro menu.
Macros are created in a specific folder under the user's FreeCAD directory. This directory can be configured in the Execute macro dialog, or in the Preferences Editor, through the menu Edit → Preferences → Python → Macro → Macro recording settings.
Downloaded macros should also be placed in this directory.
Macros can be simply copied into
$ROOT_DIR/
where $ROOT_DIR
is a top level directory searched by FreeCAD on startup.
The $ROOT_DIR
could be a system wide directory, in which case the macro is installed for all users.
/usr/share/freecad/
C:\Program Files\FreeCAD\
/Applications/FreeCAD/
The $ROOT_DIR
could be a particular user's directory.
/home/username/.local/share/FreeCAD/
(0.20 and above) or /home/username/.FreeCAD/
(0.19 and below).C:\Users\username\AppData\FreeCAD\
/Users/username/Library/Preferences/FreeCAD/
1. Open the menu Macro → Macros... to open the Execute macro dialog.
2. Set the appropriate User macros location
.
/home/username/.local/share/FreeCAD/
(0.20 and above) or /home/username/.FreeCAD/
(0.19 and below)C:\Users\username\AppData\Roaming\FreeCAD\
/Users/username/Library/Preferences/FreeCAD/
3. Navigate to that directory in your computer.
.FreeCAD/
visible.file:///
prefix in the "File explorer" for a file on disk.4. Add macro files to this directory.
Starting with FreeCAD 0.17, use the Addon Manager in Tools → Addon manager to install a macro that has been included in the FreeCAD-macros repository.
In past versions of FreeCAD you could use two automated ways to install macros and other addons:
The recommended way to install addons, that is, external workbenches and macros, is the Addon Manager. However, you can still add macros to your system with the manual methods described in the following sections; this is useful if you are developing and testing your own code.
For macros that are relatively small, 300 lines or less, the code can be copied and pasted directly into the FreeCAD macro editor.
We will use Macro Apothem Based Prism GUI as an example.
1. Go to the macro wiki page, which should be listed in Macros recipes.
If there is a custom icon download it; click on it with the right mouse button and select Save image as...
; place the icon in the macros directory. This icon can be used as a shortcut for the macro in a custom toolbar. The default icon is .
2. In the macro page, select the code inside the Script or Macro sections, and copy it.
3. In FreeCAD, open the menu Macro → Macros... to open the Execute macro dialog.
4. Click Create.
5. Enter the macro name, here Macro_Apothem_Based_Prism_GUI
, and press OK.
6. The macro editor opens, showing the full path of the new macro.
7. Paste the code in the editor window, and then click the cross on the tab to close the window.
8. A window appears asking for confirmation to save the code; click on Yes. You can also use Ctrl+S to save the file.
Restart FreeCAD to correctly register the new macro.
9. Open the menu again, Macro → Macros..., select the new macro and press Execute.
10. The macro now runs. Fill in the fields with your values and click the OK button.
11. This macro should return an error if no document is active; other macros open a new document if none exists.
Create a new document with File → New, and then repeat the previous steps to execute the macro.
12. Once an active document is available, the macro runs and creates an object.
13. You can open the macro in the editor again to run it or modify it. Go to Macro → Macros..., select the macro and press Edit.
14. The macro can now be run with Macro → Execute macro, or by clicking on the
Std DlgMacroExecuteDirect button in the toolbar.
Some macros are too big that it's inconvenient to copy and paste them into the macro editor, or they cannot be hosted in the wiki. In this case, the code may be hosted somewhere else, in a Github repository, or in the FreeCAD forum. The code may also be compressed into a .zip
file, tarball .tar.xz
, or other type of archive if it contains several files. If the code is distributed in this way, the archive should be extracted and the files placed in the macros directory.
We will use Macro screw maker as an example.
1. Download the compressed code from the forum, Screw Maker.
You need to use a decompressor to get the internal files.
unzip your_file.zip -d your_directory
2. Download the compressed archive with the macro code to a local folder.
3. Decompress the file in the folder.
4. The decompressor creates a new directory with the unpacked files.
5. Go inside the new directory, and copy or cut the macro file.
6. Go to the macro directory and paste the file there.
7. In FreeCAD, open the menu Macro → Macros... to open the Execute macro dialog.
8. Select the new macro and press Execute.
9. The macro now runs. Select the desired options, and click the Create button.
Command line execute a macro (.FCMacro or .py)
on Windows
"C:\Program Files\FreeCAD\bin\FreeCAD.exe" "C:\Users\userName\AppData\Roaming\FreeCAD\Mod\WorkFeature\start_WF.FCMacro"
on Linux
todo
The white space at the beginning of the lines (indentation) in the Python programming language is very important, and an integral part of the code. An inappropriate space may cause the code to not run or present errors.
This section describes some errors that may be encountered when copying and pasting, and writing macro code.
A typical indentation error looks like this:
<unknown exception traceback><type 'exceptions.IndentationError'>: ('expected an indented block', ('C:/Users/d/AppData/Roaming/FreeCAD/Macro_Apothem_Based_Prism_GUI.FCMacro', 21, 3, 'def priSm(self):\n'))
If the code lacks any indentation, the code won't work. Class (class
) and function definitions (def()
), as well as control structures (if
, while
, for
) should be followed by a block of indented code.
This error is possible if the user doesn't copy the code correctly, and all spaces are accidentally removed.
Indentation problem fixed.
If the code is selected, all lines should be highlighted all the way to the left edge, indicating that the lines are aligned.
If an additional space is introduced at the beginning of all lines, the Python interpreter will fail and complain about unnecessary indentation. In this case, all lines need the initial space removed.
Here the code has been copied from a forum thread by using the Select all button. Apparently the selection is good.
However, when the selection is pasted into the macro editor, undesirable indentation seems to appear.
In this case, the initial spaces need to be removed. This can be done with a specialized text editor to quickly decrease the indentation of the lines.
In Windows, Notepad++ can perform selection with Alt + Mouse dragging, and then use Edit → Indent → Decrease the indentation.
Here the selection also selects the line numbers in the code example. If this selection is pasted into the macro editor, it won't work. All line numbers need to be removed, and the spaces adjusted so that the Python code has the proper indentation.
Selection that also selects the line numbers; if this code is pasted into the macro editor, it won't work
Macros may output information to the report view to detail what the code is doing when it is running.
If no information is displayed, make sure the report view and Python console are visible, and that the output is directed tot he report view.
FreeCAD macros have two methods to print information to the report view.
The FreeCAD functions
FreeCAD.Console.PrintMessage("Hello World! \n")
FreeCAD.Console.PrintError("Hello World! \n")
FreeCAD.Console.PrintWarning("Hello World! \n")
The simple Python function
print("Hello World!")
To see the information displayed in the console you should:
1. Go to the menu View → Panels.
2. Enable the Report view
and the Python console
.
3. The panels are now visible, and commands like FreeCAD.Console.PrintMessage()
now print information that appears in the Report view
.
FreeCAD may need to be configured so the print()
function of Python redirects its output correctly to the report view.
1. Go into the Preferences Editor with the menu Edit → Preferences.
2. Go to Python section, and then Output window → Python interpreter.
3. Check both boxes:
and then press the OK button.