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

Enhancing the rendering pipeline

THe fact that we need more and more control on rendering in the helpers, demonstrates how we must update the Render class and all the drawing tools.

Our Helpers will inherit from the AstractRenderHelper, and all common renderer processing will be defined in the abstract class.

We will specifically design the debug info display in this component to let all inheriting components take benefit of such common implementation.

Display Debug Info

In all the GameObject and its inherent, a getDebugInfo() method returning a list of String must be provided to prepare debug data to be displayed visually on the GameObject side.

parsing all important attributes, the keys/values are added to the list according to their own humanly readable format.

A default one in the GameObject its self is implemented.

public class gameObject {
    //...
    public List<String> getDebugInfo() {
        this.debugOffsetX = -40;
        this.debugOffsetY = 10;
        List<String> debugInfo = new ArrayList<>();
        if (debug > 0) {
            debugInfo.add("n:" + name);
            debugInfo.add("dbgLvl:" + debug);
            if (debug > 2) {
                debugInfo.add("pos:" + position.toString());
                debugInfo.add("vel:" + velocity.toString());
                debugInfo.add("acc:" + acceleration.toString());
                if (debug > 3) {
                    debugInfo.add("mass:" + mass);
                    if (material != null) {
                        debugInfo.add("mat:" + material.name);
                        debugInfo.add("frict:" + material.dynFriction);
                    }
                    debugInfo.add("contact:" + getAttribute("touching", false));
                    debugInfo.add("jumping:" + getAttribute("jumping", false));
                }
            }
            debugInfo.add("active:" + (active ? "on" : "off"));
        }
        return debugInfo;
    }
    //...
}

It can be overloaded in the extending object; in the Inventory Object we add the inventory size.

public class InventoryObject extends GameObject {
    //...
    @Override
    public List<String> getDebugInfo() {
        List<String> dbgInfo = super.getDebugInfo();
        dbgInfo.add(String.format("size: %d", this.items.size()));
        return dbgInfo;
    }
    //...
}

Rendering debug information

The rendering implementation in the AbstractRenderHelper will serve all GameObject and its child.

public class AbstractRenderHelper {
    //...
    public void drawDebugInfo(Graphics2D g, GameObject go) {
        // parse the GameObject#getDebugInfo() String List and proceed to the line rendering;
    }
    //...
}

And many utilities are implemented and delegated to this class:

INFO
These rendering utilities will be moved to the Render class itself in a next release (e.g. the 1.0.3 release)