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 / plyexport.py < prev    next >
Encoding:
Python Source  |  2007-01-11  |  5.4 KB  |  157 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: plyexport.py,v 1.2 2005/05/08 22:17:42 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. import _core
  46.  
  47. # PLYExporter
  48. class PLYExporter:
  49.  
  50.     _protocols = ["Export"]
  51.  
  52.     # extension
  53.     def extension():
  54.         """Return the file extensions for this format."""
  55.         return ["ply"]
  56.     extension = staticmethod(extension)
  57.  
  58.     # description
  59.     def description(self):
  60.         """Return a short description for the file dialog."""
  61.         return "Polygon (PLY)"
  62.     description = staticmethod(description)
  63.  
  64.     # exportFile
  65.     def exportFile(self, filename, object=None, mode="ascii"):
  66.         """Export a PLY file.
  67.  
  68.         object is the object to export. If it is None, it will be taken
  69.         from the scene. If there is more than one object in the scene,
  70.         an exception is thrown.
  71.         mode specifies whether the output file will be ascii or binary.
  72.         The values can be "ascii", "little_endian", "big_endian".
  73.         """
  74.  
  75.         if object==None:
  76.             # Get a list of all objects that have a geom
  77.             objs = list(getScene().walkWorld())
  78.             objs = filter(lambda obj: obj.geom!=None, objs)
  79.             if len(objs)==0:
  80.                 raise ValueError, "No object to export."
  81.             elif len(objs)>1:
  82.                 raise ValueError, "Only a single object can be exported."
  83.             object = objs[0]
  84.             
  85.         object = cmds.worldObject(object)
  86.         if object.geom==None:
  87.             raise ValueError, "No geometry attached to object %s"%object.name
  88.         geom = self.convertObject(object)
  89.         if geom==None:
  90.             raise ValueError, "Cannot export geometry of type %s as a PLY file"%(object.geom.__class__.__name__)
  91.  
  92.         # Open the file...
  93.         ply = _core.PLYWriter()
  94.         try:
  95.             mode = eval ("_core.PlyStorageMode.%s"%mode.upper())
  96.         except:
  97.             raise ValueError, "Invalid mode: %s"%mode
  98.         ply.create(filename, mode)
  99.  
  100.         # Set comment
  101.         var = geom.findVariable("comment")
  102.         if var!=None and var[1]==CONSTANT and var[2]==STRING and var[3]==1:
  103.             slot = geom.slot("comment")
  104.             for s in slot[0].split("\n"):
  105.                 ply.addComment(s)
  106.         # Set obj_info
  107.         var = geom.findVariable("obj_info")
  108.         if var!=None and var[1]==CONSTANT and var[2]==STRING and var[3]==1:
  109.             slot = geom.slot("obj_info")
  110.             for s in slot[0].split("\n"):
  111.                 ply.addObjInfo(s)
  112.  
  113.         # Write the model
  114.         ply.write(geom, object.worldtransform)
  115.         ply.close()
  116.  
  117.     # convertObject
  118.     def convertObject(self, obj):
  119.         """Converts an object into a polyhedron or trimesh if necessary.
  120.  
  121.         The return value is a GeomObject (TriMeshGeom or PolyhedronGeom)
  122.         or None.
  123.         """
  124.         geom = obj.geom
  125.         if isinstance(geom, TriMeshGeom):
  126.             return geom
  127.         
  128.         if not isinstance(geom, PolyhedronGeom):
  129.             # Try to convert into a polyhedron...
  130.             pg = PolyhedronGeom()
  131.             try:
  132.                 geom.convert(pg)
  133.                 geom = pg
  134.             except:
  135.                 pass
  136.  
  137.         # Is it a PolyhedronGeom that has no polys with holes? then return
  138.         # the geom...
  139.         if isinstance(geom, PolyhedronGeom) and not geom.hasPolysWithHoles():
  140.             return geom
  141.  
  142.         # Try to convert into a triangle mesh...
  143.         tm = TriMeshGeom()
  144.         try:
  145.             geom.convert(tm)
  146.             return tm
  147.         except:
  148.             pass
  149.  
  150.         return None
  151.         
  152.  
  153. ######################################################################
  154.  
  155. # Register the exporter class as a plugin class
  156. pluginmanager.register(PLYExporter)
  157.