<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Maratis forum - Linux Version?]]></title>
	<link rel="self" href="http://forum.maratis3d.com/extern.php?action=feed&amp;tid=3&amp;type=atom"/>
	<updated>2011-12-13T11:50:38Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.maratis3d.com/viewtopic.php?id=3</id>
		<entry>
			<title type="html"><![CDATA[Re: Linux Version?]]></title>
			<link rel="alternate" href="http://forum.maratis3d.com/viewtopic.php?pid=954#p954"/>
			<content type="html"><![CDATA[<p>thank you, I will test this later today <img src="http://forum.maratis3d.com/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></content>
			<author>
				<name><![CDATA[hedphelym]]></name>
				<uri>http://forum.maratis3d.com/profile.php?id=181</uri>
			</author>
			<updated>2011-12-13T11:50:38Z</updated>
			<id>http://forum.maratis3d.com/viewtopic.php?pid=954#p954</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Linux Version?]]></title>
			<link rel="alternate" href="http://forum.maratis3d.com/viewtopic.php?pid=953#p953"/>
			<content type="html"><![CDATA[<p>After all the work from Anael, fafner, egore911 and the rest building Maratis on Ubuntu is really easy!<br />Install libopenal1 and (probably needed) libopenal-dev.<br />Inside SVN folder, open a console in maratis/trunk/dev and run &quot;python scons.py&quot;.<br />Executables are on maratis/trunk/dev/prod/linux2/release/Maratis/Bin.</p>]]></content>
			<author>
				<name><![CDATA[linux-man]]></name>
				<uri>http://forum.maratis3d.com/profile.php?id=249</uri>
			</author>
			<updated>2011-12-13T11:43:40Z</updated>
			<id>http://forum.maratis3d.com/viewtopic.php?pid=953#p953</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Linux Version?]]></title>
			<link rel="alternate" href="http://forum.maratis3d.com/viewtopic.php?pid=952#p952"/>
			<content type="html"><![CDATA[<p>yes, a how-to build it for linux.<br />step-by-step.</p><p>ubuntu I&#039;d guess would be the most &quot;generic&quot; distro to make such a tutorial for.</p>]]></content>
			<author>
				<name><![CDATA[hedphelym]]></name>
				<uri>http://forum.maratis3d.com/profile.php?id=181</uri>
			</author>
			<updated>2011-12-13T11:05:58Z</updated>
			<id>http://forum.maratis3d.com/viewtopic.php?pid=952#p952</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Linux Version?]]></title>
			<link rel="alternate" href="http://forum.maratis3d.com/viewtopic.php?pid=951#p951"/>
			<content type="html"><![CDATA[<div class="quotebox"><cite>anael wrote:</cite><blockquote><p>hedphelym : a how-to build the sources ?</p></blockquote></div><p>I&#039;d agree with that tuto, i got the sources from svn, and i didnt know if it was meant to be built with windows or linux, or how to do it properly. It&#039;d be great.</p>]]></content>
			<author>
				<name><![CDATA[Sythuzuma-Ka]]></name>
				<uri>http://forum.maratis3d.com/profile.php?id=368</uri>
			</author>
			<updated>2011-12-13T10:55:07Z</updated>
			<id>http://forum.maratis3d.com/viewtopic.php?pid=951#p951</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Linux Version?]]></title>
			<link rel="alternate" href="http://forum.maratis3d.com/viewtopic.php?pid=950#p950"/>
			<content type="html"><![CDATA[<p>I prefer car == -1 -&gt; it&#039;s the only number that matters. Also I have the felling that 9, 13, 32, or 127 are key values, not car.<br />Beside that the code works.</p>]]></content>
			<author>
				<name><![CDATA[linux-man]]></name>
				<uri>http://forum.maratis3d.com/profile.php?id=249</uri>
			</author>
			<updated>2011-12-13T09:45:25Z</updated>
			<id>http://forum.maratis3d.com/viewtopic.php?pid=950#p950</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Linux Version?]]></title>
			<link rel="alternate" href="http://forum.maratis3d.com/viewtopic.php?pid=949#p949"/>
			<content type="html"><![CDATA[<p>linux-man :</p><p>Yes you are right ! thank you, the -1 test is missing,</p><p>the correct line might be replacing :<br />if(car == 127 || car == 32 || car == 13 || car == 9) break;<br />to :<br />if(car &lt; 0 || car == 127 || car == 32 || car == 13 || car == 9) break;</p><p>Tell me if it&#039;s working, I&#039;ll update the code on svn <img src="http://forum.maratis3d.com/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><br /><p>hedphelym : a how-to build the sources ?</p>]]></content>
			<author>
				<name><![CDATA[anael]]></name>
				<uri>http://forum.maratis3d.com/profile.php?id=2</uri>
			</author>
			<updated>2011-12-13T08:48:27Z</updated>
			<id>http://forum.maratis3d.com/viewtopic.php?pid=949#p949</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Linux Version?]]></title>
			<link rel="alternate" href="http://forum.maratis3d.com/viewtopic.php?pid=945#p945"/>
			<content type="html"><![CDATA[<p>Thank you for waking me up from my laziness. It&#039;s been a long time since I look at others code. :-)<br />So, I changed line 445 from<br />if(car == 127 || car == 32 || car == 13 || car == 9) break;<br />to<br />if(car == -1) break;<br />since every non-printable char is translated to -1 and it seems to solve my issue.<br />Now it looks that _glfwKeySym2Unicode() translate to Unicode but you stick to ISO 8859-1. Is it for XP compatibility?</p>]]></content>
			<author>
				<name><![CDATA[linux-man]]></name>
				<uri>http://forum.maratis3d.com/profile.php?id=249</uri>
			</author>
			<updated>2011-12-12T23:25:44Z</updated>
			<id>http://forum.maratis3d.com/viewtopic.php?pid=945#p945</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Linux Version?]]></title>
			<link rel="alternate" href="http://forum.maratis3d.com/viewtopic.php?pid=944#p944"/>
			<content type="html"><![CDATA[<p>can you post a how-to tutorial (that goes through every step in a easy manner?)<br />That would be great.. It would also help future users who wants to help out with linux version.</p>]]></content>
			<author>
				<name><![CDATA[hedphelym]]></name>
				<uri>http://forum.maratis3d.com/profile.php?id=181</uri>
			</author>
			<updated>2011-12-12T21:22:00Z</updated>
			<id>http://forum.maratis3d.com/viewtopic.php?pid=944#p944</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Linux Version?]]></title>
			<link rel="alternate" href="http://forum.maratis3d.com/viewtopic.php?pid=943#p943"/>
			<content type="html"><![CDATA[<p>Sythuzuma-Ka : super, il manquait sans doute une librairie.</p><p>linux-man : in what language is your system ? it is possible that the encoding behave differently when you build it yourself.<br />I think it comes from the hard coded key codes used in &quot;bool MWindow::onEvents(void)&quot;<br />I will try to see if there is a better way to do it.</p>]]></content>
			<author>
				<name><![CDATA[anael]]></name>
				<uri>http://forum.maratis3d.com/profile.php?id=2</uri>
			</author>
			<updated>2011-12-12T21:17:48Z</updated>
			<id>http://forum.maratis3d.com/viewtopic.php?pid=943#p943</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Linux Version?]]></title>
			<link rel="alternate" href="http://forum.maratis3d.com/viewtopic.php?pid=942#p942"/>
			<content type="html"><![CDATA[<p>Cursor keys on Jules behave as expected. It&#039;s on edition that the problem arises: ENTER, BACKSPACE, DELETE, ESC, CTRL, SHIFT, ALT and cursor keys add an ASCII char 152 to the editor. It happens when naming a new project too.<br />Only happens on my compilation.</p>]]></content>
			<author>
				<name><![CDATA[linux-man]]></name>
				<uri>http://forum.maratis3d.com/profile.php?id=249</uri>
			</author>
			<updated>2011-12-12T15:43:03Z</updated>
			<id>http://forum.maratis3d.com/viewtopic.php?pid=942#p942</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Linux Version?]]></title>
			<link rel="alternate" href="http://forum.maratis3d.com/viewtopic.php?pid=941#p941"/>
			<content type="html"><![CDATA[<p>Well i wish i knew what happened, but i havent changed anything (except maybe some updates), and now it works fine....</p>]]></content>
			<author>
				<name><![CDATA[Sythuzuma-Ka]]></name>
				<uri>http://forum.maratis3d.com/profile.php?id=368</uri>
			</author>
			<updated>2011-12-12T14:43:09Z</updated>
			<id>http://forum.maratis3d.com/viewtopic.php?pid=941#p941</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Linux Version?]]></title>
			<link rel="alternate" href="http://forum.maratis3d.com/viewtopic.php?pid=940#p940"/>
			<content type="html"><![CDATA[<p>When you try the game demos (Jules for example), are the LEFT and RIGHT keyboard keys working ?</p><br /><p>There is probably some issue in :<br /><a href="http://code.google.com/p/maratis/source/browse/trunk/dev/MSDK/MGui/Sources/X11/MX11Window.cpp">http://code.google.com/p/maratis/source &#133; Window.cpp</a></p><p>Maybe a key code in the function &quot;bool MWindow::onEvents(void)&quot; ?</p>]]></content>
			<author>
				<name><![CDATA[anael]]></name>
				<uri>http://forum.maratis3d.com/profile.php?id=2</uri>
			</author>
			<updated>2011-12-12T14:39:05Z</updated>
			<id>http://forum.maratis3d.com/viewtopic.php?pid=940#p940</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Linux Version?]]></title>
			<link rel="alternate" href="http://forum.maratis3d.com/viewtopic.php?pid=939#p939"/>
			<content type="html"><![CDATA[<p>Just moved to 64 bits oneiric. Maratis compiles just fine, only the cursor keys don&#039;t work when editing object position (just like my previous post). Any hint about what&#039;s wrong? No UTF-8? PT keyboard? Where should I change some configuration to make it work?</p>]]></content>
			<author>
				<name><![CDATA[linux-man]]></name>
				<uri>http://forum.maratis3d.com/profile.php?id=249</uri>
			</author>
			<updated>2011-12-12T13:25:00Z</updated>
			<id>http://forum.maratis3d.com/viewtopic.php?pid=939#p939</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Linux Version?]]></title>
			<link rel="alternate" href="http://forum.maratis3d.com/viewtopic.php?pid=867#p867"/>
			<content type="html"><![CDATA[<p>Ok, i&#039;ve never used SVN, so i&#039;ll get in touch with you if you dont mind for some info about that.<br />Et si je me trompe pas, tu es francais, ce sera un peu plus facile comme ça <img src="http://forum.maratis3d.com/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></content>
			<author>
				<name><![CDATA[Sythuzuma-Ka]]></name>
				<uri>http://forum.maratis3d.com/profile.php?id=368</uri>
			</author>
			<updated>2011-11-15T00:06:01Z</updated>
			<id>http://forum.maratis3d.com/viewtopic.php?pid=867#p867</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Linux Version?]]></title>
			<link rel="alternate" href="http://forum.maratis3d.com/viewtopic.php?pid=866#p866"/>
			<content type="html"><![CDATA[<p>I in fact build the current version on ubuntu 11, similar version as you I think.</p><p>There is obviously some mistake with the build, if you can try to compile it on your machine and tell us how it&#039;s going it would be nice !</p>]]></content>
			<author>
				<name><![CDATA[anael]]></name>
				<uri>http://forum.maratis3d.com/profile.php?id=2</uri>
			</author>
			<updated>2011-11-14T20:27:29Z</updated>
			<id>http://forum.maratis3d.com/viewtopic.php?pid=866#p866</id>
		</entry>
</feed>
