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 / valuetable.py < prev    next >
Encoding:
Python Source  |  2007-01-11  |  5.7 KB  |  183 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: valuetable.py,v 1.1.1.1 2004/12/12 14:31:30 mbaas Exp $
  36.  
  37. ## \file valuetable.py
  38. ## Contains the ValueTable component.
  39.  
  40. from scene import getScene
  41. import component
  42. import bisect
  43. from cgtypes import *
  44. from slots import *
  45.  
  46. # TableEntry
  47. class _TableEntry:
  48.     """Stores a time/value pair for the ValueTable component.
  49.  
  50.     This is an internal class.
  51.     """
  52.     def __init__(self, t, v):
  53.         self.t = t
  54.         self.v = v
  55.  
  56.     def __str__(self):
  57.         return "%f : %s"%(self.t, self.v)
  58.  
  59.     __repr__ = __str__
  60.  
  61.     def __cmp__(self, other):
  62.         if other==None:
  63.             return 1
  64.         else:
  65.             if self.t<other.t:
  66.                 return -1
  67.             elif self.t>other.t:
  68.                 return 1
  69.             else:
  70.                 return 0
  71.             
  72. # ValueTable
  73. class ValueTable(component.Component):
  74.     """ValueTable component.
  75.  
  76.     This class stores time/value pairs and has an output slot that
  77.     holds the appropriate value for the current time. The type of
  78.     the value can be specified in the constructor. The name of the
  79.     output slot is always \c output_slot.
  80.     """
  81.     
  82.     def __init__(self,
  83.                  name = "ValueTable",
  84.                  type = "vec3",
  85.                  values = [],
  86.                  modulo = None,
  87.                  tscale = 1.0,
  88.                  auto_insert = True):
  89.         """Constructor.
  90.  
  91.         \param name (\c str) Component name
  92.         \param type (\c str) Value type
  93.         \param values A list of tuples (time, value).
  94.         \param modulo (\c float) Loop duration (None = no loop)
  95.         \param tscale (\c float) Scaling factor for the time. A value of less than 1.0 makes the animation slower.
  96.         """
  97.         
  98.         component.Component.__init__(self, name=name, auto_insert=auto_insert)
  99.  
  100.         # Value list. Contains a sorted list of TableEntry objects
  101.         self.values = []
  102.         # Time modulo value (or None)
  103.         self.modulo = modulo
  104.         # Scale factor for the time
  105.         self.tscale = 1.0
  106.         # Type of the value slot
  107.         self.type = type
  108.         
  109.         self.time_slot = DoubleSlot()
  110.         self.addSlot("time", self.time_slot)
  111.         typ = type.lower()
  112.         exec "self.output_slot = Procedural%sSlot(self.computeValue)"%typ.capitalize()
  113.         self.addSlot("output", self.output_slot)
  114.         pytypes = {"double":"float"}
  115.         exec "self.default_value = %s()"%pytypes.get(typ, typ)
  116.  
  117.         self.time_slot.addDependent(self.output_slot)
  118.         getScene().timer().time_slot.connect(self.time_slot)
  119.  
  120.         for t,v in values:
  121.             self.add(t,v)
  122.  
  123.     def __iter__(self):
  124.         return self.iterValues()
  125.  
  126.     def __call__(self, time):
  127.         if len(self.values)==0:
  128.             return self.default_value
  129.  
  130.         time *= self.tscale
  131.         if self.modulo!=None:
  132.             time = time % self.modulo
  133.  
  134.         idx = bisect.bisect_left(self.values, _TableEntry(time,self.default_value))
  135.         if idx>=len(self.values):
  136.             idx = len(self.values)-1
  137.         e = self.values[idx]
  138.         if time<e.t:
  139.             if idx>0:
  140.                 return self.values[idx-1].v
  141.         return e.v       
  142.  
  143.     def __getitem__(self, time):
  144.         return self(time)
  145.  
  146.     def __setitem__(self, time, value):
  147.         self.add(time, value)
  148.  
  149.     # iterValues
  150.     def iterValues(self):
  151.         """Iterate over all time/value pairs.
  152.         """
  153.         for e in self.values:
  154.             yield e.t, e.v
  155.  
  156.     # add
  157.     def add(self, t, v):
  158.         """Add a value to the table.
  159.  
  160.         \param t (\c float) Time
  161.         \param v Value
  162.         """
  163.         entry = _TableEntry(t, v)
  164.         idx = bisect.bisect_left(self.values, entry)
  165.         # Check if times are identical and the previous value has
  166.         # to be replaced
  167.         if idx<len(self.values):
  168.             if self.values[idx].t==t:
  169.                 # Replace the value
  170.                 self.values[idx] = entry
  171.                 return
  172.  
  173.         # Insert the value
  174.         self.values.insert(idx, entry)
  175.  
  176.     ## protected:
  177.         
  178.     def computeValue(self):
  179.         """Computes a new output value."""
  180.         return self(self.time_slot.getValue())
  181.  
  182.     exec slotPropertyCode("output")
  183.