blender/release/scripts/fixfromarmature.py
Willian Padovani Germano 6cec51b259 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

115 lines
3.9 KiB
Python

#!BPY
""" Registration info for Blender menus: <- these words are ignored
Name: 'Fix From Everything'
Blender: 236
Group: 'Mesh'
Tip: 'Fix armature/lattice/RVK/curve deform and taper/soft body deformation (without bake)'
"""
__author__ = "Jean-Michel Soler (jms)"
__url__ = ("blender", "elysiun",
"Script's homepage, http://jmsoler.free.fr/util/blenderfile/py/fixfromarmature.py",
"Communicate problems and errors, http://www.zoo-logique.org/3D.Blender/newsportal/thread.php?group=3D.Blender")
__version__ = "06/2005"
__bpydoc__ = """\
This script creates a copy of the active mesh with deformations fixed.
Usage:
Select the deformed mesh and run this script. A fixed copy of it will be created.
"""
# $Id$
#
#----------------------------------------------
# jm soler 05/2004-->04/2005 : 'FixfromArmature'
#----------------------------------------------
# Official Page :
# http://jmsoler.free.fr/util/blenderfile/py/fixfromarmature.py
# Communicate problems and errors on:
# http://www.zoo-logique.org/3D.Blender/newsportal/thread.php?group=3D.Blender
#---------------------------------------------
# Page officielle :
# http://jmsoler.free.fr/util/blenderfile/py/fixfromarmature.py
# Communiquer les problemes et erreurs sur:
# http://www.zoo-logique.org/3D.Blender/newsportal/thread.php?group=3D.Blender
#---------------------------------------------
# ce script est proposé sous licence GPL pour etre associe
# a la distribution de Blender 2.33 et suivant
# --------------------------------------------------------------------------
# this script is released under GPL licence
# for the Blender 2.33 scripts package
# --------------------------------------------------------------------------
# ***** BEGIN GPL LICENSE BLOCK *****
#
# Script copyright (C) 2003, 2004: Jean-Michel Soler
#
# 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 *****
# --------------------------------------------------------------------------
import Blender
def fix_mesh(nomdelobjet):
Mesh=Blender.NMesh.GetRawFromObject(nomdelobjet)
Obis = Blender.Object.New ('Mesh')
Obis.link(Mesh)
Obis.setMatrix(Ozero.getMatrix())
scene = Blender.Scene.getCurrent()
scene.link (Obis)
try :
Mesh2=Obis.getData()
Mesh1=Ozero.getData()
if len(Mesh2.verts)==len(Mesh1.verts):
for VertGroupName in Mesh1.getVertGroupNames():
VertexList = Mesh1.getVertsFromGroup(VertGroupName, True)
Mesh2.addVertGroup(VertGroupName)
for Vertex in VertexList:
Mesh2.assignVertsToGroup(VertGroupName, [Vertex[0]], Vertex[1], 'add')
else:
for vgroupname in Mesh1.getVertGroupNames():
Mesh2.addVertGroup(vgroupname)
Mesh2.update()
except:
print "mesh has no vertex group "
Ozero=Blender.Object.GetSelected()[0]
errormsg = ''
if not Ozero:
errormsg = "no mesh object selected"
elif Ozero.getType() != "Mesh":
errormsg = "selected (active) object must be a mesh"
if errormsg:
Blender.Draw.PupMenu("ERROR: %s" % errormsg)
else:
fix = 1
curframe = Blender.Get('curframe')
if Ozero.isSB() and curframe != 1:
softbodies=Blender.Draw.PupMenu("Soft Body: play anim up to the current frame to fix it?%t|Yes%x1|No %x2|Cancel %x3")
if softbodies==3:
fix = 0
elif softbodies==1:
for f in range(1, curframe + 1):
Blender.Set('curframe',f)
Blender.Window.RedrawAll()
if fix: fix_mesh(Ozero.getName())