<feed xmlns='http://www.w3.org/2005/Atom'>
<title>Nonortho, branch master</title>
<subtitle>An isometric tile game
</subtitle>
<link rel='alternate' type='text/html' href='https://git.cflip.net/Nonortho/'/>
<entry>
<title>Add a game timer</title>
<updated>2022-04-02T03:23:01+00:00</updated>
<author>
<name>cflip</name>
<email>cflip@cflip.net</email>
</author>
<published>2022-04-02T03:23:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cflip.net/Nonortho/commit/?id=3ee74cdb1b4fd2bf9eefdf6bcd8439b27cbb7336'/>
<id>3ee74cdb1b4fd2bf9eefdf6bcd8439b27cbb7336</id>
<content type='text'>
This adds a delta time that ensures that everything moves at the same
speed regardless of framerate or system.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds a delta time that ensures that everything moves at the same
speed regardless of framerate or system.
</pre>
</div>
</content>
</entry>
<entry>
<title>Store train objects in a unique_ptr</title>
<updated>2022-03-31T03:48:07+00:00</updated>
<author>
<name>cflip</name>
<email>cflip@cflip.net</email>
</author>
<published>2022-03-31T03:48:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cflip.net/Nonortho/commit/?id=7803be09b7c0a133b1009408fea2fb1f1474e786'/>
<id>7803be09b7c0a133b1009408fea2fb1f1474e786</id>
<content type='text'>
The trains were being destructed after leaving the scope of the
addVehicle function. This change makes sure the trains stay allocated
for the entire lifetime of the level.

Fixes #2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The trains were being destructed after leaving the scope of the
addVehicle function. This change makes sure the trains stay allocated
for the entire lifetime of the level.

Fixes #2
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix sprite sorting when rendering the level</title>
<updated>2022-03-29T22:29:56+00:00</updated>
<author>
<name>cflip</name>
<email>cflip@cflip.net</email>
</author>
<published>2022-03-29T22:29:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cflip.net/Nonortho/commit/?id=2b35b393203403704b740f7627af701968c2dfcc'/>
<id>2b35b393203403704b740f7627af701968c2dfcc</id>
<content type='text'>
This fixes a misuse of std::find_if and vector iterators. Previously,
the first vehicle in the currently drawing tile would be drawn, and then
every other vehicle would be drawn regardless of position.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes a misuse of std::find_if and vector iterators. Previously,
the first vehicle in the currently drawing tile would be drawn, and then
every other vehicle would be drawn regardless of position.
</pre>
</div>
</content>
</entry>
<entry>
<title>Return a reference instead of a pointer in addVehicle()</title>
<updated>2022-03-29T22:26:11+00:00</updated>
<author>
<name>cflip</name>
<email>cflip@cflip.net</email>
</author>
<published>2022-03-29T22:26:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cflip.net/Nonortho/commit/?id=94212b5fda87b6983465103d6f35253c874a2915'/>
<id>94212b5fda87b6983465103d6f35253c874a2915</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Checkout with submodules on CI</title>
<updated>2022-03-28T22:17:34+00:00</updated>
<author>
<name>cflip</name>
<email>cflip@cflip.net</email>
</author>
<published>2022-03-28T22:17:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cflip.net/Nonortho/commit/?id=cacee6dfd972791996b3aae2a8ad4c733de6c05c'/>
<id>cacee6dfd972791996b3aae2a8ad4c733de6c05c</id>
<content type='text'>
This ensures that stb_image.h can be included.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This ensures that stb_image.h can be included.</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #3 from junaire/ci</title>
<updated>2022-03-28T22:09:25+00:00</updated>
<author>
<name>cflip</name>
<email>cflip@cflip.net</email>
</author>
<published>2022-03-28T22:09:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cflip.net/Nonortho/commit/?id=b619b0d022c45b12f7a5285481428698f261c51e'/>
<id>b619b0d022c45b12f7a5285481428698f261c51e</id>
<content type='text'>
Add GitHub Actions</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add GitHub Actions</pre>
</div>
</content>
</entry>
<entry>
<title>Add Github Actions.</title>
<updated>2022-03-28T03:48:50+00:00</updated>
<author>
<name>Jun Zhang</name>
<email>jun@junz.org</email>
</author>
<published>2022-03-28T03:48:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cflip.net/Nonortho/commit/?id=a287bf3fca8d1ffbdbc95971dcf0e3b9c6675e3e'/>
<id>a287bf3fca8d1ffbdbc95971dcf0e3b9c6675e3e</id>
<content type='text'>
Signed-off-by: Jun Zhang &lt;jun@junz.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Jun Zhang &lt;jun@junz.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Update build instructions</title>
<updated>2022-03-27T03:29:38+00:00</updated>
<author>
<name>cflip</name>
<email>cflip@cflip.net</email>
</author>
<published>2022-03-27T03:29:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cflip.net/Nonortho/commit/?id=2c21ec7b96b730fee1751cb754b7792490b2e669'/>
<id>2c21ec7b96b730fee1751cb754b7792490b2e669</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix SDL include path in window.cpp</title>
<updated>2022-03-27T03:05:21+00:00</updated>
<author>
<name>cflip</name>
<email>cflip@cflip.net</email>
</author>
<published>2022-03-27T03:05:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cflip.net/Nonortho/commit/?id=2bb194ccb3f948523ce58cc086220b96f4a94bfb'/>
<id>2bb194ccb3f948523ce58cc086220b96f4a94bfb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Include stb_image as a submodule instead of a file in the repository</title>
<updated>2022-03-27T03:04:28+00:00</updated>
<author>
<name>cflip</name>
<email>cflip@cflip.net</email>
</author>
<published>2022-03-27T03:04:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cflip.net/Nonortho/commit/?id=c4355742cb22a0e243eded1c6ffcc713b2301b4d'/>
<id>c4355742cb22a0e243eded1c6ffcc713b2301b4d</id>
<content type='text'>
Instead of storing a copy of stb_image.h in the repository directly,
we can just include it as a submodule.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of storing a copy of stb_image.h in the repository directly,
we can just include it as a submodule.
</pre>
</div>
</content>
</entry>
</feed>
