public void controlEvent(ControlEvent theEvent) { // select com from list if (theEvent.isGroup() && theEvent.name().equals("portComList")) { println("Select portComList" + " value = " + theEvent.group().value()); // for debugging InitSerial(theEvent.group().value()); // initialize the serial port selected } }
public void controlEvent(ControlEvent theEvent) { // PulldownMenu is if type ControlGroup. // A controlEvent will be triggered from within the ControlGroup. // therefore you need to check the originator of the Event with // if (theEvent.isGroup()) // to avoid an error message from controlP5. if (theEvent.isGroup()) { if (theEvent.group().name() == "ruleChoiceList") { // println(theEvent.group().value()+" from "+theEvent.group()); selectedRule = PApplet.parseInt(theEvent.group().value()); // has to be here for the controlp5 library } } else if (theEvent.isController()) { // println(theEvent.controller().value()+" from "+theEvent.controller()); } // switch(theEvent.controller().id()) { // case(1): // myColorRect = (int)(theEvent.controller().value()); // break; // case(2): // myColorBackground = (int)(theEvent.controller().value()); // break; // case(3): // println(theEvent.controller().stringValue()); // break; // } }
public void controlEvent(ControlEvent theEvent) { if (theEvent.isGroup()) { if (theEvent.group().name() == "optionsbox") { for (int i = 0; i < theEvent.group().arrayValue().length; i++) { optionsArray[i] = (int) theEvent.group().arrayValue()[i]; } if (optionsArray[0] == 1) { translator = true; } else { translator = false; } } } }
public void controlEvent(ControlEvent theEvent) { // DropdownList is of type ControlGroup. // A controlEvent will be triggered from inside the ControlGroup class. // therefore you need to check the originator of the Event with // if (theEvent.isGroup()) // to avoid an error message thrown by controlP5. /* if (theEvent.getController().getName().equals("restart")) { paddles[0].points=0; paddles[1].points=0; }*/ if (theEvent.isGroup()) { // check if the Event was triggered from a ControlGroup // println("event from group : "+theEvent.getGroup().getValue()+" from // "+theEvent.getGroup()); if (theEvent.getGroup().toString().equals("paddle1 [DropdownList]")) { println("paddle1 " + theEvent.getGroup().getValue()); paddleSelector1 = translations[(int) theEvent.getGroup().getValue()]; println(jointNames[paddleSelector1]); } else if (theEvent.getGroup().toString().equals("paddle2 [DropdownList]")) { println("paddle2 " + theEvent.getGroup().getValue()); paddleSelector2 = translations[(int) theEvent.getGroup().getValue()]; println(jointNames[paddleSelector2]); } else if (theEvent.getGroup().toString().equals("1_or_2_player [DropdownList]")) { if ((int) theEvent.getGroup().getValue() == 0) { onePlayer = true; } else { onePlayer = false; } } else if (theEvent.getGroup().toString().equals("speed [DropdownList]")) { if ((int) theEvent.getGroup().getValue() == 0) { ball.speed = new PVector(5, 5); } else if ((int) theEvent.getGroup().getValue() == 1) { ball.speed = new PVector(10, 10); } else if ((int) theEvent.getGroup().getValue() == 2) { ball.speed = new PVector(15, 15); } } } else if (theEvent.isController()) { println( "event from controller : " + theEvent.getController().getValue() + " from " + theEvent.getController()); } }
public void controlEvent(ControlEvent theEvent) { if (theEvent.isController()) { if (theEvent.controller().name() == "Clear Screen") { background(255); } if (theEvent.controller().name() == "Leaf Red") { leafRed = theEvent.controller().value(); } if (theEvent.controller().name() == "Leaf Blue") { leafBlue = theEvent.controller().value(); } if (theEvent.controller().name() == "Leaf Green") { leafGreen = theEvent.controller().value(); } if (theEvent.controller().name() == "Branch Random") { branchRandom = theEvent.controller().value(); } if (theEvent.controller().name() == "Leaf Random") { leafRandom = theEvent.controller().value(); } if (theEvent.controller().name() == "Leaf Size") { leafSize = theEvent.controller().value(); } if (theEvent.controller().name() == "Start Size") { startSize = theEvent.controller().value(); } } }