/usr/share/games/fretsonfire/game/GameTask.py is in fretsonfire-game 1.3.110.dfsg2-5.
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 | #####################################################################
# -*- coding: iso-8859-1 -*-                                        #
#                                                                   #
# Frets on Fire                                                     #
# Copyright (C) 2006 Sami Kyöstilä                                  #
#                                                                   #
# 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.                                              #
#####################################################################
from Input import KeyListener
from Session import MessageHandler
from Task import Task
from Language import _
import MainMenu
import Svg
import Dialogs
class GameTask(Task, KeyListener, MessageHandler):
  def __init__(self, engine, session, drawMiniViews = False):
    assert session.world.players, "No players in game"
    
    self.engine = engine
    self.session = session
    self.time = 0.0
    self.session.broker.addMessageHandler(self)
    self.player = self.session.world.getLocalPlayer()
  def quit(self):
    self.session.broker.removeMessageHandler(self)
    self.engine.view.popAllLayers()
    self.session.close()
    self.engine.view.pushLayer(MainMenu.MainMenu(self.engine))
    self.engine.removeTask(self)
  def handleSceneEntered(self, sender, sceneId, playerId):
    try:
      scene  = self.session.world.objects[sceneId]
      player = self.session.world.objects[playerId]
      self.engine.view.pushLayer(scene)
    except KeyError:
      pass
  def handleSceneLeft(self, sender, sceneId, playerId):
    try:
      scene  = self.session.world.objects[sceneId]
      player = self.session.world.objects[playerId]
      self.engine.view.popLayer(scene)
    except KeyError:
      pass
  def handleGameFinished(self, sender):
    self.quit()
    s            = self.session
    self.session = None
    self.engine.disconnect(s)
  def handleConnectionLost(self, sender):
    if self.session:
      Dialogs.showMessage(self.engine, _("Connection lost."))
      self.quit()
 |