| |
---|
| | import javax.swing.*; |
---|
| | |
---|
| | public class Screen extends JPanel implements ActionListener, KeyListener, MouseListener, MouseMotionListener { |
---|
| | // __working variables__ |
---|
| | |
---|
| | public long lastTime = 0; |
---|
| | // mouse |
---|
| | private boolean captured = false; |
---|
| | private final Point2D mouseRel = new Point2D(0,0); |
---|
| | private Cursor invisibleCursor; |
---|
| | |
---|
| | public ObjectCollection mainCollection; |
---|
| | |
---|
| | // testing\ |
---|
| | //private Line line = new Line(new Point2D(200, 200),new Point2D(1, 1)); |
---|
| | //private Triangle Triangle = new Triangle(new Point2D(200, 200), new Point2D(1, 1), new Point2D(400,200)); |
---|
| |
---|
| | |
---|
| | // keep a reference to the timer object that triggers actionPerformed() in |
---|
| | // case we need access to it in another method |
---|
| | private final Timer timer; |
---|
| | // objects that appear on the game board |
---|
| | private final Player player; |
---|
| | |
---|
| | public Screen() { |
---|
| | public Screen(ObjectCollection _mainCollection) { |
---|
| | mainCollection = _mainCollection; |
---|
| | |
---|
| | // set the game board size |
---|
| | setPreferredSize(new Dimension(TILE_SIZE * COLUMNS, TILE_SIZE * ROWS)); |
---|
| | // set the game board background color |
---|
| | setBackground(new Color(232, 232, 232)); |
---|
| |
---|
| | Toolkit.getDefaultToolkit().sync(); |
---|
| | } |
---|
| | private void drawScreen(Graphics g) { |
---|
| | BufferedImage img = new BufferedImage(getWidth(), getHeight(), BufferedImage.TYPE_INT_RGB ); |
---|
| | BufferedImage debugimg = new BufferedImage(getWidth(), getHeight(), BufferedImage.TYPE_INT_ARGB); |
---|
| | debugimg.createGraphics(); |
---|
| | g.setColor(Color.white); |
---|
| | // line.point2.x = 100*Math.sin(ang) + 200; |
---|
| | // line.point2.y = 100*Math.cos(ang) + 200; |
---|
| | // Triangle.point2.x = 100*Math.sin(ang+3) + 200; |
---|
| | // Triangle.point2.y = 100*Math.cos(ang+3) + 200; |
---|
| | // line.draw(img); |
---|
| | ArrayList<Point3D> newPoints = new ArrayList<Point3D>(); |
---|
| | /* ArrayList<Point3D> newPoints = new ArrayList<Point3D>(); |
---|
| | for (Point3D point: points) { |
---|
| | Point3D _new = new Point3D(0,0,0); |
---|
| | player.camMatrix.multiplyPoint3to(point, _new); |
---|
| | if(_new.z > .1) { |
---|
| |
---|
| | } catch(NullPointerException ignored){} |
---|
| | |
---|
| | try{t1.draw(img);}catch (NullPointerException ignored){} |
---|
| | try{t2.draw(img);}catch (NullPointerException ignored){} |
---|
| | ang += 0.02; |
---|
| | ang += 0.02;*/ |
---|
| | mainCollection.invalidate(true); |
---|
| | mainCollection.draw(img, debugimg, player.camMatrix, player.Fpdis, getWidth(), getHeight(), player.getPos()); |
---|
| | g.drawImage(img, 0, 0, this); |
---|
| | g.drawImage(debugimg, 0, 0, this); |
---|
| | // DEBUG DRAWING |
---|
| | g.drawString(Math.round(1000/(float)(System.currentTimeMillis() - lastTime)) + " fps" , 10, 10); |
---|
| | lastTime = System.currentTimeMillis(); |
---|
| | |
---|
| | } |
---|
| | |
---|
| | @Override |
---|
| |
---|
| | |