some more small improvements to test voice commands

This commit is contained in:
sonora 2012-01-29 09:12:43 +01:00
parent 794f93e101
commit 247f938435

View file

@ -70,24 +70,24 @@ public class TestVoiceActivity extends Activity {
}
private void addButtons(final LinearLayout ll, CommandPlayer p) {
addButton(ll, "New route was calculated (15350 m)", builder(p).newRouteCalculated(15350));
addButton(ll, "After 1050 m turn slightly left", builder(p).turn(AbstractPrologCommandPlayer.A_LEFT_SL, 1050));
addButton(ll, "Route was calculated (15350m)", builder(p).newRouteCalculated(15350));
addButton(ll, "After 1050m turn slightly left", builder(p).turn(AbstractPrologCommandPlayer.A_LEFT_SL, 1050));
addButton(ll, "Turn left", builder(p).turn(AbstractPrologCommandPlayer.A_LEFT));
addButton(ll, "Prepare to turn right after 320 m", builder(p).prepareTurn(AbstractPrologCommandPlayer.A_RIGHT, 320));
addButton(ll, "After 370 m turn sharp right", builder(p).turn(AbstractPrologCommandPlayer.A_RIGHT_SH, 370));
addButton(ll, "Prepare to turn SL after 850 m then bear right", builder(p).prepareTurn(AbstractPrologCommandPlayer.A_LEFT_SL, 850).then().bearRight());
addButton(ll, "Prepare to turn right after 320m", builder(p).prepareTurn(AbstractPrologCommandPlayer.A_RIGHT, 320));
addButton(ll, "After 370m turn sharp right", builder(p).turn(AbstractPrologCommandPlayer.A_RIGHT_SH, 370));
addButton(ll, "Prepare to turn slighlty left after 850m then bear right", builder(p).prepareTurn(AbstractPrologCommandPlayer.A_LEFT_SL, 850).then().bearRight());
addButton(ll, "Turn sharp right then bear left", builder(p).turn(AbstractPrologCommandPlayer.A_RIGHT_SH).then().bearLeft());
addButton(ll, "Continue straight ahead", builder(p).goAhead());
addButton(ll, "Continue straight ahead for 2350 m", builder(p).goAhead(2350));
addButton(ll, "Prepare to make a U turn after 400 m", builder(p).prepareMakeUT(400));
addButton(ll, "Make a U turn after 640 m", builder(p).makeUT(640));
addButton(ll, "Make a U turn", builder(p).makeUT());
addButton(ll, "Prepare to enter a roundabout after 750 m", builder(p).prepareRoundAbout(750));
addButton(ll, "After 450 m enter the roundabout and take the 1st exit", builder(p).roundAbout(450, 0, 1));
addButton(ll, "Prepare to make a U-turn after 400m", builder(p).prepareMakeUT(400));
addButton(ll, "Make a U-turn after 640m", builder(p).makeUT(640));
addButton(ll, "Make a U-turn", builder(p).makeUT());
addButton(ll, "Prepare to enter a roundabout after 750m", builder(p).prepareRoundAbout(750));
addButton(ll, "After 450m enter the roundabout and take the 1st exit", builder(p).roundAbout(450, 0, 1));
addButton(ll, "Roundabout: Take the 3rd exit", builder(p).roundAbout(0, 3));
addButton(ll, "Route recalculated (23150 m)", builder(p).routeRecalculated(23150));
addButton(ll, "GPS signal lost", builder(p).gpsLocationLost());
addButton(ll, "Continue straight ahead for 800 m and arrive at destination", builder(p).goAhead(800).andArriveAtDestination());
addButton(ll, "Route recalculated (23150m)", builder(p).routeRecalculated(23150));
addButton(ll, "Continue straight ahead", builder(p).goAhead());
addButton(ll, "Follow road for 2350m", builder(p).goAhead(2350));
addButton(ll, "Follow road for 800m and arrive at destination", builder(p).goAhead(800).andArriveAtDestination());
addButton(ll, "Arrive at destination", builder(p).arrivedAtDestination());
ll.forceLayout();
}