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

com.github.thehilikus.jrobocom_samples._4lunch._4Main Maven / Gradle / Ivy

package com.github.thehilikus.jrobocom_samples._4lunch;

import com.github.thehilikus.jrobocom.player.Bank;
import com.github.thehilikus.jrobocom.player.InstructionSet;

/**
 * 4Main
 * 
 * @author Dennis C. Bemmann
 */
public class _4Main extends Bank {

    @Override
    public void run() {
	while (true) {
	    int children = 0;
	    while (children < 3) {
		control.createRobot("clon", InstructionSet.ADVANCED, 3, true);
		control.transfer(1, 0);
		control.transfer(2, 1);
		info.setRemoteActiveState(1);
		children++;
	    }
	    // Turn after 3 new children
	    control.turn(false);
	}

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy