Go, Go, Godot!
  • 0

A GDScript refactoring exercise

December 22, 2022

Arguably, more fun than writing code is removing code. I was assembling a split-screen multiplayer UI.

The goal behavior is to show/hide the appropriate displays for the players, depending on how many players there are.

Initially, the code to update the UI was very simple, because I started with two players. In that case, you can get away with just toggling the visibility of the second player’s display.

Once I added more scenarios, the code got lengthier. In order to support 0 – 4 players correctly, it ended up looking like this:

## Show the correct viewports based on player count
func _update_player_viewports():
    match num_players:
        0:
            %HBTop.visible = false
            %HBBottom.visible = false
        1:
            %HBTop.visible = true
            %HBTop/VPC1.visible = true
            %HBTop/VPC2.visible = false
            %HBBottom.visible = false
        2:
            %HBTop.visible = true
            %HBTop/VPC1.visible = true
            %HBTop/VPC2.visible = true
            %HBBottom.visible = false
        3:
            %HBTop.visible = true
            %HBTop/VPC1.visible = true
            %HBTop/VPC2.visible = true
            %HBBottom.visible = true
            %HBBottom/VPC1.visible = true
            %HBBottom/VPC2.visible = false
        4:
            %HBTop.visible = true
            %HBTop/VPC1.visible = true
            %HBTop/VPC2.visible = true
            %HBBottom.visible = true
            %HBBottom/VPC1.visible = true
            %HBBottom/VPC2.visible = true

If you’re familiar with the match statement syntax, this code is really quite straightforward. It’s a bit naïve verbose, but it is easy to follow and structured enough to be readable. But could it be shorter? The cases for three and four players look nearly identical.

Sometimes it can be risky to refactor something verbose for a bit more brevity. Some solutions might end up being “too clever”. I try to aim for clarity first unless there are specific performance demands.

Usually, it’s a matter of how to approach the problem. The code above very clearly divides up the use cases. If I’m dealing with three players, I know I need to look at the 3: block and that I can ignore the other blocks of code. It’s very light in terms of cognitive load.

This code snippet achieves that same behavior, but in only 8 lines of code instead of 30:

## Show the correct viewports based on player count
func _update_player_viewports():
    %HBTop.visible = num_players > 0
    %HBTop/VPC1.visible = num_players > 0
    %HBTop/VPC2.visible = num_players > 1
    %HBBottom.visible = num_players > 2
    %HBBottom/VPC1.visible = num_players > 2
    %HBBottom/VPC2.visible = num_players > 3

But is it as intuitive?

  1. The match statement is entirely gone.
  2. Each node is updated exactly once (but with a boolean expression instead of a boolean constant; arguably less declarative and needs computation by the reader).
  3. The order of nodes is specified so that the visibility is true until it’s false . Example for 2 players:
## Update the viewports to reflect the configured players
func _update_player_viewports():
    %HBTop.visible = num_players > 0
    %HBTop/VPC1.visible = num_players > 0
    %HBTop/VPC2.visible = num_players > 1
    %HBBottom.visible = num_players > 2
    %HBBottom/VPC1.visible = num_players > 2
    %HBBottom/VPC2.visible = num_players > 3

Well, it’s shorter anyway.

One final touch: I want to always show the first viewport, even when there are no players:

## Show the correct viewports based on player count
func _update_player_viewports():
    %HBTop.visible = num_players >= 0
    %HBTop/VPC1.visible = num_players >= 0
    %HBTop/VPC2.visible = num_players > 1
    %HBBottom.visible = num_players > 2
    %HBBottom/VPC1.visible = num_players > 2
    %HBBottom/VPC2.visible = num_players > 3
developer experienceobject-oriented Programmingprogramming
Posted in Godot.
Share
PreviousIs Godot is the Linux of Game Engines?
NextWhen not all strings are Strings. Detect bugs in your GDscript more easily with static typing

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Related Posts

  • October 10, 2024

    Inventory System v1.16 available

    A new version of the Inventory System is available. This version requires Godot Engine 4.3 and includes many refinements. New Drag and Drop system The Drag-and-Drop component has received a major overhaul. The previous system was quite complex and the separation of the classes that implemented the click-and-drag and click-and-release approaches had so much overlap …

  • October 30, 2023

    Super Godot Galaxy Concept

    Hugo-Dz created Super Godot Galaxy: https://github.com/Hugo-Dz/super-godot-galaxy, which he announced in this Reddit post. It uses the 3D Starter Kit from Kenney and shows how to achieve the effect of applying gravity toward the center of a small spherical planet.

  • June 2, 2023

    Creating games with Godot Engine using AI

    New to Godot Engine? Want to get started creating awesome games quickly? Just use AI! AI learns (is trained) from online content (which is a whole separate topic). As a result, the quality of the answers the AI provides is based on the volume and variety of content available to learn from. Since Godot is …

  • July 17, 2023

    Terrain3D for Godot has been released

    The Terrain3D addon for Godot lets you create and manage 3D terrains within Godot. It looks quite promising for making landscapes, hills, valleys, and other natural environments. The addon provides tools for sculpting the terrain, and you can paint different textures like grass, dirt, or rock, and blend them smoothly. It also supports features like …

    © 2025 GoGoGodot.io. All rights reserved.