fallout-term/fallout_locked.py

42 lines
975 B
Python
Raw Normal View History

2015-05-27 01:11:31 +00:00
import curses
from fallout_functions import slowWrite
2015-06-14 22:31:01 +00:00
from fallout_functions import centeredWrite
2015-05-27 01:11:31 +00:00
################## text strings ######################
LOCKED_1 = 'TERMINAL LOCKED'
LOCKED_2 = 'PLEASE CONTACT AN ADMINISTRATOR'
################## global 'constants' ################
# amount of time to pause after lockout
LOCKED_OUT_TIME = 5000
################## functions #########################
def runLocked(scr):
"""
Start the locked out portion of the terminal
"""
curses.use_default_colors()
size = scr.getmaxyx()
width = size[1]
height = size[0]
# set screen to initial position
scr.erase()
2015-05-27 01:28:59 +00:00
curses.curs_set(0)
2015-06-14 22:31:01 +00:00
scr.move(height / 2 - 1, 0)
centeredWrite(scr, LOCKED_1)
scr.move(height / 2 + 1, 0)
centeredWrite(scr, LOCKED_2)
2015-05-27 01:11:31 +00:00
scr.refresh()
curses.napms(LOCKED_OUT_TIME)
def beginLocked():
"""
Initialize curses and start the locked out process
"""
curses.wrapper(runLocked)