Clean code and new release

This commit is contained in:
manzerbredes 2016-03-31 11:12:01 +02:00
parent 58a70ad52d
commit fbfa7d72b6
6 changed files with 90 additions and 65 deletions

Binary file not shown.

View file

@ -1,74 +1,44 @@
package org.manzerbredes.open_klm.app; package org.manzerbredes.open_klm.app;
import java.io.ByteArrayOutputStream; import org.manzerbredes.open_klm.args.ArgsManager;
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.manzerbredes.open_klm.args.ArgsTypeA;
import org.manzerbredes.open_klm.client.MainWindow; import org.manzerbredes.open_klm.client.MainWindow;
import org.manzerbredes.open_klm.drivers.*; import org.manzerbredes.open_klm.drivers.*;
import org.manzerbredes.open_klm.drivers.DriverTypeA.*;
/** /**
* Hello world! * Hello world!
* *
*/ */
public class App public class App
{/* {
@Option(name="-leftColor",usage="Set the left color") public static void main( String[] args )
public String leftColor=null; {
@Option(name="-middleColor",usage="Set the middle color") // Get driver
public String middleColor=null; DriverManager driverManager=new DriverManager();
@Option(name="-rightColor",usage="Set the right color") Driver aDriver=driverManager.getDevice();
public String rightColor=null;
public void parseArguments(){ // If a driver is found run the program
if(this.leftColor!=null || this.rightColor!=null || this.middleColor!=null){ if(aDriver!=null){
try {
DriverTypeA device=new Driver_1770_ff00();
if(this.leftColor==null) // Parse argument
this.leftColor="OFF"; ArgsManager argsManager=new ArgsManager();
if(this.middleColor==null) argsManager.parse(aDriver, args);
this.middleColor="OFF";
if(this.rightColor==null)
this.rightColor="OFF";
device.setRegionColor(Region.LEFT, Color.valueOf(leftColor), Intensity.HIGH);
device.setRegionColor(Region.MIDDLE, Color.valueOf(middleColor), Intensity.HIGH);
device.setRegionColor(Region.RIGHT, Color.valueOf(rightColor), Intensity.HIGH);
} catch (Exception e) { // Else run GUI
try {
MainWindow mw = new MainWindow(aDriver);
} catch (InstantiationException e) {
// TODO Auto-generated catch block // TODO Auto-generated catch block
e.printStackTrace(); e.printStackTrace();
} }
System.exit(0); }
} else{
// Exit with error
System.err.println("No driver avalaible for your system. Try as root !");
System.exit(1);
}
}*/
public static void main( String[] args )
{
/*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.WAVE);*/
System.out.println("Parsing... "+ args.length);
ArgsTypeA a=new ArgsTypeA();
Driver aa=new Driver_1770_ff00();
aa.initDriver();
a.applyAndExit(aa, args);
} }
} }

View file

@ -1,5 +1,48 @@
package org.manzerbredes.open_klm.args; package org.manzerbredes.open_klm.args;
public interface ArgsManager{ import org.manzerbredes.open_klm.drivers.Driver;
import org.manzerbredes.open_klm.drivers.DriverTypeA;
import org.manzerbredes.open_klm.drivers.Driver_1770_ff00;
/**
*
* Arguments manager
*
* @author Manzerbredes
*
*/
public class ArgsManager{
/**
* List of Arguments Parser available
*/
private Class<?>[] parsers={
ArgsTypeA.class
};
/**
*
* Parse the arguments and exit
*
* @param aDriver driver used to parse
* @param args arguments to parse
*/
public void parse(Driver aDriver, String[] args){
if(args.length>0){
for(Class<?> argsParser : this.parsers){
ArgsParser parser;
try {
parser = (ArgsParser) argsParser.newInstance();
if(parser.getType().equals(aDriver.getType())){
parser.applyAndExit(aDriver, args);
}
} catch (Exception e){
System.err.println(e.getMessage());
System.exit(1);
}
}
}
}
} }

View file

@ -8,9 +8,16 @@ import org.manzerbredes.open_klm.drivers.Driver;
* @author Manzerbredes * @author Manzerbredes
* *
*/ */
public interface Args{ public interface ArgsParser{
/** /**
* Apply parsed argument and exit the program * Apply parsed argument and exit the program
*/ */
public void applyAndExit(Driver aDriver, String[] args); public void applyAndExit(Driver aDriver, String[] args);
/**
* Get the type of the driver the parser should parse
*
* @return class that represent the type of the driver (DriverTypeA.class for example)
*/
public Class<?> getType();
} }

View file

@ -16,7 +16,7 @@ import joptsimple.OptionSet;
* @author Manzerbredes * @author Manzerbredes
* *
*/ */
public class ArgsTypeA implements Args{ public class ArgsTypeA implements ArgsParser{
/** /**
* Define Keyboard primary color state * Define Keyboard primary color state
*/ */
@ -130,4 +130,10 @@ public class ArgsTypeA implements Args{
driver.setMode(this.mode); driver.setMode(this.mode);
} }
@Override
public Class<?> getType() {
return DriverTypeA.class;
}
} }

View file

@ -28,16 +28,15 @@ public class MainWindow extends JFrame {
private Class<?> driverType; private Class<?> driverType;
private DriverManager drvMan=new DriverManager(); private DriverManager drvMan=new DriverManager();
public MainWindow() throws InstantiationException{ public MainWindow(Driver aDriver) throws InstantiationException{
this.initUI(); this.initUI();
Driver drv=drvMan.getDevice(); if(aDriver==null){
if(drv==null){
System.err.println("No driver avalaible (try as root)"); System.err.println("No driver avalaible (try as root)");
System.exit(1); System.exit(1);
} }
else{ else{
this.driverType=drv.getType(); this.driverType=aDriver.getType();
this.keyboardTypeA=(DriverTypeA) drv; this.keyboardTypeA=(DriverTypeA) aDriver;
} }
this.left=new JComboBox<>(Color.values()); this.left=new JComboBox<>(Color.values());