There seems to be a problem when using KeyListener on fillPolygon/drawPolygon. I can’t move polygons using KeyListener, but I can move other graphics. Here is the java code:
import java.awt.Color;
import java.awt.Graphics;
import java.applet.Applet;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
public class Exer09Laggui extends Applet implements KeyListener {
int width;
int height;
int carLength = 200;
int carWidth = 75;
int nPoints = 4;
// for body
int body_x = 0;
int body_y = 0;
// for front windshield
// x coordinates
int frontWS_x1 = 125;
int frontWS_x2 = 125;
int frontWS_x3 = 145;
int frontWS_x4 = 145;
// y coordinates
int frontWS_y1 = 62;
int frontWS_y2 = 10;
int frontWS_y3 = 5;
int frontWS_y4 = 67;
int[] xPoints1 = { frontWS_x1, frontWS_x2, frontWS_x3, frontWS_x4 };
int[] yPoints1 = { frontWS_y1, frontWS_y2, frontWS_y3, frontWS_y4 };
public void init() {
width = getSize().width;
height = getSize().height;
setBackground(Color.GRAY);
addKeyListener(this);
}
public void paint(Graphics g) {
// for the car body
g.setColor(Color.BLACK);
// fillRoundRect(int x, int y, int width, int height, int arcWidth, int
// arcHeight)
g.fillRoundRect(body_x, body_y, carLength, carWidth, 30, 30);
// for the front windshield
// fillPolygon(int[] xPoints, int[] yPoints, int nPoints)
g.setColor(Color.white);
g.drawPolygon(xPoints1, yPoints1, nPoints);
g.setColor(new Color(200, 200, 255));
g.fillPolygon(xPoints1, yPoints1, nPoints);
}
public void keyPressed(KeyEvent e) {
if (e.getKeyCode() == KeyEvent.VK_DOWN) {
// for body
body_y += 5;
// for front windshield
frontWS_y1 += 5;
frontWS_y2 += 5;
frontWS_y3 += 5;
frontWS_y4 += 5;
}
if (e.getKeyCode() == KeyEvent.VK_UP) {
// for body
body_y -= 5;
// for front windshield
frontWS_y1 -= 5;
frontWS_y2 -= 5;
frontWS_y3 -= 5;
frontWS_y4 -= 5;
}
if (e.getKeyCode() == KeyEvent.VK_LEFT) {
// for body
body_x -= 5;
// for front windshield
frontWS_x1 -= 5;
frontWS_x2 -= 5;
frontWS_x3 -= 5;
frontWS_x4 -= 5;
}
if (e.getKeyCode() == KeyEvent.VK_RIGHT) {
// for body
body_x += 5;
// for front windshield
frontWS_x1 += 5;
frontWS_x2 += 5;
frontWS_x3 += 5;
frontWS_x4 += 5;
}
repaint();
}
public void keyReleased(KeyEvent e) {
}
public void keyTyped(KeyEvent e) {
}
}
and here is the html… I don’t know what is wrong, Please Help…
<html>
<body>
<applet code = 'Exer09Laggui.class'
width = '1340'
height = '635'/>
</body>
</html>
The array values don’t update automatically, because they are primitives, not objects.