UnderwareDESIGN

PlayBASIC => Resources => Source Codes => Topic started by: kevin on July 27, 2013, 09:05:32 PM

Title: GetSpriteRect Example (Dirty Rectangles / Selective Map Refreshing)
Post by: kevin on July 27, 2013, 09:05:32 PM
  GetSpriteRect Example (Dirty Rectangles / Selective Map Refreshing)

     This is a variation of the selective map refreshing examples (https://www.underwaredesign.com/forums/index.php?topic=2677.0), the main difference is that this version draws a sprite scene and uses the GetSpriteRect function to query the sprites bounding box volume.  This saves us have to manually query the sprites possibly rotated and scaled verts.    Not only that we can make the normally fixed cost of rendering a frame more efficient, since the display refresh only has to draw sections of the backdrop and not the whole thing.        
     

     Requires PlayBASIC V1.64O Beta 19 or higher

[pbcode]


  loadfont  "arial",1,16,0,8


  // -----------------------------------------------------------
  // Size the Map blocks we'll use.  
  // -----------------------------------------------------------
  constant TileWidth   =32
  constant TileHeight   =32

  // -----------------------------------------------------------
  // Make the Backdrop image.  This buffer is also used for the 'FX surface'
  // -----------------------------------------------------------
  BackDropFX =MakeBackdropImage()


  // -----------------------------------------------------------
  // Make a blob image to represent the sprites in the scene
  // -----------------------------------------------------------
  Blob= MakeBlobImage(64,64)


  // -----------------------------------------------------------
  // Define our RECT structure to hold the bounds of each sprite
  // -----------------------------------------------------------

   Type tRect
         x1,y1
         x2,y2
   EndType

  // -----------------------------------------------------------
  // Define a type to simulate some characters in the scene.
  // -----------------------------------------------------------
  Type tAlien
         Sprite
        speed#
        direction#
        Rect as tRect
  EndType

  // ------------------------------------------------------
  // Dim a list called Character to hold the objects
  // ------------------------------------------------------
  Dim Character as TAlien list


  // ------------------------------------------------------
  // Set the clip zone of the object
  // ------------------------------------------------------
  clipSize=64
  ViewportX1=-clipSize
  ViewportX2=GetSCreenWidth()+clipSize
  ViewportY1=-clipSize
  ViewportY2=GetSCreenHeight()+clipSize
 

  // ------------------------------------------------------
  // MAKE MAP / LEVEL / BLOCKS from our backdrop picture
  // ------------------------------------------------------

   Map,OriginalLevel,RefreshLevel=Make_Map_FRom_Image(BackDropFX)
   
   


  ;*=-----------------------------------------------------------------------------=*  
  ;         >> Main Loop <<
  ;*=-----------------------------------------------------------------------------=*  

   
   Screen=NewIMage(GetScreenWidth(),GetScreenHeight(),2)


  Do

        // Add new charcter to scene if the space key is being pressed        
        if Spacekey()  or  LastTime<Timer()

               LastTime=Timer()+50
               Add_Random_Character(Blob)

        endif        


        // Process and render to the objects in the character list
        RenderToImage Screen
       
       
        // Draw the refresh level to our FX image screen
        drawmap Map,RefreshLevel,0,0
       
        // reset the refresh level
        ClearLevel Map,RefreshLevel,0


         // Process our list of characters      
        For each Character()

               ThisSprite=Character.Sprite
              Speed#      =Character.speed#
              Angle#      =Character.direction#

               moveSprite ThisSprite,Cosradius(angle#,speed#),SinRadius(angle#,speed#)

               ; Check if the character is inside the screen ?
               if RectHitSprite(ViewportX1,ViewportY1,ViewportX2,ViewportY2,ThisSprite)=false
                     deleteSprite Sprite
                    Character=null
                    continue
              endif

               // Get the rect around this sprite...
               if GetSpriteRect(ThisSprite,Character.Rect)
                  // Convert Pixels coordinates to Map Tile positions
                  x1=Character.Rect.x1/TileWidth
                  y1=Character.Rect.y1/TileHeight
                  x2=Character.Rect.x2/TileWidth
                  y2=Character.Rect.y2/TileHeight
                  CopyLevel   Map,OriginalLevel,x1,y1,x2+1,y2+1,Map,RefreshLevel,TilePad+x1,TilePad+y1
               endif
        Next
       
       
         // Draw the Sprite List to the FX buffer image
         DrawAllSprites


         // Direct rendering to the PB display
        rendertoscreen

        // Draw the current state of the Backdrop to the SCREEN
           Drawimage Screen,0,0,false

        // Draw the info to the screen for the viewer  
           text 0, 0,"Refresh %:"+CalcRefreshPercentage(Map,RefreshLevel)
           text 0,20,"Fps:"+str$(Fps())
       
        Sync
  loop  




;*=-----------------------------------------------------------------------------=*  
;                        >> Add Random Character <<
;*=-----------------------------------------------------------------------------=*  
;
;  This function adds a new character to our liost and fills it with random
; position and speed data.

;*=-----------------------------------------------------------------------------=*  


Psub Add_Random_Character(ThisImage)

        Character             = New tAlien
        x         =rnd(GetScreenWidth())
        y           =rnd(GetScreenHeight())
        Character.Sprite          =NewSprite(X,y,ThisIMage)        
        Character.Speed      =rndrange(1,5)
        Character.direction# =rnd(360)

EndPsub



;*=-----------------------------------------------------------------------------=*  
;                        >> Calc ReFresh Percentage <<
;*=-----------------------------------------------------------------------------=*  
;
;  This function converts an image into the array of tiles representing this
; image.  Each cell in the array contains the image handle of that 'sector'
; of the original image.   This is used to refresh the image during refresh.
;
;*=-----------------------------------------------------------------------------=*  


Psub CalcRefreshPercentage(Map,Level)
     Count=0
     Width=GetLevelWidth(Map,Level)
     Height=GetLevelHeight(Map,Level)
     
     Total = (Width+1)*(Height+1)
     
     For ylp=0 to Height
        For xlp=0 to Width
              Tile=PeekLevelTile(Map,Level,xlp,ylp)
              Count+=Tile<>0
        next
     next            
     
     p#=float(Count)/Total
     
     s$=str$(p#*100   )  

EndPsub s$






;*=-----------------------------------------------------------------------------=*  
;                           >> Make Blob image <<
;*=-----------------------------------------------------------------------------=*  
;
;    This function makes a Blob (circle/ellipse) image with alpha channel, which
; is used to represent a hand drawn sprite in your game.    
;
;*=-----------------------------------------------------------------------------=*  


Function MakeBlobImage(width,height)

     oldsurface=getsurface()
     Thisimage=GetFreeImage()
     CreateFXImageEX ThisImage,Width,Height,32
     rendertoimage Thisimage
     radiusX=Width/2
     radiusY=Height/2

     lockbuffer
        ellipsec (width/2),(height/2),radiusX,radiusY,true,rgb(255,255,255)
     
     nullpixel=Point(0,0)
     for ylp=0 to height-1
        A=float(ylp)/height*255
        A=lsl32(a,24)
        for xlp=0 to width-1
              ThisPixel=Fastpoint(xlp,ylp) and $00ffffff
              if ThisPixel
                 FastDot xlp,ylp,ThisPixel or A
              endif
        next
     next
     unlockbuffer
     prepareAFXimage ThisImage
     rendertoimage oldsurface
EndFunction ThisImage



;*=-----------------------------------------------------------------------------=*  
;                           >> Make Backdrop image <<
;*=-----------------------------------------------------------------------------=*  
;
;   This function create a backdrop image.  It's a bit of mess, but it'll do for
; the sake of the demo.  In a real game you'd obviously load your own backdrop.
;*=-----------------------------------------------------------------------------=*  


Function MakeBackdropImage()

  // Make the backdrop
     sw=GetScreenWidth()
     sh=GetScreenHeight()
     backdrop=NewImage(sw,sh,2)
     rendertoimage backdrop
     c1=argb(255,0,0,100)      
     c2=argb(255,70,50,0)      
     c3=argb(255,0,200,0)      
     c4=argb(255,0,0,0)      
     ShadeBox 0,0,sw,sh,c1,c2,c3,c4  
     loadfont  "Arial",2,64,0
     
     setfont 2
     for lp=0 to 200
        ink rndrgb()| $ff000000
        CenterText rnd(sw),rnd(sh),"<>"
     next

     ink argb(255,55,55,55)
     x=sw/2
     y=sh*0.4
     CenterText x-2,y-2,"Game Backdrop Image"
     ink argb(255,255,255,255)
     CenterText x,y,"Game Backdrop Image"
     setfont 1  
     deletefont 2
     rendertoscreen

EndFunction BackDrop



Function Make_Map_FRom_Image(ThisIMage)

  // ------------------------------------------------------
  // MAKE MAP / LEVEL / BLOCKS from our backdrop picture
  // ------------------------------------------------------

     Map=NewMap(10)
 
     IMageWidth   =GetIMageWidth(ThisIMage)
     IMageHeight   =GetIMageHeight(ThisIMage)

     TilesWide   =IMageWidth/TileWidth
     TilesHigh   =IMageHeight/TileHeight
     
     if (TilesWide*TileWidth)>ImageWidth then TilesWide++
     if (TilesHigh*TileHeight)>ImageHieght then TilesHigh++
 
     BlockCount=(TilesWide*TilesHigh)+1
     CreateMapGfx Map,TileWidth,TileHeight,BlockCount,rgb(0,0,0),2
 
     OriginalLevel=NewLevel(Map,TilesWide-1,TilesHigh-1)
 
     rendertoimage ThisImage

     // ----------------------------------
     // Build map representation of this image
     // ----------------------------------
     Index=1  
     For ylp=0 to TilesHigh-1
        For xlp=0 to TilesWide-1
              Xpos=xlp*TileWidth
              Ypos=ylp*TileHeight
              GetMapblk Map,Index,Xpos,Ypos
              PokeLEvelTile Map,OriginalLevel, Xlp,ylp,Index
              Index++
        next
     next  
 
 
  RefreshLevel   =NewLevel(Map,TilesWide-1,TilesHigh-1)

  pastelevel map,OriginalLevel,Map,RefreshLevel,0,0,0    
 
  LevelTransparent  Map,RefreshLevel,0
   

EndFunction Map,OriginalLevel,RefreshLevel


[/pbcode]


  Video

   


   

 Related Articles:

     * Selective Tile Map Refreshing (https://www.underwaredesign.com/forums/index.php?topic=2677.0)