X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pages%2Fblog-0006.html-inc;h=2110aad5a24081827631db4b34887796c21352c1;hb=e785862422f3e827a242fc244bd57b23443887ce;hp=8c28eca94b46751695aef8b7f72582a2a6b8c279;hpb=8d3f70f2a099e5c99545142b8dcb2368ab3f9b1f;p=sdlgit%2FSDL-Site.git diff --git a/pages/blog-0006.html-inc b/pages/blog-0006.html-inc index 8c28eca..2110aad 100644 --- a/pages/blog-0006.html-inc +++ b/pages/blog-0006.html-inc @@ -1,6 +1,15 @@

-The beginnings of modular design for SDL Perl +SDL Manual: Reviewers Needed

-
“Do or do not... there is no try.”
--yoda

The design before


The bindings before were all in one huge XS file. 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.

The design we are aiming for

Simple one XS per Module. This would also simplify the Build code.

First Step


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 is in XS we have only unnamed parameters.


Before


SDL::Rect->new( -x => 0, -y => 0, -width => 0, -height => 0);

After


SDL::Rect->new(0, 0, 0, 0);

Ideally we would like both ways of constructing Rect.
\ No newline at end of file +Work has begun on the 4th chapter of the SDL Manual. The code is on github, and I regularly update the pdf on our server.
+
+Writing manuals is not of my greatest skills, so I would love some review of my work. Any problems can be reported in the issues.
+
+If you want to help with writing the manual, please join me on #sdl irc.perl.org or email us at
+sdl-devel@perl.org
+
+--yapgh
+


+

\ No newline at end of file