Add state class
This commit is contained in:
parent
25b636c0af
commit
5d8eafe9e8
5 changed files with 97 additions and 26 deletions
BIN
resources/javatuples-1.2.jar
Normal file
BIN
resources/javatuples-1.2.jar
Normal file
Binary file not shown.
22
src/client/MainWindow.java
Normal file
22
src/client/MainWindow.java
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
package org.manzerbredes.client;
|
||||||
|
|
||||||
|
import java.awt.EventQueue;
|
||||||
|
import javax.swing.JFrame;
|
||||||
|
|
||||||
|
public class MainWindow extends JFrame {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public MainWindow(){
|
||||||
|
this.initUI();
|
||||||
|
this.setVisible(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void initUI(){
|
||||||
|
this.setTitle("Open KLM");
|
||||||
|
this.setSize(700, 500);
|
||||||
|
setLocationRelativeTo(null);
|
||||||
|
setDefaultCloseOperation(EXIT_ON_CLOSE);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -110,12 +110,15 @@ public class Driver{
|
||||||
// Init HIDAPI Library
|
// Init HIDAPI Library
|
||||||
com.codeminders.hidapi.ClassPathLibraryLoader.loadNativeHIDLibrary();
|
com.codeminders.hidapi.ClassPathLibraryLoader.loadNativeHIDLibrary();
|
||||||
|
|
||||||
|
// Try not bind the device
|
||||||
try {
|
try {
|
||||||
HIDManager man=HIDManager.getInstance();
|
HIDManager man=HIDManager.getInstance();
|
||||||
this.device=man.openById(0x1770, 0xff00, null);
|
this.device=man.openById(0x1770, 0xff00, null);
|
||||||
|
if(this.device==null)
|
||||||
|
throw new Exception();
|
||||||
}
|
}
|
||||||
catch(Exception e){
|
catch(Exception e){
|
||||||
throw new InstantiationException("Failed to instanciate driver.");
|
throw new InstantiationException("Failed to instanciate driver. Device not found or permission denied (try as root)");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,27 +10,20 @@ public class Keyboard{
|
||||||
* Device driver
|
* Device driver
|
||||||
*/
|
*/
|
||||||
private Driver device;
|
private Driver device;
|
||||||
|
|
||||||
/**
|
|
||||||
* Define Keyboard color state
|
|
||||||
*/
|
|
||||||
private HashMap<Region, Color> KeyboardColor=new HashMap<>();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Define Keyboard mode state
|
|
||||||
*/
|
|
||||||
private Mode mode=Mode.NORMAL;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Build a keyboard access
|
* Keyboard State
|
||||||
*/
|
*/
|
||||||
public Keyboard(){
|
private KeyboardState state;
|
||||||
try {
|
|
||||||
this.device=new Driver();
|
/**
|
||||||
} catch (InstantiationException e) {
|
* Build a keyboard access
|
||||||
// TODO Auto-generated catch block
|
*
|
||||||
e.printStackTrace();
|
* @throws InstantiationException Throw if failed to instanciate driver
|
||||||
}
|
*/
|
||||||
|
public Keyboard() throws InstantiationException{
|
||||||
|
this.device=new Driver();
|
||||||
|
this.state=new KeyboardState();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -42,10 +35,8 @@ public class Keyboard{
|
||||||
* @param intensity Intensity wanted
|
* @param intensity Intensity wanted
|
||||||
*/
|
*/
|
||||||
public void setColor(Color color, Intensity intensity){
|
public void setColor(Color color, Intensity intensity){
|
||||||
// Save state
|
//Save state
|
||||||
this.KeyboardColor.put(Region.LEFT, color);
|
this.state.setColor(color, intensity);
|
||||||
this.KeyboardColor.put(Region.MIDDLE, color);
|
|
||||||
this.KeyboardColor.put(Region.RIGHT, color);
|
|
||||||
|
|
||||||
// Set color
|
// Set color
|
||||||
this.device.setColor(Region.LEFT, color, intensity);
|
this.device.setColor(Region.LEFT, color, intensity);
|
||||||
|
@ -53,7 +44,7 @@ public class Keyboard{
|
||||||
this.device.setColor(Region.RIGHT, color, intensity);
|
this.device.setColor(Region.RIGHT, color, intensity);
|
||||||
|
|
||||||
// Apply color
|
// Apply color
|
||||||
this.device.commit(this.mode);
|
this.device.commit(this.state.getMode());
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -67,13 +58,13 @@ public class Keyboard{
|
||||||
*/
|
*/
|
||||||
public void setRegionColor(Region region, Color color, Intensity intensity){
|
public void setRegionColor(Region region, Color color, Intensity intensity){
|
||||||
// Save state
|
// Save state
|
||||||
this.KeyboardColor.put(region, color);
|
this.state.setRegionColor(region, color, intensity);
|
||||||
|
|
||||||
// Set color
|
// Set color
|
||||||
this.device.setColor(region, color, intensity);
|
this.device.setColor(region, color, intensity);
|
||||||
|
|
||||||
// Apply color
|
// Apply color
|
||||||
this.device.commit(this.mode);
|
this.device.commit(this.state.getMode());
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
55
src/device/KeyboardState.java
Normal file
55
src/device/KeyboardState.java
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
package org.manzerbredes.open_klm.device;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
|
||||||
|
import org.javatuples.Pair;
|
||||||
|
import org.manzerbredes.open_klm.device.Driver.Color;
|
||||||
|
import org.manzerbredes.open_klm.device.Driver.Intensity;
|
||||||
|
import org.manzerbredes.open_klm.device.Driver.Mode;
|
||||||
|
import org.manzerbredes.open_klm.device.Driver.Region;
|
||||||
|
|
||||||
|
public class KeyboardState {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Define Keyboard color state
|
||||||
|
*/
|
||||||
|
private HashMap<Region, Pair<Color,Intensity>> KeyboardColor=new HashMap<>();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Define Keyboard mode state
|
||||||
|
*/
|
||||||
|
private Mode mode;
|
||||||
|
|
||||||
|
|
||||||
|
public KeyboardState() {
|
||||||
|
this.mode=Mode.NORMAL;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setColor(Color color, Intensity intensity){
|
||||||
|
this.KeyboardColor.put(Region.LEFT, new Pair<Driver.Color, Driver.Intensity>(color, intensity));
|
||||||
|
this.KeyboardColor.put(Region.MIDDLE, new Pair<Driver.Color, Driver.Intensity>(color, intensity));
|
||||||
|
this.KeyboardColor.put(Region.RIGHT, new Pair<Driver.Color, Driver.Intensity>(color, intensity));
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRegionColor(Region region, Color color, Intensity intensity){
|
||||||
|
this.KeyboardColor.put(region, new Pair<Driver.Color, Driver.Intensity>(color, intensity));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the mode
|
||||||
|
*/
|
||||||
|
public Mode getMode() {
|
||||||
|
return mode;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param mode the mode to set
|
||||||
|
*/
|
||||||
|
public void setMode(Mode mode) {
|
||||||
|
this.mode = mode;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue