From 06184c13af639917e1af5a1bc298b0022c1398ea Mon Sep 17 00:00:00 2001 From: David Luevano Alvarado Date: Sun, 27 Aug 2023 18:38:10 -0600 Subject: build site with new godot entry --- live/blog/rss.xml | 204 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 202 insertions(+), 2 deletions(-) (limited to 'live/blog/rss.xml') diff --git a/live/blog/rss.xml b/live/blog/rss.xml index e068ac4..82a3256 100644 --- a/live/blog/rss.xml +++ b/live/blog/rss.xml @@ -22,6 +22,205 @@ LuĂ©vano's Blog https://blog.luevano.xyz + + Porting the FlappyBird clone to Godot 4.1 devlog 2 + https://blog.luevano.xyz/g/flappybird_godot_devlog_2.html + https://blog.luevano.xyz/g/flappybird_godot_devlog_2.html + Sun, 27 Aug 2023 23:28:10 GMT + English + Gamedev + Gdscript + Godot + Notes on porting my FlappyBird clone to Godot 4.1, as well as notes on the improvements and changes made overall. + As stated in my FlappyBird devlog 1 entry I originally started the clone in Godot 4, then backported back to Godot 3 because of HTML5 support, and now I’m porting it back again to Godot 4 as there is support again and I want to start getting familiar with it for future projects.

+

The source code can be found at luevano/flappybirdgodot (main branch). Playable at itch.io:

+

+ +

Table of contents

+ +

Porting to Godot 4

+

Disclaimer: I started the port back in Godot 4.0 something and left the project for a while, then opened the project again in Godot 4.1, and it didn’t ask to convert anything so probably nowadays the conversion is better.

+

General changes

+

These include the first changes for fixing some of the conflicting code to at least make it run (no gameplay) as well as project settings adjustments.

+
    +
  • Changing the default import settings for pixel art no longer works (though it’s worth to double check as they changed from Texture to a Texture2D). The important parameter to change is the Filter for the textures.
      +
    • Since all nodes inherit parameters by default, changing on the parent nodes (or just once in the root such as Main.tscn) will suffice: Go to Inspector -> CanvasItem -> Texture and change Filter from “Inherit” to “Nearest”.
    • +
    +
  • +
  • Re-set the InputMap as the system probably changed from Godot 3 to Godot 4.
  • +
  • For SavedData singleton, change from File to ConfigFile and refactor. This is really not needed for making it run, but I changed this right away.
  • +
  • Remove velocity property of Player which is already included in CharacterBody2D.
  • +
  • Disable all TileMap related code as tile maps have changed drastically, they need more effort to covnert.
  • +
  • Change String(int) to str(int).
  • +
+

Player

+

Now that the game at least runs, next thing is to make it “playable”:

+
    +
  • AnimatedSprite changed to AnimatedSprite2D (with the inclusion of AnimatedSprite3D). This node type changed with the automatic conversion.
      +
    • Instead of checking if an animation is playing with the the playing property, the method is_playing() needs to be used.
    • +
    +
  • +
  • The default_gravity from the ProjectSettings no longer needs to be multiplied by 10 to have reasonable numbers. The default is now 980 instead of 98. I later changed this when refactoring the code and fine-tuning the feel of the movement.
  • +
  • The Collision mask can be changed programatically with the set_collision_mask_value (and similar with the layer). Before, the mask/layer was specified by the bit which started from 0, but now it is accessed by the layer_number which starts from 1.
  • +
+

World

+

This is the most challenging part as the TileMap system changed drastically, it is basically a from the ground up redesign, luckily the TileMaps I use are really simple. Since this is not intuitive from the get-go, I took some notes on the steps I took to set up the world TileMap.

+

Scene

+

Instead of using one scene per TileMap only one TileMap can be used with multiple Atlas in the TileSet. Multiple physics layers can now be used per TileSet so you can separate the physics collisions on a per Atlas or Tile basis. The inclusion of Tile patterns also helps when working with multiple Tiles for a single cell “placement”. How I did it:

+
    +
  1. Created one scene with one TileMap node, called WorldTileMap.tscn, with only one TileSet as multiple Atlas‘ can be used (this would be a single TileSet in Godot 3).
      +
    • To add a TileSet, select the WorldTileMap and go to Inspector -> TileMap -> TileSet then click on “” and then “New TileSet” button.
    • +
    • To manipulate a TileSet, it needs to be selected, either by clicking in the Inspector section or on the bottom of the screen (by default) to the left of TileMap, as shown in the image below.
    • +
    +
  2. +
+
+TileMap's TileSet selection highlighted in red, "Add" button in green. +
+
+
    +
  1. Add two Atlas to the TileSet (one for the ground tiles and another for the pipes) by clicking on the “Add” button (as shown in the image above) and then on “Atlas”.
  2. +
  3. By selecting an atlas and having the “Setup” selected, change the Name to something recognizable like ground and add the texture atlas (the spritesheet) by dragging and dropping in the “Texture field, as shown in the image below. Take a not of the ID, they start from 0 and increment for each atlas, but if they’re not 0 and 1 change them.
  4. +
+
+TileSet atlas setup selection highlighted in red, atlas name and id in green. +
TileSet atlas setup selection highlighted in red, atlas name and id in green.
+
+
    +
  1. I also like to delete unnecessary tiles (for now) by selecting the atlas “Setup” and the “Eraser” tool, as shown in the image below. Then to erase tiles just select them and they’ll be highlighted in black, once deleted they will be grayed out. If you want to activate tiles again just deselect the “Eraser” tool and select wanted tiles.
  2. +
+
+Atlas setup erase tiles. "Setup" selection and "Eraser" tool highlighted in red and green, respectively. +
Atlas setup erase tiles. “Setup” selection and “Eraser” tool highlighted in red and green, respectively.
+
+
    +
  1. For the pipes it is a good idea to modify the “tile width” for horizontal 1x2 tiles. This can be acomplished by removing all tiles except for one, then going to the “Select” section of the atlas, selecting a tile and extending it either graphically by using the yellow circles or by using the properties, as shown in the image below.
  2. +
+
+Atlas resize tile. "Select" selection and "Size in Atlas" highlighted in red and green, respectively. +
Atlas resize tile. “Select” selection and “Size in Atlas” highlighted in red and green, respectively.
+
+
    +
  1. Add physics (collisions) by selecting the WorldTileMap‘s TileSet and clicking on “Add Element” at the TileMap -> TileSet -> Physics Layer twice, one physics layer per atlas. Then set the collision’s layers and masks accordingly (ground on layer 2, pipe on 3). In my case, based on my already set layers.
      +
    • This will enable physics properties on the tiles when selecting them (by selecting the atlas, being in the correct “Select” section and selecting a tile) and start drawing a polygon with the tools provided. This part is hard to explain in text, but below is an image of how it looks once the polygon is set.
    • +
    +
  2. +
+
+Tile add physics polygon in Physics Layer 0. +
Tile add physics polygon on physics layer 0.
+
+
- Notice that the polygon is drawn in *Physics Layer 0*. Using the grid option to either `1` or `2` is useful when drawing the polygon, make sure the polygon closes itself or it wont be drawn.
+
+
    +
  1. Create a tile pattern by drawing the tiles wanted in the editor and then going to the Patterns tab (to the right of Tiles) in the TileMap, selecting all tiles wanted in the pattern and dragging the tiles to the Patterns window. Added patterns will show in this window as shown in the image below, and assigned with IDs starting from 0.
  2. +
+
+Tileset pattern. +
Tileset pattern.
+
+

Script

+

Basically merged all 3 scripts (ground_tile_map.gd, pipe_tile_map.gd and world_tiles.gd) into one (world_tile_map.gd) and immediatly was able to delete a lot of signal calls between those 3 scripts and redundant code.

+

The biggest change in the scripting side are the functions to place tiles. For Godot 3:

+
# place single tile in specific cell
+void set_cell(x: int, y: int, tile: int, flip_x: bool = false, flip_y: bool = false, transpose: bool = false, autotile_coord: Vector2 = Vector2( 0, 0 ))
+void set_cellv(position: Vector2, tile: int, flip_x: bool = false, flip_y: bool = false, transpose: bool = false, autotile_coord: Vector2 = Vector2( 0, 0 ))
+
+

Whereas in Godot 4:

+
# place single tile in specific cell
+void set_cell(layer: int, coords: Vector2i, source_id: int = -1, atlas_coords: Vector2i = Vector2i(-1, -1), alternative_tile: int = 0)
+# erase tile at specific cell
+void erase_cell(layer: int, coords: Vector2i)
+
+

How to use these functions in Godot 4 (new properties or differences/changes):

+
    +
  • layer: for my case I only use 1 layer so it is always set to 0.
  • +
  • coords: would be the equivalent to position for set_cellv in Godot 3.
  • +
  • source_id: which atlas to use (ground: 0 or pipe 1).
  • +
  • atlas_coords: tile to use in the atlas. This would be the equivalent to tile in Godot 3.
  • +
  • alternative_tile: for tiles that have alternatives such as mirrored or rotated tiles, not required in my case.
  • +
+

Setting source_id=-1, atlas_coords=Vector21(-1,-1) or alternative_tile=-1 will delete the tile at coords, similar to just using erase_cell.

+

With the addition to Tile patterns (to place multiple tiles), there is a new function:

+
# place pattern
+void set_pattern(layer: int, position: Vector2i, pattern: TileMapPattern)
+
+

Where position has the same meaning as coords in set_cell/erase_cell, not sure why it has a different name. The pattern can be obtained by using get_pattern method on the tile_set property of the TileMap. Something like:

+
var pattern: TileMapPattern = tile_set.get_pattern(index)
+
+

Other than that, Vector2 needs to be changed to Vector2i.

+

Changes and improvements

+

General changes and additions that have nothing to do with porting to Godot 4, things I wanted to add regardless of the version.

+

Audio

+

The audio in the Godot 3 version was added in the last minute and it was blasting by default with no option to decrease the volume or mute it. To deal with this:

+
    +
  1. Refactored the code into a single scene/script to have better control.
  2. +
  3. Added a volume control slider by following this GDQuest guide.
  4. +
  5. Added a mute button, following the same principle as with the volume control.
  6. +
+

The basic code required for these features is the following:

+
# get audio bus index
+var audio_bus_name: String = "Master"
+var _bus: int = AudioServer.get_bus_index(audio_bus_name)
+
+# change the volume
+var linear_volume: float = 0.5 # 50%, needs to be between 0.0 and 1.0
+var db_volume: float = linear_to_db(linear_volume)
+AudioServer.set_bus_volume_db(_bus, db_volume)
+
+# mute
+AudioServer.set_bus_mute(_bus, true) # false to unmute
+
+

Just be careful with how the linear_volume is set (from a button or slider) as it has to be between 0.0 and 1.0.

+

Event bus

+

Moved all the signal logic into an event bus to get rid of the coupling I had. This is accomplished by:

+
    +
  1. Creating a singleton (autoload) script which I called event.gd and can be accessed with Event.
  2. +
  3. All the signals are now defined in event.gd.
  4. +
  5. When a signal needs to be emited instead of emitting the signal from any particular script, emit it from the event bus with Event.<signal_name>.emit(<optional_args>).
  6. +
  7. When connecting to a signal instead of taking a reference to where the signal is defined, simply connect it with with Event.<signal_name>.connect(<callable>[.bind(<optional_args>)])
      +
    • For signals that already send arguments to the callable, they do not need to be specified in bind, only extras are needed here.
    • +
    +
  8. +
+

UI

+

Really the only UI I had before was for rendering fonts, and the way fonts work changed a bit. Before, 3 resources were needed as noted in my previous entry:

+
    +
  1. Font file itself (.ttf for example).
  2. +
  3. DynamicFontData: used to point to a font file (.ttf) and then used as base resource.
  4. +
  5. DynamicFont: usable in godot control nodes which holds the DynamicFontData and configuration such as size.
  6. +
+

Now only 1 resource is needed: FontFile which is the .ttf file itself or a godot-created resource. There is also a FontVariation option, which takes a FontFile and looks like its used to create fallback options for fonts. The configuration (such as size) is no longer held in the font resource, but rather in the parent control node (like a Label). Double clicking on the .ttf file and disabling antialiasing and compression is something that might be needed. Optionally create a FontLabelSettings which will hold the .ttf file and used as base for Labels. Use “Make Unique” for different sizes. Another option is to use Themes and Variations.

+

I also created the respective volume button and slider UI for the added audio functionality as well as creating a base Label to avoid repeating configuration on each Label node.

+

Misc

+

Small changes that don’t affect much:

+
    +
  • Updated @export to @export_range. The auto conversion didn’t use the correct annotation and instead used a comment.
  • +
  • Refactored the game_scale methodolgy as it was inconsistent. Now only one size is used as base and everything else is just scaled with the root Window.
  • +
  • Got rid of the FPS monitoring, was only using it for debugging purposes back then.
  • +
]]>
+
Set up a pastebin alternative with PrivateBin and YOURLS https://blog.luevano.xyz/a/pastebin_alt_with_privatebin.html @@ -2246,7 +2445,7 @@ func physics_process(delta: float) -> void: Gamedev Gdscript Godot - Since I'm starting to get more into gamedev stuff, I'll start blogging about it just to keep consistent. This shows as "devlog 1" just in case I want to include more parts for extra stuff. + Since I'm starting to get more into gamedev stuff, I'll start blogging about it just to stay consistent. I just have a bit of experience with Godot and with gamedev in general, so I started with this game as it is pretty straight forward. On a high level the main characteristics of the game are:

  • Literally just one sprite going up and down.
  • @@ -2255,9 +2454,10 @@ func physics_process(delta: float) -> void:
  • If you touch the pipes, the ground or go past the “ceiling” you lose.

The game was originally developed with Godot 4.0 alpha 8, but it didn’t support HTML5 (webassembly) export… so I backported to Godot 3.5 rc1.

+

Note: I’ve updated the game to Godot 4 and documented it on my FlappyBird devlog 2 entry.

Not going to specify all the details, only the needed parts and what could be confusing, as the source code is available and can be inspected; also this assumes minimal knowledge of Godot in general. Usually when I mention that a set/change of something it usually it’s a property and it can be found under the Inspector on the relevant node, unless stated otherwise; also, all scripts attached have the same name as the scenes, but in snake_case (scenes/nodes in PascalCase).

One thing to note, is that I started writing this when I finished the game, so it’s hard to go part by part, and it will be hard to test individual parts when going through this as everything is depending on each other. For the next devlog, I’ll do it as I go and it will include all the changes to the nodes/scripts as I was finding them, probably better idea and easier to follow.

-

The source code can be found at luevano/flappybird_godot#godot-3.5, it also contains the exported versions for HTML5, Windows and Linux (be aware that the sound might be too high and I’m too lazy to make it configurable, it was the last thing I added), or you could also go to the itch.io page I setup where it’s playable in the browser:

+

The source code can be found at luevano/flappybirdgodot#godot-3.5 (godot-3.5 branch), it also contains the exported versions for HTML5, Windows and Linux (be aware that the sound might be too high and I’m too lazy to make it configurable, it was the last thing I added on the latest version this is fixed and audio level is configurable now). Playable on itch.io (Godot 4 version):

Table of contents

-- cgit v1.2.3-54-g00ecf