home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Multimedia / k3d-setup-0.7.11.0.exe / lib / site-packages / cgkit / offexport.py < prev    next >
Encoding:
Python Source  |  2007-01-11  |  9.1 KB  |  279 lines

  1. # ***** BEGIN LICENSE BLOCK *****
  2. # Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3. #
  4. # The contents of this file are subject to the Mozilla Public License Version
  5. # 1.1 (the "License"); you may not use this file except in compliance with
  6. # the License. You may obtain a copy of the License at
  7. # http://www.mozilla.org/MPL/
  8. #
  9. # Software distributed under the License is distributed on an "AS IS" basis,
  10. # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11. # for the specific language governing rights and limitations under the
  12. # License.
  13. #
  14. # The Original Code is the Python Computer Graphics Kit.
  15. #
  16. # The Initial Developer of the Original Code is Matthias Baas.
  17. # Portions created by the Initial Developer are Copyright (C) 2004
  18. # the Initial Developer. All Rights Reserved.
  19. #
  20. # Contributor(s):
  21. #
  22. # Alternatively, the contents of this file may be used under the terms of
  23. # either the GNU General Public License Version 2 or later (the "GPL"), or
  24. # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  25. # in which case the provisions of the GPL or the LGPL are applicable instead
  26. # of those above. If you wish to allow use of your version of this file only
  27. # under the terms of either the GPL or the LGPL, and not to allow others to
  28. # use your version of this file under the terms of the MPL, indicate your
  29. # decision by deleting the provisions above and replace them with the notice
  30. # and other provisions required by the GPL or the LGPL. If you do not delete
  31. # the provisions above, a recipient may use your version of this file under
  32. # the terms of any one of the MPL, the GPL or the LGPL.
  33. #
  34. # ***** END LICENSE BLOCK *****
  35. # $Id: offexport.py,v 1.2 2005/04/14 17:22:24 mbaas Exp $
  36.  
  37. import os.path, sys
  38. from cgtypes import *
  39. from scene import getScene
  40. from geomobject import *
  41. from trimeshgeom import TriMeshGeom
  42. from polyhedrongeom import PolyhedronGeom
  43. import pluginmanager
  44. import cmds
  45.  
  46. # OffExporter
  47. class OffExporter:
  48.  
  49.     _protocols = ["Export"]
  50.  
  51.     # extension
  52.     def extension():
  53.         """Return the file extensions for this format."""
  54.         return ["off"]
  55.     extension = staticmethod(extension)
  56.  
  57.     # description
  58.     def description(self):
  59.         """Return a short description for the file dialog."""
  60.         return "Geomview OFF file"
  61.     description = staticmethod(description)
  62.  
  63.     # exportFile
  64.     def exportFile(self, filename, root=None):
  65.         """Export an OFF file.
  66.  
  67.         root is the root of the subtree that should be exported.
  68.         """
  69.         self.N_flag = False
  70.         self.C_flag = False
  71.         self.ST_flag = False
  72.  
  73.         # Create a list of objects that should be exported
  74.         scene = getScene()
  75.         self.objects = []
  76.         root = cmds.worldObject(root)
  77.         if root!=None:
  78.             self.objects.append(root)
  79.         self.objects += list(scene.walkWorld(root))
  80.  
  81.         # Initialize variable flags and return number of verts and faces
  82.         numverts, numfaces = self.getNumVertsNFaces()
  83.  
  84.         self.fhandle = file(filename, "w")
  85.         # Write header line
  86.         kw = ""
  87.         if self.ST_flag:
  88.             kw += "ST"
  89.         if self.C_flag:
  90.             kw += "C"
  91.         if self.N_flag:
  92.             kw += "N"
  93.         kw += "OFF"
  94.         print >>self.fhandle, kw
  95.  
  96.         # Write number of vertices and faces
  97.         print >>self.fhandle, "%d %d 0"%(numverts, numfaces)
  98.  
  99.         # Write vertices...
  100.         self.writeVertices()
  101.  
  102.         # Write faces
  103.         self.writeFaces()
  104.  
  105.         self.fhandle.close()
  106.  
  107.     # writeFaces
  108.     def writeFaces(self):
  109.         """Write the faces.
  110.         """
  111.         for obj in self.objects:
  112.             geom = self.convertObject(obj)
  113.             if geom==None:
  114.                 continue
  115.  
  116.             # Check for primitive variables...
  117.             Cs = None
  118.             info = geom.findVariable("Cs")
  119.             if info!=None and info[1]==UNIFORM and info[2]==COLOR and info[3]==1:
  120.                 Cs = geom.slot("Cs")
  121.             
  122.             vo = self.voffsets[obj]
  123.             if isinstance(geom, TriMeshGeom):
  124.                 for i in range(geom.faces.size()):
  125.                     f = geom.faces[i]
  126.                     s = "3 %d %d %d"%(f[0]+vo, f[1]+vo, f[2]+vo)
  127.                     if Cs!=None:
  128.                         s += "  %f %f %f"%tuple(Cs[i])
  129.                     print >>self.fhandle, s
  130.             else:
  131.                 for i in range(geom.getNumPolys()):
  132.                     poly = geom.getPoly(i)[0]
  133.                     nv = len(poly)
  134.                     loop = map(lambda n: n+vo, poly)
  135.                     s = ("%d "%nv)+(nv*"% d")%tuple(loop)
  136.                     if Cs!=None:
  137.                         s += "  %f %f %f"%tuple(Cs[i])
  138.                     print >>self.fhandle, s
  139.                     
  140.  
  141.     # writeVertices
  142.     def writeVertices(self):
  143.         """Write the vertices and corresponding varying primitive variables.
  144.  
  145.         The method initializes the voffsets dictionary that contains
  146.         the vertex offsets for each object.
  147.         """
  148.         voffset = 0
  149.         voffsets = {}
  150.         for obj in self.objects:
  151.             geom = self.convertObject(obj)
  152.             if geom==None:
  153.                 continue
  154.  
  155.             voffsets[obj] = voffset
  156.  
  157.             # Check for primitive variables...
  158.             N = None
  159.             info = geom.findVariable("N")
  160.             if info!=None and info[1]==VARYING and info[2]==NORMAL and info[3]==1:
  161.                 N = geom.slot("N")
  162.                 
  163.             Cs = None
  164.             info = geom.findVariable("Cs")
  165.             if info!=None and info[1]==VARYING and info[2]==COLOR and info[3]==1:
  166.                 Cs = geom.slot("Cs")
  167.  
  168.             st = None
  169.             info = geom.findVariable("st")
  170.             if info!=None and info[1]==VARYING and info[2]==FLOAT and info[3]==2:
  171.                 st = geom.slot("st")
  172.  
  173.             # Get the world transform to adjust the vertices...
  174.             WT = obj.worldtransform
  175.             WT3 = WT.getMat3()
  176.  
  177.             # Iterate over all vertices and write the stuff...
  178.             for i in range(geom.verts.size()):
  179.                 v = WT*geom.verts[i]
  180.                 s = "%f %f %f"%tuple(v)
  181.                 if self.N_flag:
  182.                     if N!=None:
  183.                         norm = WT3*N[i]
  184.                         try:
  185.                             norm = norm.normalize()
  186.                         except:
  187.                             pass
  188.                         s += "  %f %f %f"%tuple(norm)
  189.                     else:
  190.                         s += "  0 0 0"
  191.                 if self.C_flag:
  192.                     if Cs!=None:
  193.                         s += "  %f %f %f"%tuple(Cs[i])
  194.                     else:
  195.                         s += "  0.666 0.666 0.666"
  196.                 if self.ST_flag:
  197.                     if st!=None:
  198.                         s += "  %f %f"%st[i]
  199.                     else:
  200.                         s += "  0.0 0.0"
  201.                 
  202.                 print >>self.fhandle, s
  203.  
  204.             voffset += geom.verts.size()
  205.             
  206.         self.voffsets = voffsets
  207.  
  208.     # getNumVertsNFaces
  209.     def getNumVertsNFaces(self):
  210.         """Return the total number of vertices and faces.
  211.  
  212.         The method also sets the variable flags to True if there is
  213.         an object that has those variables set.
  214.         """
  215.         numverts = 0
  216.         numfaces = 0
  217.         for obj in self.objects:
  218.             geom = self.convertObject(obj)
  219.             if geom!=None:
  220.                 numverts += geom.verts.size()
  221.                 if isinstance(geom, TriMeshGeom):
  222.                     numfaces += geom.faces.size()
  223.                 else:
  224.                     numfaces += geom.getNumPolys()
  225.  
  226.                 info = geom.findVariable("N")
  227.                 if info!=None and info[1]==VARYING and info[2]==NORMAL and info[3]==1:
  228.                     self.N_flag = True
  229.                 info = geom.findVariable("Cs")
  230.                 if info!=None and info[1]==VARYING and info[2]==COLOR and info[3]==1:
  231.                     self.C_flag = True
  232.                 info = geom.findVariable("st")
  233.                 if info!=None and info[1]==VARYING and info[2]==FLOAT and info[3]==2:
  234.                     self.ST_flag = True
  235.                     
  236.         return numverts, numfaces
  237.  
  238.  
  239.     # convertObject
  240.     def convertObject(self, obj):
  241.         """Converts an object into a polyhedron or trimesh if necessary.
  242.  
  243.         The return value is a GeomObject (TriMeshGeom or PolyhedronGeom)
  244.         or None.
  245.         """
  246.         geom = obj.geom
  247.         if isinstance(geom, TriMeshGeom):
  248.             return geom
  249.         
  250.         if not isinstance(geom, PolyhedronGeom):
  251.             # Try to convert into a polyhedron...
  252.             pg = PolyhedronGeom()
  253.             try:
  254.                 geom.convert(pg)
  255.                 geom = pg
  256.             except:
  257.                 pass
  258.  
  259.         # Is it a PolyhedronGeom that has no polys with holes? then return
  260.         # the geom...
  261.         if isinstance(geom, PolyhedronGeom) and not geom.hasPolysWithHoles():
  262.             return geom
  263.  
  264.         # Try to convert into a triangle mesh...
  265.         tm = TriMeshGeom()
  266.         try:
  267.             geom.convert(tm)
  268.             return tm
  269.         except:
  270.             pass
  271.  
  272.         return None
  273.         
  274.  
  275. ######################################################################
  276.  
  277. # Register the exporter class as a plugin class
  278. pluginmanager.register(OffExporter)
  279.