uodate
[sdlgit/SDL-Site.git] / pages / blog-0024.html-inc
index 2ab0c8f..f5d4032 100644 (file)
@@ -1,6 +1,26 @@
 <div class="blog">
 <h1 id="NAME">
-SDL perl is coming to Strawberry!!
+The beginnings of modular design for SDL Perl
 </h1>
 <div class="CONTENT">
-<div style="text-align: right;"><i>I am a part of all that I have met. --</i>Alfred Tennyson <br /></div><div style="text-align: right;">&nbsp; </div>I hope I am not jumping the gun but it looks good.&nbsp; This is all thanks to kmx!!<br /><br />Here is an obligatory pic since my last post on this matter. (That is one of the test script you can run for test/ in the distrobution).<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="http://2.bp.blogspot.com/_NnqjAQEn1Xo/SpWUmSBlt-I/AAAAAAAAAAc/hPZjdppeyu0/s1600-h/ok.bmp" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/_NnqjAQEn1Xo/SpWUmSBlt-I/AAAAAAAAAAc/hPZjdppeyu0/s320/ok.bmp" /></a></div><br /><br />You can follow the history <a href="https://rt.cpan.org/Ticket/Display.html?id=49003">here</a>.<br /><br />It has been tested on winXP 32/64 bit strawberry so far. Here is how you can get it.<br /><br /><ol><li>Go here to get the <a href="http://github.com/kthakore/SDL_perl/">code</a>&nbsp;</li><li>Click download, choose .tar.gz</li><li>Save the resultant kthakore....tar.gz somewhere</li><li>Get <a href="http://cloud.github.com/downloads/kthakore/SDL_perl/libsdl-1.2.13-bin_20090825.ZIP">this</a> and  extract it on C:/strawberry/ </li><li><b>Last do pip kthakore......tar.gz </b>(I find this so amazing!!)<b></b></li><li><b>Play with C:/strawberry/cpan/build/SDL/test/*.pl&nbsp;</b></li><ul><li><b>or post a <a href="https://rt.cpan.org/Ticket/Display.html?id=49003">bug report</a>&nbsp; <br /></b></li></ul></ol><blockquote>Enjoy</blockquote>--yapgh<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3102167581424744259-8353082216465109784?l=yapgh.blogspot.com' alt='' /></div></div></div>
\ No newline at end of file
+<div style="text-align: right;"><i>“Do or do not... there is no try.”</i><br />
+</div><div style="text-align: right;"><i>--yoda </i><br />
+<br />
+</div><h1>The design before</h1><br />
+The bindings before were all in <a href="http://github.com/kthakore/SDL_perl/blob/master/src/SDL.xs">one huge XS file</a>. This was then exported into the SDL module. This means that the XS file has to handle with macros if any component (e.x SDL_Mixer) is not compiled. Moreover having ever binding in one XS file prevents use to treat C structs as object with only one point of free and malloc. This would be BEGIN and DESTROY in Perl. Also the monolithic design introduces a lot of bugs because we have to use free and malloc all over the place. Lastly SDL monolithic design has the constructor for all structs in both Perl and in XS. <br />
+<br />
+<h1>The design we are aiming for</h1>Simple <a href="http://github.com/kthakore/SDL_perl/blob/master/src/Rect.xs">one XS</a> per Module. This would also simplify the Build code.<br />
+<br />
+<h2>First Step </h2><br />
+We have began with SDL Rect. It is in github master branch now. We are in the progress of making it back compatible. Originally SDL::Rect took named variables as parameters for new(). Now since the constructor <a href="http://github.com/kthakore/SDL_perl/blob/master/src/Rect.xs#L16">is in XS</a> we have only unnamed parameters. <br />
+<br />
+<br />
+<h3>Before</h3><br />
+SDL::Rect-&gt;new( -x =&gt; 0, -y =&gt; 0, -width =&gt; 0, -height =&gt; 0);<br />
+<br />
+<h3>After</h3><br />
+SDL::Rect-&gt;new(0, 0, 0, 0);<br />
+<br />
+Ideally we would like both ways of constructing Rect.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3102167581424744259-6151839795039915111?l=yapgh.blogspot.com' alt='' /></div>
+<p><a href="http://feedads.g.doubleclick.net/~a/kLUEuAPtuInPChqB2WfChUn3YyI/0/da"><img src="http://feedads.g.doubleclick.net/~a/kLUEuAPtuInPChqB2WfChUn3YyI/0/di" border="0" ismap="true"></img></a><br/>
+<a href="http://feedads.g.doubleclick.net/~a/kLUEuAPtuInPChqB2WfChUn3YyI/1/da"><img src="http://feedads.g.doubleclick.net/~a/kLUEuAPtuInPChqB2WfChUn3YyI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/YetAnotherPerlGameHackeryapgh/~4/uEzoBWRJEks" height="1" width="1"/></div></div>
\ No newline at end of file