Revert "Drawers refactored. Imageloading is now in the Drawers instead of"
This reverts commit 3268268dc2
.
This commit is contained in:
parent
3268268dc2
commit
0d31d8c79b
@ -1,19 +1,13 @@
|
|||||||
package cicaprojekt;
|
package cicaprojekt;
|
||||||
|
|
||||||
import java.awt.Graphics;
|
|
||||||
import java.awt.image.BufferedImage;
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
import javax.imageio.ImageIO;
|
public class FieldDrawer extends ImagePanel implements Drawer {
|
||||||
import javax.swing.JPanel;
|
|
||||||
|
|
||||||
public class FieldDrawer extends JPanel implements Drawer {
|
|
||||||
private BufferedImage image;
|
|
||||||
Field field;
|
Field field;
|
||||||
|
|
||||||
public FieldDrawer(Field f) throws IOException {
|
public FieldDrawer(Field f) throws IOException {
|
||||||
image = ImageIO.read(new File("Field.png"));
|
super("Field.png");
|
||||||
field = f;
|
field = f;
|
||||||
setVisible(false);
|
setVisible(false);
|
||||||
}
|
}
|
||||||
@ -39,16 +33,5 @@ public class FieldDrawer extends JPanel implements Drawer {
|
|||||||
public int getY() {
|
public int getY() {
|
||||||
return field.getY();
|
return field.getY();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void paintComponent(Graphics g) {
|
|
||||||
super.paintComponent(g);
|
|
||||||
g.drawImage(image, 0, 0, null); // see javadoc for more info on the parameters
|
|
||||||
}
|
|
||||||
|
|
||||||
public void changeImage(String path) throws IOException {
|
|
||||||
image = ImageIO.read(new File(path));
|
|
||||||
repaint();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,19 +1,13 @@
|
|||||||
package cicaprojekt;
|
package cicaprojekt;
|
||||||
|
|
||||||
import java.awt.Graphics;
|
|
||||||
import java.awt.image.BufferedImage;
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
import javax.imageio.ImageIO;
|
public class GapDrawer extends ImagePanel implements Drawer{
|
||||||
import javax.swing.JPanel;
|
|
||||||
|
|
||||||
public class GapDrawer extends JPanel implements Drawer{
|
|
||||||
private BufferedImage image;
|
|
||||||
private Gap gap;
|
private Gap gap;
|
||||||
|
|
||||||
public GapDrawer(Gap g) throws IOException {
|
public GapDrawer(Gap g) throws IOException {
|
||||||
image = ImageIO.read(new File("Gap.png"));
|
super("Gap.png");
|
||||||
gap = g;
|
gap = g;
|
||||||
setVisible(false);
|
setVisible(false);
|
||||||
}
|
}
|
||||||
@ -33,10 +27,4 @@ public class GapDrawer extends JPanel implements Drawer{
|
|||||||
return gap.getY();
|
return gap.getY();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void paintComponent(Graphics g) {
|
|
||||||
super.paintComponent(g);
|
|
||||||
g.drawImage(image, 0, 0, null); // see javadoc for more info on the parameters
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,19 +1,13 @@
|
|||||||
package cicaprojekt;
|
package cicaprojekt;
|
||||||
|
|
||||||
import java.awt.Graphics;
|
|
||||||
import java.awt.image.BufferedImage;
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
import javax.imageio.ImageIO;
|
public class GateDrawer extends ImagePanel implements Drawer{
|
||||||
import javax.swing.JPanel;
|
|
||||||
|
|
||||||
public class GateDrawer extends JPanel implements Drawer{
|
|
||||||
private BufferedImage image;
|
|
||||||
Gate gate;
|
Gate gate;
|
||||||
|
|
||||||
public GateDrawer(Gate g) throws IOException {
|
public GateDrawer(Gate g) throws IOException {
|
||||||
image = ImageIO.read(new File("ClosedGate.png"));
|
super("ClosedGate.png");
|
||||||
gate = g;
|
gate = g;
|
||||||
setVisible(false);
|
setVisible(false);
|
||||||
}
|
}
|
||||||
@ -38,15 +32,4 @@ public class GateDrawer extends JPanel implements Drawer{
|
|||||||
return gate.getY();
|
return gate.getY();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void paintComponent(Graphics g) {
|
|
||||||
super.paintComponent(g);
|
|
||||||
g.drawImage(image, 0, 0, null); // see javadoc for more info on the parameters
|
|
||||||
}
|
|
||||||
|
|
||||||
public void changeImage(String path) throws IOException {
|
|
||||||
image = ImageIO.read(new File(path));
|
|
||||||
repaint();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
29
cicaprojekt/ImagePanel.java
Normal file
29
cicaprojekt/ImagePanel.java
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
package cicaprojekt;
|
||||||
|
|
||||||
|
import java.awt.Graphics;
|
||||||
|
import java.awt.image.BufferedImage;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
import javax.imageio.ImageIO;
|
||||||
|
import javax.swing.JPanel;
|
||||||
|
|
||||||
|
public class ImagePanel extends JPanel{
|
||||||
|
|
||||||
|
private BufferedImage image;
|
||||||
|
|
||||||
|
public ImagePanel(String path) throws IOException {
|
||||||
|
image = ImageIO.read(new File(path));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void paintComponent(Graphics g) {
|
||||||
|
super.paintComponent(g);
|
||||||
|
g.drawImage(image, 0, 0, null); // see javadoc for more info on the parameters
|
||||||
|
}
|
||||||
|
|
||||||
|
public void changeImage(String path) throws IOException {
|
||||||
|
image = ImageIO.read(new File(path));
|
||||||
|
repaint();
|
||||||
|
}
|
||||||
|
}
|
@ -1,19 +1,13 @@
|
|||||||
package cicaprojekt;
|
package cicaprojekt;
|
||||||
|
|
||||||
import java.awt.Graphics;
|
|
||||||
import java.awt.image.BufferedImage;
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
import javax.imageio.ImageIO;
|
public class ScaleDrawer extends ImagePanel implements Drawer {
|
||||||
import javax.swing.JPanel;
|
|
||||||
|
|
||||||
public class ScaleDrawer extends JPanel implements Drawer {
|
|
||||||
private BufferedImage image;
|
|
||||||
Scale scale;
|
Scale scale;
|
||||||
|
|
||||||
public ScaleDrawer(Scale s) throws IOException {
|
public ScaleDrawer(Scale s) throws IOException {
|
||||||
image = ImageIO.read(new File("Scale.png"));
|
super("Scale.png");
|
||||||
scale = s;
|
scale = s;
|
||||||
setVisible(false);
|
setVisible(false);
|
||||||
}
|
}
|
||||||
@ -38,15 +32,4 @@ public class ScaleDrawer extends JPanel implements Drawer {
|
|||||||
return scale.getY();
|
return scale.getY();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void paintComponent(Graphics g) {
|
|
||||||
super.paintComponent(g);
|
|
||||||
g.drawImage(image, 0, 0, null); // see javadoc for more info on the parameters
|
|
||||||
}
|
|
||||||
|
|
||||||
public void changeImage(String path) throws IOException {
|
|
||||||
image = ImageIO.read(new File(path));
|
|
||||||
repaint();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,19 +1,13 @@
|
|||||||
package cicaprojekt;
|
package cicaprojekt;
|
||||||
|
|
||||||
import java.awt.Graphics;
|
|
||||||
import java.awt.image.BufferedImage;
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
import javax.imageio.ImageIO;
|
public class WallDrawer extends ImagePanel implements Drawer {
|
||||||
import javax.swing.JPanel;
|
|
||||||
|
|
||||||
public class WallDrawer extends JPanel implements Drawer {
|
|
||||||
private BufferedImage image;
|
|
||||||
Wall wall;
|
Wall wall;
|
||||||
|
|
||||||
public WallDrawer(Wall w) throws IOException {
|
public WallDrawer(Wall w) throws IOException {
|
||||||
image = ImageIO.read(new File("Wall.png"));
|
super("Wall.png");
|
||||||
wall = w;
|
wall = w;
|
||||||
setVisible(false);
|
setVisible(false);
|
||||||
}
|
}
|
||||||
@ -51,16 +45,5 @@ public class WallDrawer extends JPanel implements Drawer {
|
|||||||
public int getY() {
|
public int getY() {
|
||||||
return wall.getY();
|
return wall.getY();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void paintComponent(Graphics g) {
|
|
||||||
super.paintComponent(g);
|
|
||||||
g.drawImage(image, 0, 0, null); // see javadoc for more info on the parameters
|
|
||||||
}
|
|
||||||
|
|
||||||
public void changeImage(String path) throws IOException {
|
|
||||||
image = ImageIO.read(new File(path));
|
|
||||||
repaint();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user