<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0">

<channel>
	<title>Glowing Cat</title>
	
	<link>http://glowingcat.com/blog</link>
	<description>Indie games developers</description>
	<lastBuildDate>Thu, 03 May 2012 21:20:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/GlowingCat" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="glowingcat" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Designing Characters</title>
		<link>http://glowingcat.com/blog/designing-characters/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=designing-characters</link>
		<comments>http://glowingcat.com/blog/designing-characters/#comments</comments>
		<pubDate>Tue, 01 May 2012 11:11:13 +0000</pubDate>
		<dc:creator>Irene</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Luminaria]]></category>
		<category><![CDATA[character design]]></category>
		<category><![CDATA[Mary Elizabeth]]></category>

		<guid isPermaLink="false">http://glowingcat.com/blog/?p=273</guid>
		<description><![CDATA[Hello everyone! This time I’m going to introduce you another character of the game. In the picture above these lines you can see some sketches of Mary Elizabeth; she is the Landlady of the Guest House in which the story takes place. When we are making character designs, we usually try some variations of clothes [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://glowingcat.com/blog/wp-content/uploads/2012/05/me_hair.jpg"><img class="alignnone size-large wp-image-274" title="me_hair" src="http://glowingcat.com/blog/wp-content/uploads/2012/05/me_hair-650x287.jpg" alt="" width="650" height="287" /></a></p>
<p>Hello everyone!</p>
<p>This time I’m going to introduce you another character of the game. In the picture above these lines you can see some sketches of Mary Elizabeth; she is the Landlady of the Guest House in which the story takes place.</p>
<p>When we are making character designs, we usually try some variations of clothes and hairs on the same body base and then we decide which ones are more suitable for the character and also which one we like the most.</p>
<p>In the picture you can see different hair styles made by combining three different things: ornaments, different kinds of buns and lower half of hair.</p>
<p>The one we like is <em>ME1,</em> but if you have different ideas just let us know.</p>
<p>See you next time!</p>
]]></content:encoded>
			<wfw:commentRss>http://glowingcat.com/blog/designing-characters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scripting</title>
		<link>http://glowingcat.com/blog/scripting/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=scripting</link>
		<comments>http://glowingcat.com/blog/scripting/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 16:00:13 +0000</pubDate>
		<dc:creator>Dani</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[motor]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[virtual machine]]></category>

		<guid isPermaLink="false">http://glowingcat.com/blog/?p=258</guid>
		<description><![CDATA[When you make a game you can split it in several basic parts: coding, graphics, sound, story&#8230; If we talk about the code we think in C/C+/C#/Java programmers who create the graphic motor, give a behaviour to the game elements, etc. but usually we don&#8217;t think in a game script, which is an element very [...]]]></description>
			<content:encoded><![CDATA[<p>When you make a game you can split it in several basic parts: coding, graphics, sound, story&#8230;</p>
<p>If we talk about the code we think in C/C+/C#/Java programmers who create the graphic motor, give a behaviour to the game elements, etc. but usually we don&#8217;t think in a game script, which is an element very usual in games nowadays. To make it clear, a script is another type of code that says how the game behaves in some parts of the execution. For example: <em>when you enter the room X, trigger a dialog between characters A and B</em>.</p>
<p>More and more games are based on script actions. Games, like World of Warcraft, are no more than a motor (a very good motor, that is) and a lot of scripts creating stories, defining foes&#8217; positions, treasures and controlling the rest of the game elements.</p>
<p>The biggest difference between the <em>programmed code</em> and the scripted one is that the first one is <a href="http://en.wikipedia.org/wiki/Compiler" target="_blank">compiled</a> meanwhile the second one is <a href="http://en.wikipedia.org/wiki/Interpreted_language" target="_blank">interpreted</a>. Compiled code runs faster and is directly executed by the hardware CPU in which the code is running (a PC in this case). Interpreted code needs to be transformed to compiled code in runtime and then is executed. Both things have their pros and cons but in a nutshell compiled code is faster and that&#8217;s why is in charge of the heaviest things like the graphic motor, sound management, etc. Scripted one is more flexible and it&#8217;s used to guide the story and create events in each moment.</p>
<p>Speaking in a lower level, the behaviour could be put in this way:</p>
<p><a href="http://glowingcat.com/blog/wp-content/uploads/2012/04/script-flow.png"><img class="size-full wp-image-259 aligncenter" title="script-flow" src="http://glowingcat.com/blog/wp-content/uploads/2012/04/script-flow.png" alt="" width="556" height="275" /></a></p>
<p>On the one hand, we have the code written in a programming language, let&#8217;s say C++. This code needs to be compiled to generate an executable file (a .exe file in MS Windows systems).</p>
<p>On the other hand, the script written in a scripting language we are using is in another file(s), which are read by the scripting motor at the beggining of the game. Later, when needed in runtime this scripting motor takes each line and associate it with an already written-and-compiled function included in the compiled executable which gives us a visible action in the game.</p>
<p>An example of an interpreted language is the well known <a href="http://en.wikipedia.org/wiki/SCUMM" target="_blank">SCUMM</a> system used to create Maniac Mansion, Monkey Island, Indiana Jones and Day of the Tentacle among others. SCUMM name is nothing more than <strong>S</strong>cript <strong>C</strong>reation <strong>U</strong>tility for <strong>M</strong>aniac <strong>M</strong>ansion (and developers used it for the name of the <a href="http://glowingcat.com/blog/wp-content/uploads/2012/04/scumm_bar.gif" target="_blank">bar</a> in Monkey Island). Funny right? Nowadays we can find an open source script motor for reading SCUMM written games called <a href="http://www.scummvm.org/" target="_blank">ScummVM</a>, available for several platforms.</p>
<p>Another example, and maybe the best known, is the Java programming language which uses its JVM (Java Virtual Machine) as script motor. That&#8217;s why it&#8217;s said that Java is slower than C (interpreted code vs compiled one) and it&#8217;s true. But it&#8217;s also true that the same Java code can be run in every system with a JVM (like Windows, Linux, Mac or Android). This virtual machine use to be written in a compiled language like C for each platform. Need to point that Java files are preprocessed/precompiled to generate an intermediate language file between compiled and interpreted to reach a better performance, security, packaging, etc.</p>
<p>So, if compiled languages are faster why people use scripted languages?</p>
<p>Basically because once the game and its motor script (or virtual machine) is programmed you can make changes just modifying script files without recompiling source code. That way game designers can work at the same time that programmers while making the game.</p>
<p>Usually, video game studios with resources have their own software to make games and they use apps to create this scripts in an easy way so a game designer can make it without programming knoweldge.</p>
<p>In our first game, <a href="http://glowingcat.com/blog/category/luminaria/">Luminaria</a>, we use our own scripting language, a very simple one based on plain text files with functions like <em>loadChar</em>, <em>loadBg</em>, <em>talk</em>&#8230; which are preprocessed and packaged so the script motor can interpret them when needed.</p>
<p>If you are interested in how we designed and programmed the virtual machine bases maybe we can write about it, but that&#8217;s another story&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://glowingcat.com/blog/scripting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is a “Luminaria”?</title>
		<link>http://glowingcat.com/blog/what-is-a-luminaria/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=what-is-a-luminaria</link>
		<comments>http://glowingcat.com/blog/what-is-a-luminaria/#comments</comments>
		<pubDate>Mon, 12 Mar 2012 06:00:45 +0000</pubDate>
		<dc:creator>Irene</dc:creator>
				<category><![CDATA[Luminaria]]></category>
		<category><![CDATA[light]]></category>
		<category><![CDATA[luminaria]]></category>

		<guid isPermaLink="false">http://glowingcat.com/blog/?p=202</guid>
		<description><![CDATA[Hello! In the previous post there was an illustration of  Marc and in first plane there was a lamp. In case you don’t know it, that was a luminary or luminaria, what gives the name to our game. As a title, it represents very well the concept of the game. Knowing what a luminaria is, [...]]]></description>
			<content:encoded><![CDATA[<p>Hello!<a href="http://glowingcat.com/blog/what-is-a-luminaria/luminary_lamp/" rel="attachment wp-att-203"><img class="alignright  wp-image-203" title="luminary_lamp" src="http://glowingcat.com/blog/wp-content/uploads/2012/03/luminary_lamp-300x300.jpg" alt="luminary_lamp" width="300" height="300" /></a> In the previous <a title="Luminaria Characters 1: Marc" href="http://glowingcat.com/blog/luminaria-characters-1-marc/">post there</a> was an illustration of  Marc and in first plane there was a lamp. In case you don’t know it, that was a luminary or <em>luminaria</em>, what gives the name to our game.</p>
<p>As a title, it represents very well the concept of the game. Knowing what a <em>luminaria</em> is, can tell you more about the game than maybe we ever could.</p>
<p>At first sight a <em>luminaria</em> is a lamp made of paper with a candle inside, some have sand inside where the candle is set. The one in the illust of Marc has a wooden feet with a hole for the candle. Luminaries are used as vigil fires in ceremonies, altar lamps or lately simply as decoration.</p>
<p>Other meanings of luminary refer not to the lamp but to the light itself. It can be a guiding light, or the light of celestial bodies. The darker meaning is when luminary is used as substitute of “fuoco fatuo” or will o&#8217; the wisp, known as ghost lights that are said to attract travellers into dangerous places or graveyards.</p>
<p>Now you know more about what  luminary is and what our game is about ^__^</p>
<p><a href="http://glowingcat.com/blog/what-is-a-luminaria/lampara1/" rel="attachment wp-att-228"><img class=" wp-image-228 alignnone" style="margin-left: 50px; margin-right: 50px;" title="lamp1" src="http://glowingcat.com/blog/wp-content/uploads/2012/03/lampara1-300x300.jpg" alt="lamp1" width="200" height="200" /></a><a href="http://glowingcat.com/blog/what-is-a-luminaria/luminaria2-758055-2/" rel="attachment wp-att-230"><img class="alignnone  wp-image-230" title="luminarias" src="http://glowingcat.com/blog/wp-content/uploads/2012/03/luminaria2-7580551-300x199.jpg" alt="luminarias" width="301" height="200" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://glowingcat.com/blog/what-is-a-luminaria/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Luminaria Characters 1: Marc</title>
		<link>http://glowingcat.com/blog/luminaria-characters-1-marc/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=luminaria-characters-1-marc</link>
		<comments>http://glowingcat.com/blog/luminaria-characters-1-marc/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 06:00:44 +0000</pubDate>
		<dc:creator>Irene</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Luminaria]]></category>
		<category><![CDATA[character]]></category>
		<category><![CDATA[concept art]]></category>
		<category><![CDATA[Marc]]></category>

		<guid isPermaLink="false">http://glowingcat.com/blog/?p=182</guid>
		<description><![CDATA[Hello! Long time without an update but that doesn’t mean we’re not making progress. I think in these time we had made more progress in everything than the past months, piece by piece all seem to come together (or so we think now lol) but there isn’t much about the game we can show by [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://glowingcat.com/blog/wp-content/uploads/2012/02/luminaria_marc_def_blog.jpg"><img class="alignright size-medium wp-image-183" title="Marc" src="http://glowingcat.com/blog/wp-content/uploads/2012/02/luminaria_marc_def_blog-300x500.jpg" alt="" width="300" height="500" /></a></p>
<p>Hello! Long time without an update but that doesn’t mean we’re not making progress. I think in these time we had made more progress in everything than the past months, piece by piece all seem to come together (or so we think now lol) but there isn’t much about the game we can show by now, what we have is made of sketches and…well it looks kind of horrible (lol again).</p>
<p>Recently I started a series of concept illustration of the characters, the first one you can see it here, and it’s Marc, the main character. We wrote about him <a title="Luminaria" href="http://glowingcat.com/blog/luminaria/">at the beginning</a>, about how he is a young writer wannabe looking for inspiration and ends finding much more in <em>La Mansión de la Rosa</em>, where the game takes place. Now you can see his face (and maybe more if you look closely *evil lol* <a href="http://glowingcat.com/blog/wp-content/uploads/2012/02/luminaria_marc_def_blog.jpg">full size</a> for better apreciation).</p>
<p>Hope you like it!</p>
<p>^3^</p>
]]></content:encoded>
			<wfw:commentRss>http://glowingcat.com/blog/luminaria-characters-1-marc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Multiple screen resolutions</title>
		<link>http://glowingcat.com/blog/multiple-screen-resolutions/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=multiple-screen-resolutions</link>
		<comments>http://glowingcat.com/blog/multiple-screen-resolutions/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 06:00:10 +0000</pubDate>
		<dc:creator>Dani</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[resolution]]></category>
		<category><![CDATA[screen]]></category>

		<guid isPermaLink="false">http://glowingcat.com/blog/?p=119</guid>
		<description><![CDATA[Hello! I would like to start the serie of posts talking about the making of with a basic graphical problem to solve: Let&#8217;s say our game&#8217;s target screen aspect is 16:9 so we can show it in Full HD (1920&#215;1080) or HD ready (1280&#215;720) without problem, just resizing the image. Most of the nowadays computer [...]]]></description>
			<content:encoded><![CDATA[<p>Hello!</p>
<p>I would like to start the serie of posts talking about the <em>making of</em> with a basic graphical problem to solve:</p>
<p>Let&#8217;s say our game&#8217;s target screen aspect is 16:9 so we can show it in Full HD (1920&#215;1080) or HD ready (1280&#215;720) without problem, just resizing the image.</p>
<p>Most of the nowadays computer screens are Full HD, so this size seems perfect right? They would see the game like this:</p>
<p><a href="http://glowingcat.com/blog/wp-content/uploads/2012/01/screen-hd.png"><img class="aligncenter size-full wp-image-166" title="screen-hd" src="http://glowingcat.com/blog/wp-content/uploads/2012/01/screen-hd.png" alt="" width="640" height="360" /></a></p>
<p>But, what happens with the people using other screen resolutions like 1280&#215;1024 or 1920&#215;1200? Actually, the question you should ask is: what happens with the people using other screen aspect, like 4:3 or 16:10.</p>
<p>Then, you should think what do you want in your game: preserve the game aspect as you designed it or get advantage of the new screen size? Both are valid approaches but you have to choose one (or let the player decide with options).</p>
<p>Think about playing in a 4:3 format (using 1280&#215;1024 or 800&#215;600) and analyze the following image:</p>
<p><a href="http://glowingcat.com/blog/wp-content/uploads/2012/01/screen-4-3.png"><img class="aligncenter size-large wp-image-167" title="screen-4-3" src="http://glowingcat.com/blog/wp-content/uploads/2012/01/screen-4-3-650x237.png" alt="" width="650" height="237" /></a></p>
<p>At the left image you can see the screen fully used (after a resize to fit the game elements in the screen).</p>
<p>At the right one, the game screen has been resized and adjusted to the center of the physical screen to preserve the original game aspect. This gives the game cinema bars, and it could be even an eye candy effect.</p>
<p>Which one to choose depends on the game type. For this game we chose to resize and adjust the game to keep the 16:9 aspect because we think that a game based on drawn backgrounds should be seen always in the same way; but, if we were making a tiled based game probably we would have take advantage of the full screen to give the player a bigger screen view.</p>
<p>The decision is up to you.</p>
]]></content:encoded>
			<wfw:commentRss>http://glowingcat.com/blog/multiple-screen-resolutions/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Winner of the Xmas game pack</title>
		<link>http://glowingcat.com/blog/winner-of-the-xmas-game-pack/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=winner-of-the-xmas-game-pack</link>
		<comments>http://glowingcat.com/blog/winner-of-the-xmas-game-pack/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 15:21:33 +0000</pubDate>
		<dc:creator>Dani</dc:creator>
				<category><![CDATA[Glowing Cat]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[free game]]></category>
		<category><![CDATA[winner]]></category>

		<guid isPermaLink="false">http://glowingcat.com/blog/?p=157</guid>
		<description><![CDATA[Hi there! As maybe you have noticed we had some troubles with our web server on the past days. But even if we did, we announced the winner of our contest right on time via twitter. The winner was one of our twitter followers: @EzequielZEK, and received his pack of games with the New Year. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://glowingcat.com/blog/wp-content/uploads/2012/01/present.png"><img class="alignleft size-full wp-image-163" title="present" src="http://glowingcat.com/blog/wp-content/uploads/2012/01/present.png" alt="" width="220" height="241" /></a>Hi there!</p>
<p>As maybe you have noticed we had some troubles with our web server on the past days. But even if we did, we <a href="https://twitter.com/#!/GlowingCat/statuses/153300904500674560" target="_blank">announced </a>the winner of our <a href="http://glowingcat.com/blog/happy-2012/">contest</a> right on time via <a href="https://twitter.com/GlowingCat" target="_blank">twitter</a>.</p>
<p>The winner was one of our twitter followers: <a href="https://twitter.com/#%21/EzequielZEK" target="_blank">@EzequielZEK</a>, and received his pack of games with the New Year. Enjoy it! <img src='http://glowingcat.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you also want free games, stay tuned because we are giving more games for free! Just follow us on <a href="https://twitter.com/GlowingCat" target="_blank">twitter</a>, <a href="http://facebook.com/GlowingCat" target="_blank">facebook</a> or the <a href="http://glowingcat.com/blog/feed/" target="_blank">blog&#8217;s feed</a> to know when the next contest starts!</p>
]]></content:encoded>
			<wfw:commentRss>http://glowingcat.com/blog/winner-of-the-xmas-game-pack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy 2012</title>
		<link>http://glowingcat.com/blog/happy-2012/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=happy-2012</link>
		<comments>http://glowingcat.com/blog/happy-2012/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 15:59:29 +0000</pubDate>
		<dc:creator>Dani</dc:creator>
				<category><![CDATA[Glowing Cat]]></category>
		<category><![CDATA[christmas]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[free games]]></category>
		<category><![CDATA[holidays]]></category>
		<category><![CDATA[new year]]></category>

		<guid isPermaLink="false">http://glowingcat.com/blog/?p=131</guid>
		<description><![CDATA[How about some new games in these holidays? Sounds good, doesn’t it? We are newborns and we haven’t games of our own yet but that won’t stop us from sharing what we love: indie games!! There will be a prize for our followers: a pack containing some games for Steam and Desura, including Darwinia and [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://glowingcat.com/blog/wp-content/uploads/2011/12/felicitacion-glowing_2011.jpg"><img class="size-large wp-image-132 aligncenter" title="Happy 2012!!" src="http://glowingcat.com/blog/wp-content/uploads/2011/12/felicitacion-glowing_2011-650x412.jpg" alt="" width="650" height="412" /></a></p>
<p>How about some new games in these holidays? Sounds good, doesn’t it? We are newborns and we haven’t games of our own yet but that won’t stop us from sharing what we love: indie games!!</p>
<p>There will be a prize for our followers: a pack containing some games for <a href="http://store.steampowered.com/" target="_blank">Steam</a> and <a href="http://www.desura.com/" target="_blank">Desura</a>, including <strong>Darwinia</strong> and <strong>Multiwinia</strong>, <strong>DEFCON</strong> and <strong>Uplink</strong>! The winner of this games will be one of our <a href="https://www.facebook.com/GlowingCat" target="_blank">Facebook</a> or <a href="http://twitter.com/glowingcat" target="_blank">twitter</a> followers and it will be picked using random.org on New Year&#8217;s eve.</p>
<p>If you don&#8217;t have accounts for these social networks (you weirdo) don&#8217;t worry! You will be also eligible for winning the games pack writing a comment in this post <img src='http://glowingcat.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>This is our first Christmas at Glowing Cat and our only wish is to continue sharing our love for games every Christmas from now on.</p>
<p>Sophie from <a href="http://glowingcat.com/blog/category/luminaria/">Luminaria</a> and our little <a href="http://glowingcat.com">Glowing Cat</a> wish you a Happy New Year!!</p>
]]></content:encoded>
			<wfw:commentRss>http://glowingcat.com/blog/happy-2012/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Setting of Luminaria</title>
		<link>http://glowingcat.com/blog/setting-of-luminaria/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=setting-of-luminaria</link>
		<comments>http://glowingcat.com/blog/setting-of-luminaria/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 16:58:56 +0000</pubDate>
		<dc:creator>Irene</dc:creator>
				<category><![CDATA[Locations]]></category>
		<category><![CDATA[Luminaria]]></category>
		<category><![CDATA[victorian house]]></category>

		<guid isPermaLink="false">http://glowingcat.com/blog/?p=75</guid>
		<description><![CDATA[Hello! With this post begins the coverage of the process of development. Today I write about the setting of the game. At the start of the development process, one of the first things we decided was the location in which the action takes place. At that moment we only had a rough idea of the [...]]]></description>
			<content:encoded><![CDATA[<p>Hello!</p>
<p>With this post begins the coverage of the process of development.</p>
<p>Today I write about the setting of the game.</p>
<p>At the start of the development process, one of the first things we decided was the location in which the action takes place. At that moment we only had a rough idea of the story (and it changed in the end), but since genre and premise were the same we decided to keep that setting. And it was &#8230;</p>
<p>A Victorian House (yay!!!), this is where the main action takes place, and where the player will explore all its sceneries.</p>
<p>Deciding the type of the house was only the begining, we had to do a lot of research in order to understand these kind of houses: plans, architecture articles and photos, lots and lots of photographs for designing&#8230; In the end we finished understanding in a better way the Victorian Houses and, when designing the backgrounds we introduced some changes, using everything learnt, in order to adjust it for the game story.</p>
<p class="img-group-4"><a href="http://glowingcat.com/blog/wp-content/uploads/2011/12/Worthington_Mansion_Bed_and_Breakfast_Fort_Wayne_Indiana_23338.jpg"><img class="size-thumbnail wp-image-86 alignnone" src="http://glowingcat.com/blog/wp-content/uploads/2011/12/Worthington_Mansion_Bed_and_Breakfast_Fort_Wayne_Indiana_23338-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://glowingcat.com/blog/wp-content/uploads/2011/12/84.jpg"><img class="size-thumbnail wp-image-85 alignnone" src="http://glowingcat.com/blog/wp-content/uploads/2011/12/84-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://glowingcat.com/blog/wp-content/uploads/2011/12/Southwind3_000.jpg"><img class="size-thumbnail wp-image-83 alignnone" src="http://glowingcat.com/blog/wp-content/uploads/2011/12/Southwind3_000-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://glowingcat.com/blog/wp-content/uploads/2011/12/victorian-living-room.jpg"><img class="size-thumbnail wp-image-84 alignnone" src="http://glowingcat.com/blog/wp-content/uploads/2011/12/victorian-living-room-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>We had many reasons to choose a Victorian House for the game, but maybe the first one was because we like it (what&#8217;s the point of making an indie game if you can&#8217;t make whatever you like?). On the other hand, we needed some kind of guest house and today most of the ancient Victorian Houses are. Last but not least we needed a lot of different spaces and this houses are plenty of room.</p>
<p>The images included in this post are a small selection from the research we&#8217;ve done.</p>
<p>I hope you found this interesting, and we will try to explain you more details from the Victorian House in the future.</p>
<p>See ya!</p>
<p style="text-align: center;"><img class="size-full wp-image-79 aligncenter" src="http://glowingcat.com/blog/wp-content/uploads/2011/12/137-249e-3131.jpg" alt="" width="500" height="300" /></p>
]]></content:encoded>
			<wfw:commentRss>http://glowingcat.com/blog/setting-of-luminaria/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Luminaria</title>
		<link>http://glowingcat.com/blog/luminaria/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=luminaria</link>
		<comments>http://glowingcat.com/blog/luminaria/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 12:33:35 +0000</pubDate>
		<dc:creator>Dani</dc:creator>
				<category><![CDATA[Luminaria]]></category>
		<category><![CDATA[introduction]]></category>

		<guid isPermaLink="false">http://glowingcat.com/blog/?p=49</guid>
		<description><![CDATA[Luminaria is the name of our first game. With this game we try to blend elements of the gameplay from graphic adventures and the look and pacing from visual novels. We are now working on it, halfway in the development process. Until we can release an alpha or a demo version and then the full [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-58 aligncenter" title="Colour sketches of three characters from Luminaria: Greta, Sophie and Penelope" src="http://glowingcat.com/blog/wp-content/uploads/2011/12/luminaria-intro.png" alt="" width="650" height="369" /></p>
<p>Luminaria is the name of our first game. With this game we try to blend elements of the gameplay from graphic adventures and the look and pacing from visual novels.</p>
<p>We are now working on it, halfway in the development process. Until we can release an alpha or a demo version and then the full game, we will write here about the game, showing sketches, illustrations, ideas of game designing and programming; everything involved in the creation of the game.</p>
<p>In this game you are Marc, a student who needs some time to think about his future. He wants to be a writer but his parents want him to do something different. With this idea in mind he goes to <em>La Mansión de la Rosa</em>, a Victorian Guest House in the woods near to a mountain village. He will find there everything but peace, meeting the people at the house, Mary Elizabeth, Sophie, Greta, Penélope and Oscar will immerse him in a world full of mysteries… and even magic. Sure looks like a lot of inspiration for a young writer but, be careful, there aren’t decisions without consequences and you will decide how this story ends.</p>
]]></content:encoded>
			<wfw:commentRss>http://glowingcat.com/blog/luminaria/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://glowingcat.com/blog/hello-world/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=hello-world</link>
		<comments>http://glowingcat.com/blog/hello-world/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 18:12:01 +0000</pubDate>
		<dc:creator>Dani</dc:creator>
				<category><![CDATA[Glowing Cat]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[glowing cat]]></category>
		<category><![CDATA[hello]]></category>
		<category><![CDATA[indie]]></category>
		<category><![CDATA[introduction]]></category>

		<guid isPermaLink="false">http://glowingcat.com/blog/?p=15</guid>
		<description><![CDATA[Hi everyone! We are Glowing Cat, and we want to introduce ourselves through this post as a new indie games developer company. We enjoy videogames and we spent unforgettable moments playing them. When we realized that after those moments there are people working hard to provide new worlds and stories to enjoy, long time ago, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://glowingcat.com/blog/hello-world/glowingcat_logo4x/" rel="attachment wp-att-29"><img class="alignright size-full wp-image-29" title="Glowing Cat" src="http://glowingcat.com/blog/wp-content/uploads/2011/11/glowingCat_logo4x.png" alt="" width="200" height="200" /></a>Hi everyone!</p>
<p>We are Glowing Cat, and we want to introduce ourselves through this post as a new indie games developer company.</p>
<p>We enjoy videogames and we spent unforgettable moments playing them. When we realized that after those moments there are people working hard to provide new worlds and stories to enjoy, long time ago, we decided what we wnat to do in our life and nowadays we are making all our efforts in it.</p>
<p>Our target is making beauty and funny videogames (oh really!?) regardless of its genre.</p>
<p>If you want to follow our career (and we hope so!) you can do it throught this blog, where we will publish news about our games developement. Also you can make use of the social networks like twitter or facebook, where we live too.</p>
<p>And of course, you can <a title="About" href="http://glowingcat.com/blog/about/">know more about us reading here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://glowingcat.com/blog/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

