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.

2 Visitor Messages

  1. View Conversation
    Send me mp on facebook
  2. View Conversation
    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 2 of 2
About angstrem

Basic Information

Age
29
About angstrem
Location:
Ukraine
Occupation:
Student
Java Skill Level:
Intermediate

Statistics


Total Posts
Total Posts
200
Posts Per Day
0.05
Visitor Messages
Total Messages
2
Most Recent Message
July 8th, 2013 04:29 PM
Total Thanks
Total Thanks
9
  • Thanked 31 Times in 29 Posts
General Information
Last Activity
November 11th, 2013 10:51 AM
Join Date
March 7th, 2013

1 Friend

  1. Suhail Tamboli Suhail Tamboli is offline

    Junior Member

    Suhail Tamboli
Showing Friends 1 to 1 of 1