gpt4 book ai didi

java - 如何修改像素并使用鼠标点击 Action ?

转载 作者:行者123 更新时间:2023-12-01 17:05:26 24 4
gpt4 key购买 nike

我正在为学校设计一个图片实验室项目,但我不知道如何修改像素的 RGB。我的项目是一款视力测试游戏,玩家可以选择一种与其他颜色不同的颜色。我应该修改背景或空白照片的像素吗?另外,如何实现 mouseClickedAction (给定的单击鼠标时运行的方法)?

这是我到目前为止所拥有的一些简单的东西:

import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Point;
import java.awt.image.ImageObserver;
import java.util.ArrayList;

public class EagleEye extends FlexiblePictureExplorer {
public static Picture background = new Picture(1003,1003);

//settings
private int gameDimensions = 4;
private int difficulty = 30;

private final int statsHeight = 80;

public EagleEye(DigitalPicture Picture) {
super(background);
setTitle("Eagle Eye");
int xGrid = gameDimensions;
int yGrid = gameDimensions;
int r1 = (int)(Math.random() * gameDimensions + 1);
int r2 = (int)(Math.random() * gameDimensions + 1);
colorSetter(xGrid,yGrid);

}

private void colorSetter(int x,int y) {
for (int i=0;i<x;i++) {
for (int j=0;j<y;j++) {
fillBox(i,j);
}
}
}
private void fillBox(int x, int y) {
int r = (int)(Math.random() * 255 + 1);
int g = (int)(Math.random() * 255 + 1);
int b = (int)(Math.random() * 255 + 1);
int x1;
int x2;
if (x==0) {
x1 = 0;
x2 = 250;
}
else if (x==1) {
x1 = 252;
x2 = 501;
}
else if (x==2) {
x1 = 503;
x2 = 752;
}
else {
x1 = 754;
x2 = 1003;
}
int y1;
int y2;
if (y==0) {
y1 = 0;
y2 = 250;
}
else if (y==1) {
y1 = 252;
y2 = 501;
}
else if (y==2) {
y1 = 503;
y2 = 752;
}
else {
y1 = 754;
y2 = 1003;
}
int rgb = calculateColors(r,g,b);
for (int i=x1;i<=x2;i++) {
for (int j=y1;j<=y2;j++) {
background.setBasicPixel(x1,y1,rgb);
}
}
setImage(background);
}
private int calculateColors(int r, int g, int b) {
int r1 = r * 65536;
int g1 = g * 256;
int b1 = b;
return r1 + g1 + b1;
}
private void drawStats(Picture img){
Picture statsImg = new Picture(statsHeight, imageWidth);
Graphics g = statsImg.getGraphics();
g.setFont(new Font("Times New Roman", Font.PLAIN, 16));
g.setColor(Color.blue);
}
private void updateImage() {

}
public void mouseClickedAction(DigitalPicture pict, Pixel pix) {

}
private void endGame() {

}
public boolean imageUpdate(Image arg0, int arg1, int arg2, int arg3, int arg4, int arg5) {
// TODO Auto-generated method stub
return false;
}
public static void main(String[] args) {
Picture white = new Picture(100,100);
EagleEye game = new EagleEye(white);

}
}

最佳答案

我认为绘图和图形的最简单方法不是绘制到图像,而是直接绘制到 JPanel。如果您有一个扩展 JPanel 的类,您可以实现

public void paintComponent(Graphics g) {
//Code to draw whatever you like, e.g.
g.setColor(new Color(255, 255, 255));
g.drawRect(0, 0, width, height);
}

有了这个,你就不用担心处理图像了,如果您仍然想使用图像,可以使用 BufferedImage,它有很好的文档解释如何使用它: https://docs.oracle.com/javase/tutorial/2d/images/drawonimage.html(无论如何,您仍然需要显示这些图像,很可能使用上面的paintComponent方法,如果您想在循环中绘制,则必须将该循环放在另一个线程上,请注意)

对于 mouseClicked,您需要实现一个 MouseListener,这非常简单:

在您的类中创建一个 MouseListener 对象,您必须在其中实现许多方法,其中大部分可能不会被使用。

在代码中的某个位置(可能是构造函数),您需要将 MouseListener 添加到您想要等待点击的任何组件(可能是您正在绘制的面板)

当单击该组件时,将调用 mouseClicked 方法,从那里您可以执行任何您需要的操作,例如调用处理鼠标单击的其他方法。

监听器中的 MouseEvent 对象包含您需要的所有有用信息,例如它的位置(相对于您添加监听器的组件)

public class YourClass {

public YourClass() {
this.addMouseListener(ml);
}

//code


private MouseListener ml = new MouseListener() {

@Override
public void mouseClicked(MouseEvent arg0) {
// TODO Auto-generated method stub
System.out.println(arg0.getX() + ", " + arg0.getY());
}

@Override
public void mouseEntered(MouseEvent arg0) {
// TODO Auto-generated method stub

}

@Override
public void mouseExited(MouseEvent arg0) {
// TODO Auto-generated method stub

}

@Override
public void mousePressed(MouseEvent arg0) {
// TODO Auto-generated method stub

}

@Override
public void mouseReleased(MouseEvent arg0) {
// TODO Auto-generated method stub

}

}


}

关于java - 如何修改像素并使用鼠标点击 Action ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61468299/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com