Update index page on mailing list
[sdlgit/SDL-Site.git] / pages / blog-0023.html-inc
CommitLineData
ec946b6b 1<div class="blog">
2<h1 id="NAME">
ca0a3441 3The beginnings of modular design for SDL Perl
ec946b6b 4</h1>
5<div class="CONTENT">
ca0a3441 6<div style="text-align: right;"><i>“Do or do not... there is no try.”</i><br />
7</div><div style="text-align: right;"><i>--yoda </i><br />
56d4907c 8<br />
ca0a3441 9</div><h1>The design before</h1><br />
10The 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 />
56d4907c 11<br />
ca0a3441 12<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 />
56d4907c 13<br />
ca0a3441 14<h2>First Step </h2><br />
15We 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 />
56d4907c 16<br />
56d4907c 17<br />
ca0a3441 18<h3>Before</h3><br />
19SDL::Rect-&gt;new( -x =&gt; 0, -y =&gt; 0, -width =&gt; 0, -height =&gt; 0);<br />
56d4907c 20<br />
ca0a3441 21<h3>After</h3><br />
22SDL::Rect-&gt;new(0, 0, 0, 0);<br />
56d4907c 23<br />
ca0a3441 24Ideally 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>
25<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/>
26<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>