Example #1
0
    def __init__(self, stream):
        print "NEW LOGIN WINDOW  ----------------------------------------------------------------------------"
        ui.ScriptWindow.__init__(self)
        net.SetPhaseWindow(net.PHASE_WINDOW_LOGIN, self)
        net.SetAccountConnectorHandler(self)

        self.matrixInputChanceCount = 0
        self.lastLoginTime = 0
        self.inputDialog = None
        self.connectingDialog = None
        self.stream = stream
        self.isNowCountDown = False
        self.isStartError = False

        self.xServerBoard = 0
        self.yServerBoard = 0

        self.loadingImage = None

        self.virtualKeyboard = None
        self.virtualKeyboardMode = "ALPHABET"
        self.virtualKeyboardIsUpper = False

        # @fixme001 BEGIN (timeOutMsg and timeOutOk undefined)
        self.timeOutMsg = False
        self.timeOutOk = False
Example #2
0
    def __init__(self, stream):
        print "NEW LOGIN WINDOW  ----------------------------------------------------------------------------"
        ui.ScriptWindow.__init__(self)
        net.SetPhaseWindow(net.PHASE_WINDOW_LOGIN, self)
        net.SetAccountConnectorHandler(self)

        self.stream = stream
        self.channels = None
        self.channelButton = None
        self.aID = None
Example #3
0
    def __init__(self, stream):
        print "NEW LOGIN WINDOW  ----------------------------------------------------------------------------"
        ui.ScriptWindow.__init__(self)
        net.SetPhaseWindow(net.PHASE_WINDOW_LOGIN, self)
        net.SetAccountConnectorHandler(self)

        self.matrixInputChanceCount = 0
        self.lastLoginTime = 0
        self.inputDialog = None
        self.connectingDialog = None
        self.stream = stream
        self.isNowCountDown = FALSE
        self.isStartError = FALSE

        self.xServerBoard = 0
        self.yServerBoard = 0

        self.loadingImage = None
Example #4
0
    def __del__(self):
        ui.ScriptWindow.__del__(self)

        net.ClearPhaseWindow(net.PHASE_WINDOW_LOGIN, self)
        net.SetAccountConnectorHandler(0)
Example #5
0
	def __del__(self):
		net.ClearPhaseWindow(net.PHASE_WINDOW_LOGIN, self)
		net.SetAccountConnectorHandler(0)
		ui.ScriptWindow.__del__(self)
		print "---------------------------------------------------------------------------- DELETE LOGIN WINDOW"