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 / freecamera.py < prev    next >
Encoding:
Python Source  |  2007-01-11  |  4.5 KB  |  146 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: freecamera.py,v 1.6 2005/05/12 12:58:29 mbaas Exp $
  36.  
  37. ## \file freecamera.py
  38. ## Contains the FreeCamera class.
  39.  
  40. """This module contains the FreeCamera class."""
  41.  
  42. from Interfaces import *
  43. import protocols
  44. import slots
  45. from cgtypes import *
  46. from math import pi
  47. from worldobject import WorldObject
  48. from scene import getScene
  49. import camerabase
  50. import sys
  51. import _core
  52.        
  53.  
  54. # FreeCamera
  55. class FreeCamera(camerabase.CameraBase):
  56.     """A camera object that is free to move and rotate.
  57.     """
  58.  
  59.     protocols.advise(instancesProvide=[ISceneItem, ICamera])
  60.  
  61.     def __init__(self,
  62.                  name = "FreeCamera",
  63.                  target = None,
  64.                  fov = 45.0,
  65.                  fstop = 0,
  66.                  focallength = 0,
  67.                  **params):
  68.         
  69.         camerabase.CameraBase.__init__(self, name=name, **params)
  70.  
  71.         # FOV
  72.         self.fov_slot = slots.DoubleSlot(fov)
  73.         self.addSlot("fov", self.fov_slot)
  74.  
  75.         # fstop
  76.         self.fstop_slot = slots.DoubleSlot(fstop)
  77.         self.addSlot("fstop", self.fstop_slot)
  78.         
  79.         # focal length
  80.         self.focallength_slot = slots.DoubleSlot(focallength)
  81.         self.addSlot("focallength", self.focallength_slot)
  82.  
  83.         # Initial targeting
  84.         if target!=None:
  85.             up = getScene().up
  86.             self.transform = mat4().lookAt(self.pos, vec3(target), up)
  87.  
  88.  
  89.     def protocols(self):
  90.         return [ISceneItem, IComponent, IWorldObject, ICamera]
  91.  
  92.     def destroy(self):
  93. #        self.fov_slot.setController(None)
  94. #        self.target_slot.setController(None)
  95. #        self._lookat.pos_slot.setController(None)
  96. #        self._lookat.target_slot.setController(None)
  97. #        self.transform_slot.setController(None)
  98. #        self.pos_slot.setController(None)
  99. #        self.rot_slot.setController(None)
  100. #        self.scale_slot.setController(None)
  101.         del self.fov_slot
  102.         del self.fstop_slot
  103.         del self.focallength_slot
  104.  
  105.     # projection
  106.     def projection(self, width, height, near, far):
  107.         return mat4().perspective(self.fov, float(width)/height, near, far)
  108.  
  109.     # viewTransformation
  110.     def viewTransformation(self):
  111.         return self.worldtransform.inverse()
  112.  
  113.  
  114.     ## protected:
  115.  
  116.     exec slots.slotPropertyCode("fstop")
  117.     exec slots.slotPropertyCode("focallength")
  118.  
  119.     # "fov" property...
  120.     
  121.     def _getFOV(self):
  122.         """Return the current field of view.
  123.  
  124.         This method is used for retrieving the \a fov property.
  125.  
  126.         \return Field of view in angles (\c float)
  127.         """
  128.         return self.fov_slot.getValue()
  129.  
  130.     def _setFOV(self, fov):
  131.         """Set the field of view.
  132.  
  133.         This method is used for setting the \a fov property.
  134.  
  135.         \param fov (\c float) Field of view in angles (0-180)
  136.         """
  137.         fov = float(fov)
  138.         if fov<0:
  139.             fov = 0.0
  140.         if fov>180:
  141.             fov = 180.0
  142.         self.fov_slot.setValue(fov)
  143.  
  144.     fov = property(_getFOV, _setFOV, None, "Field of view (in angles)")
  145.         
  146.