Home | Trees | Index | Help |
|
---|
Module API_related |
|
Back to Main
Page
Blender.ShowHelp
function.
will open Blender and immediately run the given script.
Example:# open Blender and execute the given script: blender -P script.py
# execute a command like: myvar=value blender -P script.py # and in script.py access myvar with os.getenv # (os.environ and os.setenv are also useful): # script.py: import os val = os.getenv('myvar') # To pass multiple parameters, simply write them in sequence, # separated by spaces: myvar1=value1 myvar2=value2 mystr="some string data" blender -P script.py
In '-b' mode no windows will be opened: the program will run as a command line tool able to render stills and animations and execute any working Python script with complete access to loaded .blend's file contents. Once the task is completed, the program will exit.
Background mode examples:# Open Blender in background mode with file 'myfile.blend' # and run the script 'script.py': blender -b myfile.blend -P script.py # Note: a .blend file is always required. 'script.py' can be a file # in the file system or a Blender Text stored in 'myfile.blend'. # Let's assume 'script.py' has code to render the current frame; # this line will set the [s]tart and [e]nd (and so the current) frame to # frame 44 and call the script: blender -b myfile.blend -s 44 -e 44 -P script.py # Using now a script written to render animations, we set different # start and end frames and then execute this line: blender -b myfile.blend -s 1 -e 10 -P script.py # Note: we can also set frames and define if we want a single image or # an animation in the script body itself, naturally.
The rendered pictures will be written to the default render
folder, that can also be set via bpython (take a look at Render.RenderData
). Their names will be
the equivalent frame number followed by the extension of the chosen
image type: 0001.png, for example. To rename them to something else,
coders can use the rename
function in the standard 'os'
Python module.
Users can link Blender Text scripts and objects to have the script
code executed when specific events occur to the objects. For example,
if a Camera has an script link set to "FrameChanged", the
script will be executed whenever the current frame is changed. Links
can either be manually added by users on the Buttons window ->
Scripts tab or created by another script (see, for example, Object.addScriptLink
).
(*) only available for scenes
There are threeBlender
module variables that script
link authors should be aware of:
#script link import Blender if Blender.bylink: # we're running as a script link print "Event: %s for %s" % (Blender.event, Blender.link)
Important note about "Render" events:
Each "Render" script link is executed twice: before rendering and after, for reverting changes and for possible clean up actions. Before rendering, 'Blender.event' will be "Render" and after rendering it will be "PostRender".
Example:# render script link import Blender event = Blender.event if event == "Render": # prepare for rendering create_my_very_detailed_mesh_data() elif event == "PostRender": # done rendering, clean up delete_my_very_detailed_mesh_data()As suggested by the example above, this is specially useful for script links that need to generate data only useful while rendering, or in case they need to switch between two mesh data objects, one meant for realtime display and the other, more detailed, for renders.
This is a new kind of script linked to spaces in a given window. Right now only the 3D View has the necessary hooks, but the plan is to add access to other types, too. Just to clarify naming conventions: in Blender, a screen is partitioned in windows (also called areas) and each window can show any space. Spaces are: 3D View, Text Editor, Scripts, Buttons, User Preferences, Oops, etc.
Space handlers are texts in the Text Editor, like other script links, but they need to have a special header to be recognized -- the first line in the text file must inform:# SPACEHANDLER.VIEW3D.EVENTExample header for a 3D View DRAW handler:
# SPACEHANDLER.VIEW3D.DRAW
Available space handlers can be toggled "on" or "off" in the space header's View->Space Handler Scripts submenu, by the user.
EVENT space handler scripts are called by that space's event handling callback in Blender. The script receives the event before it is further processed by the program. An EVENT handler script should check Blender.event (compare it againstDraw
events)
and either:
Setting Blender.event = None
tells Blender not to go
on processing itself the event, because it was grabbed by the
script.
# SPACEHANDLER.VIEW3D.EVENT import Blender from Blender import Draw evt = Blender.event return_it = False if evt == Draw.LEFTMOUSE: print "Swallowing the left mouse button press" elif evt == Draw.AKEY: print "Swallowing an 'a' character" else: print "Let the 3D View itself process this event:", evt return_it = True # if Blender should not process itself the passed event: if not return_it: Blender.event = None
DRAW space handlers are called by that space's drawing callback in Blender. The script is called after the space has been drawn.
Two of theBlender
module variables related to
script links assume different roles for space handlers:
Blender
.SpaceHandlers constant
dictionary, tells what space this handler belongs to and the
handler's type (EVENT, DRAW);
Draw
) to be processed or
ignored.
Draw.Image
and the BGL
drawing
functions should not be used inside an EVENT handler.
Registry
module.
Try 'blender -d' to know where your default dir for scripts is, it will inform either the dir or the file with that info already parsed, which is in the same dir of the scripts folder.
The header should be like this one (all double and single apostrophes below are required):#!BPY # """ # Name: 'Script Name' # Blender: 233 # Group: 'Export' # Submenu: 'All' all # Submenu: 'Selected' sel # Submenu: 'Configure (gui)' gui # Tooltip: 'Export to some format.' # """where:
Submenu lines are not required, use them if you want to provide extra options. To see which submenu the user chose, check the "__script__" dictionary in your code: __script__['arg'] has the defined keyword (the word after the submenu string name: all, sel or gui in the example above) of the chosen submenu. For example, if the user clicked on submenu 'Selected' above, __script__['arg'] will be "sel".
If your script requires extra data or configuration files, there is a special folder where they can be saved: see 'datadir' inBlender.Get
.
The "Scripts Help Browser" script in the Help menu can parse special variables from registered scripts and display help information for users. For that, authors only need to add proper information to their scripts, after the registration header.
The expected variables:__author__ = 'Mr. Author' __version__ = '1.0 2005/01/01' __url__ = ["Author's site, http://somewhere.com", "Support forum, http://somewhere.com/forum/", "blender", "elysiun"] __email__ = ["Mr. Author, mrauthor:somewhere*com", "scripts"] __bpydoc__ = """\ This script does this and that. Explaining better, this script helps you create ... You can write as many paragraphs as needed. Shortcuts:<br> Esc or Q: quit.<br> etc. Supported:<br> Meshes, metaballs. Known issues:<br> This is just an example, there's no actual script. Notes:<br> You can check scripts bundled with Blender to see more examples of how to add documentation to your own works.
"""
Note: your own GUI or menu code can display documentation by calling the help browser with theBlender.ShowHelp
function.
The Blender.Registry
module provides a
simplified way to keep scripts configuration options in memory and also
saved in config files. And with the "Scripts Config Editor"
script in the System menu users can later view and edit the options
easily.
Let's first clarify what we mean by config options: they are simple data (bools, ints, floats, strings) used by programs to conform to user preferences. The buttons in Blender's User Preferences window are a good example.
For example, a particular exporter might include:The script needs to provide users a GUI to configure these options
-- or else directly editing the source code would be the only way to
change them. And to store changes made to the GUI so they can be
reloaded any time the script is executed, programmers have to write and
load their own config files (ideally at Blender.Get
('udatadir') or, if not
available, Blender.Get
('datadir')).
This section describes BPython facilities (based on the Registry
module and the config editor) that can take care of this in a
simplified (and much recommended) way.
# sample_exporter.py import Blender from Blender import Registry # First define all config variables with their default values: SEPARATE_MATERIALS = True VERSION = True TEX_DIR = '' EXPORT_DIR = '' # Then define a function to update the Registry: def registry_update(): # populate a dict with current config values: d = { 'SEPARATE_MATERIALS': SEPARATE_MATERIALS, 'VERSION': VERSION, 'TEX_DIR': TEX_DIR, 'EXPORT_DIR': EXPORT_DIR } # store the key (optional 3rd arg tells if # the data should also be written to a file): Registry.SetKey('sample_exporter', d, True) # (A good convention is to use the script name as Registry key) # Now we check if our key is available in the Registry or file system: regdict = Registry.GetKey('sample_exporter', True) # If this key already exists, update config variables with its values: if regdict: try: SEPARATE_MATERIALS = regdict['SEPARATE_MATERIALS'] VERSION = regdict['VERSION'] TEX_DIR = regdict['TEX_DIR'] EXPORT_DIR = regdict['EXPORT_DIR'] # if data was corrupted (or a new version of the script changed # (expanded, removed, renamed) the config vars and users may have # the old config file around): except: update_registry() # rewrite it else: # if the key doesn't exist yet, use our function to create it: update_registry() # ...
Hint: nicer code than the simplistic example above can be written by keeping config var names in a list of strings and using the exec function.
Note: if your script's GUI lets users change config vars, call the registry_update() function in the button events callback to save the changes. On the other hand, you don't need to handle configuration in your own gui, it can be left for the 'Scripts Config Editor', which should have access to your script's config key as soon as the above code is executed once (as soon as SetKey is executed).
Note (limits for config vars): strings longer than 300 characters are clamped and the number of items in dictionaries, sequences and the config key itself is limited to 60.This script should be available from the System menu in the Scripts window. It provides a GUI to view and edit saved configuration data, both from the Registry dictionary in memory and the scripts config data dir. This is useful for all scripts with config vars, but specially for those without GUI's, like most importers and exporters, since this editor will provide one for them.
The example above already gives a good idea of how the information can be prepared to be accessible from this editor, but there is more worth knowing:The following information refers to extra config variables that may be added specifically to aid the configuration editor script. To clarify, in the example code above these variables (the string 'script' and the dictionaries 'tooltips' and 'limits') would appear along with SEPARATE_MATERIALS, VERSION, TEX_DIR and EXPORT_DIR, wherever they are written.
Minor note: these names are case insensitive: tooltips, TOOLTIPS, etc. are all recognized.
3.1 The config editor will try to display a 'help' button for a key, to show documentation for the script that owns it. To find this "owner script", it will first look for a config variable called 'script', a string containing the name of the owner Python file (with or without '.py' extension):script = 'sample_exporter.py'
If there is no such variable, the editor will check if the file formed by the key name and the '.py' extension exists. If both alternatives fail, no help button will be displayed.
3.2 You can define tooltips for the buttons that the editor creates for your config data (string input, toggle, number sliders). Simply create a dict called 'tooltips', where config var names are keys and their tooltips, values:tooltips = { 'EXPORT_DIR': 'default folder where exported files should be saved', 'VERBOSE': 'print info and warning messages to the console', 'SEPARATE_MATERIALS': 'write materials to their own file' }3.3 Int and float button sliders need min and max limits. This can be passed to the editor via a dict called 'limits' (ivar1, ivar2 and fvar are meant as extra config vars that might have been in the example code above):
limits = {'ivar1': [-10, 10], 'ivar2': [0, 100], 'fvar1': [-12.3, 15.4]}
sys.exists
tells if files or
folders already exist).
Back to Main Page
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Thu Dec 22 22:38:13 2005 | http://epydoc.sf.net |