Advertisement
Guest User

Untitled

a guest
Aug 1st, 2010
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.21 KB | None | 0 0
  1. package robot;
  2.  
  3. /**********************
  4. *                     *
  5. *   @author Klausus   *
  6. *                     *
  7. **********************/
  8.  
  9. import java.awt.Color;
  10. import java.awt.Robot;
  11. import java.awt.Rectangle;
  12. import java.awt.Toolkit;
  13.  
  14. public class Main
  15. {
  16.     boolean Barra   = false;
  17.     boolean Netbook = false;
  18.    
  19.  
  20.     public void DetectarBarra() throws Exception
  21.     {
  22.         Robot R= new Robot();
  23.         Rectangle area = new Rectangle(Toolkit.getDefaultToolkit().getScreenSize());
  24.         int Height = area.height-600;
  25.         int Width  = area.width-1024;
  26.         boolean Barra   = false;
  27.         boolean Netbook = false;
  28.        
  29.         // Red (Windows Logo)
  30.         Color WinR = R.getPixelColor(17,580 + Height);
  31.         // Green (Windows Logo)
  32.         Color WinG = R.getPixelColor(25,580 + Height);
  33.         // Blue (Windows Logo)
  34.         Color WinB = R.getPixelColor(15,587 + Height);
  35.         // Yellow (Windows Logo)
  36.         Color WinY = R.getPixelColor(22,590 + Height);
  37.         // Clock Color
  38.         Color Clock = R.getPixelColor(1020 + Width ,580 + Height);
  39.  
  40.         if (area.width == 1024 && area.height == 600)
  41.             Netbook = true;
  42.         else
  43.             Netbook = false;
  44.        
  45.         if ( (WinR.getRed()  == 255 && WinR.getGreen()  == 173 && WinR.getBlue()  ==  98) &&
  46.              (WinG.getRed()  == 143 && WinG.getGreen()  == 218 && WinG.getBlue()  ==  11) &&
  47.              (WinB.getRed()  == 170 && WinB.getGreen()  == 191 && WinB.getBlue()  == 255) &&
  48.              (WinY.getRed()  == 251 && WinY.getGreen()  == 202 && WinY.getBlue()  ==  11)  )
  49.             Barra = true;
  50.         else
  51.             Barra = false;
  52.  
  53.         System.out.println("Barra: " + this.Barra + "  Netbook: " + this.Netbook);
  54.        
  55.         this.Barra=Barra;
  56.         this.Netbook=Netbook;
  57.  
  58.     }
  59.     //Metodos Set
  60.     public void setBarra(Boolean valor)
  61.     {
  62.         this.Barra=valor;
  63.        
  64.     }
  65.     public void setNetbook(Boolean valor)
  66.     {
  67.         this.Netbook=valor;
  68.     }
  69.  
  70.     public static void main(String[] args) throws Exception
  71.     {
  72.         Main m = new Main();
  73.         m.DetectarBarra();
  74.         m.setBarra(true);
  75.         m.setNetbook(false);
  76.         m.DetectarBarra();
  77.  
  78.     }
  79.  
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement