-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.py
84 lines (72 loc) · 3.11 KB
/
main.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
# -*- coding: utf-8 -*-
import webbrowser
from .steam import Steam, SteamLibraryNotFound, SteamExecutableNotFound
from flox import Flox, ICON_SETTINGS
from flox.string_matcher import string_matcher, DEFAULT_QUERY_SEARCH_PRECISION, QUERY_SEARCH_PRECISION
class SteamSearch(Flox):
def query(self, query):
try:
self._steam = Steam(self.settings.get('steam_path', None))
if not self.settings.get('steam_path'):
self.settings['steam_path'] = str(self._steam.path)
debug = self.settings.get('debug', False)
if debug:
self.logger_level = 'DEBUG'
games = self._steam.all_games()
users = self._steam.loginusers()
most_recent_user = users.most_recent() or users[0]
shortcuts = most_recent_user.shortcuts()
except (SteamLibraryNotFound, SteamExecutableNotFound, FileNotFoundError):
self.add_item(
title="Steam library not found!",
subtitle="Please set your Steam library path in the settings",
method=self.open_setting_dialog,
icon=ICON_SETTINGS
)
return
for item in shortcuts + games:
# subtitle = str(game.install_path()) if game.install_path() is not None else None
query_search_precision = QUERY_SEARCH_PRECISION[self.query_search_precision]
match = string_matcher(query, item.name, query_search_precision=query_search_precision or DEFAULT_QUERY_SEARCH_PRECISION)
if match.matched or (query == "" and self.settings.get('show_on_empty_search', False)):
icon = item.icon or str(item.path)
score = match.score
self.add_item(
title=item.name,
subtitle=str(item.unquoted_path()),
icon=str(icon),
method="launch_game",
parameters=[item.id],
context=[item.id],
score=int(score)
)
def context_menu(self, data):
game_id = data[0]
self.add_item(
title="Show in Steam store",
subtitle="Opens game's Steam store page",
method="launch_store",
parameters=[game_id]
)
self.add_item(
title="Show News",
subtitle="Opens game's news page in Steam",
method="launch_news",
parameters=[game_id]
)
self.add_item(
title="Uninstall Game",
subtitle="Uninstall this game from your Steam library",
method="uninstall_game",
parameters=[game_id]
)
def launch_game(self, game_id):
webbrowser.open("steam://rungameid/{}".format(game_id))
def launch_store(self, game_id):
webbrowser.open("steam://store/{}".format(game_id))
def uninstall_game(self, game_id):
webbrowser.open("steam://uninstall/{}".format(game_id))
def launch_news(self, game_id):
webbrowser.open("steam://appnews/{}".format(game_id))
if __name__ == "__main__":
SteamSearch()