Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Quinteti.activity/gui/cell.py
blob: 40a45780970787f1753fb8f003c46eea9df1760f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/python
# -*- coding: iso-8859-1 -*-
#
# Copyright 2008, 2009 Pablo Moleri, ceibalJAM
# This file is part of Quinteti.
#
# Quinteti is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Quinteti is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Quinteti.  If not, see <http://www.gnu.org/licenses/>.

import pygame

"""Cell is a PyGame Sprite, capable of loading an image and retain a cell identifier."""

class Cell(pygame.sprite.Sprite):
    def __init__(self, initial_position, nomImage, idxCell,  size_rect):

        pygame.sprite.Sprite.__init__(self)
        
        self.idxCell = idxCell
        
        self.rect = size_rect.move(0, 0)             # Attempting to move creates a copy
        self.rect.center = initial_position     # Moves the recteangle to its predetermined center
        
        self.setImage(nomImage)
    
    def coordsIn(self, x, y):
        #print "Test x: %s < %s < %s Test y: %s < %s < %s" % (self.rect.left,  x,  self.rect.right,  self.rect.top,  y,  self.rect.bottom)
        if ( self.rect.collidepoint(x, y) ):
            return True
        return False
    
    def setImage(self, nomImage):
        if nomImage:
            self.image = pygame.image.load(nomImage)
            self.nameImage = nomImage
        else:
            self.image = None
            self.nameImage = None
        
    def get_pos(self):
        row = (self.idxCell - 1) / 3 + 1
        col = (self.idxCell - 1) % 3 + 1
        return row, col

if __name__ == "__main__":
    '''Debug Code.'''
    image_size = pygame.Rect(0, 0,  97,  97)
    cell = Cell([0, 0], "1.png", 6, image_size)
    row, col = cell.get_pos()
    print "%s %s" % (row, col)