Java Doc for WalkViewerBehavior.java in  » 6.0-JDK-Modules » java-3d » com » db » behaviors » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » java 3d » com.db.behaviors 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   javax.media.j3d.SceneGraphObject
      javax.media.j3d.Node
         javax.media.j3d.Leaf
            javax.media.j3d.Behavior
               com.db.behaviors.ViewerBehavior
                  com.db.behaviors.WalkViewerBehavior

WalkViewerBehavior
public class WalkViewerBehavior extends ViewerBehavior (Code)
WalkViewerBehavior is a utility class that creates a "walking style" navigation symantic. The behavior wakes up on mouse button presses, releases, and mouse movements and generates transforms in a "walk style" that enables the user to walk through a scene, translating and turning about as if they are within the scene. Such a walk style is similar to the "Walk" navigation type used by VRML browsers.

The behavior maps mouse drags to different transforms depending upon the mouse button held down:

Button 1 (left)
Horizontal movement --> Y-axis rotation
Vertical movement --> Z-axis translation
Button 2 (middle)
Horizontal movement --> Y-axis rotation
Vertical movement --> X-axis rotation
Button 3 (right)
Horizontal movement --> X-axis translation
Vertical movement --> Y-axis translation
To support systems with 2 or 1 mouse buttons, the following alternate mappings are supported while dragging with any mouse button held down and zero or more keyboard modifiers held down:
  • No modifiers = Button 1
  • ALT = Button 2
  • Meta = Button 3
  • Control = Button 3
The behavior automatically modifies a TransformGroup provided to the constructor. The TransformGroup's transform can be set at any time by the application or other behaviors to cause the walk rotation and translation to be reset.

While a mouse button is down, the behavior automatically changes the cursor in a given parent AWT Component. If no parent Component is given, no cursor changes are attempted.
version:
   1.0, 98/04/16
author:
   David R. Nadeau, San Diego Supercomputer Center



Field Summary
final public static  doubleDEFAULT_YROTATION_ANIMATION_FACTOR
     Default Rotation and translation scaling factors for animated movements (Button 1 press).
final public static  doubleDEFAULT_ZTRANSLATION_ANIMATION_FACTOR
    
final protected static  intDELTAX_DEADZONE
    
final protected static  intDELTAY_DEADZONE
    
protected  doubleYRotationAnimationFactor
    
protected  doubleZTranslationAnimationFactor
    
protected  intinitialX
    
protected  intinitialY
    
protected  intpreviousX
    
protected  intpreviousY
    
protected  CursorsavedCursor
    

Constructor Summary
public  WalkViewerBehavior()
     Constructs a new walk behavior that converts mouse actions into rotations and translations.
public  WalkViewerBehavior(Component parent)
     Constructs a new walk behavior that converts mouse actions into rotations and translations.
public  WalkViewerBehavior(TransformGroup transformGroup)
     Constructs a new walk behavior that converts mouse actions into rotations and translations.
public  WalkViewerBehavior(TransformGroup transformGroup, Component parent)
     Constructs a new walk behavior that converts mouse actions into rotations and translations.

Method Summary
public  doublegetYRotationAnimationFactor()
     Gets the current Y animation rotation scaling factor for Y-axis rotations.
public  doublegetZTranslationAnimationFactor()
     Gets the current Z animation translation scaling factor for Z-axis translations.
public  voidonButton1(MouseEvent mev)
     Responds to a button1 event (press, release, or drag).
public  voidonButton2(MouseEvent mev)
     Responds to a button2 event (press, release, or drag).
public  voidonButton3(MouseEvent mev)
     Responds to a button3 event (press, release, or drag).
public  voidonElapsedFrames(WakeupOnElapsedFrames timeEvent)
     Respond to an elapsed frames event (assuming subclass has set up a wakeup criterion for it).
public  voidsetYRotationAnimationFactor(double factor)
     Sets the Y rotation animation scaling factor for Y-axis rotations.
public  voidsetZTranslationAnimationFactor(double factor)
     Sets the Z animation translation scaling factor for Z-axis translations.

Field Detail
DEFAULT_YROTATION_ANIMATION_FACTOR
final public static double DEFAULT_YROTATION_ANIMATION_FACTOR(Code)
Default Rotation and translation scaling factors for animated movements (Button 1 press).



DEFAULT_ZTRANSLATION_ANIMATION_FACTOR
final public static double DEFAULT_ZTRANSLATION_ANIMATION_FACTOR(Code)



DELTAX_DEADZONE
final protected static int DELTAX_DEADZONE(Code)



DELTAY_DEADZONE
final protected static int DELTAY_DEADZONE(Code)



YRotationAnimationFactor
protected double YRotationAnimationFactor(Code)



ZTranslationAnimationFactor
protected double ZTranslationAnimationFactor(Code)



initialX
protected int initialX(Code)



initialY
protected int initialY(Code)



previousX
protected int previousX(Code)



previousY
protected int previousY(Code)



savedCursor
protected Cursor savedCursor(Code)




Constructor Detail
WalkViewerBehavior
public WalkViewerBehavior()(Code)
Constructs a new walk behavior that converts mouse actions into rotations and translations. Rotations and translations are written into a TransformGroup that must be set using the setTransformGroup method. The cursor will be changed during mouse actions if the parent frame is set using the setParentComponent method. a new WalkViewerBehavior that needs itsTransformGroup and parent Component set



WalkViewerBehavior
public WalkViewerBehavior(Component parent)(Code)
Constructs a new walk behavior that converts mouse actions into rotations and translations. Rotations and translations are written into a TransformGroup that must be set using the setTransformGroup method. The cursor will be changed within the given AWT parent Component during mouse drags.
Parameters:
  parent - a parent AWT Component within which the cursorwill change during mouse drags a new WalkViewerBehavior that needs itsTransformGroup and parent Component set



WalkViewerBehavior
public WalkViewerBehavior(TransformGroup transformGroup)(Code)
Constructs a new walk behavior that converts mouse actions into rotations and translations. Rotations and translations are written into the given TransformGroup. The cursor will be changed during mouse actions if the parent frame is set using the setParentComponent method.
Parameters:
  transformGroup - a TransformGroup whos transform isread and written by the behavior a new WalkViewerBehavior that needs itsTransformGroup and parent Component set



WalkViewerBehavior
public WalkViewerBehavior(TransformGroup transformGroup, Component parent)(Code)
Constructs a new walk behavior that converts mouse actions into rotations and translations. Rotations and translations are written into the given TransformGroup. The cursor will be changed within the given AWT parent Component during mouse drags.
Parameters:
  transformGroup - a TransformGroup whos transform isread and written by the behavior
Parameters:
  parent - a parent AWT Component within which the cursorwill change during mouse drags a new WalkViewerBehavior that needs itsTransformGroup and parent Component set




Method Detail
getYRotationAnimationFactor
public double getYRotationAnimationFactor()(Code)
Gets the current Y animation rotation scaling factor for Y-axis rotations. the double Y rotation scaling factor



getZTranslationAnimationFactor
public double getZTranslationAnimationFactor()(Code)
Gets the current Z animation translation scaling factor for Z-axis translations. the double Z translation scaling factor



onButton1
public void onButton1(MouseEvent mev)(Code)
Responds to a button1 event (press, release, or drag). On a press, the method adds a wakeup criterion to the behavior's set, callling for the behavior to be awoken on each frame. On a button prelease, this criterion is removed from the set.
Parameters:
  mouseEvent - the MouseEvent to respond to



onButton2
public void onButton2(MouseEvent mev)(Code)
Responds to a button2 event (press, release, or drag). On a press, the method records the initial cursor location. On a drag, the difference between the current and previous cursor location provides a delta that controls the amount by which to rotate in X and Y.
Parameters:
  mouseEvent - the MouseEvent to respond to



onButton3
public void onButton3(MouseEvent mev)(Code)
Responds to a button3 event (press, release, or drag). On a drag, the difference between the current and previous cursor location provides a delta that controls the amount by which to translate in X and Y.
Parameters:
  mouseEvent - the MouseEvent to respond to



onElapsedFrames
public void onElapsedFrames(WakeupOnElapsedFrames timeEvent)(Code)
Respond to an elapsed frames event (assuming subclass has set up a wakeup criterion for it).
Parameters:
  time - A WakeupOnElapsedFrames criterion to respond to.



setYRotationAnimationFactor
public void setYRotationAnimationFactor(double factor)(Code)
Sets the Y rotation animation scaling factor for Y-axis rotations. This scaling factor is used to control the speed of Y rotation when button 1 is pressed and dragged.
Parameters:
  factor - the double Y rotation scaling factor



setZTranslationAnimationFactor
public void setZTranslationAnimationFactor(double factor)(Code)
Sets the Z animation translation scaling factor for Z-axis translations. This scaling factor is used to control the speed of Z translation when button 1 is pressed and dragged.
Parameters:
  factor - the double Z translation scaling factor



Fields inherited from com.db.behaviors.ViewerBehavior
final protected static int BUTTON1(Code)(Java Doc)
final protected static int BUTTON2(Code)(Java Doc)
final protected static int BUTTON3(Code)(Java Doc)
final protected static int BUTTONNONE(Code)(Java Doc)
final public static Cursor DEFAULT_ACTIVE_CURSOR(Code)(Java Doc)
final public static double DEFAULT_XROTATION_FACTOR(Code)(Java Doc)
final public static double DEFAULT_XTRANSLATION_FACTOR(Code)(Java Doc)
final public static double DEFAULT_YROTATION_FACTOR(Code)(Java Doc)
final public static double DEFAULT_YTRANSLATION_FACTOR(Code)(Java Doc)
final public static double DEFAULT_ZTRANSLATION_FACTOR(Code)(Java Doc)
final protected static int UNUSUAL_XDELTA(Code)(Java Doc)
final protected static int UNUSUAL_YDELTA(Code)(Java Doc)
protected double XRotationFactor(Code)(Java Doc)
protected double XTranslationFactor(Code)(Java Doc)
protected double YRotationFactor(Code)(Java Doc)
protected double YTranslationFactor(Code)(Java Doc)
protected double ZTranslationFactor(Code)(Java Doc)
protected Cursor activeCursor(Code)(Java Doc)
protected int buttonPressed(Code)(Java Doc)
protected Transform3D currentTransform(Code)(Java Doc)
protected Matrix4d matrix(Code)(Java Doc)
protected WakeupOr mouseCriterion(Code)(Java Doc)
protected WakeupCriterion[] mouseEvents(Code)(Java Doc)
protected Vector3d origin(Code)(Java Doc)
protected Component parentComponent(Code)(Java Doc)
protected TransformGroup subjectTransformGroup(Code)(Java Doc)
protected Transform3D transform1(Code)(Java Doc)
protected Transform3D transform2(Code)(Java Doc)
protected Vector3d translate(Code)(Java Doc)

Methods inherited from com.db.behaviors.ViewerBehavior
public Cursor getActiveCursor()(Code)(Java Doc)
public Component getParentComponent()(Code)(Java Doc)
public TransformGroup getTransformGroup()(Code)(Java Doc)
public double getXRotationFactor()(Code)(Java Doc)
public double getXTranslationFactor()(Code)(Java Doc)
public double getYRotationFactor()(Code)(Java Doc)
public double getYTranslationFactor()(Code)(Java Doc)
public double getZTranslationFactor()(Code)(Java Doc)
public void initialize()(Code)(Java Doc)
abstract public void onButton1(MouseEvent mouseEvent)(Code)(Java Doc)
abstract public void onButton2(MouseEvent mouseEvent)(Code)(Java Doc)
abstract public void onButton3(MouseEvent mouseEvent)(Code)(Java Doc)
abstract public void onElapsedFrames(WakeupOnElapsedFrames timeEvent)(Code)(Java Doc)
public void processStimulus(Enumeration criteria)(Code)(Java Doc)
public void setActiveCursor(Cursor cursor)(Code)(Java Doc)
public void setParentComponent(Component parent)(Code)(Java Doc)
public void setTransformGroup(TransformGroup transformGroup)(Code)(Java Doc)
public void setXRotationFactor(double factor)(Code)(Java Doc)
public void setXTranslationFactor(double factor)(Code)(Java Doc)
public void setYRotationFactor(double factor)(Code)(Java Doc)
public void setYTranslationFactor(double factor)(Code)(Java Doc)
public void setZTranslationFactor(double factor)(Code)(Java Doc)

Methods inherited from javax.media.j3d.Behavior
public boolean getEnable()(Code)(Java Doc)
public static int getNumSchedulingIntervals()(Code)(Java Doc)
public BoundingLeaf getSchedulingBoundingLeaf()(Code)(Java Doc)
public Bounds getSchedulingBounds()(Code)(Java Doc)
public int getSchedulingInterval()(Code)(Java Doc)
protected View getView()(Code)(Java Doc)
protected WakeupCondition getWakeupCondition()(Code)(Java Doc)
abstract public void initialize()(Code)(Java Doc)
public void postId(int postId)(Code)(Java Doc)
abstract public void processStimulus(Enumeration criteria)(Code)(Java Doc)
public void setEnable(boolean state)(Code)(Java Doc)
public void setSchedulingBoundingLeaf(BoundingLeaf region)(Code)(Java Doc)
public void setSchedulingBounds(Bounds region)(Code)(Java Doc)
public void setSchedulingInterval(int schedulingInterval)(Code)(Java Doc)
public void updateNodeReferences(NodeReferenceTable referenceTable)(Code)(Java Doc)
protected void wakeupOn(WakeupCondition criteria)(Code)(Java Doc)


Fields inherited from javax.media.j3d.Node
final public static int ALLOW_AUTO_COMPUTE_BOUNDS_READ(Code)(Java Doc)
final public static int ALLOW_AUTO_COMPUTE_BOUNDS_WRITE(Code)(Java Doc)
final public static int ALLOW_BOUNDS_READ(Code)(Java Doc)
final public static int ALLOW_BOUNDS_WRITE(Code)(Java Doc)
final public static int ALLOW_COLLIDABLE_READ(Code)(Java Doc)
final public static int ALLOW_COLLIDABLE_WRITE(Code)(Java Doc)
final public static int ALLOW_LOCALE_READ(Code)(Java Doc)
final public static int ALLOW_LOCAL_TO_VWORLD_READ(Code)(Java Doc)
final public static int ALLOW_PARENT_READ(Code)(Java Doc)
final public static int ALLOW_PICKABLE_READ(Code)(Java Doc)
final public static int ALLOW_PICKABLE_WRITE(Code)(Java Doc)
final public static int ENABLE_COLLISION_REPORTING(Code)(Java Doc)
final public static int ENABLE_PICK_REPORTING(Code)(Java Doc)

Methods inherited from javax.media.j3d.Node
public Node cloneNode(boolean forceDuplicate)(Code)(Java Doc)
public Node cloneTree()(Code)(Java Doc)
public Node cloneTree(boolean forceDuplicate)(Code)(Java Doc)
public Node cloneTree(boolean forceDuplicate, boolean allowDanglingReferences)(Code)(Java Doc)
public Node cloneTree(NodeReferenceTable referenceTable)(Code)(Java Doc)
public Node cloneTree(NodeReferenceTable referenceTable, boolean forceDuplicate)(Code)(Java Doc)
public Node cloneTree(NodeReferenceTable referenceTable, boolean forceDuplicate, boolean allowDanglingReferences)(Code)(Java Doc)
public void duplicateNode(Node originalNode, boolean forceDuplicate)(Code)(Java Doc)
public Bounds getBounds()(Code)(Java Doc)
public boolean getBoundsAutoCompute()(Code)(Java Doc)
public boolean getCollidable()(Code)(Java Doc)
public void getLocalToVworld(Transform3D t)(Code)(Java Doc)
public void getLocalToVworld(SceneGraphPath path, Transform3D t)(Code)(Java Doc)
public Locale getLocale()(Code)(Java Doc)
public Node getParent()(Code)(Java Doc)
public boolean getPickable()(Code)(Java Doc)
public void setBounds(Bounds bounds)(Code)(Java Doc)
public void setBoundsAutoCompute(boolean autoCompute)(Code)(Java Doc)
public void setCollidable(boolean collidable)(Code)(Java Doc)
public void setPickable(boolean pickable)(Code)(Java Doc)

Methods inherited from javax.media.j3d.SceneGraphObject
final public void clearCapability(int bit)(Code)(Java Doc)
final public void clearCapabilityIsFrequent(int bit)(Code)(Java Doc)
protected void duplicateSceneGraphObject(SceneGraphObject originalNode)(Code)(Java Doc)
final public boolean getCapability(int bit)(Code)(Java Doc)
final public boolean getCapabilityIsFrequent(int bit)(Code)(Java Doc)
public String getName()(Code)(Java Doc)
public Object getUserData()(Code)(Java Doc)
final public boolean isCompiled()(Code)(Java Doc)
final public boolean isLive()(Code)(Java Doc)
final public void setCapability(int bit)(Code)(Java Doc)
final public void setCapabilityIsFrequent(int bit)(Code)(Java Doc)
public void setName(String name)(Code)(Java Doc)
public void setUserData(Object userData)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public void updateNodeReferences(NodeReferenceTable referenceTable)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.