Package com.jme3.app

Class ChaseCameraAppState

java.lang.Object
com.jme3.app.state.AbstractAppState
com.jme3.app.ChaseCameraAppState
All Implemented Interfaces:
AppState, ActionListener, AnalogListener, InputListener

public class ChaseCameraAppState extends AbstractAppState implements ActionListener, AnalogListener
This class is a camera controller that allow the camera to follow a target Spatial.
  • Field Details Link icon

    • spatial Link icon

      protected Spatial spatial
    • target Link icon

      protected Node target
    • camNode Link icon

      protected CameraNode camNode
    • inputManager Link icon

      protected InputManager inputManager
    • invertYaxis Link icon

      protected boolean invertYaxis
    • invertXaxis Link icon

      protected boolean invertXaxis
    • hideCursorOnRotate Link icon

      protected boolean hideCursorOnRotate
    • canRotate Link icon

      protected boolean canRotate
    • dragToRotate Link icon

      protected boolean dragToRotate
    • rotationSpeed Link icon

      protected float rotationSpeed
    • zoomSpeed Link icon

      protected float zoomSpeed
    • minDistance Link icon

      protected float minDistance
    • maxDistance Link icon

      protected float maxDistance
    • distance Link icon

      protected float distance
    • maxVerticalRotation Link icon

      protected float maxVerticalRotation
    • verticalRotation Link icon

      protected float verticalRotation
    • minVerticalRotation Link icon

      protected float minVerticalRotation
    • horizontalRotation Link icon

      protected float horizontalRotation
    • upVector Link icon

      protected Vector3f upVector
    • leftVector Link icon

      protected Vector3f leftVector
    • zoomOutTrigger Link icon

      protected Trigger[] zoomOutTrigger
    • zoomInTrigger Link icon

      protected Trigger[] zoomInTrigger
    • toggleRotateTrigger Link icon

      protected Trigger[] toggleRotateTrigger
  • Constructor Details Link icon

    • ChaseCameraAppState Link icon

      public ChaseCameraAppState()
  • Method Details Link icon

    • initialize Link icon

      public void initialize(AppStateManager stateManager, Application app)
      Description copied from interface: AppState
      Called by AppStateManager when transitioning this AppState from initializing to running.
      This will happen on the next iteration through the update loop after AppStateManager.attach(com.jme3.app.state.AppState) was called.

      AppStateManager will call this only from the update loop inside the rendering thread. This means is it safe to modify the scene graph from this method.

      Specified by:
      initialize in interface AppState
      Overrides:
      initialize in class AbstractAppState
      Parameters:
      stateManager - The state manager
      app - The application
    • registerWithInput Link icon

      public final void registerWithInput()
      Registers inputs with the input manager
    • onAction Link icon

      public void onAction(String name, boolean keyPressed, float tpf)
      Description copied from interface: ActionListener
      Called when an input to which this listener is registered to is invoked.
      Specified by:
      onAction in interface ActionListener
      Parameters:
      name - The name of the mapping that was invoked
      keyPressed - True if the action is "pressed", false otherwise
      tpf - The time per frame value.
    • onAnalog Link icon

      public void onAnalog(String name, float value, float tpf)
      Description copied from interface: AnalogListener
      Called to notify the implementation that an analog event has occurred. The results of KeyTrigger and MouseButtonTrigger events will have tpf == value.
      Specified by:
      onAnalog in interface AnalogListener
      Parameters:
      name - The name of the mapping that was invoked
      value - Value of the axis, from 0 to 1.
      tpf - The time per frame value.
    • rotateCamera Link icon

      protected void rotateCamera()
      rotate the camera around the target
    • zoomCamera Link icon

      protected void zoomCamera(float value)
      move the camera toward or away the target
      Parameters:
      value - the distance to move
    • setTarget Link icon

      public void setTarget(Spatial targetSpatial)
    • update Link icon

      public void update(float tpf)
      Description copied from interface: AppState
      Called to update the AppState. This method will be called every render pass if the AppState is both attached and enabled.
      Specified by:
      update in interface AppState
      Overrides:
      update in class AbstractAppState
      Parameters:
      tpf - Time since the last call to update(), in seconds.
    • setToggleRotationTrigger Link icon

      public void setToggleRotationTrigger(Trigger... triggers)
      Sets custom triggers for toggling the rotation of the cam default are new MouseButtonTrigger(MouseInput.BUTTON_LEFT) left mouse button new MouseButtonTrigger(MouseInput.BUTTON_RIGHT) right mouse button
      Parameters:
      triggers - the desired triggers
    • setZoomInTrigger Link icon

      public void setZoomInTrigger(Trigger... triggers)
      Sets custom triggers for zooming in the cam default is new MouseAxisTrigger(MouseInput.AXIS_WHEEL, true) mouse wheel up
      Parameters:
      triggers - the desired triggers
    • setZoomOutTrigger Link icon

      public void setZoomOutTrigger(Trigger... triggers)
      Sets custom triggers for zooming out the cam default is new MouseAxisTrigger(MouseInput.AXIS_WHEEL, false) mouse wheel down
      Parameters:
      triggers - the desired triggers
    • getMaxDistance Link icon

      public float getMaxDistance()
      Returns the max zoom distance of the camera (default is 40)
      Returns:
      maxDistance
    • setMaxDistance Link icon

      public void setMaxDistance(float maxDistance)
      Sets the max zoom distance of the camera (default is 40)
      Parameters:
      maxDistance - the desired maximum distance (in world units, default=40)
    • getMinDistance Link icon

      public float getMinDistance()
      Returns the min zoom distance of the camera (default is 1)
      Returns:
      the minimum distance (in world units)
    • setMinDistance Link icon

      public void setMinDistance(float minDistance)
      Sets the min zoom distance of the camera (default is 1)
      Parameters:
      minDistance - the desired minimum distance (in world units, default=1)
    • getMaxVerticalRotation Link icon

      public float getMaxVerticalRotation()
      Returns:
      The maximal vertical rotation angle in radian of the camera around the target
    • setMaxVerticalRotation Link icon

      public void setMaxVerticalRotation(float maxVerticalRotation)
      Sets the maximal vertical rotation angle in radian of the camera around the target. Default is Pi/2;
      Parameters:
      maxVerticalRotation - the desired maximum angle (in radians, default=Pi/2)
    • getMinVerticalRotation Link icon

      public float getMinVerticalRotation()
      Returns:
      The minimal vertical rotation angle in radian of the camera around the target
    • setMinVerticalRotation Link icon

      public void setMinVerticalRotation(float minHeight)
      Sets the minimal vertical rotation angle in radian of the camera around the target default is 0;
      Parameters:
      minHeight - the desired minimum angle (in radians, default=0)
    • getZoomSpeed Link icon

      public float getZoomSpeed()
      returns the zoom speed
      Returns:
      the speed
    • setZoomSpeed Link icon

      public void setZoomSpeed(float zoomSpeed)
      Sets the zoom speed, the lower the value, the slower the camera will zoom in and out. default is 2.
      Parameters:
      zoomSpeed - the speed
    • getRotationSpeed Link icon

      public float getRotationSpeed()
      Returns the rotation speed when the mouse is moved.
      Returns:
      the rotation speed when the mouse is moved.
    • setRotationSpeed Link icon

      public void setRotationSpeed(float rotationSpeed)
      Sets the rotate amount when user moves his mouse. The lower the value, the slower the camera will rotate. Default is 1.
      Parameters:
      rotationSpeed - Rotation speed on mouse movement, default is 1.
    • setDefaultDistance Link icon

      public void setDefaultDistance(float defaultDistance)
      Sets the default distance at start of application
      Parameters:
      defaultDistance - the desired distance (in world units, default=20)
    • setDefaultHorizontalRotation Link icon

      public void setDefaultHorizontalRotation(float angleInRad)
      sets the default horizontal rotation in radian of the camera at start of the application
      Parameters:
      angleInRad - the desired rotation (in radians, default=0)
    • setDefaultVerticalRotation Link icon

      public void setDefaultVerticalRotation(float angleInRad)
      sets the default vertical rotation in radian of the camera at start of the application
      Parameters:
      angleInRad - the desired rotation (in radians, default=0)
    • isDragToRotate Link icon

      public boolean isDragToRotate()
      Returns:
      If drag to rotate feature is enabled.
      See Also:
    • setDragToRotate Link icon

      public void setDragToRotate(boolean dragToRotate)
      Parameters:
      dragToRotate - When true, the user must hold the mouse button and drag over the screen to rotate the camera, and the cursor is visible until dragged. Otherwise, the cursor is invisible at all times and holding the mouse button is not needed to rotate the camera. This feature is disabled by default.
    • setInvertVerticalAxis Link icon

      public void setInvertVerticalAxis(boolean invertYaxis)
      invert the vertical axis movement of the mouse
      Parameters:
      invertYaxis - true→inverted, false→not inverted
    • setInvertHorizontalAxis Link icon

      public void setInvertHorizontalAxis(boolean invertXaxis)
      invert the Horizontal axis movement of the mouse
      Parameters:
      invertXaxis - true→inverted, false→not inverted