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 / plyimport.py < prev    next >
Encoding:
Python Source  |  2007-01-11  |  5.3 KB  |  150 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: plyimport.py,v 1.4 2005/05/09 14:34:24 mbaas Exp $
  36.  
  37. import os.path
  38. import _core
  39. from cgtypes import *
  40. from geomobject import *
  41. from polyhedron import *
  42. import pluginmanager
  43.  
  44.  
  45. # PLYImporter
  46. class PLYImporter:
  47.  
  48.     _protocols = ["Import"]
  49.  
  50.     # extension
  51.     def extension():
  52.         """Return the file extensions for this format."""
  53.         return ["ply"]
  54.     extension = staticmethod(extension)
  55.  
  56.     # description
  57.     def description(self):
  58.         """Return a short description for the file dialog."""
  59.         return "Polygon (PLY)"
  60.     description = staticmethod(description)
  61.  
  62.     # importFile
  63.     def importFile(self, filename, includevar=None, excludevar=None, invertfaces=False):
  64.         """Import a PLY file.
  65.  
  66.         includevar is a list of primitive variable names that should be
  67.         imported. excludevar is a list of primitive variable names that
  68.         should not be imported.
  69.         invertfaces specifies if the face orientations should be inverted
  70.         or not.
  71.         """
  72.  
  73.         self.includevar = includevar
  74.         self.excludevar = excludevar
  75.  
  76.         imp = _core.PLYReader()
  77.         imp.open(filename)
  78.         # Obtain the header information
  79.         header = imp.readHeader()
  80.  
  81.         # Create the variable declaration tuples for importing the data...
  82.         inttypes = ["int8", "uint8", "int16", "uint16", "int32", "uint32",
  83.                     "char", "uchar", "short", "ushort", "int", "uint"]
  84.         vardecl = []
  85.         vec3vars = {}
  86.         elements, comment, objinfo = header
  87.         for elname, ninstances, properties in elements:
  88.             for propname, type, len_type, val_type in properties:
  89.                 # Vertex indices? (they are handled by default)
  90.                 if elname=="vertex" and propname in ["x", "y", "z"]:
  91.                     continue
  92.                 # Vertex indices? (they are handled by default)
  93.                 if elname=="face" and propname in ["vertex_indices"]:
  94.                     continue
  95.                 # Normals?
  96.                 if propname in ["nx", "ny", "nz"]:
  97.                     if "N" not in vec3vars and self.isVarAccepted("N"):
  98.                         vardecl.append(("N", NORMAL, elname, ("nx", "ny", "nz")))
  99.                         vec3vars["N"] = True
  100.                     continue
  101.  
  102.                 if type=="list":
  103.                     type = val_type
  104.                 if type in inttypes:
  105.                     t = INT
  106.                 else:
  107.                     t = FLOAT
  108.                 if self.isVarAccepted(propname):
  109.                     vardecl.append((propname, t, elname, (propname,)))
  110.  
  111. #        print vardecl
  112.  
  113.         # Create a polyhedron
  114.         name = os.path.splitext(os.path.basename(filename))[0]
  115.         p = Polyhedron(name=name)
  116.         # Set the comment and objinfo
  117.         if comment!="":
  118.             p.geom.newVariable("comment", CONSTANT, STRING)
  119.             s = p.geom.slot("comment")
  120.             s[0] = comment
  121.         if objinfo!="":
  122.             p.geom.newVariable("obj_info", CONSTANT, STRING)
  123.             s = p.geom.slot("obj_info")
  124.             s[0] = objinfo
  125.  
  126.         # Read the model
  127.         imp.read(p.geom, vardecl, invertfaces)
  128.  
  129.         imp.close()
  130.  
  131.     # isVarAccepted
  132.     def isVarAccepted(self, name):
  133.         """Return True if the variable should be imported.
  134.  
  135.         name is the name of the primitive variable (which is not necessarily
  136.         the ply property!).
  137.         """
  138.         if self.includevar!=None:
  139.             if name not in self.includevar:
  140.                 return False
  141.         if self.excludevar!=None:
  142.             if name in self.excludevar:
  143.                 return False
  144.         return True
  145.  
  146. ######################################################################
  147.  
  148. # Register the Importer class as a plugin class
  149. pluginmanager.register(PLYImporter)
  150.