All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jmol.multitouch.ActionManagerMT Maven / Gradle / Ivy

There is a newer version: 14.31.10
Show newest version
/* $RCSfile$
 * $Author: hansonr $
 * $Date: 2009-07-31 09:22:19 -0500 (Fri, 31 Jul 2009) $
 * $Revision: 11291 $
 *
 * Copyright (C) 2002-2005  The Jmol Development Team
 *
 * Contact: [email protected]
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 */
package org.jmol.multitouch;

import org.jmol.script.T;

import javajs.api.GenericPlatform;
import javajs.awt.event.Event;
import javajs.util.Lst;



import org.jmol.api.Interface;
import org.jmol.api.JmolTouchSimulatorInterface;
import org.jmol.util.Logger;
import javajs.util.P3;
import org.jmol.viewer.ActionManager;
import org.jmol.viewer.Viewer;
import org.jmol.viewer.binding.Binding;

import com.sparshui.GestureType;

public class ActionManagerMT extends ActionManager implements JmolMultiTouchClient {

  ///////////// sparshUI multi-touch client interaction ////////////////

  private JmolMultiTouchAdapter adapter;
  private JmolTouchSimulatorInterface simulator;
  private int groupID;
  private int simulationPhase;
  private boolean resetNeeded = true;
  private long lastLogTime = 0;
  
  /* (non-Javadoc)
   * @see org.jmol.viewer.ActionManagerInterface#setViewer(org.jmol.viewer.Viewer, java.lang.String)
   */
  @Override
  public void setViewer(Viewer vwr, String commandOptions) {
    isMultiTouch = true;
    super.setViewer(vwr, commandOptions);
    mouseWheelFactor = 1.02f;
    boolean isSparsh = (commandOptions.indexOf("-multitouch-sparshui") >= 0);
    boolean isSimulated = (commandOptions.indexOf("-multitouch-sparshui-simulated") >= 0);
    boolean isJNI = (commandOptions.indexOf("-multitouch-jni") >= 0);
    boolean isMP = (commandOptions.indexOf("-multitouch-mp") >= 0);
    boolean isTablet = (commandOptions.indexOf("-multitouch-tab") >= 0);
    
    if (isMP || isTablet) {
      haveMultiTouchInput = true;
      groupID = 0;
    } else {
      groupID = ((int) (Math.random() * 0xFFFFFF)) << 4;
    }
    if (isTablet)
      return;
    String className = (isSparsh ? "multitouch.sparshui.JmolSparshClientAdapter" : "multitouch.jni.JmolJniClientAdapter");
    adapter = (JmolMultiTouchAdapter) Interface.getOption(className, null, null);
    Logger.info("ActionManagerMT SparshUI groupID=" + groupID);
    Logger.info("ActionManagerMT adapter = " + adapter);
    if (isSparsh) {
      startSparshUIService(isSimulated);
    } else if (isJNI) {
      adapter.setMultiTouchClient(vwr, this, false);
    }
    setBinding(b);
    xyRange = 10; // allow for more slop in double-clicks and press/releases
  }

  private void startSparshUIService(boolean isSimulated) {
    haveMultiTouchInput = false;
    if (adapter == null)
      return;
    if (simulator != null) { // a restart
      simulator.dispose();
      simulator = null;
    }
    if (isSimulated)
      Logger.error("ActionManagerMT -- for now just using touch simulation.\nPress CTRL-LEFT and then draw two traces on the window.");    

    isMultiTouchClient = adapter.setMultiTouchClient(vwr, this, isSimulated);
    isMultiTouchServer = adapter.isServer();
    if (isSimulated) {
      simulator = (JmolTouchSimulatorInterface) Interface
      .getInterface("com.sparshui.inputdevice.JmolTouchSimulator", null, null);
      if (simulator != null) {
        Logger.info("ActionManagerMT simulating SparshUI");
        simulator.startSimulator(vwr.display);
      }
    }
  }

  @Override
  protected void setBinding(Binding newBinding) {
    b = newBinding;
    b.unbindMouseAction(Binding.RIGHT|Binding.DOWN);
    if (simulator != null && b != null) {
      //binding.unbindJmolAction(ACTION_center);
      b.unbindName(Binding.CTRL|Binding.LEFT|Binding.SINGLE|Binding.DOWN, null);
      b.bindAction(Binding.CTRL|Binding.LEFT|Binding.SINGLE|Binding.DOWN, ACTION_multiTouchSimulation);
    }
  }

  @Override
  public void clear() {
    // per file load
    simulationPhase = 0;
    resetNeeded = true;
    super.clear();
  }
  
  private boolean doneHere;
  
  @Override
  public void dispose() {
    if (Logger.debugging)
      Logger.debug("ActionManagerMT -- dispose");
    // per applet/application instance
    doneHere = true;
    if (adapter != null)
      adapter.dispose();
    if (simulator != null)
      simulator.dispose();
    super.dispose();
  }

  // these must match those in com.sparshui.gestures.GestureTypes
  // reproduced here so there are no references to that code in applet module
  
  public final static int DRAG_GESTURE = 0;
  public final static int MULTI_POINT_DRAG_GESTURE = 1;
  public final static int ROTATE_GESTURE = 2;
  public final static int SPIN_GESTURE = 3;
  public final static int TOUCH_GESTURE = 4;
  public final static int ZOOM_GESTURE = 5;
  public final static int DBLCLK_GESTURE = 6;
  public final static int FLICK_GESTURE = 7;
  public final static int RELATIVE_DRAG_GESTURE = 8;
  public final static int INVALID_GESTURE = 9;
  
  // adaptation to allow user-defined gesture types
  
  private final static GestureType TWO_POINT_GESTURE = new GestureType("org.jmol.multitouch.sparshui.TwoPointGesture");
  private final static GestureType SINGLE_POINT_GESTURE = new GestureType("org.jmol.multitouch.sparshui.SinglePointGesture");

  // these must match those in com.sparshui.common.messages.events.EventType
  // and would have to be implemented in com.sparshui.server.GestureFactory
  // reproduced here so there are no references to that code in applet module
  
  public static final int DRIVER_NONE = -2;
  public static final int SERVICE_LOST = -1;
  public static final int DRAG_EVENT = 0;
  public static final int ROTATE_EVENT = 1;
  public static final int SPIN_EVENT = 2;
  public final static int TOUCH_EVENT = 3;
  public final static int ZOOM_EVENT = 4;
  public final static int DBLCLK_EVENT = 5;
  public final static int FLICK_EVENT = 6;
  public final static int RELATIVE_DRAG_EVENT = 7;
  public static final int CLICK_EVENT = 8;

  private final static String[] eventNames = new String[] {
    "drag", "rotate", "spin", "touch", "zoom",
    "double-click", "flick", "relative-drag", "click"
  };

  // these must be the same as in com.sparshui.common.TouchState
  
  public final static int BIRTH = 0;
  public final static int DEATH = 1;
  public final static int MOVE = 2;
  public final static int CLICK = 3;

  
  private static String getEventName(int i) {
    try {
      return eventNames[i];
    } catch (Exception e) {
      return "?";
    }
  }
  
  @Override
  public Lst getAllowedGestures(int groupID) {
    //System.out.println("ActionManagerMT getAllowedGestures " + groupID);
    if (groupID != this.groupID || !vwr.getBoolean(T.allowmultitouch))
      return null;
    Lst list = new  Lst();
    //list.add(Integer.valueOf(DRAG_GESTURE));
    //list.add(Integer.valueOf(MULTI_POINT_DRAG_GESTURE));
    //list.add(Integer.valueOf(SPIN_GESTURE));
    //list.add(Integer.valueOf(DBLCLK_GESTURE));
    list.addLast(TWO_POINT_GESTURE);
    //if (simulator == null)
    list.addLast(SINGLE_POINT_GESTURE);
    //list.add(Integer.valueOf(ZOOM_GESTURE));
    //list.add(Integer.valueOf(FLICK_GESTURE));
    //list.add(Integer.valueOf(RELATIVE_DRAG_GESTURE));    
    return list;
  }

  @Override
  public int getGroupID(int x, int y) {
    int gid = 0;
    try {
      if (vwr.hasFocus() && x >= 0 && y >= 0 && x < vwr.getScreenWidth()
          && y < vwr.getScreenHeight())
        gid = groupID;
      if (resetNeeded) {
        gid |= 0x10000000;
        resetNeeded = false;
      }
    } catch (Exception e) {
     // ignore
    }
    return gid;
  }

  boolean mouseDown;
  
  @Override
  public void processMultitouchEvent(int groupID, int eventType, int touchID, int iData,
                           P3 pt, long time) {
    if (Logger.debugging)
      Logger.debug(this + " time=" + time + " groupID=" + groupID + " "
          + Integer.toHexString(groupID) + " eventType=" + eventType + "("
          + getEventName(eventType) + ") iData=" + iData + " pt=" + pt);
    switch (eventType) {
    case DRAG_EVENT:
      if (iData == 2) {
        // This is a 2-finger drag
        setMotion(GenericPlatform.CURSOR_MOVE, true);
        vwr.translateXYBy((int) pt.x, (int) pt.y);
        logEvent("Drag", pt);
      }
      break;
    case DRIVER_NONE:
      if (simulator == null)
        haveMultiTouchInput = false;
      Logger.error("SparshUI reports no driver present");
      vwr.log("SparshUI reports no driver present -- setting haveMultiTouchInput FALSE");
      break;
    case ROTATE_EVENT:
      setMotion(GenericPlatform.CURSOR_MOVE, true);
      vwr.rotateZBy((int) pt.z, Integer.MAX_VALUE, Integer.MAX_VALUE);
      logEvent("Rotate", pt);
      break;
    case SERVICE_LOST:
      vwr.log("Jmol SparshUI client reports service lost -- " + (doneHere ? "not " : "") + " restarting");
      if (!doneHere)
        startSparshUIService(simulator != null);  
      break;
    case TOUCH_EVENT:
      haveMultiTouchInput = true;
      if (touchID == Integer.MAX_VALUE) {
        mouseDown = false;
        clearMouseInfo();
        break;
      }
      switch(iData) {
      case BIRTH:
        mouseDown = true;
        super.mouseAction(Event.PRESSED, time, (int) pt.x, (int) pt.y, 0, Binding.LEFT);
        break;
      case MOVE:
        super.mouseAction(mouseDown ? Event.DRAGGED : Event.MOVED, time, (int) pt.x, (int) pt.y, 0, Binding.LEFT);
        break;
      case DEATH:
        mouseDown = false;
        super.mouseAction(Event.RELEASED, time, (int) pt.x, (int) pt.y, 0, Binding.LEFT);
        break;
      case CLICK:
        // always follows DEATH when found
        super.mouseAction(Event.CLICKED, time, (int) pt.x, (int) pt.y, 1, Binding.LEFT);
        break;
      }
      break;
    case ZOOM_EVENT:
      float scale = pt.z;
      if (scale == -1 || scale == 1) {
        zoomByFactor((int)scale, Integer.MAX_VALUE, Integer.MAX_VALUE);
        logEvent("Zoom", pt);
      }
      break;
    }
  }

  private void logEvent(String type, P3 pt) {
    if (!vwr.g.logGestures)
      return;
    long time = System.currentTimeMillis(); 
    // at most every 10 seconds
    if (time - lastLogTime > 10000) {
      vwr.log("$NOW$ multitouch " + type + " pt= " + pt);
      lastLogTime = time;
    }
  }

  @Override
  public void mouseAction(int mode, long time, int x, int y, int count, int modifiers) {
    switch(mode) {
    case Event.MOVED:
      if (haveMultiTouchInput)
        return;
      adapter.mouseMoved(x, y);
      break;
    case Event.WHEELED:
    case Event.CLICKED:
      break;
    case Event.DRAGGED:
      if (simulator != null && simulationPhase > 0) {
        setCurrent(time, x, y, modifiers);
        simulator.mouseDragged(time, x, y);
        return;
      }
      break;
    case Event.PRESSED:
      if (simulator != null) {
        int maction = Binding.getMouseAction(1, modifiers, mode);
        if (b.isBound(maction, ACTION_multiTouchSimulation)) {
          setCurrent(0, x, y, modifiers);
          vwr.setFocus();
          if (simulationPhase++ == 0)
            simulator.startRecording();
          simulator.mousePressed(time, x, y);
          return;
        }
        simulationPhase = 0;
      }
      break;
    case Event.RELEASED:
      if (simulator != null && simulationPhase > 0) {
        setCurrent(time, x, y, modifiers);
        vwr.spinXYBy(0, 0, 0);
        simulator.mouseReleased(time, x, y);
        if (simulationPhase >= 2) {
          // two strokes only
          resetNeeded = true;
          simulator.endRecording();
          simulationPhase = 0;
        }
        return;
      }
      break;
    }
    if (!haveMultiTouchInput)
      super.mouseAction(mode, time, x, y, count, modifiers);
  }

  @Override
  protected float getDegrees(float delta, boolean isX) {
    return delta / (isX ? vwr.getScreenWidth() : vwr.getScreenHeight()) * 180 * mouseDragFactor;
  }

} 




© 2015 - 2024 Weber Informatics LLC | Privacy Policy