X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pages%2FSDLx-LayerManager.html-inc;h=4aed8afe5e1f53aa20841a43bfedfeabe3ecaa34;hb=d5943b684b1240307fbf0a103abbf18dd93998f4;hp=5429bca8ecd8653cf8072293255053558a082cd0;hpb=269d57b686ede25008bbab8589d7ec4d507b7b95;p=sdlgit%2FSDL-Site.git diff --git a/pages/SDLx-LayerManager.html-inc b/pages/SDLx-LayerManager.html-inc index 5429bca..4aed8af 100644 --- a/pages/SDLx-LayerManager.html-inc +++ b/pages/SDLx-LayerManager.html-inc @@ -24,7 +24,7 @@
  • BUGS
  • SUPPORT
  • -
  • AUTHOR
  • +
  • AUTHORS
  • COPYRIGHT
  • SEE ALSO
  • @@ -71,7 +71,9 @@

    DESCRIPTION

    Top

    -

    The LayerManager ...

    +

    SDLx::LayerManager is a package to handle a bunch of layers. A layer (see SDLx::Layer) is an SDL::Surface, the position of the surface on screen and some additional information.

    +

    The layermanager gives you the opportunity to obtain the layer at a given point on screen and get the layers that are ahead or behind a layer.

    +

    You will even be able to attach one or more layers to the mouse, e.g. for simulation some drag&drop functionality.

    METHODS

    Top

    @@ -80,26 +82,52 @@

    new

    +
      my $layermanager = SDLx::LayerManager->new();
    +
    +
    +

    This creates your layermanager object. It doesn't take any parameters.

    add

    +
      $layermanager->add( $layer );
    +  $layermanager->add( SDLx::Layer->new( $surface, $x, $y, $options ) );
    +
    +
    +

    Call add to push an SDLx::Layer object to the layermanager.

    layers

    +
      my @layers = @{ $layermanager->layers };
    +  my $first_layer = $layermanager->layers->[0];
    +
    +
    +

    The method layers returns all layers that were added before.

    layer

    +
      my $layer = $layermanager->layer( $index );
    +
    +
    +

    To obtain only one layer at index $index use this function. $index ranges from 0 to lenght - 1.

    length

    +
      my $length = $layermanager->length();
    +
    +
    +

    This method returns the count of the added layers.

    blit

    +
      $layermanager->blit( $surface );
    +
    +
    +

    This method blits all layers to the surface (e.g. your video surface).

    by_position

    @@ -107,14 +135,27 @@
      my $layer = $layermanager->by_position( $x, $y );
     
     
    +

    by_position returns the SDLx::Layer object at point $x $y, which is not fully transparent at this pixel.

    ahead

    +
      my @layers = @{ $layermanager->ahead( $index ) };
    +
    +
    +

    This method returns all layers that are ahead of the given layer indicated by $index. +Ahead means that a layer has a higher z-index and is blitted over the given layer.

    +

    Note: This method doesn't check for transparency. This will change in future versions.

    behind

    +
      my @layers = @{ $layermanager->behind( $index ) };
    +
    +
    +

    This method returns all layers that are behind of the given layer indicated by $index. +Behind means that a layer has a lower z-index and is blitted before the given layer.

    +

    Note: This method doesn't check for transparency. This will change in future versions.

    attach

    @@ -143,15 +184,9 @@

    #sdl irc.perl.org

    -

    AUTHOR

    Top

    -
    -
        Tobias Leich
    -    CPAN ID: FROGGS
    -    ---
    -    froggs@cpan.org
    -    http://sdl.perl.org
    -
    -
    +

    AUTHORS

    Top

    +
    +

    See AUTHORS in SDL.

    COPYRIGHT

    Top