Add args parser

This commit is contained in:
manzerbredes 2016-03-30 17:59:50 +02:00
parent 232a405d39
commit 386bc35abb
3 changed files with 31 additions and 8 deletions

View file

@ -1,5 +1,15 @@
package org.manzerbredes.open_klm.app;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.DataLine;
import javax.sound.sampled.LineUnavailableException;
import javax.sound.sampled.SourceDataLine;
import javax.sound.sampled.TargetDataLine;
import org.kohsuke.args4j.CmdLineException;
import org.kohsuke.args4j.CmdLineParser;
import org.kohsuke.args4j.Option;
@ -44,21 +54,23 @@ public class App
}
public static void main( String[] args ) throws InstantiationException, CmdLineException
public static void main( String[] args ) throws InstantiationException, CmdLineException, LineUnavailableException, IOException
{
App app =new App();
CmdLineParser parser = new CmdLineParser(app);
parser.parseArgument(args);
app.parseArguments();
new MainWindow();
/*DriverTypeA device=new Driver_1770_ff00();
//app.parseArguments();
// new MainWindow();
DriverTypeA device=new Driver_1770_ff00();
Driver a=(Driver) device;
a.initDriver();
device.setRegionColor(Region.LEFT, Color.RED, Intensity.HIGH);
device.setRegionColor(Region.MIDDLE, Color.ORANGE, Intensity.HIGH);
device.setRegionColor(Region.RIGHT, Color.PURPLE, Intensity.HIGH);
device.setMode(Mode.BREATHE);*/
device.setMode(Mode.NORMAL);
}
}

6
src/args/ArgsTypeA.java Normal file
View file

@ -0,0 +1,6 @@
package org.manzerbredes.open_klm.args;
public class ArgsTypeA{
}

View file

@ -102,8 +102,10 @@ public class Driver_1770_ff00 implements Driver, DriverTypeA{
@Override
public void setRegionColor(Region region, Color color, Intensity intensity) {
try {
// Set the color of the region
this.device.sendFeatureReport(this.getReport(1,2,66,region.intValue(),color.intValue(),intensity.intValue(),0,236));
this.commit();
// Save the color of the region
this.primaryColorsState.put(region, new Pair<DriverTypeA.Color, DriverTypeA.Intensity>(color, intensity));
} catch (IOException e) {
e.printStackTrace();
@ -116,10 +118,12 @@ public class Driver_1770_ff00 implements Driver, DriverTypeA{
@Override
public void setColor(Color color, Intensity intensity) {
try {
// Apply color to all region
this.device.sendFeatureReport(this.getReport(1,2,66,Region.LEFT.intValue(),color.intValue(),intensity.intValue(),0,236));
this.device.sendFeatureReport(this.getReport(1,2,66,Region.MIDDLE.intValue(),color.intValue(),intensity.intValue(),0,236));
this.device.sendFeatureReport(this.getReport(1,2,66,Region.RIGHT.intValue(),color.intValue(),intensity.intValue(),0,236));
this.commit();
// Save the color of all region
this.primaryColorsState.put(Region.LEFT, new Pair<DriverTypeA.Color, DriverTypeA.Intensity>(color, intensity));
this.primaryColorsState.put(Region.MIDDLE, new Pair<DriverTypeA.Color, DriverTypeA.Intensity>(color, intensity));
this.primaryColorsState.put(Region.RIGHT, new Pair<DriverTypeA.Color, DriverTypeA.Intensity>(color, intensity));
@ -155,7 +159,6 @@ public class Driver_1770_ff00 implements Driver, DriverTypeA{
}
}
// Apply mode
this.commit();
}
@ -169,6 +172,7 @@ public class Driver_1770_ff00 implements Driver, DriverTypeA{
@Override
public void setSecondaryColor(Color color, Intensity intensity) {
// Set the secondary color of al regions
this.secondaryColorsState.put(Region.LEFT, new Pair<DriverTypeA.Color, DriverTypeA.Intensity>(color, intensity));
this.secondaryColorsState.put(Region.MIDDLE, new Pair<DriverTypeA.Color, DriverTypeA.Intensity>(color, intensity));
this.secondaryColorsState.put(Region.RIGHT, new Pair<DriverTypeA.Color, DriverTypeA.Intensity>(color, intensity));
@ -177,6 +181,7 @@ public class Driver_1770_ff00 implements Driver, DriverTypeA{
@Override
public void setSecondaryRegionColor(Region region, Color color, Intensity intensity) {
// Set the secondary color of the region
this.secondaryColorsState.put(region, new Pair<DriverTypeA.Color, DriverTypeA.Intensity>(color, intensity));
}