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

robocode.robotinterfaces.IJuniorRobot Maven / Gradle / Ivy

/*
 * Copyright (c) 2001-2023 Mathew A. Nelson and Robocode contributors
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * https://robocode.sourceforge.io/license/epl-v10.html
 */
package robocode.robotinterfaces;


/**
 * A robot interface for creating the most primitive robot type, which is a
 * {@link robocode.JuniorRobot}. A junior robot is simpler than the
 * {@link robocode.Robot} class.
 * 

* A junior robot has a simplified model, in purpose of teaching programming * skills to inexperienced in programming students. * The simplified robot model will keep player from overwhelming of Robocode's * rules, programming syntax and programming concept. *

* Instead of using getters and setters, public fields are provided for * receiving information like the last scanned robot, the coordinate of the * robot etc. *

* All methods on a junior robot are blocking calls, i.e. they do not return * before their action has been completed and will at least take one turn to * execute. * * @see robocode.JuniorRobot * @see IBasicRobot * @see IAdvancedRobot * @see IInteractiveRobot * @see ITeamRobot * * @author Pavel Savara (original) * @author Flemming N. Larsen (contributor) * * @since 1.6 */ public interface IJuniorRobot extends IBasicRobot {}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy