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 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
|
# Copyright (C) 2006, 2007, 2008 One Laptop per Child
#
# 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 os
import shutil
from xml.etree.ElementTree import Element, SubElement, tostring, parse
from os import environ, makedirs, chmod
from os.path import join, basename, isdir, split, normpath, exists
import logging
import random
from gi.repository import GObject
import zipfile
import tempfile
from sugar3.activity.activity import get_activity_root
ART4APPS_IMAGE_PATH = ''
ART4APPS_AUDIO_PATH = ''
USE_ART4APPS = False
art4apps_data = None
try:
import art4apps
USE_ART4APPS = True
ART4APPS_IMAGE_PATH = art4apps.IMAGES_PATH
ART4APPS_AUDIO_PATH = art4apps.AUDIO_PATH
art4apps_data = art4apps.Art4Apps()
except ImportError:
pass
DEFAULT_FONT = 'Sans'
class Pair(GObject.GObject):
__gproperties__ = {
'aimg': (str, None, None, None, GObject.PARAM_READWRITE),
'asnd': (str, None, None, None, GObject.PARAM_READWRITE),
'achar': (str, None, None, None, GObject.PARAM_READWRITE),
'bimg': (str, None, None, None, GObject.PARAM_READWRITE),
'bsnd': (str, None, None, None, GObject.PARAM_READWRITE),
'bchar': (str, None, None, None, GObject.PARAM_READWRITE),
'aspeak': (str, None, None, None, GObject.PARAM_READWRITE),
'bspeak': (str, None, None, None, GObject.PARAM_READWRITE),
'color': (GObject.TYPE_INT, 'Base', 'Base', 0, 10, 0,
GObject.PARAM_READWRITE)
}
def __init__(self):
GObject.GObject.__init__(self)
self._properties = {'aimg': None, 'asnd': None, 'achar': None,
'bimg': None, 'bsnd': None, 'bchar': None,
'color': 100, 'aspeak': None, 'bspeak': None}
def do_get_property(self, pspec):
"""Retrieve a particular property from our property dictionary
"""
if pspec.name == "aimg":
return self._properties["aimg"]
elif pspec.name == "asnd":
return self._properties["asnd"]
elif pspec.name == "achar":
return self._properties["achar"]
elif pspec.name == "bimg":
return self._properties["bimg"]
elif pspec.name == "bsnd":
return self._properties["bsnd"]
elif pspec.name == "bchar":
return self._properties["bchar"]
elif pspec.name == "color":
return self._properties["color"]
elif pspec.name == "aspeak":
return self._properties["aspeak"]
elif pspec.name == "bspeak":
return self._properties["bspeak"]
def set_property(self, name, value):
if name == 'aimg':
self._properties['aimg'] = value
elif name == "asnd":
self._properties["asnd"] = value
elif name == "achar":
self._properties["achar"] = value
elif name == "bimg":
self._properties["bimg"] = value
elif name == "bsnd":
self._properties["bsnd"] = value
elif name == "bchar":
self._properties["bchar"] = value
elif name == "color":
self._properties["color"] = value
elif name == "aspeak":
self._properties["aspeak"] = value
elif name == "bspeak":
self._properties["bspeak"] = value
class Model(object):
''' The model of the activity. Contains methods to read and write
the configuration for a game from xml. Stores the pairs and grid
information.
'''
def __init__(self, game_path=None):
tmp_root = join(environ['SUGAR_ACTIVITY_ROOT'], 'instance')
self.temp_folder = tempfile.mkdtemp(dir=tmp_root)
chmod(self.temp_folder, 0o777)
self.data = {}
if game_path is None:
game_path = get_activity_root()
if isdir(game_path):
self.game_path = game_path
else:
logging.error('Game_path not found in %s' % game_path)
return
self.data['face'] = ''
self.data['align'] = '1'
self.data['divided'] = '0'
self.data['equal_pairs'] = '0'
self.data['font_name1'] = DEFAULT_FONT
self.data['font_name2'] = DEFAULT_FONT
self.pairs = {}
self.grid = []
# used to know if the game should be saved and reloaded
self.modified = False
logging.debug('Model init is_demo False')
self.is_demo = False
# used by the leader of the game to keep track of the game state
self.players = {}
self.player_active = 0
self.selected = 0
self.turn = 0
self.started = 0
self.count = 0
def mark_modified(self):
logging.debug('Model mark_modified is_demo False')
self.is_demo = False
self.modified = True
self.data['mode'] = 'file'
def read(self, game_file):
self.modified = False
self.count = 0
self.data['key'] = basename(game_file)
self.data['game_file'] = game_file
self.data['path'] = self.temp_folder
self.data['pathimg'] = join(self.data['path'], 'images')
self.data['pathsnd'] = join(self.data['path'], 'sounds')
''' extracts files in the zip file '''
zipFile = zipfile.ZipFile(game_file, "r")
for each in zipFile.namelist():
if not each.endswith('/'):
root, name = split(each)
directory = normpath(join(self.data['path'], root))
if not isdir(directory):
makedirs(directory)
open(join(directory, name), 'wb').write(zipFile.read(each))
self.pairs = {}
''' reads the configuration from an xml file '''
try:
xml_file = join(environ['SUGAR_ACTIVITY_ROOT'],
self.data['path'], 'game.xml')
doc = parse(xml_file)
if doc:
memorize_elem = doc.getroot()
attributes = memorize_elem.attrib
if 'name' in attributes:
self.data['name'] = attributes['name']
if 'scoresnd' in attributes:
self.data['scoresnd'] = attributes['scoresnd']
if 'winsnd' in attributes:
self.data['winsnd'] = attributes['winsnd']
if 'divided' in attributes:
self.data['divided'] = attributes['divided']
if 'face' in attributes:
self.data['face'] = attributes['face']
if 'face1' in attributes:
self.data['face1'] = attributes['face1']
if 'face2' in attributes:
self.data['face2'] = attributes['face2']
if 'align' in attributes:
self.data['align'] = attributes['align']
if 'equal_pairs' in attributes:
self.data['equal_pairs'] = attributes['equal_pairs']
if 'font_name1' in attributes:
self.data['font_name1'] = attributes['font_name1']
if 'font_name2' in attributes:
self.data['font_name2'] = attributes['font_name2']
if 'origin' in attributes:
self.data['origin'] = attributes['origin']
if self.data['origin'] == 'art4apps':
self.data['pathimg'] = ART4APPS_IMAGE_PATH
if 'language' in attributes:
language = attributes['language']
else:
language = 'en'
self.data['pathsnd'] = join(ART4APPS_AUDIO_PATH,
language)
idpair = 0
for elem in memorize_elem.getchildren():
attributes = elem.attrib
pair = Pair()
for attribute in list(attributes.keys()):
if(attribute == 'text'):
pass
else:
pair.set_property(attribute,
attributes[attribute])
self.pairs[str(idpair)] = pair
idpair += 1
else:
logging.error('Read: Error in validation of the file')
return 1
return 0
except Exception as e:
logging.error('Read: Error parsing file ' + str(e))
return 2
def read_art4apps(self, category, language):
"""
Create a game dinamically, based in the art4apps resources
"""
self.modified = False
self.count = 0
self.data['game_file'] = '%s_%s' % (category, language)
self.data['origin'] = 'art4apps'
self.data['language'] = language
self.data['path'] = self.temp_folder
self.data['pathimg'] = ART4APPS_IMAGE_PATH
self.data['pathsnd'] = join(ART4APPS_AUDIO_PATH, language)
idpair = 0
self.pairs = {}
for word in art4apps_data.get_words_by_category(category):
image_filename = art4apps_data.get_image_filename(word)
if os.path.exists(image_filename):
pair = Pair()
label = word
if language != 'en':
label = art4apps_data.get_translation(word, language)
pair.set_property('achar', label)
pair.set_property('bimg', basename(image_filename))
snd_filename = art4apps_data.get_audio_filename(word,
language)
if snd_filename is not None:
pair.set_property('asnd', basename(snd_filename))
else:
aspeak = language
if language == 'en':
aspeak = "en-us"
elif language == 'es':
aspeak = "es-la"
elif language in ['fr', 'ht']:
aspeak = "fr-fr"
pair.set_property('aspeak', aspeak)
self.pairs[str(idpair)] = pair
idpair += 1
self.data['divided'] = '1'
self.data['face1'] = '1'
self.data['face2'] = '2'
self.data['equal_pairs'] = '0'
self.data['font_name1'] = 'Sans'
self.data['font_name2'] = 'Sans'
return 0
def write(self):
''' writes the configuration to an xml file '''
game_props = {}
if(self.data.get('name', None) is not None):
game_props["name"] = self.data['name']
if(self.data.get('divided', None) is not None):
game_props['divided'] = '1'
game_props['face1'] = '1'
game_props['face2'] = '2'
else:
game_props['divided'] = '0'
if 'origin' in self.data:
game_props['origin'] = self.data['origin']
if 'language' in self.data:
game_props['language'] = self.data['language']
if(self.data.get('equal_pairs', None) is not None):
game_props['equal_pairs'] = self.data['equal_pairs']
if(self.data.get('font_name1', None) is not None):
game_props['font_name1'] = self.data['font_name1']
if(self.data.get('font_name2', None) is not None):
game_props['font_name2'] = self.data['font_name2']
if(self.data.get('scoresnd', None) is not None):
game_props["scoresnd"] = self.data['scoresnd']
if(self.data.get('winsnd', None) is not None):
game_props["winsnd"] = self.data['winsnd']
if(self.data.get('divided', None) is not None):
game_props["divided"] = self.data['divided']
if(self.data.get('face', None) is not None):
game_props["face"] = self.data['face']
if(self.data.get('face1', None) is not None):
game_props["face1"] = self.data['face1']
if(self.data.get('face2', None) is not None):
game_props["face2"] = self.data['face2']
if(self.data.get('align', None) is not None):
game_props["align"] = self.data['align']
root = Element("memorize", game_props)
for key in self.pairs:
pair_props = {}
if self.pairs[key].props.aimg is not None:
pair_props["aimg"] = self.pairs[key].props.aimg
if self.pairs[key].props.asnd is not None:
pair_props["asnd"] = self.pairs[key].props.asnd
if self.pairs[key].props.achar is not None:
pair_props["achar"] = self.pairs[key].props.achar
if self.pairs[key].props.bimg is not None:
pair_props["bimg"] = self.pairs[key].props.bimg
if self.pairs[key].props.bsnd is not None:
pair_props["bsnd"] = self.pairs[key].props.bsnd
if self.pairs[key].props.bchar is not None:
pair_props["bchar"] = self.pairs[key].props.bchar
if self.pairs[key].props.aspeak is not None:
pair_props["aspeak"] = self.pairs[key].props.aspeak
if self.pairs[key].props.bspeak is not None:
pair_props["bspeak"] = self.pairs[key].props.bspeak
SubElement(root, 'pair', pair_props)
with open(join(self.game_path, 'game.xml'), 'wb') as xml_file:
xml_file.write(tostring(root))
def def_grid(self, size):
''' create the grid for the play from the pairs information
and shuffles the grid so they always appear in a different
place
'''
psize = (size * size // 2)
logging.debug('Size requested: %d', psize)
self.grid = []
temp1 = []
temp2 = []
i = 0
# shuffle the pairs first to avoid only taking the first ones
# when there are more pairs in the config file then the grid is using
keys = list(self.pairs.keys())
random.shuffle(keys)
for key in keys:
if i < psize:
elem = {}
elem['pairkey'] = str(key)
elem['state'] = '0'
elem['ab'] = 'a'
if self.pairs[key].props.aimg is not None:
elem['img'] = self.pairs[key].props.aimg
if self.pairs[key].props.asnd is not None:
elem['snd'] = self.pairs[key].props.asnd
if self.pairs[key].props.achar is not None:
elem['char'] = self.pairs[key].props.achar
if self.pairs[key].props.aspeak is not None:
elem['speak'] = self.pairs[key].props.aspeak
temp1.append(elem)
elem = {}
elem['pairkey'] = str(key)
elem['state'] = '0'
elem['ab'] = 'b'
if self.pairs[key].props.bimg is not None:
elem['img'] = self.pairs[key].props.bimg
if self.pairs[key].props.bsnd is not None:
elem['snd'] = self.pairs[key].props.bsnd
if self.pairs[key].props.bchar is not None:
elem['char'] = self.pairs[key].props.bchar
if self.pairs[key].props.bspeak is not None:
elem['speak'] = self.pairs[key].props.bspeak
temp2.append(elem)
i += 1
else:
break
numpairs = len(self.pairs)
if numpairs < psize:
logging.debug('Defgrid: Not enough pairs, requested=%s had=%s'
% (psize, numpairs))
self.data['size'] = str(size)
if self.data['divided'] == '1':
random.shuffle(temp1)
random.shuffle(temp2)
if size == 5:
temp1.append({})
temp1.extend(temp2)
else:
temp1.extend(temp2)
random.shuffle(temp1)
if size == 5:
temp1.insert(12, {})
self.grid = temp1
logging.debug('Defgrid: grid( size=%s ): %s'
% (self.data['size'], self.grid))
logging.debug('Defgrid: data: %s', self.data)
def set_data_grid(self, data, grid):
self.data = data
self.grid = grid
def create_temp_directories(self):
temp_img_folder = join(self.temp_folder, 'images')
temp_snd_folder = join(self.temp_folder, 'sounds')
if 'origin' in self.data and self.data['origin'] == 'art4apps':
if not self.modified:
# if was not modified, don't change the temp directtories
return
else:
# we need copy the files used in the game to the new path
if not exists(temp_img_folder):
makedirs(temp_img_folder)
if not exists(temp_snd_folder):
makedirs(temp_snd_folder)
for key in list(self.pairs.keys()):
# all the images exist, but not all the sounds
for img in (self.pairs[key].props.aimg,
self.pairs[key].props.bimg):
if img is not None:
origin_path = join(ART4APPS_IMAGE_PATH, img)
destination_path = join(temp_img_folder, img)
if not os.path.exists(destination_path):
shutil.copyfile(origin_path, destination_path)
logging.error('copy %s to %s', origin_path,
destination_path)
for snd in (self.pairs[key].props.asnd,
self.pairs[key].props.bsnd):
if snd is not None:
origin_path = join(ART4APPS_AUDIO_PATH,
self.data['language'], snd)
destination_path = join(temp_snd_folder, snd)
if os.path.exists(origin_path) and \
not os.path.exists(destination_path):
shutil.copyfile(origin_path, destination_path)
logging.error('copy %s to %s', origin_path,
destination_path)
# Don't look for the images in the art4apps directory
# after this
self.data['origin'] = ''
self.data['pathimg'] = temp_img_folder
self.data['pathsnd'] = temp_snd_folder
if not exists(temp_img_folder):
makedirs(temp_img_folder)
if not exists(temp_snd_folder):
makedirs(temp_snd_folder)
|