﻿<?xml version="1.0"?>
<rss version="2.0">
 <channel>
   <title>flux rss pour le blog captainsid</title>
  <link>http://captainsid.dev-fr.org</link>
  <description>flux rss pour le blog captainsid</description>
  <language>fr-fr</language>
  <generator>LT rss generator</generator>
                   <item>
                <title>La rentrée</title>
                <link>http://captainsid.dev-fr.org/p4172/2009-09-15-la-rentree.html </link>
                <description>Je rentre demain, a l&apos;insitut St Luc, en belgique ( a Tournai), en graphisme, je ne pourrait pas poster tout de suite, mais j&apos;ai fait des progr&amp;egrave;s sur le pong, j&apos;ai diff&amp;eacute;rentes id&amp;eacute;es de themes d&amp;eacute;tourn&amp;eacute;s. Je posterait tout ca quand j&apos;aurait le temps / faut plus de progres encore/ :)</description>
                <pubDate>Tue, 15 Sep 2009 17:15:11 +0200</pubDate>
		<category>autre</category>                               </item>
                                <item>
                <title>IA - Essai #1</title>
                <link>http://captainsid.dev-fr.org/p4171/2009-09-11-ia-essai-1.html </link>
                <description>Voila, j&apos;ai commencer a bosser sur l&apos;impl&amp;eacute;mentation d&apos;une IA, j&apos;ai jamais fait ca avant, donc j&apos;ai pris mon bloc note, et je me suis mis a r&amp;eacute;fl&amp;eacute;chir sur comment devrait agir un ordi (fort) a Pong, voila ce que ca donne :&lt;br /&gt;
&lt;br /&gt;
1. Si la balle vien vers nous, on calcule sa position finale&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; Pour balleX &amp;lt;= largeurEcran - largeurPad&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; balleX += balleVecteurX&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; balleY += balleVecteurY&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; Si la balle touche un des bords haut ou bas&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; balleVecteurY = -balleVecteurY&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; finPour&lt;br /&gt;
2.Si la position finale est devant le pad&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; On ne fait rien&lt;br /&gt;
3.Si la position finale est au dessus du pad&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; On bouge vers le haut&lt;br /&gt;
4.Si la position finale est en dessous du pad&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; On bouge vers le bas&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;
Puis on fait les divers tests de collision.&lt;br /&gt;
&lt;br /&gt;
J&apos;ai impl&amp;eacute;ment&amp;eacute; ca de cette facon:
&lt;pre class=&quot;geshi&quot;&gt;&lt;div style=&quot;border-bottom: 1px solid gray; margin-bottom: 0.3em;&quot;&gt; (cpp):&lt;/div&gt;&lt;span style=&quot;color: rgb(0, 0, 255);&quot;&gt;void&lt;/span&gt; computerMove&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;(&lt;/span&gt;player&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;*&lt;/span&gt; p, ball&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;*&lt;/span&gt; b&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;{&lt;/span&gt;&lt;br /&gt;	&lt;span style=&quot;color: rgb(0, 0, 255);&quot;&gt;if&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;(&lt;/span&gt;p &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;==&lt;/span&gt; &lt;span style=&quot;color: rgb(0, 0, 255);&quot;&gt;NULL&lt;/span&gt; &lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;||&lt;/span&gt; b &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;==&lt;/span&gt; &lt;span style=&quot;color: rgb(0, 0, 255);&quot;&gt;NULL&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;)&lt;/span&gt; &lt;span style=&quot;color: rgb(0, 0, 255);&quot;&gt;return&lt;/span&gt;;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;	int32_t bx &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;=&lt;/span&gt; b&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;x; &amp;nbsp; &amp;nbsp;&lt;span style=&quot;color: rgb(102, 102, 102);&quot;&gt;//Ball X&lt;/span&gt;&lt;br /&gt;	int32_t by &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;=&lt;/span&gt; b&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;y; &amp;nbsp;&lt;span style=&quot;color: rgb(102, 102, 102);&quot;&gt;//Ball Y&lt;/span&gt;&lt;br /&gt;	int32_t bvx &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;=&lt;/span&gt; b&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;vx; &lt;span style=&quot;color: rgb(102, 102, 102);&quot;&gt;//Ball vector X&lt;/span&gt;&lt;br /&gt;	int32_t bvy &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;=&lt;/span&gt; b&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;vy; &amp;nbsp;&lt;span style=&quot;color: rgb(102, 102, 102);&quot;&gt;//Ball vector Y&lt;/span&gt;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;	&lt;span style=&quot;color: rgb(0, 0, 255);&quot;&gt;if&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;(&lt;/span&gt;bvx &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span style=&quot;color: rgb(0, 0, 221);&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;)&lt;/span&gt;		&lt;span style=&quot;color: rgb(102, 102, 102);&quot;&gt;//Ball is coming.&lt;/span&gt;&lt;br /&gt;	&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;{&lt;/span&gt;&lt;br /&gt;		&lt;span style=&quot;color: rgb(0, 0, 255);&quot;&gt;for&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;(&lt;/span&gt;;bx &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;lt;=&lt;/span&gt; gameDisplay&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;width &lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt; &lt;span style=&quot;color: rgb(0, 0, 221);&quot;&gt;21&lt;/span&gt;;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;)&lt;/span&gt; &lt;span style=&quot;color: rgb(102, 102, 102);&quot;&gt;// Calculate ball trajectory &lt;/span&gt;&lt;br /&gt;		&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;{&lt;/span&gt;&lt;br /&gt;			bx &lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;=&lt;/span&gt; bvx;&lt;br /&gt;			by &lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;=&lt;/span&gt; bvy;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;			&lt;span style=&quot;color: rgb(0, 0, 255);&quot;&gt;if&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;(&lt;/span&gt;by &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;=&lt;/span&gt; gameDisplay&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;height &lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;||&lt;/span&gt; by &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;lt;=&lt;/span&gt; &lt;span style=&quot;color: rgb(0, 0, 221);&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;)&lt;/span&gt;	&lt;span style=&quot;color: rgb(102, 102, 102);&quot;&gt;//if ball &apos;hits&apos; top / bottom, assume it goes other way.&lt;/span&gt;&lt;br /&gt;				bvy &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;bvy;&lt;br /&gt;		&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;		&lt;br /&gt;		&lt;span style=&quot;color: rgb(0, 0, 255);&quot;&gt;if&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;(&lt;/span&gt;by &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;=&lt;/span&gt; p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;y &lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;||&lt;/span&gt; by &lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;+&lt;/span&gt; b&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;s &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;lt;=&lt;/span&gt; p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;y &lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;+&lt;/span&gt; p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;h&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;)&lt;/span&gt; &lt;span style=&quot;color: rgb(102, 102, 102);&quot;&gt;//if ball is in front of pad dont move&lt;/span&gt;&lt;br /&gt;		&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;{&lt;/span&gt;&lt;br /&gt;		&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;		&lt;span style=&quot;color: rgb(0, 0, 255);&quot;&gt;if&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;(&lt;/span&gt;by &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;lt;=&lt;/span&gt; p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;y&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;)&lt;/span&gt;&lt;br /&gt;		&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;{&lt;/span&gt;&lt;br /&gt;			p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;y &lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;=&lt;/span&gt; p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;vy;&lt;br /&gt;		&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;		&lt;span style=&quot;color: rgb(0, 0, 255);&quot;&gt;if&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;(&lt;/span&gt;by &lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;+&lt;/span&gt; b&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;s &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;=&lt;/span&gt; p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;y &lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;+&lt;/span&gt; p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;h&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;)&lt;/span&gt;&lt;br /&gt;		&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;{&lt;/span&gt;&lt;br /&gt;			p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;y &lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;+&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;=&lt;/span&gt; p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;vy;&lt;br /&gt;		&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;	&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;	&lt;span style=&quot;color: rgb(0, 0, 255);&quot;&gt;if&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;(&lt;/span&gt;p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;y &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;lt;&lt;/span&gt; &lt;span style=&quot;color: rgb(0, 0, 221);&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;)&lt;/span&gt; p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;y &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: rgb(0, 0, 221);&quot;&gt;0&lt;/span&gt;;&lt;br /&gt;&amp;nbsp;&lt;br /&gt;	&lt;span style=&quot;color: rgb(0, 0, 255);&quot;&gt;if&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;(&lt;/span&gt;p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;y &lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;+&lt;/span&gt; p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;h&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;)&lt;/span&gt; &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt; gameDisplay&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;height&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;)&lt;/span&gt; p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;y &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;(&lt;/span&gt;gameDisplay&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;height &lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt; p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;h&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;)&lt;/span&gt;; &lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span style=&quot;color: rgb(102, 102, 102);&quot;&gt;//AABB Box&lt;/span&gt;&lt;br /&gt;	p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;box.&lt;span style=&quot;color: rgb(0, 238, 255);&quot;&gt;point&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 221);&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 221);&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;]&lt;/span&gt; &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;=&lt;/span&gt; p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;x;&lt;br /&gt;	p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;box.&lt;span style=&quot;color: rgb(0, 238, 255);&quot;&gt;point&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 221);&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 221);&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;]&lt;/span&gt; &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;=&lt;/span&gt; p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;y;&lt;br /&gt;	p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;box.&lt;span style=&quot;color: rgb(0, 238, 255);&quot;&gt;point&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 221);&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 221);&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;]&lt;/span&gt; &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;=&lt;/span&gt; p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;x &lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;+&lt;/span&gt; p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;w;&lt;br /&gt;	p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;box.&lt;span style=&quot;color: rgb(0, 238, 255);&quot;&gt;point&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 221);&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;]&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 221);&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;]&lt;/span&gt; &lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;=&lt;/span&gt; p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;y &lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;+&lt;/span&gt; p&lt;span style=&quot;color: rgb(0, 0, 64);&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 128);&quot;&gt;&amp;gt;&lt;/span&gt;h;&lt;br /&gt;&lt;span style=&quot;color: rgb(0, 128, 0);&quot;&gt;}&lt;/span&gt;&lt;/pre&gt;
Bon apr&amp;egrave;s l&apos;ordi est imbattable :)&amp;nbsp; Si vous avez des commentaires sur ma facon de faire ou sur comment optimiser le code, ca m&apos;interesse, j&apos;ai jamais optimiser mon code donc.. :D</description>
                <pubDate>Fri, 11 Sep 2009 21:41:48 +0200</pubDate>
		<category>dingoo</category>               <category>dev</category>               <category>A320</category>               <category>pong</category>               <category>AI</category>               <category>c</category>                               </item>
                                <item>
                <title>0.1.0</title>
                <link>http://captainsid.dev-fr.org/p4170/2009-09-11-0-1-0.html </link>
                <description>Voila j&apos;ai fait une premiere version ! Tr&amp;egrave;s basique , on ne peut pas encore jouer contre l&apos;ordinateur, enfin c&apos;est surtout pour m&apos;entrainer, voila quelques screenshots :&lt;br /&gt;
&lt;br /&gt;
&lt;img alt=&quot;&quot; src=&quot;/pics/1252656264-Menu.png&quot; /&gt;&lt;br /&gt;
Pareil pour le menu x)&lt;br /&gt;
&lt;br /&gt;
&lt;img alt=&quot;&quot; src=&quot;/pics/1252656286-InGame.png&quot; /&gt;&lt;br /&gt;
J&apos;ai comme un impr&amp;eacute;ssion de d&amp;eacute;ja vu.&lt;br /&gt;
&lt;br /&gt;
C&apos;est assez basique, je suis pas habitu&amp;eacute; au C, j&apos;ai appris avec le c++ et la poo donc c&apos;est un monde un peu diff&amp;eacute;rent pour moi ^^&lt;br /&gt;
&lt;br /&gt;
Voila le binaire + les sources :&lt;br /&gt;
&lt;a href=&quot;javascript:void(0);/*1252661146396*/&quot;&gt;http://www.sendspace.com/file/31kscw&lt;/a&gt;</description>
                <pubDate>Fri, 11 Sep 2009 11:44:57 +0200</pubDate>
		<category>A3é0</category>               <category>Dingoo</category>               <category>dev</category>               <category>c</category>               <category>pong</category>                               </item>
                                <item>
                <title>Au commencement... Pong !</title>
                <link>http://captainsid.dev-fr.org/p4169/2009-09-10-au-commencement-pong.html </link>
                <description>Et voila un premier screenshot de la version &apos;jouable&apos; :&lt;br /&gt;
&lt;br /&gt;
&lt;img alt=&quot;&quot; src=&quot;/pics/1252588684-screenshot3.png&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
Dans l&apos;id&amp;eacute;e il y aura deux modes, Joueur contre Ordinateur, et Joueur contre Joueur.&lt;br /&gt;
&lt;br /&gt;
Pour l&apos;instant j&apos;ai &amp;eacute;crit le mode Joueur contre Joueur, avec commes touches:&lt;br /&gt;
J1: - Haut -Bas et J2: -A -B, j&apos;aurais bien choisi -X -B mais maintenir la touche X enfonc&amp;eacute; ferme l&apos;appli... (sauf pour les &amp;eacute;mulateur&apos;)&lt;br /&gt;
&lt;br /&gt;
Le cot&amp;eacute; r&amp;eacute;tro est un choix, mais je vais aussi travailler une version avec des sprites, histoire de me mettre dans le bain :)&lt;br /&gt;
&lt;br /&gt;
Si vous avez des conseils je prend ! Je suis nouveau en dev de jeu ;)</description>
                <pubDate>Thu, 10 Sep 2009 15:24:58 +0200</pubDate>
		<category>A320</category>               <category>dingoo</category>               <category>dev</category>               <category>c</category>               <category>pong</category>                               </item>
                                <item>
                <title>Tout un tas de premieres fois</title>
                <link>http://captainsid.dev-fr.org/p4168/2009-09-10-tout-un-tas-de-premieres-fois.html </link>
                <description>Tout d&apos;abord une pr&amp;eacute;sentation, je m&apos;appelle Paul, j&apos;ai 18 ans, j&apos;entre en graphisme, a Tournai (belgique).&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
La programmation (html php c++ ruby python c#) a &amp;eacute;t&amp;eacute; un de mes hobbies depuis quelques ann&amp;eacute;es maintenant, mais je n&apos;ai jamais vraiment fait de &apos;jeu&apos;.&lt;br /&gt;
Je compte bien m&apos;y mettre sur la Dingoo A320 que j&apos;ai recu hier :) &lt;br /&gt;
&lt;br /&gt;
Je commence par un Pong deux joueurs, histoire de me roder un peu au c et a la dingoo puis j&apos;entamerait un shoot em up (qui sont mes jeux pr&amp;eacute;f&amp;eacute;r&amp;eacute;s &amp;lt;3).&lt;br /&gt;
&lt;br /&gt;</description>
                <pubDate>Thu, 10 Sep 2009 13:19:43 +0200</pubDate>
		<category>A320</category>               <category>dingoo</category>               <category>dev</category>               <category>c</category>                               </item>
                </channel>
</rss>

