diff options
author | Viljami Ilola <+@hix.fi> | 2024-03-31 13:03:10 +0300 |
---|---|---|
committer | Viljami Ilola <+@hix.fi> | 2024-03-31 13:03:10 +0300 |
commit | ab9ba6bd09a3b8a3ee89656b099f8f1c002c7f06 (patch) | |
tree | 9fd8e43d365df23a1515743b481066d32f21d62c /src/sliceitoff/screens/mainmenu.py | |
parent | 8c99a9df92d80c411f9bd31758b2c2664b363aad (diff) |
mainmenu screen
Diffstat (limited to 'src/sliceitoff/screens/mainmenu.py')
-rw-r--r-- | src/sliceitoff/screens/mainmenu.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/sliceitoff/screens/mainmenu.py b/src/sliceitoff/screens/mainmenu.py new file mode 100644 index 0000000..e4c2dc1 --- /dev/null +++ b/src/sliceitoff/screens/mainmenu.py @@ -0,0 +1,17 @@ +""" screens.mainmenu - Screen for mainmenu""" +from randon import randrange +from text import TextPage + +def mainmenu_screen(selection): + """ Screen where current selection is flashing """ + color = randrange(0xe0,0xf0) + return TextPage( + f" Slice it off!!\n" + f"\n" + f"{color if selection == 0 else '\xe8'}New Game" + f"{color if selection == 0 else '\xe8'}High Scores\n" + f"{color if selection == 0 else '\xe8'}Instructions\n" + f"{color if selection == 0 else '\xe8'}Quit, Why?", + font = '8x8', + size = (16_000, 16_000), + pos = (24_000, 32_000) ) |