fromClassToGame

A journey from a simple class to a game with the Java language https://mcgivrer.github.io/fromClassToGame/ , and open Hub https://www.openhub.net/p/fromClassToGame.

View the Project on GitHub mcgivrer/fromClassToGame

Adding Lights

Any game must have some rendering artifact to simulate lights. Here we are going to implements some basic lights to illuminate the game scene.

We won’t use 3D effects, but juste some trick to light the scene.

A light can be :

The LightObject class

So the object class we are going to design will be a enhanced GameObject with

public class LightObject extends GameObject {
    public LightType lightType;
    public Color foregroundColor;
    public Double intensity;
    public Double glitterEffect;

    public Color[] colors;
    public float[] dist;
    public RadialGradientPaint rgp;
}

The LightObject rendering

To be able to draw those new object, we need to enhance our Render system by adding a new RenderHelper dedicated to the LightObject.

We need to implement 3 different rendering process according to the 3 types of light.

The LightObjectRenderHelper.java file:

public class LightObjectRenderHelper extends AbstractRenderHelper implements RenderHelper<LightObject> {
    public LightObjectRenderHelper(Render r) {
        super(r);
    }

    @Override
    public String getType() {
        return LightObject.class.getName();
    }

    @Override
    public void draw(Graphics2D g, LightObject l) {
        switch (l.lightType) {
            case LIGHT_SPHERE:
                drawSphereLight(g, l);
                break;
            case LIGHT_CONE:
                drawConeLight(g, l);
                break;
            case LIGHT_AMBIANT:
                drawAmbientLight(g, l);
                break;
            default:
                break;
        }
        l.rendered = true;
    }
}

TODO : explain the different draw methods.