/* * Created on Apr 2, 2008 * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * * Copyright @2008-2013 the original author or authors. */ package org.fest.swing.core; import static org.fest.swing.awt.AWT.isPointInScreenBoundaries; import static org.fest.swing.awt.AWT.translate; import static org.fest.swing.exception.ActionFailedException.actionFailure; import static org.fest.swing.exception.UnexpectedException.unexpected; import static org.fest.swing.timing.Pause.pause; import static org.fest.swing.util.Platform.isOSX; import static org.fest.swing.util.Platform.isWindows; import static org.fest.util.Preconditions.checkNotNull; import java.awt.AWTException; import java.awt.Component; import java.awt.Point; import java.awt.Robot; import javax.annotation.Nonnull; import org.fest.swing.util.RobotFactory; /** * Simulates user input by using an AWT {@code Robot}. * * @author Alex Ruiz */ class RobotEventGenerator implements InputEventGenerator { private static final int KEY_INPUT_DELAY = 200; private final Robot robot; private final Settings settings; RobotEventGenerator() { this(new Settings()); } RobotEventGenerator(@Nonnull Settings settings) { this(new RobotFactory(), settings); } RobotEventGenerator(@Nonnull RobotFactory robotFactory, @Nonnull Settings settings) { try { robot = robotFactory.newRobotInPrimaryScreen(); if (isWindows() || isOSX()) { pause(500); } } catch (AWTException e) { throw unexpected(e); } this.settings = settings; settings.attachTo(robot); } @Nonnull Robot robot() { return robot; } /** {@inheritDoc} */ @Override public void pressMouse(@Nonnull Component c, @Nonnull Point where, int buttons) { Point p = checkNotNull(translate(c, where.x, where.y)); if (!isPointInScreenBoundaries(p)) { throw actionFailure("The component to click is out of the boundaries of the screen"); } pressMouse(p, buttons); } /** {@inheritDoc} */ @Override public void pressMouse(@Nonnull Point where, int buttons) { moveMouse(where.x, where.y); pressMouse(buttons); } /** {@inheritDoc} */ @Override public void pressMouse(int buttons) { robot.mousePress(buttons); } /** {@inheritDoc} */ @Override public void releaseMouse(int buttons) { robot.mouseRelease(buttons); } /** {@inheritDoc} */ @Override public void rotateMouseWheel(int amount) { robot.mouseWheel(amount); } /** {@inheritDoc} */ @Override public void moveMouse(@Nonnull Component c, int x, int y) { Point p = checkNotNull(translate(c, x, y)); moveMouse(p.x, p.y); } /** {@inheritDoc} */ @Override public void moveMouse(int x, int y) { robot.mouseMove(x, y); } /** {@inheritDoc} */ @Override public void pressKey(int keyCode, char keyChar) { try { robot.keyPress(keyCode); } catch (IllegalArgumentException e) { throw new IllegalArgumentException(String.format("Invalid key code '%d'", keyCode)); } } /** {@inheritDoc} */ @Override public void releaseKey(int keyCode) { robot.keyRelease(keyCode); if (!isOSX()) { return; } int delayBetweenEvents = settings.delayBetweenEvents(); if (KEY_INPUT_DELAY > delayBetweenEvents) { pause(KEY_INPUT_DELAY - delayBetweenEvents); } } }