Blog

  • Recording KOPI

    Recording KOPI

    We’re working on KOPI trailer, which needs a lot of in-game vide shots (yes, much more than we thought, there’s a pattern emerging!). The initial naive thoughts of just capturing game play of the two of us playing very quickly turned out to be completely insufficient: even at 4k, the…

    Continue reading

  • KOPI World Tour stop 1

    KOPI World Tour stop 1

    If you want to be one of the first in the world to play KOPI, and if you also fancy a free coffee or a small bite to eat, come and join us first in Nucre Patisseries in Kuala Lumpur on 21st October! Play KOPI, get a free coffee |…

    Continue reading

  • KOPI is coming

    KOPI is coming

    The development maelstrom is slowly coming to a brief pause, which can only mean one thing: KOPI is nearing release. Our Steam page is “99%” ready (just a few tweaks left), and we are working on our trailer. With the trailer, our social media is also going to come alive.…

    Continue reading

  • Testing gameplay II

    Testing gameplay II

    Continuing the previous–to paraphrase–“Testing is painful” post, we did everything we could to reduce this pain. Tests indeed aren’t easy, so we need to do all we can to reduce this pain & friction. In KOPI, we support local multiplayer for “couch mode”: if you plug in two controllers, and…

    Continue reading

  • Testing gameplay I

    Testing gameplay I

    Tests are crucial part of any system; tests help us make sure the code we ship works as intended. Ah yes… and yet, there are bugs left. And a lot of the times, it’s the players that discover the bugs: strange bugs; complicated and unexpected sequences of actions, leading to…

    Continue reading

  • A few C++ tips

    A few C++ tips

    const_cast It is the case that const_cast can remove or add const ness to things. However, even if the const ness is removed, if an object is declared to be const in the first place, making any modifications to it remains undefined behaviour. Consider this code Here we use const_cast…

    Continue reading

  • Fast local iterations

    Fast local iterations

    In case you didn’t notice, we’re building a game. The game of course runs “without any bugs 🫣” in the Unreal Editor, but it is necessary to test the game on various local devices as quickly as possible. We could use our CI/CD, but that is a touch slower: it…

    Continue reading

  • Multiple local controllers II

    Multiple local controllers II

    In KOPI, we needed to implement couch co-op mode with multiple controllers all driving the game’s user interface using Unreal Engine’s CommonUI. All controllers should share the same focus, but a APlayerController should only be spawned for a controller that joins. To implement this kind of functionality without strange glitches,…

    Continue reading

  • Dream on a Stick build environment

    Dream on a Stick build environment

    Ignoring the artwork side of things, game is a piece of software; and as serious engineers, we knew that we could not fall back into “it works on my machine”; or as is the case may be in Unreal Engine, “works on my machine in the Unreal Editor”. We needed…

    Continue reading

  • TWWL 2

    TWWL 2

    Let’s do another round of This Week We Learned–laugh and point at our mistakes and blunders so you can avoid them. Do not use pointers [to assets] in Data Tables If you want to keep asset references in your data tables–in our case ingredients that need their specific UStaticMesh and…

    Continue reading