Example #1
0
  public UberPaint(final String name, final int threadId, final double version) {
    PaintController.addComponent(
        new PFancyButton(8, 501, "Feedback", PFancyButton.ColorScheme.GRAPHITE) {
          public void onPress() {
            Utils.openURL("http://rsbuddy.com/forum/showthread.php?t=" + threadId);
          }
        });
    addFrame("info");
    addFrame("options");
    PaintController.addComponent(
        new PFancyButton(461, 531, 54, 24, "Hide", PFancyButton.ColorScheme.GRAPHITE) {
          public void onStart() {
            forceMouse = true;
            forcePaint = true;
          }

          public void onPress() {
            text = (text.equals("Hide")) ? "Show" : "Hide";
            togglePaint();
            PaintController.toggleEvents();
          }
        });
    addTab("Info", 440, 396, 73, -1, 0, -1);
    addTab("Options", 440, 416, 73, -1, 1, -1);
    this.version = version;
    this.name = name;
  }
Example #2
0
  public void addTab(
      String name,
      int x,
      int y,
      int width,
      int height,
      final int primaryIndex,
      final int subIndex) {
    PFancyButton button =
        new PFancyButton(x, y, width, height, name, PFancyButton.ColorScheme.GRAPHITE) {
          public void onPress() {
            if (primaryIndex != -1) menuIndex = primaryIndex;
            if (subIndex != -1) subMenuIndex = subIndex;
          }

          public void mouseMoved(MouseEvent mouseEvent) {
            boolean hovered = false;
            if (pointInButton(mouseEvent.getPoint())) hovered = true;
            if (primaryIndex != -1 && menuIndex == primaryIndex) hovered = true;
            if (subIndex != -1 && subMenuIndex == subIndex) hovered = true;
            setHovered(hovered);
          }
        };
    buttons.put(name, button);
    PaintController.addComponent(button);
  }
 @Override
 public void miscLoop() {
   if (Widgets.canContinue()) Widgets.clickContinue();
   Mouse.setSpeed(random(1, 2));
   ((UberPaint) paintType).infoColumnData =
       new String[] {status, "" + kebbitsCaught, PaintController.timeRunning()};
 }
Example #4
0
  public void addFrame(String name, final int pIndex, final int subMIndex) {
    PFrame frame =
        new PFrame(name) {
          int index = pIndex;
          int subIndex = subMIndex;

          public boolean shouldPaint() {
            if (subIndex != -1) return menuIndex == index && subMenuIndex == subIndex;
            return menuIndex == index;
          }

          public boolean shouldHandleMouse() {
            return shouldPaint();
          }
        };
    frames.put(name, frame);
    PaintController.addComponent(frame);
  }
Example #5
0
 public void mouseDragged(MouseEvent mouseEvent) {
   PaintController.mouseDragged(mouseEvent);
 }
Example #6
0
 public void mouseEntered(MouseEvent mouseEvent) {
   PaintController.mouseEntered(mouseEvent);
 }
Example #7
0
 public void mouseReleased(MouseEvent mouseEvent) {
   PaintController.mouseReleased(mouseEvent);
 }
Example #8
0
 public void mousePressed(MouseEvent mouseEvent) {
   PaintController.mousePressed(mouseEvent);
 }
Example #9
0
 public void keyReleased(KeyEvent keyEvent) {
   PaintController.keyReleased(keyEvent);
 }
Example #10
0
 public void keyPressed(KeyEvent keyEvent) {
   PaintController.keyPressed(keyEvent);
 }
Example #11
0
 public void keyTyped(KeyEvent keyEvent) {
   PaintController.keyTyped(keyEvent);
 }
Example #12
0
 public void removeTab(String name) {
   PButton button = buttons.get(name);
   PaintController.removeComponent(button);
   buttons.remove(name);
 }
Example #13
0
 public void removeFrame(String name) {
   PFrame frame = frames.get(name);
   PaintController.removeComponent(frame);
   frames.remove(name);
 }
Example #14
0
  public boolean paint(Graphics graphics) {
    if (!Game.isLoggedIn()) return false;
    try {
      Graphics2D g = (Graphics2D) graphics;
      PComponent clayout = null;
      try {
        clayout =
            new PColumnLayout(
                227,
                404,
                infoColumnValues,
                infoColumnData,
                new Font("Arial", 0, 9),
                PColumnLayout.ColorScheme.WHITE);
      } catch (Exception e) {
        e.printStackTrace();
      }
      getFrame("options").removeComponent(firstLayout);
      getFrame("options").removeComponent(secondLayout);
      int secondColx = -1;
      int bestLength = -1;
      firstColumn.clear();
      secondColumn.clear();
      if (checkBoxes.size() <= 6) firstColumn.putAll(checkBoxes);
      else {
        for (int i = 0; i < checkBoxes.size(); i++) {
          if (i <= 5) {
            String text;
            Iterator it = checkBoxes.keySet().iterator();
            for (int j = 0; j < i; j++) it.next();
            text = (String) it.next();
            int length = SwingUtilities.computeStringWidth(g.getFontMetrics(g.getFont()), text);
            if (length > bestLength) bestLength = length;
            firstColumn.put(text, checkBoxes.get(text));
          } else {
            String text;
            Iterator it = checkBoxes.keySet().iterator();
            for (int j = 0; j < i; j++) it.next();
            text = (String) it.next();
            secondColumn.put(text, checkBoxes.get(text));
          }
        }
      }
      secondColx = 8 + bestLength;
      firstLayout =
          new PCheckBoxLayout(
              8,
              407,
              firstColumn
                  .keySet()
                  .toArray(new String[(firstColumn.size() > 6) ? 6 : firstColumn.size()]),
              firstColumn
                  .values()
                  .toArray(new PCheckBox[(firstColumn.size() > 6) ? 6 : firstColumn.size()]),
              new Font("Arial", 0, 11),
              PCheckBoxLayout.ColorScheme.WHITE);
      secondLayout =
          new PCheckBoxLayout(
              secondColx + 12,
              407,
              secondColumn
                  .keySet()
                  .toArray(new String[(secondColumn.size() > 6) ? 6 : secondColumn.size()]),
              secondColumn
                  .values()
                  .toArray(new PCheckBox[(secondColumn.size() > 6) ? 6 : secondColumn.size()]),
              new Font("Arial", 0, 11),
              PCheckBoxLayout.ColorScheme.WHITE);
      getFrame("options").addComponent(firstLayout);
      getFrame("options").addComponent(secondLayout);
      if (showPaint) {
        Paint p = g.getPaint();
        g.setPaint(
            new GradientPaint(
                0, 1000, new Color(55, 55, 55, 240), 512, 472, new Color(15, 15, 15, 240)));
        g.fillRect(7, 396, 505, 128);
        final Point loc = Mouse.getLocation();
        if (Mouse.isPressed()) {
          g.fillOval(loc.x - 5, loc.y - 5, 10, 10);
          g.drawOval(loc.x - 5, loc.y - 5, 10, 10);
        }
        g.drawLine(0, loc.y + 1, 766, loc.y + 1);
        g.drawLine(0, loc.y - 1, 766, loc.y - 1);
        g.drawLine(loc.x + 1, 0, loc.x + 1, 505);
        g.drawLine(loc.x - 1, 0, loc.x - 1, 505);
        g.setPaint(p);
      }
      if (clayout != null) getFrame("info").addComponent(clayout);
      PaintController.onRepaint(graphics);
      if (clayout != null) getFrame("info").removeComponent(clayout);
      if (!showPaint) return false;
      String infoTxt = name + " - " + "v" + version;
      g.drawString(
          infoTxt,
          510 - SwingUtilities.computeStringWidth(g.getFontMetrics(g.getFont()), infoTxt),
          468);

      int offset = 0;
      for (Skill skill : skills) {
        if (skill.xpGained() > 0) {
          PSkill skillComp =
              new PSkill(8, 397 + offset, skill.getSkill(), PSkill.ColorScheme.GRAPHITE);
          if (!getFrame("info").containsComponent(skillComp)) {
            getFrame("info").addComponent(skillComp);
          }
          offset += 20;
        }
      }

      // == Mouse ==
      if (Mouse.isPressed()) {
        g.setColor(new Color(255, 252, 0, 150));

        g.setColor(new Color(255, 252, 0, 100));
      } else {
        g.setColor(new Color(255, 252, 0, 50));
      }

      g.setColor(new Color(0, 0, 0, 50));

      // == End mouse ==
    } catch (Exception ignored) {
      // if (Utils.isDevMode())
      //    ignored.printStackTrace();
    }
    return true;
  }