2018-01-30 04:14:17 -05:00
|
|
|
/* Reads a file of coordinates
|
|
|
|
*/
|
2018-01-30 08:15:20 -05:00
|
|
|
import java.awt.AWTException;
|
2018-01-30 04:14:17 -05:00
|
|
|
import java.awt.MouseInfo;
|
|
|
|
import java.awt.Point;
|
|
|
|
import java.awt.PointerInfo;
|
2018-01-30 08:15:20 -05:00
|
|
|
import java.awt.Robot;
|
2018-01-30 04:14:17 -05:00
|
|
|
import java.io.BufferedReader;
|
|
|
|
import java.io.File;
|
|
|
|
import java.io.FileReader;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.HashMap;
|
2018-01-30 08:15:20 -05:00
|
|
|
import java.util.Random;
|
2018-01-30 04:14:17 -05:00
|
|
|
import java.util.regex.Matcher;
|
|
|
|
import java.util.regex.Pattern;
|
|
|
|
|
|
|
|
public class Cursor {
|
|
|
|
|
2018-01-30 08:15:20 -05:00
|
|
|
public static final int NUMBER_OF_DISTANCES = 1000;
|
|
|
|
private Robot robot;
|
2018-01-30 04:14:17 -05:00
|
|
|
|
|
|
|
private ArrayList<ArrayList<CursorPath>> cursorPathsByDistance;
|
|
|
|
|
2018-01-30 08:15:20 -05:00
|
|
|
public Cursor() throws AWTException {
|
2018-01-30 04:14:17 -05:00
|
|
|
ArrayList<CursorPath> cursorPaths = getArrayListOfCursorPathsFromFile("/home/dpapp/GhostMouse/coordinates.txt");// read from file or something;
|
|
|
|
initializeCursorPathsByDistance();
|
|
|
|
assignCursorPathsByDistance(cursorPaths);
|
2018-01-30 08:15:20 -05:00
|
|
|
|
|
|
|
robot = new Robot();
|
2018-01-30 04:14:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
private void initializeCursorPathsByDistance() {
|
|
|
|
this.cursorPathsByDistance = new ArrayList<ArrayList<CursorPath>>();
|
|
|
|
for (int i = 0; i < NUMBER_OF_DISTANCES; i++) {
|
|
|
|
this.cursorPathsByDistance.add(new ArrayList<CursorPath>());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private ArrayList<CursorPath> getArrayListOfCursorPathsFromFile(String path) {
|
|
|
|
CursorDataFileParser cursorDataFileParser = new CursorDataFileParser(path);
|
|
|
|
return cursorDataFileParser.getArrayListOfCursorPathsFromFile();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void assignCursorPathsByDistance(ArrayList<CursorPath> cursorPaths) {
|
|
|
|
for (CursorPath cursorPath : cursorPaths) {
|
|
|
|
if (cursorPath.isCursorPathReasonable()) {
|
|
|
|
addCursorPathToCursorPathsByDistance(cursorPath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void addCursorPathToCursorPathsByDistance(CursorPath cursorPath) {
|
|
|
|
this.cursorPathsByDistance.get(cursorPath.getCursorPathDistance()).add(cursorPath);
|
|
|
|
}
|
|
|
|
|
2018-01-30 08:15:20 -05:00
|
|
|
public void moveCursorToCoordinates(Point goalPoint) throws InterruptedException {
|
|
|
|
Point startingCursorPoint = getCurrentCursorPoint();
|
|
|
|
int distanceToMoveCursor = calculateDistanceBetweenPoints(startingCursorPoint, goalPoint);
|
2018-01-30 10:19:12 -05:00
|
|
|
double angleToMoveCursor = calculateThetaBetweenPoints(startingCursorPoint, goalPoint);
|
2018-01-30 08:15:20 -05:00
|
|
|
CursorPath cursorPathToFollow = chooseCursorPathToFollowBasedOnDistance(distanceToMoveCursor);
|
2018-01-30 10:04:20 -05:00
|
|
|
|
2018-01-31 00:04:07 -05:00
|
|
|
//cursorPathToFollow.displayCursorPoints();
|
2018-01-30 10:19:12 -05:00
|
|
|
double angleToTranslatePathBy = angleToMoveCursor - cursorPathToFollow.getCursorPathTheta();
|
|
|
|
followCursorPath(startingCursorPoint, angleToTranslatePathBy, cursorPathToFollow);
|
2018-01-30 08:15:20 -05:00
|
|
|
}
|
|
|
|
|
2018-01-30 10:19:12 -05:00
|
|
|
private void followCursorPath(Point startingCursorPoint, double angleToTranslatePathBy, CursorPath cursorPathToFollow) throws InterruptedException {
|
|
|
|
for (CursorPoint untranslatedCursorPoint : cursorPathToFollow.getCursorPathPoints()) {
|
|
|
|
Point translatedPointToClick = translatePoint(startingCursorPoint, angleToTranslatePathBy, untranslatedCursorPoint);
|
|
|
|
robotMouseMove(translatedPointToClick);
|
2018-01-31 00:04:07 -05:00
|
|
|
Thread.sleep(untranslatedCursorPoint.postMillisecondDelay);
|
2018-01-30 08:15:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-30 10:19:12 -05:00
|
|
|
private Point translatePoint(Point startingCursorPoint, double angleToTranslateBy, CursorPoint untranslatedCursorPoint) {
|
|
|
|
int x = (int) (startingCursorPoint.x + Math.cos(angleToTranslateBy) * untranslatedCursorPoint.x - Math.sin(angleToTranslateBy) * untranslatedCursorPoint.y);
|
|
|
|
int y = (int) (startingCursorPoint.y + Math.sin(angleToTranslateBy) * untranslatedCursorPoint.x + Math.cos(angleToTranslateBy) * untranslatedCursorPoint.y);
|
2018-01-30 08:15:20 -05:00
|
|
|
return new Point(x, y);
|
|
|
|
}
|
|
|
|
|
2018-01-30 10:04:20 -05:00
|
|
|
public void robotMouseMove(Point pointToMoveCursorTo) {
|
2018-01-30 08:15:20 -05:00
|
|
|
robot.mouseMove(pointToMoveCursorTo.x, pointToMoveCursorTo.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
private CursorPath chooseCursorPathToFollowBasedOnDistance(int distanceToMoveCursor) {
|
|
|
|
ArrayList<CursorPath> cursorPathsWithSameDistance = cursorPathsByDistance.get(distanceToMoveCursor);
|
|
|
|
return cursorPathsWithSameDistance.get(new Random().nextInt(cursorPathsWithSameDistance.size()));
|
|
|
|
}
|
|
|
|
|
|
|
|
private int calculateDistanceBetweenPoints(Point a, Point b) {
|
|
|
|
return (int) (Math.hypot(a.x - b.x, a.y - b.y));
|
|
|
|
}
|
|
|
|
|
|
|
|
public double calculateThetaBetweenPoints(Point a, Point b) {
|
2018-01-30 10:04:20 -05:00
|
|
|
return Math.atan2(1.0 * (b.y - a.y), 1.0 * (b.x - a.x));
|
2018-01-30 08:15:20 -05:00
|
|
|
}
|
|
|
|
|
2018-01-30 10:04:20 -05:00
|
|
|
public Point getCurrentCursorPoint() {
|
2018-01-30 08:15:20 -05:00
|
|
|
return MouseInfo.getPointerInfo().getLocation();
|
|
|
|
}
|
|
|
|
|
2018-01-31 00:04:07 -05:00
|
|
|
/*public void displaycursorPathsByDistance() {
|
2018-01-30 04:14:17 -05:00
|
|
|
for (int i = 0; i < cursorPathsByDistance.size(); i++) {
|
|
|
|
System.out.println("There are " + cursorPathsByDistance.get(i).size() + " CursorPaths of length " + i);
|
|
|
|
}
|
2018-01-31 00:04:07 -05:00
|
|
|
}*/
|
2018-01-30 04:14:17 -05:00
|
|
|
}
|