Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWillian Padovani Germano <wpgermano@gmail.com>2005-06-11 09:30:14 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2005-06-11 09:30:14 +0400
commit6cec51b259a25a54b2aa553633994fe79541eaca (patch)
treedc9fe3e48c42eb328ee499db81046dd82efa5fd8 /release/scripts/tex2uvbaker.py
parent9c63b95d34130410ea2f1a3a13541289c226015d (diff)
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.
Diffstat (limited to 'release/scripts/tex2uvbaker.py')
-rw-r--r--release/scripts/tex2uvbaker.py368
1 files changed, 277 insertions, 91 deletions
diff --git a/release/scripts/tex2uvbaker.py b/release/scripts/tex2uvbaker.py
index 1e46e06475c..326f852d53d 100644
--- a/release/scripts/tex2uvbaker.py
+++ b/release/scripts/tex2uvbaker.py
@@ -2,20 +2,19 @@
""" Registration info for Blender menus:
Name: 'Texture Baker'
-Blender: 233
+Blender: 237
Group: 'UV'
Tooltip: 'Procedural to uvmapped texture baker'
"""
__author__ = "Jean-Michel Soler (jms)"
__url__ = ("blender", "elysiun",
-"Script online, http://jmsoler.free.fr/util/blenderfile/py/text2uvbaker.py",
+"Official Page, http://jmsoler.free.fr/didacticiel/blender/tutor/cpl_mesh3d2uv2d_en.htm",
"Communicate problems and errors, http://www.zoo-logique.org/3D.Blender/newsportal/thread.php?group=3D.Blender")
-__version__ = "0.2.3 2004/12/30"
+__version__ = "0.2.6 2005/5/29"
__bpydoc__ = """\
-This script "bakes" Blender procedural materials (including textures): it saves
-them as 2d uv-mapped images.
+Texture Baker "bakes" Blender procedural materials (including textures): it saves them as 2d uv-mapped images.
This script saves an uv texture layout of the chosen mesh, that can be used as
an uv map for it. It is a way to export procedurals from Blender as normal
@@ -24,24 +23,47 @@ with the mesh in games and other 3d applications.
Usage:
-a) Enter face mode and define uv coordinates for your mesh;<br>
-b) Define its materials and textures and set "Map Input" coordinates to UV;
+a) Enter face mode and define uv coordinates for your mesh (do not forget to choose a development shape);<br>
+b) Define its materials and textures;<br>
c) Run this script and check the console.
+Global variables:
+
+a) FRAME (integer): the last frame of the animation, autodocumented.<br>
+b) LIMIT (integer): 0 or 1, uvcoords may exceed limits 0.0 to 1.0, this variable obliges the script to do a complete framing of the uvcoord.
+
Notes:<br>
- This script was based on a suggestion by Martin (Theeth) Poirier;<br>
+ This script was based on a suggestion by Martin (Theeth) Poirier.
"""
#---------------------------------------------
-# Last release : 0.2.3 , 2004/12/30 , 22h13
+# Last release : 0.2.6 , 2005/05/29 , 22h00
#---------------------------------------------
#---------------------------------------------
# (c) jm soler 07/2004 : 'Procedural Texture Baker'
-# Based on a Martin Theeth' Poirier's really
-# good idea :
-# it makes a rvk mesh with uv coords of the
-# original mesh.
-# released under Blender Artistic Licence
+# Based on a Martin 'Theeth' Poirier's really
+# good idea : makes a rvk mesh with uv coords
+# of the original mesh.
+#
+# Released under Blender Artistic Licence
+#
+# 0.2.6
+# -- Creation of LAMP object is removed and replaced
+# by the use of the shadeless option in material object
+#
+# -- helpmsg corrected : the aim of the script
+# is to bake any type of textures so we have not
+# to mapinput its textures on UV .
+#
+# --'pers' camera was replaced by an 'ortho' one.
+#
+# 0.2.5
+# -- if a image file with the same name exits the
+# system returns an error
+#
+# 0.2.4
+# -- a LIMIT variable is added to unlock the uvcoords
+# autoframing
#
#
# 0.2.3 :
@@ -85,7 +107,7 @@ Notes:<br>
#
#---------------------------------------------
# Official Page :
-# http://jmsoler.free.fr/util/blenderfile/py/text2uvbaker.py
+# http://jmsoler.free.fr/didacticiel/blender/tutor/cpl_mesh3d2uv2d_en.htm
# For problems and errors:
# http://www.zoo-logique.org/3D.Blender/newsportal/thread.php?group=3D.Blender
#---------------------------------------------
@@ -93,9 +115,69 @@ Notes:<br>
import Blender
from Blender import NMesh, Draw, Object, Scene, Camera
-FRAME = 100
-XYLIMIT = [0.0, 0.]
+#-----------------------------------
+# Last release : 0.2.5 , 2005/05/22 , 20h00
+#-----------------------------------
+# la fonction Blender.sys.dirname pose un
+# probleme lorsque la memoire est trop encombree
+# ---
+# It seems that the Blender.sys.dirname function
+# poses a problem when the memory is too much encumbered
+#-----------------------------------
+try:
+ import nt
+ os = nt
+ os.sep='\\'
+except:
+ import posix
+ os = posix
+ os.sep='/'
+DIRNAME=Blender.Get('filename')
+#-----------------------------------
+# decoupage de la chaine en fragment
+# de façon a isoler le nom du fichier
+# du repertoire
+# ---
+# split string in fragments to isolate
+# the file name from the path name
+#-----------------------------------
+
+if DIRNAME.find(os.sep):
+ k0=DIRNAME.split(os.sep)
+else:
+ k0=DIRNAME.split('/')
+DIRNAME=DIRNAME.replace(k0[-1],'')
+#-----------------------------------
+# Last release : 0.2.5 , 2005/05/22 , end
+#-----------------------------------
+
+#-----------------------------------
+# Last release : 0.2.4 , 2005/05/22 , 15h00
+#-----------------------------------
+FRAME = Blender.Get('endframe')
+#-----------------------------------
+# Last release : 0.2.4 , 2005/05/22 , end
+#-----------------------------------
+
+#-----------------------------------
+# Last release : 0.2.4 , 2005/05/18 , 11h00
+#
+# Si LIMIT == 0 le script n'essaye pas de realiser
+# un nouveau cadrage pour que l'image presente toute les
+# coordonnées uv.
+# ---
+# if LIMIT == 0 the script do not try to make
+# a new framing with all the uvcoord in only one
+# shoot...
+#-----------------------------------
+LIMIT=0
+#-----------------------------------
+# Last release : 0.2.4 , 2005/05/18 , END
+#-----------------------------------
+
+XYLIMIT = [0.0, 0.0,1.0,1.0]
OBJPOS = 100.0
+DEBUG=1
helpmsg = """
Texture Baker:
@@ -106,23 +188,79 @@ normal image textures that can be edited with a 2d image manipulation program
or used with the mesh in games and other 3d applications.
Basic instructions:
-- Enter face mode and define uv coordinates for your mesh;
-- Define its materials and textures and set "Map Input" coordinates to UV;
+- Enter face mode and define uv coordinates for your mesh (do not forget to
+ choose a development shape);
+- Define its materials and textures ;
- Run this script and check the console.
+
"""
def GET_newobject (TYPE,NAME):
+ """
+# ---------------------------
+# Function GET_newobject
+#
+# IN : TYPE string , object type ('Mesh','Empty',...)
+# NAME string , name object
+# OUT: OBJECT Blender objetc described in teh string TYPE
+# SCENE Blender current scene object
+# ---------------------------
+ Return and object and the current scene
+ """
SCENE = Blender.Scene.getCurrent()
OBJECT = Blender.Object.New(TYPE,NAME)
SCENE.link(OBJECT)
return OBJECT, SCENE
+def RenameImage(RDIR, MYDIR, FILENAME, name):
+ """
+# ---------------------------
+# Function RenameImage
+#
+# IN : RDIR string , current render directory
+# MYDIR string , new render dir for this shoot
+# FILENAME string , last rendered image filename
+# name string , new name for this image
+# OUT: nothing
+# ---------------------------
+ Rename the file pointed by the string name
+ recall the function if the file yet exists
+ """
+ newfname = RDIR + MYDIR + name
+ if newfname.find('.png', -4) < 0 : newfname += '.png'
+ if not Blender.sys.exists(newfname):
+ os.rename(FILENAME, newfname)
+ else:
+ name = Draw.PupStrInput ('ReName Image, please :', name, 32)
+ RenameImage(RDIR, MYDIR, FILENAME, name)
+
def SAVE_image (rc, name, FRAME):
+ """
+# ---------------------------
+# Function SAVE_image
+#
+# IN : rc current render context object
+# name string , image name
+# FRAME integer, last numbre of the curent animation
+# OUT: nothing
+# ---------------------------
+ """
+ rc.enableExtensions(1)
MYDIR = ''
- RENDERDIR = rc.getRenderPath()
+ RENDERDIR = rc.getRenderPath().replace('\\','/')
+ if RENDERDIR.find('//')==0 :
+ print 'filename', Blender.Get('filename'),'/n', Blender.sys.dirname(Blender.Get('filename'))
+ RDIR=RENDERDIR.replace('//',DIRNAME)
+ else:
+ RDIR=RENDERDIR[:]
+ if DEBUG : print 'RDIR : ', RDIR
+
+ HOMEDIR=Blender.Get('homedir')
+ if DEBUG : print 'HOMEDIR', HOMEDIR
rc.setRenderPath(RENDERDIR + MYDIR)
- print "Render folder:", RENDERDIR + MYDIR
+ if DEBUG : print "Render folder:", RENDERDIR + MYDIR
IMAGETYPE = Blender.Scene.Render.PNG
+ if DEBUG : print 'IMAGETYPE : ',IMAGETYPE
rc.setImageType(IMAGETYPE)
NEWFRAME = FRAME
OLDEFRAME = rc.endFrame()
@@ -130,39 +268,37 @@ def SAVE_image (rc, name, FRAME):
rc.startFrame(NEWFRAME)
rc.endFrame(NEWFRAME)
rc.renderAnim()
-
- try:
- import nt
- os = nt
-
- except:
- import posix
- os = posix
+ Blender.Scene.Render.CloseRenderWindow()
FILENAME = "%04d" % NEWFRAME
FILENAME = FILENAME.replace (' ', '0')
- FILENAME = RENDERDIR + MYDIR + FILENAME + '.png'
+ FILENAME = RDIR + MYDIR + FILENAME + '.png'
- try:
- TRUE = os.stat(FILENAME)
- newfname = RENDERDIR + MYDIR + name
- if newfname.find('.png', -4) < 0: newfname += '.png'
- os.rename(FILENAME, newfname)
- print "Renamed to:", newfname
-
- except:
- pass
+ RenameImage(RDIR, MYDIR, FILENAME, name)
rc.endFrame(OLDEFRAME)
rc.startFrame(OLDSFRAME)
rc.setRenderPath(RENDERDIR)
def SHOOT (XYlimit, frame, obj, name, FRAME):
+ """
+# ---------------------------
+# Function SHOOT
+#
+# IN : XYlimit list of 4 floats, smallest and biggest
+# uvcoords
+# frame cureente frame
+# obj for object location
+# name image name
+# FRAME the last animation's frame
+# OUT: nothing
+# ---------------------------
+ render and save the baked textures picture
+ """
try:
CAM = Blender.Object.Get('UVCAMERA')
Cam = CAM.getData()
SC = Blender.Scene.getCurrent()
-
except:
Cam = Blender.Camera.New()
Cam.name = 'UVCamera'
@@ -172,45 +308,29 @@ def SHOOT (XYlimit, frame, obj, name, FRAME):
Cam.lens = 30
Cam.name = 'UVCamera'
+ Cam.setType('ortho')
+ Cam.setScale(1.0)
+
CAM.setLocation(obj.getLocation())
- CAM.LocX += XYlimit[0] / 2.0
- CAM.LocY += XYlimit[1] / 2.0
- CAM.LocZ += max (XYlimit[0], XYlimit[1])
+ CAM.LocX += XYlimit[2] * 0.500
+ CAM.LocY += XYlimit[3] * 0.500
+ CAM.LocZ += max (XYlimit[2], XYlimit[3])
CAM.setEuler (0.0, 0.0, 0.0)
- try:
- LAMP = Blender.Object.Get('ECLAIRAGE')
- lampe = LAMP.getData()
- SC = Blender.Scene.getCurrent()
-
- except:
- lampe = Blender.Lamp.New()
- lampe.name = 'lumin'
- LAMP, SC = GET_newobject('Lamp','ECLAIRAGE')
- LAMP.link(lampe)
- LAMP.setName('ECLAIRAGE')
-
- LAMP.setLocation(obj.getLocation())
- LAMP.LocX += XYlimit[0] / 2.0
- LAMP.LocY += XYlimit[1] / 2.0
- LAMP.LocZ += max (XYlimit[0], XYlimit[1])
- LAMP.setEuler (0.0, 0.0, 0.0)
-
context = SC.getRenderingContext()
Camold = SC.getCurrentCamera()
SC.setCurrentCamera(CAM)
+
OLDy = context.imageSizeY()
OLDx = context.imageSizeX()
- tres = Draw.PupMenu('TEXTURE OUT RESOLUTION : %t | 256 %x1 | 512 %x2 | 768 %x3 | 1024 %x4')
- if (tres) == 1: res = 256
+ tres = Draw.PupMenu('TEXTURE OUT RESOLUTION : %t | 256 %x1 | 512 %x2 | 768 %x3 | 1024 %x4 | 2048 %x5 ')
+ if (tres) == 1: res = 256
elif (tres) == 2: res = 512
-
elif (tres) == 3: res = 768
-
elif (tres) == 4: res = 1024
-
+ elif (tres) == 5: res = 2048
else: res = 512
context.imageSizeY(res)
@@ -223,10 +343,58 @@ def SHOOT (XYlimit, frame, obj, name, FRAME):
Blender.Set ('curframe', frame)
-def Mesh2UVCoord ():
- if 1:#try:
- MESH3D = Object.GetSelected()[0]
+#-----------------------------------
+# release : 0.2.6 , 2005/05/29 , 00h00
+#-----------------------------------
+def PROV_Shadeless(MATList):
+ """
+# ---------------------------
+# Function PROV_Shadeless
+#
+# IN : MATList a list of the mesh's materials
+# OUT: SHADEDict a dictionnary of the materials' shadeles value
+# ---------------------------
+ """
+ SHADEDict={}
+ for mat in MATList:
+ SHADEDict[mat.name]=mat.mode
+ mat.mode |= Blender.Material.Modes.SHADELESS
+ return SHADEDict
+#-----------------------------------
+# Last release : 0.2.6 , 2005/05/29 , end
+#-----------------------------------
+
+#-----------------------------------
+# release : 0.2.6 , 2005/05/29 , 00h00
+#-----------------------------------
+def REST_Shadeless(SHADEDict):
+ """
+# ---------------------------
+# Function REST_Shadeless
+#
+# IN : SHADEDict a dictionnary of the materials' shadeles value
+# OUT : nothing
+# ---------------------------
+ """
+ for m in SHADEDict.keys():
+ mat=Blender.Material.Get(m)
+ mat.mode=SHADEDict[m]
+#-----------------------------------
+# release : 0.2.6 , 2005/05/29 , end
+#-----------------------------------
+
+def Mesh2UVCoord (LIMIT):
+ """
+# ---------------------------
+# Function Mesh2UVCoord
+#
+# IN : LIMIT integer, create or not a new framing for uvcoords
+# OUT: nothing
+# ---------------------------
+ """
+ try:
+ MESH3D = Object.GetSelected()[0]
if MESH3D.getType() == 'Mesh':
MESH = MESH3D.getData()
@@ -234,12 +402,12 @@ def Mesh2UVCoord ():
NewOBJECT=Blender.Object.Get('UVOBJECT')
CurSCENE=Blender.Scene.getCurrent()
MESH2 = NewOBJECT.getData()
- MESH2.faces=[]
-
+
except:
NewOBJECT, CurSCENE = GET_newobject('Mesh','UVOBJECT')
MESH2 = Blender.NMesh.GetRaw()
+ MESH2.faces=[]
for f in MESH.faces:
f1 = Blender.NMesh.Face()
@@ -258,55 +426,73 @@ def Mesh2UVCoord ():
MESH2.materials = MESH.materials[:]
-
- #NewOBJECT.link(MESH2)
-
NewOBJECT.setLocation (OBJPOS, OBJPOS, 0.0)
NewOBJECT.setEuler (0.0, 0.0, 0.0)
MESH2.removeAllKeys()
+ MESH2.update()
+ MESH2.insertKey (1, 'absolute')
+ MESH2.update()
for f in MESH2.faces:
for v in f.v:
- for n in [0, 1]:
+ for n in [0,1]:
v.co[n] = f.uv[f.v.index(v)][n]
- exec "if v.co[%s] > XYLIMIT[%s]: XYLIMIT[%s] = v.co[%s]" % (n, n, n, n)
-
+ exec "if v.co[%s] > XYLIMIT[%s]: XYLIMIT[%s] = v.co[%s]" % (n, n+2, n+2, n)
+ exec "if v.co[%s] < XYLIMIT[%s]: XYLIMIT[%s] = v.co[%s]" % (n, n, n, n)
v.co[2] = 0.0
- print XYLIMIT
-
- MESH2.update()
- MESH2.insertKey (1, 'absolute')
- MESH2.update()
+ if DEBUG: print XYLIMIT
MESH2.update()
MESH2.insertKey (FRAME, 'absolute')
MESH2.update()
+
imagename = 'uvtext'
- name = "CHANGE IMAGE NAME ? %t | Replace it | No replace | Script help"
+ name = "CHANGE IMAGE NAME ? %t | Replace it | No replacing | Script help"
result = Draw.PupMenu(name)
if result == 1:
imagename = Draw.PupStrInput ('Image Name:', imagename, 32)
if result != 3:
- SHOOT (XYLIMIT, FRAME, NewOBJECT, imagename, FRAME)
+ #-----------------------------------
+ # release : 0.2.6 , 2005/05/29 , 00h00
+ #-----------------------------------
+ SHADEDict=PROV_Shadeless(MESH2.materials)
+ #-----------------------------------
+ # release : 0.2.6 , 2005/05/29 , end
+ #-----------------------------------
+
+ if LIMIT :
+ SHOOT(XYLIMIT, FRAME, NewOBJECT, imagename, FRAME)
+ else :
+ SHOOT([0.0,0.0,1.0,1.0], FRAME, NewOBJECT, imagename, FRAME)
+ #-----------------------------------
+ # release : 0.2.6, 2005/05/29 , 00h00
+ #-----------------------------------
+ REST_Shadeless(SHADEDict)
+ #-----------------------------------
+ # release : 0.2.6 , 2005/05/29 , end
+ #-----------------------------------
+
Blender.Redraw()
+
else:
- Draw.PupMenu("Ready%t|Please check console for instructions")
- print helpmsg
+ Blender.ShowHelp('tex2uvbaker.py')
+ #Draw.PupMenu("Ready%t|Please check console for instructions")
+ if DEBUG: print helpmsg
else:
- name = "Error%t|Active object is not a mesh or has no UV coordinates"
+ name = "ERROR: active object is not a mesh or has no UV coordinates"
result = Draw.PupMenu(name)
print 'problem : no object selected or not mesh'
- #except:
- # name = "Error%t|Active object is not a mesh or has no UV coordinates"
- # result = Draw.PupMenu(name)
+ except:
+ name = "ERROR: active object is not a mesh or has no UV coordinates"
+ result = Draw.PupMenu(name)
print 'problem : no object selected or not mesh'
-Mesh2UVCoord()
+Mesh2UVCoord(LIMIT)