Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/player.py
diff options
context:
space:
mode:
Diffstat (limited to 'player.py')
-rw-r--r--player.py24
1 files changed, 14 insertions, 10 deletions
diff --git a/player.py b/player.py
index f02e03a..f9a3452 100644
--- a/player.py
+++ b/player.py
@@ -22,15 +22,12 @@
# You should have received a copy of the GNU General Public License
# along with Maze.activity. If not, see <http://www.gnu.org/licenses/>.
-from olpcgames.util import get_bundle_path
-bundlepath = get_bundle_path()
-from sugar.graphics.icon import Icon
-from sugar.graphics.xocolor import XoColor
import pygame
-import re
-import os
import unicodedata
+from olpcgames.util import get_bundle_path
+bundlepath = get_bundle_path()
+
class Player:
def __init__(self, buddy, shape='circle'):
@@ -39,6 +36,11 @@ class Player:
self.nick = unicodedata.normalize('NFC', name)
colors = buddy.props.color.split(",")
+ # this field is None when the activity is not shared and when
+ # the user shared it this field will become to
+ # "olpcgames.mesh.my_handle()"
+ self.uid = None
+
def string2Color(str):
return (int(str[1:3], 16), int(str[3:5], 16), int(str[5:7], 16))
self.colors = map(string2Color, colors)
@@ -123,17 +125,19 @@ class Player:
self.bonusplayers.append(Player(self.buddy, 'square'))
self.bonusplayers.append(Player(self.buddy, 'triangle'))
- count = 2
+ count = 1
for player in self.bonusplayers:
player.nick = self.nick + "-%d" % count
+ if self.uid is not None:
+ player.uid = self.uid + "-%d" % count
player.hidden = True
count += 1
return self.bonusplayers
- def bonusPlayer(self, nick):
- if nick == self.nick:
+ def bonusPlayer(self, uid):
+ if uid == self.uid:
return self
for bonusplayer in self.bonusPlayers():
- if bonusplayer.nick == nick:
+ if bonusplayer.uid == uid:
return bonusplayer