Exemplo n.º 1
0
    def test_pygame2_base_Rect_collidedictall(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.collidedictall:

        # Rect.collidedictall (dict) -> [(key, value), ...]
        # 
        # Test if all rectangles in a dictionary intersect.
        # 
        # Returns a list of all the key and value pairs that intersect
        # with the Rect. If no collisions are found an empty list is
        # returned. They keys of the passed dict must be Rect objects.

        r = Rect(1, 1, 10, 10)

        r2 = Rect(1, 1, 10, 10)
        r3 = Rect(5, 5, 10, 10)
        r4 = Rect(10, 10, 10, 10)
        r5 = Rect(50, 50, 10, 10)

        rects_values = 1
        d = {2: r2}
        l = r.collidedictall(d, rects_values)
        self.assertEqual(l, [(2, r2)])

        d2 = {2: r2, 3: r3, 4: r4, 5: r5}
        l2 = r.collidedictall(d2, rects_values)
        self.assertEqual(l2, [(2, r2), (3, r3), (4, r4)])
Exemplo n.º 2
0
 def test_union_ip__list( self ):
     r1 = Rect( 0, 0, 1, 1 )
     r2 = Rect( -2, -2, 1, 1 )
     r3 = Rect( 2, 2, 1, 1 )
     
     r1.union_ip( [r2,r3] )
     self.assertEqual( Rect(-2, -2, 5, 5), r1 )
Exemplo n.º 3
0
    def test_pygame2_base_Rect_collidedict(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.collidedict:

        # Rect.collidedict (dict) -> (key, value)
        # 
        # Test if one rectangle in a dictionary intersects.
        # 
        # Returns the key and value of the first dictionary value that
        # collides with the Rect. If no collisions are found, None is
        # returned. They keys of the passed dict must be Rect objects.

        r = Rect(1, 1, 10, 10)
        r1 = Rect(1, 1, 10, 10)
        r2 = Rect(50, 50, 10, 10)
        r3 = Rect(70, 70, 10, 10)
        r4 = Rect(61, 61, 10, 10)

        d = {1: r1, 2: r2, 3: r3}

        rects_values = 1
        val = r.collidedict(d, rects_values)
        self.assertTrue(val)
        self.assertEqual(len(val), 2)
        self.assertEqual(val[0], 1)
        self.assertEqual(val[1], r1)

        none_d = {2: r2, 3: r3}
        none_val = r.collidedict(none_d, rects_values)
        self.assertFalse(none_val)

        barely_d = {1: r1, 2: r2, 3: r3}
        k3, v3 = r4.collidedict(barely_d, rects_values)
        self.assertEqual(k3, 3)
        self.assertEqual(v3, r3)
Exemplo n.º 4
0
 def test_pygame2_base_Rect_w(self):
     r = Rect( 1, 2, 3, 4 )
     new_width = 10
     old_topleft = r.topleft
     old_height = r.height
     
     r.w = new_width
     self.assertEqual( new_width, r.w )
     self.assertEqual( old_height, r.height )
     self.assertEqual( old_topleft, r.topleft )
Exemplo n.º 5
0
    def test_pygame2_base_Rect_colliderect(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.colliderect:

        # Rect.colliderect (Rect) -> bool
        # 
        # Test if two rectangles overlap.
        # 
        # Returns true if any portion of either rectangle overlap (except the
        # top+bottom or left+right edges).
        r1 = Rect(1,2,3,4)
        self.assertTrue( r1.colliderect( Rect(0,0,2,3) ),
                         "r1 does not collide with Rect(0,0,2,3)" )
        self.assertFalse( r1.colliderect( Rect(0,0,1,2) ),
                     "r1 collides with Rect(0,0,1,2)" )
        self.assertFalse( r1.colliderect( Rect(r1.right,r1.bottom,2,2) ),
                     "r1 collides with Rect(r1.right,r1.bottom,2,2)" )
        self.assertTrue( r1.colliderect( Rect(r1.left+1,r1.top+1,
                                              r1.width-2,r1.height-2) ),
                         "r1 does not collide with Rect(r1.left+1,r1.top+1,"+
                         "r1.width-2,r1.height-2)" )
        self.assertTrue( r1.colliderect( Rect(r1.left-1,r1.top-1,
                                              r1.width+2,r1.height+2) ),
                         "r1 does not collide with Rect(r1.left-1,r1.top-1,"+
                         "r1.width+2,r1.height+2)" )
        self.assertTrue( r1.colliderect( Rect(r1) ),
                         "r1 does not collide with an identical rect" )
        self.assertFalse( r1.colliderect( Rect(r1.right,r1.bottom,0,0) ),
                     "r1 collides with Rect(r1.right,r1.bottom,0,0)" )
        self.assertFalse( r1.colliderect( Rect(r1.right,r1.bottom,1,1) ),
                     "r1 collides with Rect(r1.right,r1.bottom,1,1)" )
Exemplo n.º 6
0
    def test_pygame2_base_Rect_collidepoint(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.collidepoint:

        # Rect.collidepoint (x, y) -> bool
        # 
        # Test if a point is inside a rectangle.
        # 
        # Returns true if the given point is inside the rectangle.  A
        # point along the right or bottom edge is not considered to be
        # inside the rectangle.
        r = Rect( 1, 2, 3, 4 )
        
        self.assertTrue( r.collidepoint( r.left, r.top ),
                         "r does not collide with point (left,top)" )
        self.assertFalse( r.collidepoint( r.left-1, r.top ),
                     "r collides with point (left-1,top)"  )
        self.assertFalse( r.collidepoint( r.left, r.top-1 ),
                     "r collides with point (left,top-1)"  )
        self.assertFalse( r.collidepoint( r.left-1,r.top-1 ),
                     "r collides with point (left-1,top-1)"  )
        
        self.assertTrue( r.collidepoint( r.right-1, r.bottom-1 ),
                         "r does not collide with point (right-1,bottom-1)")
        self.assertFalse( r.collidepoint( r.right, r.bottom ),
                     "r collides with point (right,bottom)" )
        self.assertFalse( r.collidepoint( r.right-1, r.bottom ),
                     "r collides with point (right-1,bottom)" )
        self.assertFalse( r.collidepoint( r.right, r.bottom-1 ),
                     "r collides with point (right,bottom-1)" )
Exemplo n.º 7
0
    def test_pygame2_base_Rect_top(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.top:

        # Gets or sets the top edge position of the Rect.
        r = Rect( 1, 2, 3, 4 )
        new_top = 10
        
        r.top = new_top
        self.assertEqual( Rect(1,new_top,3,4), r )
        self.assertEqual( new_top, r.top )
Exemplo n.º 8
0
    def test_pygame2_base_Rect_h(self):

        r = Rect( 1, 2, 3, 4 )
        new_height = 10
        old_topleft = r.topleft
        old_width = r.width
        
        r.h = new_height
        self.assertEqual( new_height, r.h )
        self.assertEqual( old_width, r.width )
        self.assertEqual( old_topleft, r.topleft )
Exemplo n.º 9
0
    def test_pygame2_base_Rect_left(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.left:

        # Gets or sets the left edge position of the Rect.
        r = Rect( 1, 2, 3, 4 )
        new_left = 10
        
        r.left = new_left
        self.assertEqual( new_left, r.left )
        self.assertEqual( Rect(new_left,2,3,4), r )
Exemplo n.º 10
0
    def test_inflate__larger( self ):
        "The inflate method inflates around the center of the rectangle"
        r = Rect( 2, 4, 6, 8 )
        r2 = r.inflate( 4, 6 )

        self.assertEqual( r.center, r2.center )
        self.assertEqual( r.left-2, r2.left )
        self.assertEqual( r.top-3, r2.top )
        self.assertEqual( r.right+2, r2.right )
        self.assertEqual( r.bottom+3, r2.bottom )
        self.assertEqual( r.width+4, r2.width )
        self.assertEqual( r.height+6, r2.height )
Exemplo n.º 11
0
    def test_inflate__smaller( self ):
        "The inflate method inflates around the center of the rectangle"
        r = Rect( 2, 4, 6, 8 )
        r2 = r.inflate( -4, -6 )

        self.assertEqual( r.center, r2.center )
        self.assertEqual( r.left+2, r2.left )
        self.assertEqual( r.top+3, r2.top )
        self.assertEqual( r.right-2, r2.right )
        self.assertEqual( r.bottom-3, r2.bottom )
        self.assertEqual( r.width-4, r2.width )
        self.assertEqual( r.height-6, r2.height )
Exemplo n.º 12
0
    def test_pygame2_base_Rect_size(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.size:

        # Gets or sets the width and height of the Rect as 2-value tuple.
        r = Rect( 1, 2, 3, 4 )
        new_size = (10,20)
        old_topleft = r.topleft
        
        r.size = new_size
        self.assertEqual( new_size, r.size )
        self.assertEqual( old_topleft, r.topleft )
Exemplo n.º 13
0
    def test_pygame2_base_Rect_y(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.y:

        # Gets or sets the vertical top left position of the Rect.
        r = Rect (1, 2, 3, 4)
        self.assertEqual (r.y, 2)
        r.topleft = 32, 10
        self.assertEqual (r.y, 10)
        r.top = -44
        self.assertEqual (r.y, -44)
        r.move_ip (10, 33)
        self.assertEqual (r.y, -11)
Exemplo n.º 14
0
    def test_pygame2_base_Rect_union_ip(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.union_ip:

        # Rect.union_ip (Rect) -> Rect
        # 
        # Joins two rectangles into one, in place.
        # 
        # Same as Rect.union(Rect), but operates in place.
        r1 = Rect( 1, 1, 1, 2 )
        r2 = Rect( -2, -2, 1, 2 )
        r1.union_ip(r2)
        self.assertEqual( Rect( -2, -2, 4, 5 ), r1 ) 
Exemplo n.º 15
0
    def test_pygame2_base_Rect_x(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.x:

        # Gets or sets the horizontal top left position of the Rect.
        r = Rect (1, 2, 3, 4)
        self.assertEqual (r.x, 1)
        r.topleft = 32, 10
        self.assertEqual (r.x, 32)
        r.left = -44
        self.assertEqual (r.x, -44)
        r.move_ip (10, 33)
        self.assertEqual (r.x, -34)
Exemplo n.º 16
0
    def test_pygame2_base_Rect_topleft(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.topleft:

        # Gets or sets the top left corner position of the Rect.

        r = Rect( 1, 2, 3, 4 )
        new_topleft = (r.left+20,r.top+30)
        old_size = r.size
        
        r.topleft = new_topleft
        self.assertEqual( new_topleft, r.topleft )
        self.assertEqual( old_size, r.size )
Exemplo n.º 17
0
    def test_pygame2_base_Rect_right(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.right:

        # Gets or sets the right position of the Rect.
        r = Rect( 1, 2, 3, 4 )
        new_right = r.right + 20
        expected_left = r.left + 20
        old_width = r.width
        
        r.right = new_right
        self.assertEqual( new_right, r.right )
        self.assertEqual( expected_left, r.left )
        self.assertEqual( old_width, r.width )
Exemplo n.º 18
0
    def test_pygame2_base_Rect_midtop(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.midtop:

        # Gets or sets the mid top edge position of the Rect.
        r = Rect( 1, 2, 3, 4 )
        new_midtop= (r.centerx+20,r.top+30)
        expected_topleft = (r.left+20,r.top+30)
        old_size = r.size
        
        r.midtop = new_midtop
        self.assertEqual( new_midtop, r.midtop )
        self.assertEqual( expected_topleft, r.topleft )
        self.assertEqual( old_size, r.size )
Exemplo n.º 19
0
    def test_pygame2_base_Rect_bottomright(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.bottomright:

        # Gets or sets the bottom right corner position of the Rect.
        r = Rect( 1, 2, 3, 4 )
        new_bottomright = (r.right+20,r.bottom+30)
        expected_topleft = (r.left+20,r.top+30)
        old_size = r.size
        
        r.bottomright = new_bottomright
        self.assertEqual( new_bottomright, r.bottomright )
        self.assertEqual( expected_topleft, r.topleft )
        self.assertEqual( old_size, r.size )
Exemplo n.º 20
0
    def test_pygame2_base_Rect_centery(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.centery:

        # Gets or sets the vertical center position of the Rect.
        r = Rect( 1, 2, 3, 4 )
        new_centery = r.centery + 20
        expected_top = r.top + 20
        old_height = r.height
        
        r.centery = new_centery
        self.assertEqual( new_centery, r.centery )
        self.assertEqual( expected_top, r.top )
        self.assertEqual( old_height, r.height )
Exemplo n.º 21
0
    def test_pygame2_base_Rect_bottom(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.bottom:

        # Gets or sets the bottom edge position of the Rect.
        r = Rect( 1, 2, 3, 4 )
        new_bottom = r.bottom + 20
        expected_top = r.top + 20
        old_height = r.height
        
        r.bottom = new_bottom
        self.assertEqual( new_bottom, r.bottom )
        self.assertEqual( expected_top, r.top )
        self.assertEqual( old_height, r.height )
Exemplo n.º 22
0
    def test_pygame2_base_Rect_width(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.width:

        # Gets or sets the width of the Rect.
        r = Rect( 1, 2, 3, 4 )
        new_width = 10
        old_topleft = r.topleft
        old_height = r.height
        
        r.width = new_width
        self.assertEqual( new_width, r.width )
        self.assertEqual( old_height, r.height )
        self.assertEqual( old_topleft, r.topleft )
Exemplo n.º 23
0
    def test_pygame2_base_Rect_copy(self):

        # __doc__ (as of 2009-02-23) for pygame2.base.Rect.copy:

        # copy () -> Rect
        #
        # Creates a copy of the Rect.
        #
        # Returns a new Rect, that contains the same values as the
        # caller.
        r = Rect( 1, 2, 3, 4 )
        cp = r.copy ()
        self.assertTrue (r == cp, "r (1, 2, 3, 4) is not equal to its copy")

        r = Rect( -10, 50, 10, 40 )
        cp = r.copy ()
        self.assertTrue (r == cp,
                         "r (-10, 50, 10, 40) is not equal to its copy")
        
        r = Rect( 2, -5, 10, 40 )
        cp = r.copy ()
        self.assertTrue (r == cp,
                         "r (2, -5, 10, 40) is not equal to its copy")
        
        r = Rect( -2, -5, 10, 40 )
        cp = r.copy ()
        self.assertTrue (r == cp,
                         "r (-2, -5, 10, 40) is not equal to its copy")
Exemplo n.º 24
0
    def test_pygame2_base_Rect_center(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.center:

        # Gets or sets the center position of the Rect.
        r = Rect( 1, 2, 3, 4 )
        new_center = (r.centerx+20,r.centery+30)
        expected_topleft = (r.left+20,r.top+30)
        old_size = r.size
        
        r.center = new_center
        self.assertEqual( new_center, r.center )
        self.assertEqual( expected_topleft, r.topleft )
        self.assertEqual( old_size, r.size )
Exemplo n.º 25
0
    def test_pygame2_base_Rect_centerx(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.centerx:

        # Gets or sets the horizontal center position of the Rect.
        r = Rect( 1, 2, 3, 4 )
        new_centerx = r.centerx + 20
        expected_left = r.left + 20
        old_width = r.width
        
        r.centerx = new_centerx
        self.assertEqual( new_centerx, r.centerx )
        self.assertEqual( expected_left, r.left )
        self.assertEqual( old_width, r.width )
Exemplo n.º 26
0
    def test_pygame2_base_Rect_union(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.union:

        # Rect.union (Rect) -> Rect
        # 
        # Joins two rectangles into one.
        # 
        # Returns a new rectangle that completely covers the area of the
        # two provided rectangles. There may be area inside the new Rect
        # that is not covered by the originals.
        r1 = Rect( 1, 1, 1, 2 )
        r2 = Rect( -2, -2, 1, 2 )
        self.assertEqual( Rect( -2, -2, 4, 5 ), r1.union(r2) )
Exemplo n.º 27
0
    def test_pygame2_base_Rect_move_ip(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.move_ip:

        # Rect.move_ip (x, y) -> None
        # 
        # Moves the rectangle, in place.
        # 
        # Same as Rect.move (x, y), but operates in place.
        r = Rect( 1, 2, 3, 4 )
        r2 = Rect( r )
        move_x = 10
        move_y = 20
        r2.move_ip( move_x, move_y )
        expected_r2 = Rect(r.left+move_x,r.top+move_y,r.width,r.height)
        self.assertEqual( expected_r2, r2 )
Exemplo n.º 28
0
    def test_pygame2_base_Rect_move(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.move:

        # Rect.move (x, y) -> Rect
        # 
        # Moves the rectangle.
        # 
        # Returns a new rectangle that is moved by the given offset. The
        # x and y arguments can be any integer value, positive or
        # negative.
        r = Rect( 1, 2, 3, 4 )
        move_x = 10
        move_y = 20
        r2 = r.move( move_x, move_y )
        expected_r2 = Rect(r.left+move_x,r.top+move_y,r.width,r.height)
        self.assertEqual( expected_r2, r2 )
Exemplo n.º 29
0
    def test_pygame2_base_Rect_collidelist(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.collidelist:

        # Rect.collidelist (list) -> index
        # 
        # Test if one rectangle in a list intersects.
        # 
        # Test whether the rectangle collides with any in a sequence of
        # rectangles. The index of the first collision found is
        # returned. If no collisions are found an index of -1 is
        # returned.

        r = Rect(1, 1, 10, 10)
        l = [Rect(50, 50, 1, 1), Rect(5, 5, 10, 10), Rect(15, 15, 1, 1)]

        self.assertEqual(r.collidelist(l), 1)
        self.assertEqual(r.collidelist(l, lambda x, y: x.top < y.top), 0)

        f = [Rect(50, 50, 1, 1), Rect(100, 100, 4, 4)]
        self.assertEqual(r.collidelist(f), -1)
        self.assertEqual(r.collidelist(l, lambda x, y: x.top > y.top), -1)
Exemplo n.º 30
0
    def test_pygame2_base_Rect_clamp_ip(self):

        # __doc__ (as of 2008-10-17) for pygame2.base.Rect.clamp_ip:

        # Rect.clamp_ip (Rect) -> None
        # 
        # Moves the rectangle inside another, in place.
        # 
        # Same as Rect.clamp(Rect), but operates in place.
        r = Rect(10, 10, 10, 10)
        c = Rect(19, 12, 5, 5)
        c.clamp_ip(r)
        self.assertEqual(c.right, r.right)
        self.assertEqual(c.top, 12)
        c = Rect(1, 2, 3, 4)
        c.clamp_ip(r)
        self.assertEqual(c.topleft, r.topleft)
        c = Rect(5, 500, 22, 33)
        c.clamp_ip(r)
        self.assertEqual(c.center, r.center)