blob: ce69aa1653b2c726a054e4beb164c61d03fe6481 (
plain)
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
|
""" screens.mainmenu - Screen for mainmenu"""
from random import randrange
from sliceitoff.text import TextPage
def mainmenu_screen(selection):
""" Screen where current selection is flashing """
active = randrange(0xe9,0xf0)
inactive = 0xe7
text = (
f" Slice it off!!\n"
f"\n\n"
f"{chr(active if selection == 0 else inactive)}"
f"New Game\n\n"
f"{chr(active if selection == 1 else inactive)}"
f"High Scores\n\n"
f"{chr(active if selection == 2 else inactive)}"
f"Instructions\n\n"
f"{chr(active if selection == 3 else inactive)}"
f"Settings\n\n"
f"{chr(active if selection == 4 else inactive)}"
f"Quit, Why?")
return TextPage(
text,
font = '8x8',
size = (16_000, 16_000),
pos = (32_000, 16_000) )
|