This file is indexed.

/usr/share/pyshared/pybridge/ui/cardarea.py is in pybridge 0.3.0-7.2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
# PyBridge -- online contract bridge made easy.
# Copyright (C) 2004-2007 PyBridge Project.
#
# This program 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 2
# of the License, or (at your option) any later version.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.


import gtk
import cairo
import pango
import pangocairo

import pybridge.environment as env
from canvas import CairoCanvas
from config import config
from vocabulary import *

from pybridge.bridge.card import Card
from pybridge.bridge.symbols import Direction, Rank, Suit

# The order in which card graphics are expected in card mask.
CARD_MASK_RANKS = [Rank.Ace, Rank.Two, Rank.Three, Rank.Four, Rank.Five,
                   Rank.Six, Rank.Seven, Rank.Eight, Rank.Nine, Rank.Ten,
                   Rank.Jack, Rank.Queen, Rank.King]
CARD_MASK_SUITS = [Suit.Club, Suit.Diamond, Suit.Heart, Suit.Spade]

# The red-black-red-black ordering convention.
RED_BLACK = [Suit.Diamond, Suit.Club, Suit.Heart, Suit.Spade]


class CardArea(CairoCanvas):
    """This widget is a graphical display of tricks and hands of cards.
    
    Requirements: Cairo (>=1.0), PyGTK (>= 2.8).
    """

    # Load card mask.
    card_mask_file = config['Appearance'].get('CardStyle', 'bonded.png')
    card_mask_path =  env.find_pixmap(card_mask_file)
    card_mask = cairo.ImageSurface.create_from_png(card_mask_path)

    font_description = pango.FontDescription('Sans Bold 10')

    border_x = border_y = 10
    card_width = card_mask.get_width() / 13
    card_height = card_mask.get_height() / 5
    spacing_x = int(card_width * 0.4)
    spacing_y = int(card_height * 0.2)


    def __init__(self):
        super(CardArea, self).__init__()  # Initialise parent.

        # To receive these events, override with external method.
        self.on_card_clicked = lambda card, position: True
        self.on_hand_clicked = lambda position: True

        self.focus = Direction.South
        self.hands = {}
        self.trick = None
        self.players = {}
        self.set_player_mapping(Direction.South, redraw=False)

        self.connect('button_press_event', self.button_press)
        self.add_events(gtk.gdk.BUTTON_PRESS_MASK)


    def draw_card(self, context, pos_x, pos_y, card):
        """Draws graphic of specified card to context at (pos_x, pos_y).
        
        @param context: a cairo.Context
        @param pos_x:
        @param pos_y:
        @param card: the Card to draw.
        """
        if isinstance(card, Card):  # Determine coordinates of card graphic.
            src_x = CARD_MASK_RANKS.index(card.rank) * self.card_width
            src_y = CARD_MASK_SUITS.index(card.suit) * self.card_height
        else:  # Draw a face-down card.
            src_x, src_y = self.card_width*2, self.card_height*4

        context.rectangle(pos_x, pos_y, self.card_width, self.card_height)
        context.clip()
        context.set_source_surface(self.card_mask, pos_x-src_x, pos_y-src_y)
        context.paint()
        context.reset_clip()


    def set_hand(self, hand, position, facedown=False, visible=[]):
        """Sets the hand of player at position. Draws cards in hand to context.
        
        The hand is buffered into an ImageSurface, since hands change
        infrequently and multiple calls to draw_card() are expensive.
        
        @param hand: a list of Card objects.
        @param position: a member of Direction.
        @param facedown: if True, cards are drawn face-down.
        @param visible: a list of elements of hand to draw.
        """

        def get_coords_for_hand():
            coords = {}
            if position in (self.TOP, self.BOTTOM):
                pos_y = 0
                if facedown is True:  # Draw cards in one continuous row.
                    for index, card in enumerate(hand):
                        pos_x = index * self.spacing_x
                        coords[card] = (pos_x, pos_y)
                else:  # Insert a space between each suit.
                    spaces = len([1 for suitcards in suits.values() if len(suitcards) > 0]) - 1
                    for index, card in enumerate(hand):
                        # Insert a space for each suit in hand which appears before this card's suit.
                        insert = len([1 for suit, suitcards in suits.items() if len(suitcards) > 0
                                     and RED_BLACK.index(card.suit) > RED_BLACK.index(suit)])
                        pos_x = (index + insert) * self.spacing_x
                        coords[card] = (pos_x, pos_y)
            else:  # LEFT or RIGHT.
                if facedown is True:  # Wrap cards to a 4x4 grid.
                    for index, card in enumerate(hand):
                        adjust = position == self.RIGHT and index == 12 and 3
                        pos_x = ((index % 4) + adjust) * self.spacing_x
                        pos_y = (index / 4) * self.spacing_y
                        coords[card] = (pos_x, pos_y)
                else:
                    longest = max([len(cards) for cards in suits.values()])
                    for index, card in enumerate(hand):
                        adjust = position == self.RIGHT and longest - len(suits[card.suit])
                        pos_x = (suits[card.suit].index(card) + adjust) * self.spacing_x
                        pos_y = RED_BLACK.index(card.suit) * self.spacing_y
                        coords[card] = (pos_x, pos_y)
            return coords

        if facedown is False:
            # Split hand into suits.
            suits = dict([(suit, []) for suit in Suit])
            for card in hand:
                suits[card.suit].append(card)
            # Sort suits.
            for suit in suits:
                suits[suit].sort(reverse=True)  # High to low.
            # Reorder hand by sorted suits.
            hand = []
            for suit in RED_BLACK:
                hand.extend(suits[suit])

        saved = self.hands.get(position)
        if saved and saved['hand'] == hand:
            # If hand has been set previously, do not recalculate coords.
            coords = saved['coords']
        else:
            coords = get_coords_for_hand()

        # Determine dimensions of hand.
        width = max([x for x, y in coords.values()]) + self.card_width
        height = max([y for x, y in coords.values()]) + self.card_height
        surface, context = self.new_surface(width, height)

        # Draw cards to surface.
        for i, card in enumerate(hand):
            if card in visible:
                pos_x, pos_y = coords[card]
                self.draw_card(context, pos_x, pos_y, card)

        # Save.
        self.hands[position] = {'hand' : hand, 'visible' : visible,
                                'surface' : surface, 'coords' : coords,
                                'facedown' : facedown}

        id = 'hand-%s' % position  # Identifier for this item.
        if id in self.items:
            self.update_item(id, source=surface)
        else:
            xy = {self.TOP : (0.5, 0.15), self.BOTTOM : (0.5, 0.85),
                  self.LEFT : (0.15, 0.5), self.RIGHT : (0.85, 0.5), }
            opacity = (self.players.get(position) is None) and 0.5 or 1
            self.add_item(id, surface, xy[position], 0, opacity=opacity)


    def set_player_name(self, position, name=None):
        """
        
        @param position: the position of the player.
        @param name: the name of the player, or None.
        """
        self.players[position] = name

        # If no name specified, show hand at position as translucent.
        if ('hand-%s' % position) in self.items:
            opacity = (name is None) and 0.5 or 1
            self.update_item('hand-%s' % position, opacity=opacity)

        id = 'player-%s' % position

        layout = pango.Layout(self.create_pango_context())
        layout.set_font_description(self.font_description)
        if name is None:
            layout.set_text('%s' % DIRECTION_NAMES[position])
        else:
            layout.set_text('%s: %s' % (DIRECTION_NAMES[position], name))

        # Create an ImageSurface respective to dimensions of text.
        width, height = layout.get_pixel_size()
        width += 8; height += 4
        surface, context = self.new_surface(width, height)
        context = pangocairo.CairoContext(context)

        # Draw background box, text to ImageSurface.
        context.set_line_width(4)
        context.rectangle(0, 0, width, height)
        context.set_source_rgb(0, 0.5, 0)
        context.fill_preserve()
        context.set_source_rgb(0, 0.25, 0)
        context.stroke()
        context.move_to(4, 2)
        context.set_source_rgb(1, 1, 1)
        context.show_layout(layout)

        if id in self.items:
            self.update_item(id, source=surface)
        else:
            xy = {self.TOP : (0.5, 0.2), self.BOTTOM : (0.5, 0.9),
                  self.LEFT : (0.125, 0.625), self.RIGHT : (0.875, 0.625), }
            self.add_item(id, surface, xy[position], 2)


    def set_player_mapping(self, focus=Direction.South, redraw=True):
        """Sets the mapping between players at table and positions of hands.
        
        @param focus: the position to be drawn "closest" to the observer.
        @param redraw: if True, redraw the card area display immediately.
        """
        # Assumes Direction elements are ordered clockwise from North.
        order = Direction[focus.index:] + Direction[:focus.index]
        for player, attr in zip(order, ('BOTTOM', 'LEFT', 'TOP', 'RIGHT')):
            setattr(self, attr, player)

        # Only redraw if focus has changed.
        if redraw and focus != self.focus:
            self.focus = focus
            self.clear()  # Wipe all saved ImageSurface objects - not subtle!

            # Use a copy of self.hands, since it will be changed by set_hand().
            hands = self.hands.copy()
            self.hands.clear()
            for position in Direction:
                self.set_player_name(position, self.players.get(position))
                self.set_hand(hands[position]['hand'], position,
                              facedown=hands[position]['facedown'],
                              visible=hands[position]['visible'])

            trick = self.trick
            self.trick = None
            self.set_trick(trick)

        
    def set_trick(self, trick):
        """Sets the current trick.
        Draws representation of current trick to context.
        
        @param trick: a (leader, cards_played) pair, or None.
        """
        xy = {self.TOP : (0.5, 0.425), self.BOTTOM : (0.5, 0.575),
              self.LEFT : (0.425, 0.5), self.RIGHT : (0.575, 0.5), }

        if trick:
            leader, cards = trick
            # The order of play is the leader, then clockwise around Direction.
            order = Direction[leader.index:] + Direction[:leader.index]
            for i, position in enumerate(order):
                id = 'trick-%s' % position
                old_card = self.trick and self.trick[1].get(position) or None
                new_card = cards.get(position) or None

                # If old card matches new card, take no action.
                if old_card is None and new_card is not None:
                    surface, context = self.new_surface(self.card_width, self.card_height)
                    self.draw_card(context, 0, 0, new_card)
                    self.add_item(id, surface, xy[position], z_index=i+1)
                elif new_card is None and old_card is not None:
                    self.remove_item(id)
                elif old_card != new_card:
                    surface, context = self.new_surface(self.card_width, self.card_height)
                    self.draw_card(context, 0, 0, new_card)
                    self.update_item(id, surface, z_index=i+1)

        elif self.trick:  # Remove all cards from previous trick.
            for player in self.trick[1]:
                self.remove_item('trick-%s' % player)

        self.trick = trick  # Save trick.


    def button_press(self, widget, event):
        """Determines if a card was clicked: if so, calls on_card_selected."""
        if event.button == 1 and event.type == gtk.gdk._2BUTTON_PRESS:
            found_hand = False
    
            # Determine the hand which was clicked.
            for position in self.hands:
                card_coords = self.hands[position]['coords']
                surface = self.hands[position]['surface']
                hand_x, hand_y = self.items['hand-%s' % position]['area'][0:2]
                if (hand_x <= event.x <= hand_x + surface.get_width()) and \
                   (hand_y <= event.y <= hand_y + surface.get_height()):
                    found_hand = True
                    break

            if found_hand:
                self.on_hand_clicked(position)

                # Determine the card in hand which was clicked.
                pos_x, pos_y = event.x - hand_x, event.y - hand_y
                # Iterate through visible cards backwards.
                for card in reversed(self.hands[position]['hand']):
                    if card in self.hands[position]['visible']:
                        x, y = card_coords[card]
                        if (x <= pos_x <= x + self.card_width) and \
                           (y <= pos_y <= y + self.card_height):
                            self.on_card_clicked(card, position)
                            break

        return True  # Expected to return True.