Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Conversation Between angstrem and hemla

1 Visitor Messages

  1. package core;
    import java.awt.Color;
    import java.awt.Graphics;

    import graphics.GraphicsObject;

    /**
    *
    * Game object class is abstract class
    * which should be inherited by all game entities
    *
    */
    public abstract class GameObject implements GraphicsObject {
    // TODO: refactor in easier to use manner
    // position
    protected double posX;
    protected double posY;
    // velocity
    protected double vx;
    protected double vy;
    // color of the object
    protected Color color;
    /**
    * @see graphics.GraphicsObject.draw
    */
    @Override
    public abstract void draw(Graphics g, int scrWidth, int scrHeight);
    /**
    * The object updating function, tries to compensate for variable
    * distances between updates by using linear interpolation
    *
    * @param deltaTime the time for which we have to compensate
    */
    public abstract void update(double deltaTime);
    public static void setVelocityX1(float f) {
    // TODO Auto-generated method stub

    }
    public static void setVelocityY(float f) {
    // TODO Auto-generated method stub

    }
    public static void setVelocityX(float f) {
    // TODO Auto-generated method stub

    }

    }

    So, thats the GameObject file
Showing Visitor Messages 1 to 1 of 1