2004-11-07 16:31:13 +00:00
|
|
|
#!BPY
|
|
|
|
|
|
|
|
"""
|
|
|
|
Name: 'Scripts Help Browser'
|
|
|
|
Blender: 234
|
|
|
|
Group: 'Help'
|
|
|
|
Tooltip: 'Show help information about a chosen installed script.'
|
|
|
|
"""
|
|
|
|
|
|
|
|
__author__ = "Willian P. Germano"
|
2009-01-26 08:34:40 +00:00
|
|
|
__version__ = "0.3 01/21/09"
|
2004-11-07 16:31:13 +00:00
|
|
|
__email__ = ('scripts', 'Author, wgermano:ig*com*br')
|
2008-04-23 14:04:05 +00:00
|
|
|
__url__ = ('blender', 'blenderartists.org')
|
2004-11-07 16:31:13 +00:00
|
|
|
|
|
|
|
__bpydoc__ ="""\
|
|
|
|
This script shows help information for scripts registered in the menus.
|
|
|
|
|
|
|
|
Usage:
|
|
|
|
|
|
|
|
- Start Screen:
|
|
|
|
|
|
|
|
To read any script's "user manual" select a script from one of the
|
|
|
|
available category menus. If the script has help information in the format
|
|
|
|
expected by this Help Browser, it will be displayed in the Script Help
|
|
|
|
Screen. Otherwise you'll be offered the possibility of loading the chosen
|
|
|
|
script's source file in Blender's Text Editor. The programmer(s) may have
|
|
|
|
written useful comments there for users.
|
|
|
|
|
|
|
|
Hotkeys:<br>
|
|
|
|
ESC or Q: [Q]uit
|
|
|
|
|
|
|
|
- Script Help Screen:
|
|
|
|
|
|
|
|
This screen shows the user manual page for the chosen script. If the text
|
|
|
|
doesn't fit completely on the screen, you can scroll it up or down with
|
|
|
|
arrow keys or a mouse wheel. There may be link and email buttons that if
|
|
|
|
clicked should open your default web browser and email client programs for
|
|
|
|
further information or support.
|
|
|
|
|
|
|
|
Hotkeys:<br>
|
|
|
|
ESC: back to Start Screen<br>
|
|
|
|
Q: [Q]uit<br>
|
|
|
|
S: view script's [S]ource code in Text Editor<br>
|
|
|
|
UP, DOWN Arrows and mouse wheel: scroll text up / down
|
|
|
|
"""
|
|
|
|
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
# ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
#
|
|
|
|
# Copyright (C) 2004: Willian P. Germano, wgermano _at_ ig.com.br
|
|
|
|
#
|
|
|
|
# This program 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 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program 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 this program; if not, write to the Free Software Foundation,
|
|
|
|
# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#
|
|
|
|
# ***** END GPL LICENCE BLOCK *****
|
|
|
|
# --------------------------------------------------------------------------
|
2009-01-26 08:34:40 +00:00
|
|
|
# Thanks: Brendon Murphy (suggestion) and Kevin Morgan (implementation)
|
|
|
|
# for the "run" button; Jean-Michel Soler for pointing a parsing error
|
|
|
|
# with multilines using triple single quotes.
|
2004-11-07 16:31:13 +00:00
|
|
|
|
|
|
|
import Blender
|
BPython bug fixes:
- #2646 reported by Campbell: Python/Fileselector (moving from fileselector called by script to another space caused script to hang around open but not accessible)
http://projects.blender.org/tracker/?func=detail&atid=125&aid=2646&group_id=9
- #2676 reported by Wim Van Hoydonck: 2.37 python scripts gui: event 8 ignored (thanks Ton for discussing / pointing what to do, Ken Hughes for also working on a fix)
http://projects.blender.org/tracker/?func=detail&atid=125&aid=2676&group_id=9
- gui-less scripts with calls to progress bar inside fileselector callbacks didn't return to the previous space on exit (staying on Scripts win), requiring an event to do so (mouse movement, for example). Quick fix for now, will rework a little after 2.37a for a better alternative, not needing to move to the Scripts win at all.
- added syntax colors access to Window.Theme module.
Scripts:
- updates by Jean-Michel Soler: svg2obj (svg paths import), tex2uvbaker, fixfromarmature;
- updates by Campbell Barton: obj import / export, console;
- tiny: converted vrml97 export to unix line endings;
- updates in ac3d exporter, help browser, save theme.
Thanks all mentioned above.
2005-06-11 05:30:14 +00:00
|
|
|
from Blender import sys as bsys, Draw, Window, Registry
|
2004-11-07 16:31:13 +00:00
|
|
|
|
|
|
|
WEBBROWSER = True
|
|
|
|
try:
|
|
|
|
import webbrowser
|
|
|
|
except:
|
|
|
|
WEBBROWSER = False
|
|
|
|
|
|
|
|
DEFAULT_EMAILS = {
|
|
|
|
'scripts': ['Bf-scripts-dev', 'bf-scripts-dev@blender.org']
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFAULT_LINKS = {
|
2008-04-23 14:04:05 +00:00
|
|
|
'blender': ["blender.org\'s Python forum", "http://www.blender.org/modules.php?op=modload&name=phpBB2&file=viewforum&f=9"]
|
2004-11-07 16:31:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PADDING = 15
|
|
|
|
COLUMNS = 1
|
|
|
|
TEXT_WRAP = 100
|
|
|
|
WIN_W = WIN_H = 200
|
|
|
|
SCROLL_DOWN = 0
|
|
|
|
|
|
|
|
def screen_was_resized():
|
|
|
|
global WIN_W, WIN_H
|
|
|
|
|
|
|
|
w, h = Window.GetAreaSize()
|
|
|
|
if WIN_W != w or WIN_H != h:
|
|
|
|
WIN_W = w
|
|
|
|
WIN_H = h
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
def fit_on_screen():
|
|
|
|
global TEXT_WRAP, PADDING, WIN_W, WIN_H, COLUMNS
|
|
|
|
|
|
|
|
COLUMNS = 1
|
|
|
|
WIN_W, WIN_H = Window.GetAreaSize()
|
|
|
|
TEXT_WRAP = int((WIN_W - PADDING) / 6)
|
|
|
|
if TEXT_WRAP < 40:
|
|
|
|
TEXT_WRAP = 40
|
|
|
|
elif TEXT_WRAP > 100:
|
|
|
|
if TEXT_WRAP > 110:
|
|
|
|
COLUMNS = 2
|
|
|
|
TEXT_WRAP /= 2
|
|
|
|
else: TEXT_WRAP = 100
|
|
|
|
|
|
|
|
def cut_point(text, length):
|
|
|
|
"Returns position of the last space found before 'length' chars"
|
|
|
|
l = length
|
|
|
|
c = text[l]
|
|
|
|
while c != ' ':
|
|
|
|
l -= 1
|
|
|
|
if l == 0: return length # no space found
|
|
|
|
c = text[l]
|
|
|
|
return l
|
|
|
|
|
|
|
|
def text_wrap(text, length = None):
|
|
|
|
global TEXT_WRAP
|
|
|
|
|
|
|
|
wrapped = []
|
|
|
|
lines = text.split('<br>')
|
|
|
|
llen = len(lines)
|
|
|
|
if llen > 1:
|
|
|
|
if lines[-1] == '': llen -= 1
|
|
|
|
for i in range(llen - 1):
|
|
|
|
lines[i] = lines[i].rstrip() + '<br>'
|
|
|
|
lines[llen-1] = lines[llen-1].rstrip()
|
|
|
|
|
|
|
|
if not length: length = TEXT_WRAP
|
|
|
|
|
|
|
|
for l in lines:
|
|
|
|
while len(l) > length:
|
|
|
|
cpt = cut_point(l, length)
|
|
|
|
line, l = l[:cpt], l[cpt + 1:]
|
|
|
|
wrapped.append(line)
|
|
|
|
wrapped.append(l)
|
|
|
|
return wrapped
|
|
|
|
|
|
|
|
def load_script_text(script):
|
|
|
|
global PATHS, SCRIPT_INFO
|
|
|
|
|
|
|
|
if script.userdir:
|
|
|
|
path = PATHS['uscripts']
|
|
|
|
else:
|
|
|
|
path = PATHS['scripts']
|
|
|
|
|
|
|
|
fname = bsys.join(path, script.fname)
|
|
|
|
|
|
|
|
source = Blender.Text.Load(fname)
|
|
|
|
if source:
|
|
|
|
Draw.PupMenu("File loaded%%t|Please check the file \"%s\" in the Text Editor window" % source.name)
|
|
|
|
|
|
|
|
|
|
|
|
# for theme colors:
|
|
|
|
def float_colors(cols):
|
|
|
|
return map(lambda x: x / 255.0, cols)
|
|
|
|
|
|
|
|
# globals
|
|
|
|
|
|
|
|
SCRIPT_INFO = None
|
|
|
|
|
|
|
|
PATHS = {
|
|
|
|
'home': Blender.Get('homedir'),
|
|
|
|
'scripts': Blender.Get('scriptsdir'),
|
|
|
|
'uscripts': Blender.Get('uscriptsdir')
|
|
|
|
}
|
|
|
|
|
Note: this commit includes new functionality to save and restore scripts configure options. This is ongoing work, scripts still have to be updated to use this feature and more tests are needed, though many have been performed. The new Scripts Config Editor script is the main part of this. If anyone wants to check it, only the AC3D importer and exporter have already been updated to use it: simply open them (you can then cancel with ESC) to have the data created, then try the config editor.
Scripts:
- Thanks Jean-Michel Soler (jms) for updated versions of dispaint, fixfromarmature and unweld (also renamed to remove version part).
- Thanks Bart for the upgraded VRML exporter (great doc webpage!). It is available as VRML 97 and the original VRML 2 is for now still there, to help users testing the new version. For the next release the old one should be removed, of course.
- New script: Scripts Config Editor (Scripts win -> Scripts -> System). Scripts with config options (simple data that is to be set according to user needs or preferences) can use this facility instead of providing a gui and writing config files to disk themselves.
- Added new menu: System, available in the Scripts win.
- Updated sys_info.py, help_browse.py and the AC3D importer and exporter.
- Removed use of the Scrollbar and added arrow keys and mouse wheel support instead in Daniel Dunbar's old doc_browser.py. The scrollbar events handling doesn't exist, Ton suggested removing the scrollbar from the API months ago. For now its ref doc is gone and no bundled script uses it, until we get time to implement it properly.
- Added module BPyRegistry.py with functions to handle reading / writing config files automatically to the scripts/bpydata/config dir.
- Removing dir release/bpydata and its contents (moved earlier to release/scripts/bpydata/)
- Bug #2379: made small changes to bevel_center's ui to fix a problem reported by Alexander Ewering (intrr):
http://projects.blender.org/tracker/?func=detail&atid=125&aid=2379&group_id=9
BPython:
- Thanks Campbell Barton for new functionality: Blender.Get() now can also return all the paths from the user prefs -> file paths win and there is a new function: Blender.sys.expandpath() to transform Blender paths (those starting with '//' and ending with '#') to absolute paths.
- Added function Blender.ShowHelp(), to open the Scripts Help Browser with a given help page -- just a time saver for scripts.
- Improved function Blender.Run() to also work with gui and file select scripts.
- Found a (new?) crash related to NMesh.PutRaw when creating a new object while in edit mode. Leaving / entering edit mode fixes the problem, so a check for obj created, edit mode and leaving / re-entering it were added to the code for now (gdb didn't help much, no backtrace)
- doc updates, including splitting intro page in two, with bpython related stuff (registering / documenting / configuring scripts and command line mode (thanks Chris Want for "use system variables to pass parameters to scripts" idea).
- Registry: functions have been updated to support writing to / reading from disk, for the config editor -- only simple config data supported, for large amounts coders should write to a file themselves. This is done with a new parameter: Registry.GetKey(keyname, True) will also search for the key on the config dir, if not already loaded; equiv. for Registry.SetKey(keyname, dict, True). Data is only written to / read from disk when needed and only scripts already used (assuming they support this functionality) will have config data saved.
2005-04-16 05:25:42 +00:00
|
|
|
if not PATHS['home']:
|
|
|
|
errmsg = """
|
|
|
|
Can't find Blender's home dir and so can't find the
|
|
|
|
Bpymenus file automatically stored inside it, which
|
|
|
|
is needed by this script. Please run the
|
|
|
|
Help -> System -> System Information script to get
|
|
|
|
information about how to fix this.
|
|
|
|
"""
|
|
|
|
raise SystemError, errmsg
|
|
|
|
|
2004-11-07 16:31:13 +00:00
|
|
|
BPYMENUS_FILE = bsys.join(PATHS['home'], 'Bpymenus')
|
|
|
|
|
|
|
|
f = file(BPYMENUS_FILE, 'r')
|
|
|
|
lines = f.readlines()
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
AllGroups = []
|
|
|
|
|
|
|
|
class Script:
|
|
|
|
|
|
|
|
def __init__(self, data):
|
|
|
|
self.name = data[0]
|
|
|
|
self.version = data[1]
|
|
|
|
self.fname = data[2]
|
|
|
|
self.userdir = data[3]
|
|
|
|
self.tip = data[4]
|
|
|
|
|
|
|
|
# End of class Script
|
|
|
|
|
|
|
|
|
|
|
|
class Group:
|
|
|
|
|
|
|
|
def __init__(self, name):
|
|
|
|
self.name = name
|
|
|
|
self.scripts = []
|
|
|
|
|
|
|
|
def add_script(self, script):
|
|
|
|
self.scripts.append(script)
|
|
|
|
|
|
|
|
def get_name(self):
|
|
|
|
return self.name
|
|
|
|
|
|
|
|
def get_scripts(self):
|
|
|
|
return self.scripts
|
|
|
|
|
|
|
|
# End of class Group
|
|
|
|
|
|
|
|
|
|
|
|
class BPy_Info:
|
|
|
|
|
|
|
|
def __init__(self, script, dict):
|
|
|
|
|
|
|
|
self.script = script
|
|
|
|
|
|
|
|
self.d = dict
|
|
|
|
|
|
|
|
self.header = []
|
|
|
|
self.len_header = 0
|
|
|
|
self.content = []
|
|
|
|
self.len_content = 0
|
|
|
|
self.spaces = 0
|
|
|
|
self.fix_urls()
|
|
|
|
self.make_header()
|
|
|
|
self.wrap_lines()
|
|
|
|
|
|
|
|
def make_header(self):
|
|
|
|
|
|
|
|
sc = self.script
|
|
|
|
d = self.d
|
|
|
|
|
|
|
|
header = self.header
|
|
|
|
|
|
|
|
title = "Script: %s" % sc.name
|
|
|
|
version = "Version: %s for Blender %1.2f or newer" % (d['__version__'],
|
|
|
|
sc.version / 100.0)
|
|
|
|
|
|
|
|
if len(d['__author__']) == 1:
|
|
|
|
asuffix = ':'
|
|
|
|
else: asuffix = 's:'
|
|
|
|
|
|
|
|
authors = "%s%s %s" % ("Author", asuffix, ", ".join(d['__author__']))
|
|
|
|
|
|
|
|
header.append(title)
|
|
|
|
header.append(version)
|
|
|
|
header.append(authors)
|
|
|
|
self.len_header = len(header)
|
|
|
|
|
|
|
|
|
|
|
|
def fix_urls(self):
|
|
|
|
|
|
|
|
emails = self.d['__email__']
|
|
|
|
fixed = []
|
|
|
|
for a in emails:
|
|
|
|
if a in DEFAULT_EMAILS.keys():
|
|
|
|
fixed.append(DEFAULT_EMAILS[a])
|
|
|
|
else:
|
|
|
|
a = a.replace('*','.').replace(':','@')
|
|
|
|
ltmp = a.split(',')
|
|
|
|
if len(ltmp) != 2:
|
|
|
|
ltmp = [ltmp[0], ltmp[0]]
|
|
|
|
fixed.append(ltmp)
|
|
|
|
|
|
|
|
self.d['__email__'] = fixed
|
|
|
|
|
|
|
|
links = self.d['__url__']
|
|
|
|
fixed = []
|
|
|
|
for a in links:
|
|
|
|
if a in DEFAULT_LINKS.keys():
|
|
|
|
fixed.append(DEFAULT_LINKS[a])
|
|
|
|
else:
|
|
|
|
ltmp = a.split(',')
|
|
|
|
if len(ltmp) != 2:
|
|
|
|
ltmp = [ltmp[0], ltmp[0]]
|
|
|
|
fixed.append([ltmp[0].strip(), ltmp[1].strip()])
|
|
|
|
|
|
|
|
self.d['__url__'] = fixed
|
|
|
|
|
|
|
|
|
|
|
|
def wrap_lines(self, reset = 0):
|
|
|
|
|
|
|
|
lines = self.d['__bpydoc__'].split('\n')
|
|
|
|
self.content = []
|
|
|
|
newlines = []
|
|
|
|
newline = []
|
|
|
|
|
|
|
|
if reset:
|
|
|
|
self.len_content = 0
|
|
|
|
self.spaces = 0
|
|
|
|
|
|
|
|
for l in lines:
|
|
|
|
if l == '' and newline:
|
|
|
|
newlines.append(newline)
|
|
|
|
newline = []
|
|
|
|
newlines.append('')
|
|
|
|
else: newline.append(l)
|
|
|
|
if newline: newlines.append(newline)
|
|
|
|
|
|
|
|
for lst in newlines:
|
|
|
|
wrapped = text_wrap(" ".join(lst))
|
|
|
|
for l in wrapped:
|
|
|
|
self.content.append(l)
|
|
|
|
if l: self.len_content += 1
|
|
|
|
else: self.spaces += 1
|
|
|
|
|
|
|
|
if not self.content[-1]:
|
|
|
|
self.len_content -= 1
|
|
|
|
|
|
|
|
|
|
|
|
# End of class BPy_Info
|
|
|
|
|
|
|
|
def parse_pyobj_close(closetag, lines, i):
|
|
|
|
i += 1
|
|
|
|
l = lines[i]
|
|
|
|
while l.find(closetag) < 0:
|
|
|
|
i += 1
|
|
|
|
l = "%s%s" % (l, lines[i])
|
|
|
|
return [l, i]
|
|
|
|
|
|
|
|
def parse_pyobj(var, lines, i):
|
|
|
|
"Bad code, was in a hurry for release"
|
|
|
|
|
|
|
|
l = lines[i].replace(var, '').replace('=','',1).strip()
|
|
|
|
|
|
|
|
i0 = i - 1
|
|
|
|
|
|
|
|
if l[0] == '"':
|
|
|
|
if l[1:3] == '""': # """
|
|
|
|
if l.find('"""', 3) < 0: # multiline
|
|
|
|
l2, i = parse_pyobj_close('"""', lines, i)
|
|
|
|
if l[-1] == '\\': l = l[:-1]
|
|
|
|
l = "%s%s" % (l, l2)
|
|
|
|
elif l[-1] == '"' and l[-2] != '\\': # single line: "..."
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
l = "ERROR"
|
|
|
|
|
|
|
|
elif l[0] == "'":
|
2009-01-26 08:34:40 +00:00
|
|
|
if l[1:3] == "''": # '''
|
|
|
|
if l.find("'''", 3) < 0: # multiline
|
|
|
|
l2, i = parse_pyobj_close("'''", lines, i)
|
|
|
|
if l[-1] == '\\': l = l[:-1]
|
|
|
|
l = "%s%s" % (l, l2)
|
|
|
|
elif l[-1] == '\\':
|
2004-11-07 16:31:13 +00:00
|
|
|
l2, i = parse_pyobj_close("'", lines, i)
|
|
|
|
l = "%s%s" % (l, l2)
|
|
|
|
elif l[-1] == "'" and l[-2] != '\\': # single line: '...'
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
l = "ERROR"
|
|
|
|
|
|
|
|
elif l[0] == '(':
|
|
|
|
if l[-1] != ')':
|
|
|
|
l2, i = parse_pyobj_close(')', lines, i)
|
|
|
|
l = "%s%s" % (l, l2)
|
|
|
|
|
|
|
|
elif l[0] == '[':
|
|
|
|
if l[-1] != ']':
|
|
|
|
l2, i = parse_pyobj_close(']', lines, i)
|
|
|
|
l = "%s%s" % (l, l2)
|
|
|
|
|
|
|
|
return [l, i - i0]
|
|
|
|
|
|
|
|
# helper functions:
|
|
|
|
|
|
|
|
def parse_help_info(script):
|
|
|
|
|
|
|
|
global PATHS, SCRIPT_INFO
|
|
|
|
|
|
|
|
if script.userdir:
|
|
|
|
path = PATHS['uscripts']
|
|
|
|
else:
|
|
|
|
path = PATHS['scripts']
|
|
|
|
|
|
|
|
fname = bsys.join(path, script.fname)
|
|
|
|
|
|
|
|
if not bsys.exists(fname):
|
BPython bug fixes:
- #2646 reported by Campbell: Python/Fileselector (moving from fileselector called by script to another space caused script to hang around open but not accessible)
http://projects.blender.org/tracker/?func=detail&atid=125&aid=2646&group_id=9
- #2676 reported by Wim Van Hoydonck: 2.37 python scripts gui: event 8 ignored (thanks Ton for discussing / pointing what to do, Ken Hughes for also working on a fix)
http://projects.blender.org/tracker/?func=detail&atid=125&aid=2676&group_id=9
- gui-less scripts with calls to progress bar inside fileselector callbacks didn't return to the previous space on exit (staying on Scripts win), requiring an event to do so (mouse movement, for example). Quick fix for now, will rework a little after 2.37a for a better alternative, not needing to move to the Scripts win at all.
- added syntax colors access to Window.Theme module.
Scripts:
- updates by Jean-Michel Soler: svg2obj (svg paths import), tex2uvbaker, fixfromarmature;
- updates by Campbell Barton: obj import / export, console;
- tiny: converted vrml97 export to unix line endings;
- updates in ac3d exporter, help browser, save theme.
Thanks all mentioned above.
2005-06-11 05:30:14 +00:00
|
|
|
Draw.PupMenu('IO Error: couldn\'t find script %s' % fname)
|
2004-11-07 16:31:13 +00:00
|
|
|
return None
|
|
|
|
|
|
|
|
f = file(fname, 'r')
|
|
|
|
lines = f.readlines()
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
# fix line endings:
|
|
|
|
if lines[0].find('\r'):
|
|
|
|
unixlines = []
|
|
|
|
for l in lines:
|
|
|
|
unixlines.append(l.replace('\r',''))
|
|
|
|
lines = unixlines
|
|
|
|
|
|
|
|
llen = len(lines)
|
|
|
|
has_doc = 0
|
|
|
|
|
|
|
|
doc_data = {
|
|
|
|
'__author__': '',
|
|
|
|
'__version__': '',
|
|
|
|
'__url__': '',
|
|
|
|
'__email__': '',
|
|
|
|
'__bpydoc__': '',
|
|
|
|
'__doc__': ''
|
|
|
|
}
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
while i < llen:
|
|
|
|
l = lines[i]
|
|
|
|
incr = 1
|
|
|
|
for k in doc_data.keys():
|
|
|
|
if l.find(k, 0, 20) == 0:
|
|
|
|
value, incr = parse_pyobj(k, lines, i)
|
|
|
|
exec("doc_data['%s'] = %s" % (k, value))
|
|
|
|
has_doc = 1
|
|
|
|
break
|
|
|
|
i += incr
|
|
|
|
|
|
|
|
# fix these to seqs, simplifies coding elsewhere
|
|
|
|
for w in ['__author__', '__url__', '__email__']:
|
|
|
|
val = doc_data[w]
|
|
|
|
if val and type(val) == str:
|
|
|
|
doc_data[w] = [doc_data[w]]
|
|
|
|
|
|
|
|
if not doc_data['__bpydoc__']:
|
|
|
|
if doc_data['__doc__']:
|
|
|
|
doc_data['__bpydoc__'] = doc_data['__doc__']
|
|
|
|
|
|
|
|
if has_doc: # any data, maybe should confirm at least doc/bpydoc
|
|
|
|
info = BPy_Info(script, doc_data)
|
|
|
|
SCRIPT_INFO = info
|
|
|
|
return True
|
|
|
|
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
def parse_script_line(l):
|
|
|
|
|
2008-10-09 22:28:44 +00:00
|
|
|
tip = 'No tooltip'
|
2004-11-07 16:31:13 +00:00
|
|
|
try:
|
|
|
|
pieces = l.split("'")
|
|
|
|
name = pieces[1].replace('...','')
|
2008-10-09 22:28:44 +00:00
|
|
|
data = pieces[2].strip().split()
|
|
|
|
version = data[0]
|
|
|
|
userdir = data[-1]
|
|
|
|
fname = data[1]
|
|
|
|
i = 1
|
|
|
|
while not fname.endswith('.py'):
|
|
|
|
i += 1
|
|
|
|
fname = '%s %s' % (fname, data[i])
|
|
|
|
if len(pieces) > 3: tip = pieces[3]
|
2004-11-07 16:31:13 +00:00
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
|
|
|
return [name, int(version), fname, int(userdir), tip]
|
|
|
|
|
|
|
|
|
|
|
|
def parse_bpymenus(lines):
|
|
|
|
|
|
|
|
global AllGroups
|
|
|
|
|
|
|
|
llen = len(lines)
|
|
|
|
|
|
|
|
for i in range(llen):
|
|
|
|
l = lines[i].strip()
|
|
|
|
if not l: continue
|
|
|
|
if l[-1] == '{':
|
|
|
|
group = Group(l[:-2])
|
|
|
|
AllGroups.append(group)
|
|
|
|
i += 1
|
|
|
|
l = lines[i].strip()
|
|
|
|
while l != '}':
|
|
|
|
if l[0] != '|':
|
|
|
|
data = parse_script_line(l)
|
|
|
|
if data:
|
|
|
|
script = Script(data)
|
|
|
|
group.add_script(script)
|
|
|
|
i += 1
|
|
|
|
l = lines[i].strip()
|
|
|
|
|
BPython:
- Scripts:
fixed error in "Save Current Theme" which prevented it from automatically updating script registration in menus.
cosmetic changes in a couple of Campbell's sel_same.py script strings + more descriptive name for its new menu place (3d view, face mode -> select menu).
small updates to help_browser.py script.
The above changes are related to this:
- Added new script menu entries: Render (for exporters to renderers), Themes, FaceSelect (this already at the proper place). Updated Scripts win->Scripts menu so it won't show all available entries, only the ones we mean to see there.
- Updated menu registration so that scripts folders can become trees. The release/scripts/ dir should be updated soon with subdirs like converters/, modifiers/, generators/ or whatever -- better discuss first (or is it? /me afraid of long irc discussions during meetings :) ).
- Modules:
Blender: added 'udatadir' option to .Get() function and added var Blender.mode to tell if Blender is in bg or interactive mode.
NMesh: added Campbell's nmesh.transform(matrix, recalc_normals = False) method (reworked, so my fault if it doesn't work).
- Bugs fixed:
#2123: http://projects.blender.org/tracker/?func=detail&atid=125&aid=2123&group_id=9
Reported by Ken Hughes (thanks!), who also found the exact problem later (it was in Text.Load, not with script links -- if only I had checked emails these days ... lost > 1 hour today to find the problem: passed filename to M_Text_Load was later being written over by a function called by add_text). Also saw that Text.Load wasn't checking existence of passed filename (duh!), now it does.
#1655: http://projects.blender.org/tracker/?func=detail&atid=125&aid=1655&group_id=9
Reported by Chris Want (thanks!): command line "blender -P script" not working properly for bg mode ("blender -b blendfile -P script").
Had to make some small updates to get it working (bg mode for scripts was never explicitely handled, it worked due to collateral effects, let's say), interested readers can check the report after I update it or the API_intro.py doc file. After more testing we can make further updates. Updated many places to not call redraws if in bg mode, now it is officially available. Blender outputs its own info when rendering in bg mode, if that is considered a nuissance we'll have to add a few "if (during_script())" calls outside bpython.
- Removed a few warnings here and there and also updated docs.
2005-03-19 06:24:55 +00:00
|
|
|
# AllGroups.reverse()
|
2004-11-07 16:31:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
def create_group_menus():
|
|
|
|
|
|
|
|
global AllGroups
|
|
|
|
menus = []
|
|
|
|
|
|
|
|
for group in AllGroups:
|
|
|
|
|
|
|
|
name = group.get_name()
|
|
|
|
menu = []
|
|
|
|
scripts = group.get_scripts()
|
|
|
|
for s in scripts: menu.append(s.name)
|
|
|
|
menu = "|".join(menu)
|
|
|
|
menu = "%s%%t|%s" % (name, menu)
|
|
|
|
menus.append([name, menu])
|
|
|
|
|
|
|
|
return menus
|
|
|
|
|
|
|
|
|
|
|
|
# Collecting data:
|
|
|
|
fit_on_screen()
|
|
|
|
parse_bpymenus(lines)
|
|
|
|
GROUP_MENUS = create_group_menus()
|
|
|
|
|
|
|
|
|
|
|
|
# GUI:
|
|
|
|
|
|
|
|
from Blender import BGL
|
|
|
|
from Blender.Window import Theme
|
|
|
|
|
|
|
|
# globals:
|
|
|
|
|
|
|
|
START_SCREEN = 0
|
|
|
|
SCRIPT_SCREEN = 1
|
|
|
|
|
|
|
|
SCREEN = START_SCREEN
|
|
|
|
|
|
|
|
# gui buttons:
|
|
|
|
len_gmenus = len(GROUP_MENUS)
|
|
|
|
|
|
|
|
BUT_GMENU = range(len_gmenus)
|
|
|
|
for i in range(len_gmenus):
|
|
|
|
BUT_GMENU[i] = Draw.Create(0)
|
|
|
|
|
|
|
|
# events:
|
|
|
|
BEVT_LINK = None # range(len(SCRIPT_INFO.links))
|
|
|
|
BEVT_EMAIL = None # range(len(SCRIPT_INFO.emails))
|
|
|
|
BEVT_GMENU = range(100, len_gmenus + 100)
|
|
|
|
BEVT_VIEWSOURCE = 1
|
|
|
|
BEVT_EXIT = 2
|
|
|
|
BEVT_BACK = 3
|
2009-01-26 08:34:40 +00:00
|
|
|
BEVT_EXEC = 4 # Executes Script
|
2004-11-07 16:31:13 +00:00
|
|
|
|
|
|
|
# gui callbacks:
|
|
|
|
|
|
|
|
def gui(): # drawing the screen
|
|
|
|
|
|
|
|
global SCREEN, START_SCREEN, SCRIPT_SCREEN
|
|
|
|
global SCRIPT_INFO, AllGroups, GROUP_MENUS
|
|
|
|
global BEVT_EMAIL, BEVT_LINK
|
2009-01-26 08:34:40 +00:00
|
|
|
global BEVT_VIEWSOURCE, BEVT_EXIT, BEVT_BACK, BEVT_GMENU, BUT_GMENU, BEVT_EXEC
|
BPython bug fixes:
- #2646 reported by Campbell: Python/Fileselector (moving from fileselector called by script to another space caused script to hang around open but not accessible)
http://projects.blender.org/tracker/?func=detail&atid=125&aid=2646&group_id=9
- #2676 reported by Wim Van Hoydonck: 2.37 python scripts gui: event 8 ignored (thanks Ton for discussing / pointing what to do, Ken Hughes for also working on a fix)
http://projects.blender.org/tracker/?func=detail&atid=125&aid=2676&group_id=9
- gui-less scripts with calls to progress bar inside fileselector callbacks didn't return to the previous space on exit (staying on Scripts win), requiring an event to do so (mouse movement, for example). Quick fix for now, will rework a little after 2.37a for a better alternative, not needing to move to the Scripts win at all.
- added syntax colors access to Window.Theme module.
Scripts:
- updates by Jean-Michel Soler: svg2obj (svg paths import), tex2uvbaker, fixfromarmature;
- updates by Campbell Barton: obj import / export, console;
- tiny: converted vrml97 export to unix line endings;
- updates in ac3d exporter, help browser, save theme.
Thanks all mentioned above.
2005-06-11 05:30:14 +00:00
|
|
|
global PADDING, WIN_W, WIN_H, SCROLL_DOWN, COLUMNS, FMODE
|
2004-11-07 16:31:13 +00:00
|
|
|
|
|
|
|
theme = Theme.Get()[0]
|
|
|
|
tui = theme.get('ui')
|
|
|
|
ttxt = theme.get('text')
|
|
|
|
|
|
|
|
COL_BG = float_colors(ttxt.back)
|
|
|
|
COL_TXT = ttxt.text
|
|
|
|
COL_TXTHI = ttxt.text_hi
|
|
|
|
|
|
|
|
BGL.glClearColor(COL_BG[0],COL_BG[1],COL_BG[2],COL_BG[3])
|
|
|
|
BGL.glClear(BGL.GL_COLOR_BUFFER_BIT)
|
|
|
|
BGL.glColor3ub(COL_TXT[0],COL_TXT[1], COL_TXT[2])
|
|
|
|
|
|
|
|
resize = screen_was_resized()
|
|
|
|
if resize: fit_on_screen()
|
|
|
|
|
|
|
|
if SCREEN == START_SCREEN:
|
|
|
|
x = PADDING
|
BPython:
- Scripts:
fixed error in "Save Current Theme" which prevented it from automatically updating script registration in menus.
cosmetic changes in a couple of Campbell's sel_same.py script strings + more descriptive name for its new menu place (3d view, face mode -> select menu).
small updates to help_browser.py script.
The above changes are related to this:
- Added new script menu entries: Render (for exporters to renderers), Themes, FaceSelect (this already at the proper place). Updated Scripts win->Scripts menu so it won't show all available entries, only the ones we mean to see there.
- Updated menu registration so that scripts folders can become trees. The release/scripts/ dir should be updated soon with subdirs like converters/, modifiers/, generators/ or whatever -- better discuss first (or is it? /me afraid of long irc discussions during meetings :) ).
- Modules:
Blender: added 'udatadir' option to .Get() function and added var Blender.mode to tell if Blender is in bg or interactive mode.
NMesh: added Campbell's nmesh.transform(matrix, recalc_normals = False) method (reworked, so my fault if it doesn't work).
- Bugs fixed:
#2123: http://projects.blender.org/tracker/?func=detail&atid=125&aid=2123&group_id=9
Reported by Ken Hughes (thanks!), who also found the exact problem later (it was in Text.Load, not with script links -- if only I had checked emails these days ... lost > 1 hour today to find the problem: passed filename to M_Text_Load was later being written over by a function called by add_text). Also saw that Text.Load wasn't checking existence of passed filename (duh!), now it does.
#1655: http://projects.blender.org/tracker/?func=detail&atid=125&aid=1655&group_id=9
Reported by Chris Want (thanks!): command line "blender -P script" not working properly for bg mode ("blender -b blendfile -P script").
Had to make some small updates to get it working (bg mode for scripts was never explicitely handled, it worked due to collateral effects, let's say), interested readers can check the report after I update it or the API_intro.py doc file. After more testing we can make further updates. Updated many places to not call redraws if in bg mode, now it is officially available. Blender outputs its own info when rendering in bg mode, if that is considered a nuissance we'll have to add a few "if (during_script())" calls outside bpython.
- Removed a few warnings here and there and also updated docs.
2005-03-19 06:24:55 +00:00
|
|
|
bw = 85
|
2004-11-07 16:31:13 +00:00
|
|
|
bh = 25
|
|
|
|
hincr = 50
|
|
|
|
|
|
|
|
butcolumns = (WIN_W - 2*x)/ bw
|
|
|
|
if butcolumns < 2: butcolumns = 2
|
|
|
|
elif butcolumns > 7: butcolumns = 7
|
|
|
|
|
|
|
|
len_gm = len(GROUP_MENUS)
|
|
|
|
butlines = len_gm / butcolumns
|
|
|
|
if len_gm % butcolumns: butlines += 1
|
|
|
|
|
|
|
|
h = hincr * butlines + 20
|
|
|
|
y = h + bh
|
|
|
|
|
|
|
|
BGL.glColor3ub(COL_TXTHI[0],COL_TXTHI[1], COL_TXTHI[2])
|
|
|
|
BGL.glRasterPos2i(x, y)
|
|
|
|
Draw.Text('Scripts Help Browser')
|
|
|
|
|
|
|
|
y -= bh
|
|
|
|
|
|
|
|
BGL.glColor3ub(COL_TXT[0],COL_TXT[1], COL_TXT[2])
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
j = 0
|
|
|
|
for group_menu in GROUP_MENUS:
|
|
|
|
BGL.glRasterPos2i(x, y)
|
|
|
|
Draw.Text(group_menu[0]+':')
|
|
|
|
BUT_GMENU[j] = Draw.Menu(group_menu[1], BEVT_GMENU[j],
|
|
|
|
x, y-bh-5, bw, bh, 0,
|
|
|
|
'Choose a script to read its help information')
|
|
|
|
if i == butcolumns - 1:
|
|
|
|
x = PADDING
|
|
|
|
i = 0
|
|
|
|
y -= hincr
|
|
|
|
else:
|
|
|
|
i += 1
|
|
|
|
x += bw + 3
|
|
|
|
j += 1
|
|
|
|
|
|
|
|
x = PADDING
|
|
|
|
y = 10
|
|
|
|
BGL.glRasterPos2i(x, y)
|
|
|
|
Draw.Text('Select script for its help. Press Q or ESC to leave.')
|
|
|
|
|
|
|
|
elif SCREEN == SCRIPT_SCREEN:
|
|
|
|
if SCRIPT_INFO:
|
|
|
|
|
|
|
|
if resize:
|
|
|
|
SCRIPT_INFO.wrap_lines(1)
|
|
|
|
SCROLL_DOWN = 0
|
|
|
|
|
|
|
|
h = 18 * SCRIPT_INFO.len_content + 12 * SCRIPT_INFO.spaces
|
|
|
|
x = PADDING
|
|
|
|
y = WIN_H
|
|
|
|
bw = 38
|
|
|
|
bh = 16
|
|
|
|
|
|
|
|
BGL.glColor3ub(COL_TXTHI[0],COL_TXTHI[1], COL_TXTHI[2])
|
|
|
|
for line in SCRIPT_INFO.header:
|
|
|
|
y -= 18
|
|
|
|
BGL.glRasterPos2i(x, y)
|
|
|
|
size = Draw.Text(line)
|
|
|
|
|
|
|
|
for line in text_wrap('Tooltip: %s' % SCRIPT_INFO.script.tip):
|
|
|
|
y -= 18
|
|
|
|
BGL.glRasterPos2i(x, y)
|
|
|
|
size = Draw.Text(line)
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
y -= 28
|
|
|
|
for data in SCRIPT_INFO.d['__url__']:
|
|
|
|
Draw.PushButton('link %d' % (i + 1), BEVT_LINK[i],
|
|
|
|
x + i*bw, y, bw, bh, data[0])
|
|
|
|
i += 1
|
|
|
|
y -= bh + 1
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
for data in SCRIPT_INFO.d['__email__']:
|
|
|
|
Draw.PushButton('email', BEVT_EMAIL[i], x + i*bw, y, bw, bh, data[0])
|
|
|
|
i += 1
|
|
|
|
y -= 18
|
|
|
|
|
|
|
|
y0 = y
|
|
|
|
BGL.glColor3ub(COL_TXT[0],COL_TXT[1], COL_TXT[2])
|
|
|
|
for line in SCRIPT_INFO.content[SCROLL_DOWN:]:
|
|
|
|
if line:
|
|
|
|
line = line.replace('<br>', '')
|
|
|
|
BGL.glRasterPos2i(x, y)
|
|
|
|
Draw.Text(line)
|
|
|
|
y -= 18
|
|
|
|
else: y -= 12
|
|
|
|
if y < PADDING + 20: # reached end, either stop or go to 2nd column
|
|
|
|
if COLUMNS == 1: break
|
|
|
|
elif x == PADDING: # make sure we're still in column 1
|
|
|
|
x = 6*TEXT_WRAP + PADDING / 2
|
|
|
|
y = y0
|
|
|
|
|
|
|
|
x = PADDING
|
|
|
|
Draw.PushButton('source', BEVT_VIEWSOURCE, x, 17, 45, bh,
|
|
|
|
'View this script\'s source code in the Text Editor (hotkey: S)')
|
|
|
|
Draw.PushButton('exit', BEVT_EXIT, x + 45, 17, 45, bh,
|
|
|
|
'Exit from Scripts Help Browser (hotkey: Q)')
|
2009-01-26 08:34:40 +00:00
|
|
|
if not FMODE:
|
|
|
|
Draw.PushButton('back', BEVT_BACK, x + 2*45, 17, 45, bh,
|
2004-11-07 16:31:13 +00:00
|
|
|
'Back to scripts selection screen (hotkey: ESC)')
|
2009-01-26 08:34:40 +00:00
|
|
|
Draw.PushButton('run script', BEVT_EXEC, x + 3*45, 17, 60, bh, 'Run this script')
|
|
|
|
|
2004-11-07 16:31:13 +00:00
|
|
|
BGL.glColor3ub(COL_TXTHI[0],COL_TXTHI[1], COL_TXTHI[2])
|
|
|
|
BGL.glRasterPos2i(x, 5)
|
|
|
|
Draw.Text('use the arrow keys or the mouse wheel to scroll text', 'small')
|
|
|
|
|
|
|
|
def fit_scroll():
|
|
|
|
global SCROLL_DOWN
|
|
|
|
if not SCRIPT_INFO:
|
|
|
|
SCROLL_DOWN = 0
|
|
|
|
return
|
|
|
|
max = SCRIPT_INFO.len_content + SCRIPT_INFO.spaces - 1
|
|
|
|
if SCROLL_DOWN > max: SCROLL_DOWN = max
|
|
|
|
if SCROLL_DOWN < 0: SCROLL_DOWN = 0
|
|
|
|
|
|
|
|
|
|
|
|
def event(evt, val): # input events
|
|
|
|
|
|
|
|
global SCREEN, START_SCREEN, SCRIPT_SCREEN
|
BPython bug fixes:
- #2646 reported by Campbell: Python/Fileselector (moving from fileselector called by script to another space caused script to hang around open but not accessible)
http://projects.blender.org/tracker/?func=detail&atid=125&aid=2646&group_id=9
- #2676 reported by Wim Van Hoydonck: 2.37 python scripts gui: event 8 ignored (thanks Ton for discussing / pointing what to do, Ken Hughes for also working on a fix)
http://projects.blender.org/tracker/?func=detail&atid=125&aid=2676&group_id=9
- gui-less scripts with calls to progress bar inside fileselector callbacks didn't return to the previous space on exit (staying on Scripts win), requiring an event to do so (mouse movement, for example). Quick fix for now, will rework a little after 2.37a for a better alternative, not needing to move to the Scripts win at all.
- added syntax colors access to Window.Theme module.
Scripts:
- updates by Jean-Michel Soler: svg2obj (svg paths import), tex2uvbaker, fixfromarmature;
- updates by Campbell Barton: obj import / export, console;
- tiny: converted vrml97 export to unix line endings;
- updates in ac3d exporter, help browser, save theme.
Thanks all mentioned above.
2005-06-11 05:30:14 +00:00
|
|
|
global SCROLL_DOWN, FMODE
|
2004-11-07 16:31:13 +00:00
|
|
|
|
|
|
|
if not val: return
|
|
|
|
|
|
|
|
if evt == Draw.ESCKEY:
|
BPython bug fixes:
- #2646 reported by Campbell: Python/Fileselector (moving from fileselector called by script to another space caused script to hang around open but not accessible)
http://projects.blender.org/tracker/?func=detail&atid=125&aid=2646&group_id=9
- #2676 reported by Wim Van Hoydonck: 2.37 python scripts gui: event 8 ignored (thanks Ton for discussing / pointing what to do, Ken Hughes for also working on a fix)
http://projects.blender.org/tracker/?func=detail&atid=125&aid=2676&group_id=9
- gui-less scripts with calls to progress bar inside fileselector callbacks didn't return to the previous space on exit (staying on Scripts win), requiring an event to do so (mouse movement, for example). Quick fix for now, will rework a little after 2.37a for a better alternative, not needing to move to the Scripts win at all.
- added syntax colors access to Window.Theme module.
Scripts:
- updates by Jean-Michel Soler: svg2obj (svg paths import), tex2uvbaker, fixfromarmature;
- updates by Campbell Barton: obj import / export, console;
- tiny: converted vrml97 export to unix line endings;
- updates in ac3d exporter, help browser, save theme.
Thanks all mentioned above.
2005-06-11 05:30:14 +00:00
|
|
|
if SCREEN == START_SCREEN or FMODE: Draw.Exit()
|
2004-11-07 16:31:13 +00:00
|
|
|
else:
|
|
|
|
SCREEN = START_SCREEN
|
|
|
|
SCROLL_DOWN = 0
|
|
|
|
Draw.Redraw()
|
|
|
|
return
|
|
|
|
elif evt == Draw.QKEY:
|
|
|
|
Draw.Exit()
|
|
|
|
return
|
|
|
|
elif evt in [Draw.DOWNARROWKEY, Draw.WHEELDOWNMOUSE] and SCREEN == SCRIPT_SCREEN:
|
|
|
|
SCROLL_DOWN += 1
|
|
|
|
fit_scroll()
|
|
|
|
Draw.Redraw()
|
|
|
|
return
|
|
|
|
elif evt in [Draw.UPARROWKEY, Draw.WHEELUPMOUSE] and SCREEN == SCRIPT_SCREEN:
|
|
|
|
SCROLL_DOWN -= 1
|
|
|
|
fit_scroll()
|
|
|
|
Draw.Redraw()
|
|
|
|
return
|
|
|
|
elif evt == Draw.SKEY:
|
|
|
|
if SCREEN == SCRIPT_SCREEN and SCRIPT_INFO:
|
|
|
|
load_script_text(SCRIPT_INFO.script)
|
|
|
|
return
|
|
|
|
|
|
|
|
def button_event(evt): # gui button events
|
|
|
|
|
|
|
|
global SCREEN, START_SCREEN, SCRIPT_SCREEN
|
|
|
|
global BEVT_LINK, BEVT_EMAIL, BEVT_GMENU, BUT_GMENU, SCRIPT_INFO
|
BPython bug fixes:
- #2646 reported by Campbell: Python/Fileselector (moving from fileselector called by script to another space caused script to hang around open but not accessible)
http://projects.blender.org/tracker/?func=detail&atid=125&aid=2646&group_id=9
- #2676 reported by Wim Van Hoydonck: 2.37 python scripts gui: event 8 ignored (thanks Ton for discussing / pointing what to do, Ken Hughes for also working on a fix)
http://projects.blender.org/tracker/?func=detail&atid=125&aid=2676&group_id=9
- gui-less scripts with calls to progress bar inside fileselector callbacks didn't return to the previous space on exit (staying on Scripts win), requiring an event to do so (mouse movement, for example). Quick fix for now, will rework a little after 2.37a for a better alternative, not needing to move to the Scripts win at all.
- added syntax colors access to Window.Theme module.
Scripts:
- updates by Jean-Michel Soler: svg2obj (svg paths import), tex2uvbaker, fixfromarmature;
- updates by Campbell Barton: obj import / export, console;
- tiny: converted vrml97 export to unix line endings;
- updates in ac3d exporter, help browser, save theme.
Thanks all mentioned above.
2005-06-11 05:30:14 +00:00
|
|
|
global SCROLL_DOWN, FMODE
|
2004-11-07 16:31:13 +00:00
|
|
|
|
|
|
|
if evt >= 100: # group menus
|
|
|
|
for i in range(len(BUT_GMENU)):
|
|
|
|
if evt == BEVT_GMENU[i]:
|
|
|
|
group = AllGroups[i]
|
|
|
|
index = BUT_GMENU[i].val - 1
|
|
|
|
if index < 0: return # user didn't pick a menu entry
|
|
|
|
script = group.get_scripts()[BUT_GMENU[i].val - 1]
|
|
|
|
if parse_help_info(script):
|
|
|
|
SCREEN = SCRIPT_SCREEN
|
|
|
|
BEVT_LINK = range(20, len(SCRIPT_INFO.d['__url__']) + 20)
|
|
|
|
BEVT_EMAIL = range(50, len(SCRIPT_INFO.d['__email__']) + 50)
|
|
|
|
Draw.Redraw()
|
|
|
|
else:
|
|
|
|
res = Draw.PupMenu("No help available%t|View Source|Cancel")
|
|
|
|
if res == 1:
|
|
|
|
load_script_text(script)
|
|
|
|
elif evt >= 20:
|
|
|
|
if not WEBBROWSER:
|
|
|
|
Draw.PupMenu('Missing standard Python module%t|You need module "webbrowser" to access the web')
|
|
|
|
return
|
|
|
|
|
|
|
|
if evt >= 50: # script screen email buttons
|
|
|
|
email = SCRIPT_INFO.d['__email__'][evt - 50][1]
|
|
|
|
webbrowser.open("mailto:%s" % email)
|
|
|
|
else: # >= 20: script screen link buttons
|
|
|
|
link = SCRIPT_INFO.d['__url__'][evt - 20][1]
|
|
|
|
webbrowser.open(link)
|
|
|
|
elif evt == BEVT_VIEWSOURCE:
|
|
|
|
if SCREEN == SCRIPT_SCREEN: load_script_text(SCRIPT_INFO.script)
|
|
|
|
elif evt == BEVT_EXIT:
|
|
|
|
Draw.Exit()
|
|
|
|
return
|
|
|
|
elif evt == BEVT_BACK:
|
BPython bug fixes:
- #2646 reported by Campbell: Python/Fileselector (moving from fileselector called by script to another space caused script to hang around open but not accessible)
http://projects.blender.org/tracker/?func=detail&atid=125&aid=2646&group_id=9
- #2676 reported by Wim Van Hoydonck: 2.37 python scripts gui: event 8 ignored (thanks Ton for discussing / pointing what to do, Ken Hughes for also working on a fix)
http://projects.blender.org/tracker/?func=detail&atid=125&aid=2676&group_id=9
- gui-less scripts with calls to progress bar inside fileselector callbacks didn't return to the previous space on exit (staying on Scripts win), requiring an event to do so (mouse movement, for example). Quick fix for now, will rework a little after 2.37a for a better alternative, not needing to move to the Scripts win at all.
- added syntax colors access to Window.Theme module.
Scripts:
- updates by Jean-Michel Soler: svg2obj (svg paths import), tex2uvbaker, fixfromarmature;
- updates by Campbell Barton: obj import / export, console;
- tiny: converted vrml97 export to unix line endings;
- updates in ac3d exporter, help browser, save theme.
Thanks all mentioned above.
2005-06-11 05:30:14 +00:00
|
|
|
if SCREEN == SCRIPT_SCREEN and not FMODE:
|
2004-11-07 16:31:13 +00:00
|
|
|
SCREEN = START_SCREEN
|
|
|
|
SCRIPT_INFO = None
|
|
|
|
SCROLL_DOWN = 0
|
|
|
|
Draw.Redraw()
|
2009-01-26 08:34:40 +00:00
|
|
|
elif evt == BEVT_EXEC: # Execute script
|
|
|
|
exec_line = ''
|
|
|
|
if SCRIPT_INFO.script.userdir:
|
|
|
|
exec_line = bsys.join(Blender.Get('uscriptsdir'), SCRIPT_INFO.script.fname)
|
|
|
|
else:
|
|
|
|
exec_line = bsys.join(Blender.Get('scriptsdir'), SCRIPT_INFO.script.fname)
|
|
|
|
|
|
|
|
Blender.Run(exec_line)
|
2004-11-07 16:31:13 +00:00
|
|
|
|
BPython bug fixes:
- #2646 reported by Campbell: Python/Fileselector (moving from fileselector called by script to another space caused script to hang around open but not accessible)
http://projects.blender.org/tracker/?func=detail&atid=125&aid=2646&group_id=9
- #2676 reported by Wim Van Hoydonck: 2.37 python scripts gui: event 8 ignored (thanks Ton for discussing / pointing what to do, Ken Hughes for also working on a fix)
http://projects.blender.org/tracker/?func=detail&atid=125&aid=2676&group_id=9
- gui-less scripts with calls to progress bar inside fileselector callbacks didn't return to the previous space on exit (staying on Scripts win), requiring an event to do so (mouse movement, for example). Quick fix for now, will rework a little after 2.37a for a better alternative, not needing to move to the Scripts win at all.
- added syntax colors access to Window.Theme module.
Scripts:
- updates by Jean-Michel Soler: svg2obj (svg paths import), tex2uvbaker, fixfromarmature;
- updates by Campbell Barton: obj import / export, console;
- tiny: converted vrml97 export to unix line endings;
- updates in ac3d exporter, help browser, save theme.
Thanks all mentioned above.
2005-06-11 05:30:14 +00:00
|
|
|
keepon = True
|
|
|
|
FMODE = False # called by Blender.ShowHelp(name) API function ?
|
|
|
|
|
|
|
|
KEYNAME = '__help_browser'
|
|
|
|
rd = Registry.GetKey(KEYNAME)
|
|
|
|
if rd:
|
|
|
|
rdscript = rd['script']
|
|
|
|
keepon = False
|
|
|
|
Registry.RemoveKey(KEYNAME)
|
|
|
|
for group in AllGroups:
|
|
|
|
for script in group.get_scripts():
|
|
|
|
if rdscript == script.fname:
|
|
|
|
parseit = parse_help_info(script)
|
|
|
|
if parseit == True:
|
|
|
|
keepon = True
|
|
|
|
SCREEN = SCRIPT_SCREEN
|
|
|
|
BEVT_LINK = range(20, len(SCRIPT_INFO.d['__url__']) + 20)
|
|
|
|
BEVT_EMAIL = range(50, len(SCRIPT_INFO.d['__email__']) + 50)
|
|
|
|
FMODE = True
|
|
|
|
elif parseit == False:
|
|
|
|
Draw.PupMenu("ERROR: script doesn't have proper help data")
|
|
|
|
break
|
|
|
|
|
|
|
|
if not keepon:
|
|
|
|
Draw.PupMenu("ERROR: couldn't find script")
|
|
|
|
else:
|
|
|
|
Draw.Register(gui, event, button_event)
|