2004-01-28 19:16:50 +00:00
|
|
|
#!BPY
|
|
|
|
|
|
|
|
"""
|
2004-06-11 02:12:37 +00:00
|
|
|
Name: 'VideoScape with Vertex Colors (.obj)...'
|
2004-01-28 19:16:50 +00:00
|
|
|
Blender: 232
|
|
|
|
Group: 'Export'
|
2004-06-11 02:12:37 +00:00
|
|
|
Tooltip: 'Export selected mesh to VideoScape File Format (.obj)'
|
2004-01-28 19:16:50 +00:00
|
|
|
"""
|
|
|
|
|
2004-11-07 16:31:13 +00:00
|
|
|
__author__ = "Anthony D'Agostino (Scorpius)"
|
|
|
|
__url__ = ("blender", "elysiun",
|
|
|
|
"Author's homepage, http://www.redrival.com/scorpius")
|
|
|
|
__version__ = "Part of IOSuite 0.5"
|
|
|
|
|
|
|
|
__bpydoc__ = """\
|
|
|
|
This script exports meshes (including vertex colors) to VideoScape File Format.
|
|
|
|
|
2004-11-30 02:27:46 +00:00
|
|
|
The VideoScape file format is a simple format that is natively supported
|
|
|
|
in Blender. I wrote this module because Blender's internal exporter
|
|
|
|
doesn't export vertex colors correctly. Check the source for a *fast* algorithm for
|
|
|
|
averaging vertex colors.
|
2004-11-07 16:31:13 +00:00
|
|
|
|
2004-11-30 02:27:46 +00:00
|
|
|
Usage:<br>
|
|
|
|
Select meshes to be exported and run this script from "File->Export" menu.
|
|
|
|
|
|
|
|
Supported:<br>
|
|
|
|
Exports meshes only. Hint: use ALT-C to convert non-mesh objects,
|
|
|
|
and CTRL-ALT-A if you have "dupliverts" objects.
|
|
|
|
|
|
|
|
Notes:<br>
|
|
|
|
Before exporting, the mesh must have vertex colors. Here's how to assign them:
|
|
|
|
|
|
|
|
1. Use radiosity!
|
|
|
|
|
|
|
|
2. Set up lights and materials, select a mesh, switch the drawing mode
|
|
|
|
to "textured," press the VKEY.
|
|
|
|
|
|
|
|
3. Press the VKEY and paint manually.
|
|
|
|
|
|
|
|
4. Use a custom script to calculate and apply simple diffuse shading and
|
|
|
|
specular highlights to the vertex colors.
|
|
|
|
|
|
|
|
5. The Videoscape format also allows vertex colors to be specified.
|
2004-11-07 16:31:13 +00:00
|
|
|
"""
|
|
|
|
|
2004-06-10 03:27:46 +00:00
|
|
|
# $Id$
|
|
|
|
#
|
2004-01-28 19:16:50 +00:00
|
|
|
# +---------------------------------------------------------+
|
|
|
|
# | Copyright (c) 2001 Anthony D'Agostino |
|
2004-06-07 01:34:15 +00:00
|
|
|
# | http://www.redrival.com/scorpius |
|
|
|
|
# | scorpius@netzero.com |
|
2004-01-28 19:16:50 +00:00
|
|
|
# | June 5, 2001 |
|
|
|
|
# | Write Videoscape File Format (*.obj NOT WAVEFRONT OBJ) |
|
|
|
|
# +---------------------------------------------------------+
|
|
|
|
|
2005-12-19 17:21:55 +00:00
|
|
|
# ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
#
|
|
|
|
# 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 *****
|
|
|
|
|
2005-03-21 05:26:52 +00:00
|
|
|
import Blender, meshtools
|
2004-01-28 19:16:50 +00:00
|
|
|
#import time
|
|
|
|
|
|
|
|
# =====================================
|
|
|
|
# ====== Write VideoScape Format ======
|
|
|
|
# =====================================
|
|
|
|
def write(filename):
|
|
|
|
#start = time.clock()
|
|
|
|
file = open(filename, "wb")
|
|
|
|
|
|
|
|
objects = Blender.Object.GetSelected()
|
|
|
|
objname = objects[0].name
|
|
|
|
meshname = objects[0].data.name
|
|
|
|
mesh = Blender.NMesh.GetRaw(meshname)
|
|
|
|
obj = Blender.Object.Get(objname)
|
|
|
|
|
2005-03-21 05:26:52 +00:00
|
|
|
if not meshtools.has_vertex_colors(mesh):
|
2004-01-28 19:16:50 +00:00
|
|
|
message = "Please assign vertex colors before exporting.\n"
|
|
|
|
message += objname + " object was not saved."
|
2005-03-21 05:26:52 +00:00
|
|
|
meshtools.print_boxed(message)
|
2004-01-28 19:16:50 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
vcols = average_vertexcolors(mesh)
|
|
|
|
|
|
|
|
# === Write Videoscape Header ===
|
|
|
|
file.write("GOUR\n")
|
|
|
|
file.write("%d\n" % len(mesh.verts))
|
|
|
|
|
|
|
|
# === Write Vertex List & Vertex Colors ===
|
|
|
|
for i in range(len(mesh.verts)):
|
2005-03-21 05:26:52 +00:00
|
|
|
if not i%100 and meshtools.show_progress:
|
2004-01-28 19:16:50 +00:00
|
|
|
Blender.Window.DrawProgressBar(float(i)/len(mesh.verts), "Writing Verts")
|
|
|
|
file.write("% f % f % f 0x" % tuple(mesh.verts[i].co))
|
|
|
|
for j in range(len(vcols[i])):
|
|
|
|
file.write("%02X" % vcols[i][j])
|
|
|
|
file.write("\n")
|
|
|
|
|
|
|
|
# === Write Face List ===
|
|
|
|
for i in range(len(mesh.faces)):
|
2005-03-21 05:26:52 +00:00
|
|
|
if not i%100 and meshtools.show_progress:
|
2004-01-28 19:16:50 +00:00
|
|
|
Blender.Window.DrawProgressBar(float(i)/len(mesh.faces), "Writing Faces")
|
|
|
|
file.write("%d " % len(mesh.faces[i].v)) # numfaceverts
|
|
|
|
for j in range(len(mesh.faces[i].v)):
|
|
|
|
file.write("%d " % mesh.faces[i].v[j].index)
|
|
|
|
file.write("\n")
|
|
|
|
|
|
|
|
Blender.Window.DrawProgressBar(1.0, '') # clear progressbar
|
|
|
|
file.close()
|
|
|
|
#end = time.clock()
|
|
|
|
#seconds = " in %.2f %s" % (end-start, "seconds")
|
|
|
|
message = "Successfully exported " + Blender.sys.basename(filename)# + seconds
|
2005-03-21 05:26:52 +00:00
|
|
|
meshtools.print_boxed(message)
|
2004-01-28 19:16:50 +00:00
|
|
|
|
|
|
|
# ===========================================
|
|
|
|
# === Vector Operations for Vertex Colors ===
|
|
|
|
# ===========================================
|
|
|
|
vcolor_add = lambda u, v: [u[0]+v[0], u[1]+v[1], u[2]+v[2], u[3]+v[3]]
|
|
|
|
vcolor_div = lambda u, s: [u[0]/s, u[1]/s, u[2]/s, u[3]/s]
|
|
|
|
|
|
|
|
# ========================================
|
|
|
|
# === Average All Vertex Colors (Fast) ===
|
|
|
|
# ========================================
|
|
|
|
def average_vertexcolors(mesh, debug=0):
|
|
|
|
vertexcolors = {}
|
|
|
|
for i in range(len(mesh.faces)): # get all vcolors that share this vertex
|
2005-03-21 05:26:52 +00:00
|
|
|
if not i%100 and meshtools.show_progress: Blender.Window.DrawProgressBar(float(i)/len(mesh.verts), "Finding Shared VColors")
|
2004-01-28 19:16:50 +00:00
|
|
|
for j in range(len(mesh.faces[i].v)):
|
|
|
|
index = mesh.faces[i].v[j].index
|
|
|
|
color = mesh.faces[i].col[j]
|
|
|
|
r,g,b,a = color.r, color.g, color.b, color.a
|
|
|
|
vertexcolors.setdefault(index, []).append([r,g,b,a])
|
|
|
|
if debug: print 'before'; vcprint(vertexcolors)
|
|
|
|
|
|
|
|
for i in range(len(vertexcolors)): # average them
|
2005-03-21 05:26:52 +00:00
|
|
|
if not i%100 and meshtools.show_progress: Blender.Window.DrawProgressBar(float(i)/len(mesh.verts), "Averaging Vertex Colors")
|
2004-01-28 19:16:50 +00:00
|
|
|
vcolor = [0,0,0,0] # rgba
|
|
|
|
for j in range(len(vertexcolors[i])):
|
|
|
|
vcolor = vcolor_add(vcolor, vertexcolors[i][j])
|
|
|
|
shared = len(vertexcolors[i])
|
|
|
|
vertexcolors[i] = vcolor_div(vcolor, shared)
|
|
|
|
if debug: print 'after'; vcprint(vertexcolors)
|
|
|
|
return vertexcolors
|
|
|
|
|
|
|
|
# ========================================
|
|
|
|
# === Average all Vertex Colors Slow 1 ===
|
|
|
|
# ========================================
|
|
|
|
def average_vertexcolors_slow_1(mesh, debug=0):
|
|
|
|
vertexcolors = []
|
|
|
|
i = 0
|
|
|
|
for vertex in mesh.verts:
|
2005-03-21 05:26:52 +00:00
|
|
|
if not i%100 and meshtools.show_progress: Blender.Window.DrawProgressBar(float(i)/len(mesh.verts), "Averaging Vertex Colors")
|
2004-01-28 19:16:50 +00:00
|
|
|
i += 1
|
|
|
|
vcolor = [0,0,0,0] # rgba
|
|
|
|
shared = 0
|
|
|
|
for face in mesh.faces:
|
|
|
|
if vertex in face.v:
|
|
|
|
index = face.v.index(vertex)
|
|
|
|
color = face.col[index]
|
|
|
|
r,g,b,a = color.r, color.g, color.b, color.a
|
|
|
|
vcolor = vcolor_add(vcolor, [r,g,b,a])
|
|
|
|
shared += 1
|
|
|
|
if not shared: print "Error, vertex %d is not shared." % i; shared += 1
|
|
|
|
vertexcolors.append(vcolor_div(vcolor, shared))
|
|
|
|
if debug: print 'after'; vcprint(vertexcolors)
|
|
|
|
return vertexcolors
|
|
|
|
|
|
|
|
# ========================================
|
|
|
|
# === Average all Vertex Colors Slow 2 ===
|
|
|
|
# ========================================
|
|
|
|
def average_vertexcolors_slow_2(mesh, debug=0):
|
|
|
|
vertexcolors = []
|
|
|
|
for i in range(len(mesh.verts)):
|
2005-03-21 05:26:52 +00:00
|
|
|
if not i%100 and meshtools.show_progress: Blender.Window.DrawProgressBar(float(i)/len(mesh.verts), "Averaging Vertex Colors")
|
2004-01-28 19:16:50 +00:00
|
|
|
vcolor = [0,0,0,0] # rgba
|
|
|
|
shared = 0
|
|
|
|
for j in range(len(mesh.faces)):
|
|
|
|
if mesh.verts[i] in mesh.faces[j].v:
|
|
|
|
index = mesh.faces[j].v.index(mesh.verts[i])
|
|
|
|
color = mesh.faces[j].col[index]
|
|
|
|
r,g,b,a = color.r, color.g, color.b, color.a
|
|
|
|
vcolor = vcolor_add(vcolor, [r,g,b,a])
|
|
|
|
shared += 1
|
|
|
|
vertexcolors.append(vcolor_div(vcolor, shared))
|
|
|
|
if debug: print 'after'; vcprint(vertexcolors)
|
|
|
|
return vertexcolors
|
|
|
|
|
|
|
|
# ========================================
|
|
|
|
# === Average all Vertex Colors Slow 3 ===
|
|
|
|
# ========================================
|
|
|
|
def average_vertexcolors_slow_3(mesh, debug=0):
|
|
|
|
vertexcolors = []
|
|
|
|
for i in range(len(mesh.verts)):
|
2005-03-21 05:26:52 +00:00
|
|
|
if not i%100 and meshtools.show_progress: Blender.Window.DrawProgressBar(float(i)/len(mesh.verts), "Averaging Vertex Colors")
|
2004-01-28 19:16:50 +00:00
|
|
|
vcolor = [0,0,0,0] # rgba
|
|
|
|
shared = 0
|
|
|
|
for j in range(len(mesh.faces)):
|
|
|
|
if len(mesh.faces[j].v) == 4:
|
|
|
|
v1,v2,v3,v4 = mesh.faces[j].v
|
|
|
|
faceverts = v1.index, v2.index, v3.index, v4.index
|
|
|
|
else:
|
|
|
|
v1,v2,v3 = mesh.faces[j].v
|
|
|
|
faceverts = v1.index, v2.index, v3.index
|
|
|
|
|
|
|
|
if i in faceverts:
|
|
|
|
index = mesh.faces[j].v.index(mesh.verts[i])
|
|
|
|
color = mesh.faces[j].col[index]
|
|
|
|
r,g,b,a = color.r, color.g, color.b, color.a
|
|
|
|
vcolor = vcolor_add(vcolor, [r,g,b,a])
|
|
|
|
shared += 1
|
|
|
|
vertexcolors.append(vcolor_div(vcolor, shared))
|
|
|
|
if debug: print 'after'; vcprint(vertexcolors)
|
|
|
|
return vertexcolors
|
|
|
|
|
|
|
|
def fs_callback(filename):
|
|
|
|
if filename.find('.obj', -4) <= 0: filename += '.VIDEOSCAPE.obj'
|
|
|
|
write(filename)
|
|
|
|
|
2004-06-11 02:12:37 +00:00
|
|
|
Blender.Window.FileSelector(fs_callback, "Export VideoScape")
|
2004-01-28 19:16:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
# filename = "VIDEOSCAPE_" + objname + ".obj"
|
|
|
|
# filename = 'nul'
|
|
|
|
# file = open(filename, "wb")
|
|
|
|
# debug = 0
|
|
|
|
# time_functions = 1
|
|
|
|
# time_loop = 0
|
|
|
|
#
|
|
|
|
# if time_functions:
|
|
|
|
# funcs = [ average_vertexcolors,
|
|
|
|
# average_vertexcolors_slow_1,
|
|
|
|
# average_vertexcolors_slow_2,
|
|
|
|
# average_vertexcolors_slow_3 ]
|
|
|
|
#
|
|
|
|
# print
|
|
|
|
# for func in funcs:
|
|
|
|
# start = time.clock()
|
|
|
|
# vcols = func(mesh, debug)
|
|
|
|
# end = time.clock()
|
|
|
|
# seconds = "in %.2f %s" % (end-start, "seconds")
|
|
|
|
# print func.__name__, "finished in", seconds
|
|
|
|
#
|
|
|
|
# elif time_loop:
|
|
|
|
# total = 0
|
|
|
|
# loops = 6
|
|
|
|
# for i in range(loops):
|
|
|
|
# start = time.clock()
|
|
|
|
# vcols = average_vertexcolors(mesh, debug)
|
|
|
|
# end = time.clock()
|
|
|
|
# total += (end-start)
|
|
|
|
# print "Total: %5.2f Avg: %.2f " % (total, total/loops)
|
|
|
|
# else:
|
|
|
|
# start = time.clock()
|
|
|
|
# vcols = average_vertexcolors(mesh, debug)
|
|
|
|
|
|
|
|
# # =====================================
|
|
|
|
# # === Print Vertex Colors for Debug ===
|
|
|
|
# # =====================================
|
|
|
|
# def vcprint(data):
|
|
|
|
# print type(data)
|
|
|
|
# for i in range(len(data)):
|
|
|
|
# print "%2d" % i,
|
|
|
|
# for j in range(len(data[i])):
|
|
|
|
# try:
|
|
|
|
# print "[%3d %3d %3d %3d]" % tuple(data[i][j]), # before
|
|
|
|
# except:
|
|
|
|
# print "[%3d]" % data[i][j], # after
|
|
|
|
# print
|
|
|
|
# print
|
|
|
|
#
|