When a certain event happens, I want the image to change but it does not occur.
Here is the code:
game.add(bbol);
if (flashed == 1) {
bbol.setIcon(bboH);
} else {
}
Do I need to refresh the game
panel?
edit:
import java.awt.Color;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.util.ArrayList;
import java.util.Random;
import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.Timer;
import javax.swing.border.Border;
public class BeeBee extends JFrame implements ActionListener, MouseListener {
private static final long serialVersionUID = 1L;
private JFrame frame = new JFrame("BB8 Says");
private JPanel game;
private JPanel menu;
ImageIcon bbegif = new ImageIcon("tumblr_o0c57n9gfv1tha1vgo1_r3_250.gif");
public static final int WIDTH = 800, HEIGHT = 800;
public int flashed = 0, glowTime, dark, ticks, indexPattern;
public boolean creatingPattern = true;
public ArrayList<Integer> pattern;
public Random random;
private boolean gameOver;
public int counter;
public int temp;
public int score;
//these are the images, replace them if you like
public ImageIcon bbb = new ImageIcon("bbb.gif");
public JLabel bbbl = new JLabel(bbb);
public ImageIcon bbbH = new ImageIcon("bbbH.gif");
public ImageIcon bbg = new ImageIcon("bbg.gif");
public JLabel bbgl = new JLabel(bbg);
public ImageIcon bbgH = new ImageIcon("bbgH.gif");
public ImageIcon bbgr = new ImageIcon("bbgr.gif");
public JLabel bbgrl = new JLabel(bbgr);
public ImageIcon bbgrH = new ImageIcon("bbgrH.gif");
public ImageIcon bbo = new ImageIcon("bbor.gif");
public JLabel bbol = new JLabel(bbo);
public ImageIcon bboH = new ImageIcon("bborH.gif");
public ImageIcon unhap = new ImageIcon("unhap.gif");
public JLabel unhapl = new JLabel(unhap);
//these are the images, replace them if you like
public BeeBee()
{
mainmenu();
}
public void start()
{
random = new Random();
pattern = new ArrayList<Integer>();
indexPattern = 0;
dark = 2;
flashed = 0;
ticks = 0;
}
public void actionPerformed(ActionEvent e)
{
ticks++;
if (ticks % 20 == 0)
{
flashed = 0;
if (dark >= 0)
{
dark--;
}}
if (creatingPattern)
{
if (dark <= 0)
{
if (indexPattern >= pattern.size())
{
flashed = random.nextInt(40) % 4 + 1;
pattern.add(flashed);
indexPattern = 0;
creatingPattern = false;
}
else
{
flashed = pattern.get(indexPattern);
indexPattern++;
}
dark = 2;
}}
else if (indexPattern == pattern.size())
{
creatingPattern = true;
indexPattern = 0;
dark = 2;
}}
public void mainmenu()
{
Timer timer = new Timer(20, this);
start();
timer.start();
frame.setSize(WIDTH +7, HEIGHT +30);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setResizable(false);
menu = new JPanel();
game = new JPanel();
menu.setBackground(Color.yellow);
game.setBackground(Color.yellow);
JButton button = new JButton("Start");
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
frame.setContentPane(game);
frame.invalidate();
frame.validate();
};
});
menu.add(button);
gamme();
frame.add(menu);
frame.setVisible(true);
}
public void gamme()
{
Border border = BorderFactory.createLineBorder(Color.black, 5);
bbol.setBorder(border);
bbgl.setBorder(border);
bbgrl.setBorder(border);
bbbl.setBorder(border);
game.setLayout(new GridLayout(2,2));
game.add(bbol);
game.add(bbgl);
game.add(bbgrl);
game.add(bbbl);
}
public static void main(String[]args)
{
new BeeBee();
}
@Override
public void mousePressed(MouseEvent e)
{
int x = e.getX(), y = e.getY();
if (!creatingPattern && !gameOver)
{
if (x>0 && x<WIDTH/2 && y>0 && y<HEIGHT/2)
{
flashed = 1;
ticks = 1;
bbol.setIcon(bboH);
}
else if (x>WIDTH/2 && x<WIDTH && y>0 && y<HEIGHT/2)
{
flashed = 2;
ticks = 1;
bbgl.setIcon(bbgH);
}
else if (x>0 && x<WIDTH/2 && y>HEIGHT/2 && y<HEIGHT)
{
flashed = 3;
ticks = 1;
bbgrl.setIcon(bbgrH);
}
else if (x>WIDTH/2 && x<WIDTH && y>HEIGHT/2 && y<HEIGHT)
{
flashed = 4;
ticks = 1;
bbbl.setIcon(bbbH);
}
if (flashed != 0)
{
if (pattern.get(indexPattern)==flashed)
{
indexPattern++;
}
else
{
gameOver = true;
}
}
else
{
start();
gameOver = true;
}}
else if (gameOver)
{
start();
gameOver = false;
}
if (flashed == 1) {
bbol.setIcon(bboH);
} else
{
bbol.setIcon(bbo);
}
if (flashed == 2) {
bbgl.setIcon(bbgH);
} else
{
bbgl.setIcon(bbg);
}
if (flashed == 3) {
bbgrl.setIcon(bbgrH);
} else
{
bbgrl.setIcon(bbgr);
}
if (flashed == 4) {
bbbl.setIcon(bbbH);
} else
{
bbbl.setIcon(bbb);
}
game.repaint();
}
@Override
public void mouseClicked(MouseEvent e)
{}
@Override
public void mouseEntered(MouseEvent e)
{}
@Override
public void mouseExited(MouseEvent e)
{}
@Override
public void mouseReleased(MouseEvent e)
{}
}
setIcon(...)
should be adequate to change the image in a JLabel. I question how you're adding the JLabel and when. If you're adding the component during program run, you're going to have to callrevalidate()
andrepaint()
on the container, the JPanel that is accepting the new JLabel. Usually it's better to add the JLabel at program start up and not have to worry about such issues. AAlso, what event is triggering this change? Your question and code are not adequate for us to determine this. Something in the back of my mind is worrying me that you've not yet written an event listener since we don't see any code above to suggest that the above code is present within a listener. Please clarify.
If still stuck, create and post your valid minimal example program.
You've still not posted a valid mcve, and so we still have to guess (please read the link),
But in your MouseListener, you're changing the state of the flashed field, but you're not calling any code that will change the image. I suspect that the critical code you've posted:
is present in your GUI creation code. If so, this is called once and only once, and will only use the original value of flashed. If you change the value of the flashed field, this code will not be magically re-called, but instead you must call it yourself. In other words, this code should be in the MouseListener.
Again, if you need more help, please do post a valid mcve code posted here as code-formatted text, that we can actually compile and run.
Also, if you want a blinking icon, then you're going to need tp create and use a Swing Timer, one that swaps the icons every xxx milliseconds.
For example:
Regarding your posted code, you have MouseListener code but add it to no component, and listeners only work if you attach them to something, for example