<feed xmlns='http://www.w3.org/2005/Atom'>
<title>xavi/jancity/src/gui/CMakeLists.txt, branch master</title>
<subtitle>Entry for Global Game Jam 2024.
</subtitle>
<id>https://gitea.privatedns.org/xavi/jancity/atom?h=master</id>
<link rel='self' href='https://gitea.privatedns.org/xavi/jancity/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/jancity/'/>
<updated>2022-12-08T16:00:23+00:00</updated>
<entry>
<title>wip2</title>
<updated>2022-12-08T16:00:23+00:00</updated>
<author>
<name>Xavier Del Campo Romero</name>
<email>xavi.dcr@tutanota.com</email>
</author>
<published>2022-12-08T15:31:24+00:00</published>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/jancity/commit/?id=4da7a3e44d2bbd7b21ae05c7b6604748e7227227'/>
<id>urn:sha1:4da7a3e44d2bbd7b21ae05c7b6604748e7227227</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Implement checkbox GUI element</title>
<updated>2022-09-23T02:12:07+00:00</updated>
<author>
<name>Xavier Del Campo Romero</name>
<email>xavi.dcr@tutanota.com</email>
</author>
<published>2022-09-23T02:12:07+00:00</published>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/jancity/commit/?id=0666c70c480c4a258a25802d8bfb87f368a599ea'/>
<id>urn:sha1:0666c70c480c4a258a25802d8bfb87f368a599ea</id>
<content type='text'>
</content>
</entry>
<entry>
<title>menu: Implement join_menu</title>
<updated>2022-09-20T15:34:25+00:00</updated>
<author>
<name>Xavier Del Campo Romero</name>
<email>xavi.dcr@tutanota.com</email>
</author>
<published>2022-09-20T15:28:35+00:00</published>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/jancity/commit/?id=d9851c5e7864121e804b4563eedffef830d5117e'/>
<id>urn:sha1:d9851c5e7864121e804b4563eedffef830d5117e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Implement GUI line edit</title>
<updated>2022-09-20T15:34:25+00:00</updated>
<author>
<name>Xavier Del Campo Romero</name>
<email>xavi.dcr@tutanota.com</email>
</author>
<published>2022-09-20T15:22:10+00:00</published>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/jancity/commit/?id=6b54e9be328182d08bfa3e7278e8742493441b94'/>
<id>urn:sha1:6b54e9be328182d08bfa3e7278e8742493441b94</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remap calls to pad/mouse/keyboard to input</title>
<updated>2022-09-20T14:56:30+00:00</updated>
<author>
<name>Xavier Del Campo Romero</name>
<email>xavi.dcr@tutanota.com</email>
</author>
<published>2022-09-20T11:43:18+00:00</published>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/jancity/commit/?id=87b4ef3a15af505f5ed5150ee1dadd2e2bc94c17'/>
<id>urn:sha1:87b4ef3a15af505f5ed5150ee1dadd2e2bc94c17</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Allow multiple button types</title>
<updated>2022-07-07T00:37:25+00:00</updated>
<author>
<name>Xavier Del Campo Romero</name>
<email>xavi.dcr@tutanota.com</email>
</author>
<published>2022-07-06T21:46:59+00:00</published>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/jancity/commit/?id=dc4a3a2db894e8e7bb0be620b90780d55c74accd'/>
<id>urn:sha1:dc4a3a2db894e8e7bb0be620b90780d55c74accd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>gui: implement container</title>
<updated>2022-07-01T22:53:03+00:00</updated>
<author>
<name>Xavier Del Campo Romero</name>
<email>xavi.dcr@tutanota.com</email>
</author>
<published>2022-07-01T22:52:59+00:00</published>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/jancity/commit/?id=c10ca65109c02f239e95ebaf20fde708bcf3dc38'/>
<id>urn:sha1:c10ca65109c02f239e95ebaf20fde708bcf3dc38</id>
<content type='text'>
Containers, somewhat inspired by GtkBox, allow to packed other GUI
elements into a single row or column.
</content>
</entry>
<entry>
<title>Revamp gui component</title>
<updated>2022-06-26T18:00:27+00:00</updated>
<author>
<name>Xavier Del Campo Romero</name>
<email>xavi.dcr@tutanota.com</email>
</author>
<published>2022-06-24T14:55:18+00:00</published>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/jancity/commit/?id=aea50395c5dbc5c49ad93384b0182d45d45c6441'/>
<id>urn:sha1:aea50395c5dbc5c49ad93384b0182d45d45c6441</id>
<content type='text'>
`gui` was tighly coupled to game logic, and could not be extended for
other purposes. Therefore, a generic GUI implementation, loosely
inspired by well-known GUI frameworks such as GTK, is now provided, with
the following properties:

- Does not depend on dynamic or static memory allocation, only automatic
(i.e., stack) memory allocation required.
- Portable among existing implementations.
- Simple to extend.
- Tiny memory footprint.

`gui` is now composed by GUI elements that can be chained to form a tree
structure. This is useful e.g.: to calculate X/Y coordinates for a given
GUI element given its parent(s).

This commit also refactors the older implementation, moving
game-specific logic into `player` and making use of the new component.
</content>
</entry>
<entry>
<title>Add project source code</title>
<updated>2022-03-30T06:20:20+00:00</updated>
<author>
<name>Xavier Del Campo Romero</name>
<email>xavi.dcr@tutanota.com</email>
</author>
<published>2021-07-02T22:49:03+00:00</published>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/jancity/commit/?id=6b9f686913efc3725b2690033cd4f398e07076ba'/>
<id>urn:sha1:6b9f686913efc3725b2690033cd4f398e07076ba</id>
<content type='text'>
</content>
</entry>
</feed>
