-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMouseControl.java
More file actions
125 lines (99 loc) · 2.89 KB
/
MouseControl.java
File metadata and controls
125 lines (99 loc) · 2.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
import java.awt.*;
import java.awt.Robot;
import java.awt.event.KeyEvent;
import java.awt.event.InputEvent;
/**
* Class: MouseControl
*/
class MouseControl {
public final int LEFT = 1;
public final int RIGHT = 2;
/**
* Function: clickPoint
* Input: x - x pixel offset from left side of screen
* y - y pixel offset from top side of screen
* buttonSelect - LEFT or RIGHT
* Output: /
* Description: This function clicks on provided coordinates
*/
public void clickPoint( int x , int y , int buttonSelect )
{
/* Click */
try {
Robot robot = new Robot();
robot.mouseMove( x , y );
if( buttonSelect == LEFT ) {
robot.mousePress(InputEvent.BUTTON1_MASK);
robot.mouseRelease(InputEvent.BUTTON1_MASK);
}
if( buttonSelect == RIGHT ) {
robot.mousePress(InputEvent.BUTTON3_MASK);
robot.mouseRelease(InputEvent.BUTTON3_MASK);
}
} catch ( AWTException e ) {
System.out.println("Cannot create Robot!");
}
/* Delay */
try {
Thread.sleep(10);
} catch(InterruptedException ex) {
System.out.println("Thread.sleep() Failed!");
}
return;
}
/**
* Function: clickCenter
* Input: mineField - MineSweeperField
* Output: /
* Description: This function clicks to center of mine field
*/
public void initClick( MineSweeperField mineField )
{
int x, y;
/* Calculate center of mine field */
x = mineField.getStartPosX();
y = mineField.getStartPosY();
x = x + (( mineField.getDimensionX() * mineField.getWidthOfOneField() ) / 2 );
y = y + (( mineField.getDimensionY() * mineField.getWidthOfOneField() ) / 2 );
clickPoint( x , y , LEFT );
clickPoint( x , y , LEFT );
return;
}
/**
* Function: clickOnField
* Input: x - x field position
* y - y field position
* mineField - MineSweeperField
* Output: /
* Description: This function clicks to selected mine field
*/
public void clickOnField( int x , int y , MineSweeperField mineField )
{
int xStart, yStart;
int xCoordinate, yCoordinate;
int centerOfMine;
xStart = mineField.getStartPosX();
yStart = mineField.getStartPosY();
centerOfMine = mineField.getWidthOfOneField() / 2;
xCoordinate = xStart + centerOfMine + ( x * mineField.getWidthOfOneField() );
yCoordinate = yStart + centerOfMine + ( y * mineField.getWidthOfOneField() );
clickPoint( xCoordinate , yCoordinate , LEFT );
return;
}
/**
* Function: moveAway
* Input: /
* Output: /
* Description: This function moves mouse cursor off mine field
*/
public void moveAway()
{
try {
Robot robot = new Robot();
robot.mouseMove( 0 , 0 );
} catch ( AWTException e ) {
System.out.println("Cannot create Robot!");
}
return;
}
}