• [GRUEDORF] Kildorf's Devlog

    Gruedorf gruedorf
    46
    8 Votes
    46 Posts
    10k Views
    kildorfK
    Devlog 2022-11-13 continued Godot 4 migration got cutscenes playing again fixed game saving/loading fixed shadows discovered that _ready() works subtly differently now lots of fighting with UI various other fixes [image: 1668391981255-screen-20221113.jpg] You can actually get out of the house and talk to people again! The game crashes moments later when the shop interface attempts to load. Not a super exciting week to report on; just continued slogging through the update process. If nothing else, this process is helping me reacquaint myself with the code after not looking at it for a few months! Just a few miscellaneous notes this week… Godot 4 Changed _ready() In Godot, _ready() is called when the Node is, well, ready to start its set up (after all its children in the scene tree have completed their _ready() work). It’s where you do all your upfront initialization (usually), so it’s pretty important. In Godot 3, the _ready() defined in every class in your inheritance hierarchy gets called, in order, with your “local” _ready() being called last. This is different from how most function calls work, since they will call the “local” function and you have to explicitly call the super-class’s version by using .whatever(). In Godot 4, _ready() is no longer special (and instead of just using a bare . to call your super-class’s methods, you use super.) so you have to explicitly call super._ready() in your _ready() method. I actually think this is good! Consistency is great! It was just a surprise since that’s not how it worked before, and I only figured it out after some trial and error. … And Some Other Things There’s one other weird change that I’ve found, which I’m not as fond of. Classes in GDScript, especially in Godot 3, are a bit weird to work with as a data type themselves. It’s customary to override two particular functions, get_class() and is_class(), so that you can query what something is. They’d look something like extends Node class_name FooBar func get_class(): return "FooBar" func is_class(class_name): return class_name == get_class() or .is_class(class_name) which lets you write code like if thing.is_class(TheOneIWant):, allowing for inheritance etc etc. Well, anyway, in Godot 4 you can’t do that because get_class appears to be special now and you can’t actually override it. I’m not sure if this is intentional or a current bug! Anyway, turns out that the is keyword does what you need now anyway so there’s not really any real reason for doing all of this anymore anyway. You can just write if thing is TheOneIWant and it handles inheritance correctly. (I actually just popped open Godot 3.5 to see if I could figure out exactly how is works in Godot 3, but for some reason I couldn’t even get my test project to run and print anything at all to the console so if it’s worked this way all along, then I guess this more a note to myself than useful to anyone else.) UI Continues to Baffle Me I come from a web development background, primarily in frontend development, so it’s not that UI in general is mysterious to me but it always takes me several tries to get Godot’s UI system to do what I want. I’m glad the UI system is there, it’s quite capable! I just always have to fight it. Some combination of me using it in some bone-headed ways and some interesting decisions on the part of the auto-migration has led me to having to fix a lot of my menus and such to get them looking right again. I’m using the process to try to understand the theme system a bit better and actually, you know, use that instead of having a bunch of manual overrides everywhere. So again, probably for the better! It’s just work. The Show Goes On I’m getting impatient to get back to actually pushing the game forward. I don’t know I’ll manage that by next Sunday, but progress is progress. Have a great week! [original post on my devlog]
  • [Gruedorf] HatchetSoft updates Thread

    Gruedorf gruedorf
    18
    6 Votes
    18 Posts
    3k Views
    HatchetH
    So… it’s been quite a while since I’ve made any updates here. I had taken a bit of a hiatus for other projects, including Tetranet and CTMod, and some personal time. But that doesn’t mean there has been no progress, and I am starting to make another push to turning this into a real game. I updated the log system to load from JSON files instead of the primitive system I had before, this should make it much more flexible and easier to add new logs and link them objectives. In addition, I’ll also be adding in emails that you will receive from characters periodically. Of course, you will still interact with some of them in real time, and the dialog system is also loaded in a similar way: [image: 1742149385217-3ad0946c-f678-4e09-ba81-1b2b5d4f6439-image.png] I’m also going to be introducing a bit more of an RPG element with certain stats. Accuracy is a new stat that will affect how likely you are to hit or do critical damage to a target. And targeting is in fact a gameplay mechanic now: [image: 1742149663766-f1ccba6e-004e-4e4b-96d5-858ae4e7ac1a-image.png] The mouse cursor is now context sensitive and will turn into a target over enemies, or a hand when pointing at items or interactable elements of the environment. [image: 1742149769135-b334e659-e2af-423d-9fcc-432486c3f4a4-image.png] Finally, the main menu got a revamp. Using a more consistent font to fit in Save as well as Load into the menu. Saving partially works and creates thumbnails of where you currently are in the environment. [image: 1742149794214-01f22173-044d-4ec5-91e1-f8399e7d6614-image.png] [image: 1742150072033-1bd5dbef-4602-4fd6-b6ca-a54e0dbda3b9-image.png] I’m using the jsonpickle module to save all of the objects I need to keep track of - the player itself, equipment and inventory, and state of the world objects and entities. A bit more work to actually load everything back in to the engine… I’ve put this off for literally years, so fingers crossed it all goes smoothly and I can go to the next step of actually creating game content. It is still a bit tedious to add new images and objects into the world, but I at least do have a process. Now the main issue now is actually creating some new content so you have at least some variety to look while exploring. I will try my hand at creating some of it, like corpses (that you can possibly loot), labels that can go on walls to mark areas, and other enemy types. Will see how far that can get me. Hopefully it won’t be nearly as long for the next update… I still need to get a trailer going and finish setting up that Steam page! Goals maybe for next month, fingers crossed!