Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package robot;
- /**********************
- * *
- * @author Klausus *
- * *
- **********************/
- import java.awt.Color;
- import java.awt.Robot;
- import java.awt.Rectangle;
- import java.awt.Toolkit;
- public class Main
- {
- boolean Barra = false;
- boolean Netbook = false;
- public void DetectarBarra() throws Exception
- {
- Robot R= new Robot();
- Rectangle area = new Rectangle(Toolkit.getDefaultToolkit().getScreenSize());
- int Height = area.height-600;
- int Width = area.width-1024;
- boolean Barra = false;
- boolean Netbook = false;
- // Red (Windows Logo)
- Color WinR = R.getPixelColor(17,580 + Height);
- // Green (Windows Logo)
- Color WinG = R.getPixelColor(25,580 + Height);
- // Blue (Windows Logo)
- Color WinB = R.getPixelColor(15,587 + Height);
- // Yellow (Windows Logo)
- Color WinY = R.getPixelColor(22,590 + Height);
- // Clock Color
- Color Clock = R.getPixelColor(1020 + Width ,580 + Height);
- if (area.width == 1024 && area.height == 600)
- Netbook = true;
- else
- Netbook = false;
- if ( (WinR.getRed() == 255 && WinR.getGreen() == 173 && WinR.getBlue() == 98) &&
- (WinG.getRed() == 143 && WinG.getGreen() == 218 && WinG.getBlue() == 11) &&
- (WinB.getRed() == 170 && WinB.getGreen() == 191 && WinB.getBlue() == 255) &&
- (WinY.getRed() == 251 && WinY.getGreen() == 202 && WinY.getBlue() == 11) )
- Barra = true;
- else
- Barra = false;
- System.out.println("Barra: " + this.Barra + " Netbook: " + this.Netbook);
- this.Barra=Barra;
- this.Netbook=Netbook;
- }
- //Metodos Set
- public void setBarra(Boolean valor)
- {
- this.Barra=valor;
- }
- public void setNetbook(Boolean valor)
- {
- this.Netbook=valor;
- }
- public static void main(String[] args) throws Exception
- {
- Main m = new Main();
- m.DetectarBarra();
- m.setBarra(true);
- m.setNetbook(false);
- m.DetectarBarra();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement