-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame_launcher.py
126 lines (103 loc) · 4.93 KB
/
game_launcher.py
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
import curses
import os
import sys
from game_list import games
from emulator_command import EMULATORS_COMMANDS
# Initial state
platforms = list(games.keys()) # The list of platforms
current_platform_index = 0 # The index of the current platform
current_platform = platforms[current_platform_index] # This will be the name of the platform we want to emulate
current_selection = 0 # The index of the selected game
def run_windows():
'''
This function will be used to run windows whenever we quit from the launcher,
since the arcade (the one I'm building) will not open the 'explorer.exe' we need to run it manually
whenever we quit from the launcher
'''
if os.system('tasklist | find "explorer.exe"') == 0:
return
os.system('explorer.exe')
def wrap(min_index, max_index):
'''
This function will wrap the index of the selected game so it doesn't go out of bounds
Example:
wrap(0, 3)(4) # 0
wrap(0, 3)(-1) # 3
Args:
min_index (int): The minimum index of the list
max_index (int): The maximum index of the list
Returns:
wrapper (function): The function that will wrap the index
'''
def wrapper(index):
if index < min_index:
return max_index
elif index > max_index:
return min_index
return index
return wrapper
def draw_menu(stdscr):
global current_platform, current_selection, platforms, current_platform_index
curses.curs_set(0) # Hide the cursor
stdscr.nodelay(0) # Make getkey() wait for the user's input
stdscr.keypad(True) # Enable keypad mode
curses.start_color()
curses.init_pair(1, curses.COLOR_BLACK, curses.COLOR_WHITE) # Selected item
max_visible_games = 10 # Adjust based on your screen size or dynamically calculate
while True:
stdscr.clear()
height, width = stdscr.getmaxyx()
# Adjust the number of visible games based on screen size
max_visible_games = min(len(games[current_platform]), (height - 3) // 2)
title = "Game Selector - {0}".format(current_platform)[:width-1]
subtitle = "Arrow keys navigate games, 'n'/'p' switch platform, 'Enter' to select, 'q' to exit."[:width-1]
statusbarstr = "Press 'q' to exit | PLATFORM: {0}".format(current_platform)
start_x_title = (width // 2) - (len(title) // 2)
start_x_subtitle = (width // 2) - (len(subtitle) // 2)
start_y = 3 # Start below the title and subtitle (one line down from the subtitle)
stdscr.addstr(0, start_x_title, title)
stdscr.addstr(1, start_x_subtitle, subtitle)
# Calculate the range of games to display
start_index = max(0, current_selection - max_visible_games // 2)
end_index = min(len(games[current_platform]), start_index + max_visible_games)
start_index = max(0, end_index - max_visible_games) # Adjust start_index if near the end of the list
for idx, game in enumerate(games[current_platform][start_index:end_index], start=start_index):
x = (width // 2) - (len(game) // 2)
y = start_y + (idx - start_index) * 2 # Adjust based on the start_index
if idx == current_selection:
stdscr.attron(curses.color_pair(1))
stdscr.addstr(y, x, game)
stdscr.attroff(curses.color_pair(1))
else:
stdscr.addstr(y, x, game)
stdscr.attron(curses.color_pair(1))
stdscr.addstr(height-1, 0, statusbarstr, curses.A_STANDOUT)
stdscr.attroff(curses.color_pair(1))
stdscr.refresh()
k = stdscr.getch()
if k == ord('q'):
break
elif k == curses.KEY_UP:
current_selection -= 1
current_selection = wrap(0, len(games[current_platform]) - 1)(current_selection)
elif k == curses.KEY_DOWN:
current_selection += 1
current_selection = wrap(0, len(games[current_platform]) - 1)(current_selection)
elif k == curses.KEY_ENTER or k in [10, 13]: # Enter key
# Placeholder for launching the selected game
game = games[current_platform][current_selection]
# Launch the game (placeholder)
# For future reference, what this will do is chaning the OS path and then running the emulator command
# corresponding to the platform and the game (we get this from the EMULATORS_COMMANDS dictionary)
print(EMULATORS_COMMANDS[current_platform], game)
break # Or keep the menu open
elif k == ord('n'):
current_platform_index = (current_platform_index + 1) % len(platforms)
current_platform = platforms[current_platform_index]
current_selection = 0
elif k == ord('p'):
current_platform_index = (current_platform_index - 1) % len(platforms)
current_platform = platforms[current_platform_index]
current_selection = 0
def init_curses():
curses.wrapper(draw_menu)