<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
    <channel>
        <title>Game Development - Tag - Nuno Sousa&#39;s Corner</title>
        <link>https://www.nunomtsousa.com/tags/game-development/</link>
        <description>Game Development - Tag - Nuno Sousa&#39;s Corner</description>
        <generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>nuno.mt.sousa@gmail.com (Nuno Sousa)</managingEditor>
            <webMaster>nuno.mt.sousa@gmail.com (Nuno Sousa)</webMaster><lastBuildDate>Wed, 16 Oct 2024 09:08:17 &#43;0000</lastBuildDate><atom:link href="https://www.nunomtsousa.com/tags/game-development/" rel="self" type="application/rss+xml" /><item>
    <title>Block Puzzle — Color, Scores and Sound!</title>
    <link>https://www.nunomtsousa.com/posts/2024-10-16-blockpuzzlecolorscoresandsound/</link>
    <pubDate>Wed, 16 Oct 2024 09:08:17 &#43;0000</pubDate>
    <author>nuno.mt.sousa@gmail.com (Nuno Sousa)</author>
    <guid>https://www.nunomtsousa.com/posts/2024-10-16-blockpuzzlecolorscoresandsound/</guid>
    <description><![CDATA[<p>Welcome to the last installment of building a Block Puzzle! In our last <a href="https://www.nunomtsousa.com/posts/2024-10-06-blockpuzzlewecanplayit/" rel="">article</a>, we made the game playable, but it was a little monochromatic. Today, we will be changing that. We will add color, scores and sound. Finally, you’ll be able to play the game yourself!</p>
<h2 id="adding-some-color">Adding some color</h2>
<p>Adding some color to the game is quite easy. Since our game pieces use sprites that are made of string, we can simply <a href="https://github.com/nmtsousa/blocks/commit/7ac52721cea34afcf13e08ea5ef89dad7b954e72" target="_blank" rel="noopener noreffer ">make a mapping between a letter and a specific color</a>. With that mapping, each piece can have its own color, and our game bursts with color.</p>]]></description>
</item>
<item>
    <title>Block Puzzle — We can play it!</title>
    <link>https://www.nunomtsousa.com/posts/2024-10-06-blockpuzzlewecanplayit/</link>
    <pubDate>Sun, 06 Oct 2024 09:02:50 &#43;0000</pubDate>
    <author>nuno.mt.sousa@gmail.com (Nuno Sousa)</author>
    <guid>https://www.nunomtsousa.com/posts/2024-10-06-blockpuzzlewecanplayit/</guid>
    <description><![CDATA[<p>Welcome to another installment on building a Block Puzzle. We are continuing the series of articles that describe the process taken to develop a Tetris-like game.</p>
<p>In the <a href="https://www.nunomtsousa.com/posts/2024-09-25-blockpuzzlealmostplayable/" rel="">previous</a> article, we made the game almost playable. It was almost playable because we could interact with it, but the logic to remove completed lines was not there. In this article, we are going to add several types of pieces to the game and the logic that detects full lines and removes them.</p>]]></description>
</item>
<item>
    <title>Block Puzzle — Almost Playable</title>
    <link>https://www.nunomtsousa.com/posts/2024-09-25-blockpuzzlealmostplayable/</link>
    <pubDate>Wed, 25 Sep 2024 18:57:44 &#43;0000</pubDate>
    <author>nuno.mt.sousa@gmail.com (Nuno Sousa)</author>
    <guid>https://www.nunomtsousa.com/posts/2024-09-25-blockpuzzlealmostplayable/</guid>
    <description><![CDATA[<p>Welcome to another article on building a block puzzle. This is a series of articles that describe the process taken to develop a game similar to Tetris (you can find all parts of this series at the end of the article).</p>
<p>In the <a href="https://www.nunomtsousa.com/posts/2024-09-08-blockpuzzlebasegamelogic/" rel="">previous article</a>, we developed the base model for our game. In this article, we will be creating the UI for the game. The UI will use the model previously developed to make a playable game. It will not be the complete game, but having something you can use and play with enables faster feedback. We need feedback to know if the model is easy to use (it should be, because we wrote it using Test Driven Development), but we also need feedback on what&rsquo;s the next functionality that we should develop. I prefer to do development in small steps and collect feedback as I go, even when I am doing it alone.</p>]]></description>
</item>
<item>
    <title>Block Puzzle — Base Game Logic</title>
    <link>https://www.nunomtsousa.com/posts/2024-09-08-blockpuzzlebasegamelogic/</link>
    <pubDate>Sun, 08 Sep 2024 18:51:46 &#43;0000</pubDate>
    <author>nuno.mt.sousa@gmail.com (Nuno Sousa)</author>
    <guid>https://www.nunomtsousa.com/posts/2024-09-08-blockpuzzlebasegamelogic/</guid>
    <description><![CDATA[<p>In the <a href="https://www.nunomtsousa.com/posts/2024-09-03-blockpuzzlestartingprject/" rel="">previous article</a> on the Block Puzzle game, I showed how I intended to separate the game logic from its UI. The goal behind this separation is to make it easier to develop and test the game logic without having to do it manually via the UI. In this article, I will show how I am doing the unit tests without writing any UI or even having any dependency on UI code. Although the work was done in small steps, in this article I will explain the reasoning behind them in the hope that I can explain my reasoning behind doing it the way I did it.</p>]]></description>
</item>
<item>
    <title>Block Puzzle — Starting the Project</title>
    <link>https://www.nunomtsousa.com/posts/2024-09-03-blockpuzzlestartingprject/</link>
    <pubDate>Tue, 03 Sep 2024 18:48:42 &#43;0000</pubDate>
    <author>nuno.mt.sousa@gmail.com (Nuno Sousa)</author>
    <guid>https://www.nunomtsousa.com/posts/2024-09-03-blockpuzzlestartingprject/</guid>
    <description><![CDATA[<p>The first game idea that came to me was inspired by an <a href="https://www.youtube.com/watch?v=4sCSJW3hamE" target="_blank" rel="noopener noreffer ">YouTube</a> video I saw of <a href="https://www.youtube.com/@createdbykoko" target="_blank" rel="noopener noreffer ">Mitch Koko</a> programming a game in Flutter from scratch. The game was a Tetris, programmed in bulk without a lot of care for structure and tests. But that goes against most of the lessons I have collected over the years. I like structure and tests. I believe they allow me to go faster, but before that a small detour.</p>]]></description>
</item>
</channel>
</rss>
