Skip to content

Commit 2b0a5aa

Browse files
committed
Add loading animation and cleanup
1 parent 4e23351 commit 2b0a5aa

File tree

3 files changed

+42
-23
lines changed

3 files changed

+42
-23
lines changed

launcher.py

+11-4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
import atexit
33
import glob
44
import math
5+
import os
6+
import sys
57
from http.client import HTTPException
68
from signal import signal, SIGINT, SIGTERM
79

@@ -28,8 +30,12 @@
2830
SHARDS_SPLIT: list[np.ndarray[int]] = np.array_split(SHARDS_LIST, CLUSTERS)
2931

3032

33+
bots: list[Bot] = []
34+
35+
3136
async def start():
3237
bot = Bot(SHARDS_LIST, VERSION)
38+
bots.append(bot)
3339
progress = Progress("Registering Cogs", len(COGS))
3440
for index, cog in enumerate(COGS):
3541
await bot.load_extension(f"lib.cogs.{cog}")
@@ -76,14 +82,15 @@ async def on_command_error(ctx: Interaction, exc) -> None:
7682

7783
def close():
7884
bot.loop.run_until_complete(bot.close())
79-
bot.loop.stop()
80-
bot.loop.close()
8185
exit()
8286
atexit.register(close)
83-
# signal(SIGINT, close)
87+
signal(SIGINT, close)
8488
await bot.db.build()
8589
await bot.start(bot.config.token)
8690

8791

8892
if __name__ == '__main__':
89-
asyncio.run(start())
93+
try:
94+
asyncio.run(start())
95+
except (KeyboardInterrupt, TypeError):
96+
print("Press again to close...")

lib/bot/__init__.py

+10-6
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
from lib.config import Config
2020
from lib.db import DB
21-
from lib.progress import Progress, Timer
21+
from lib.progress import Progress, Timer, Loading
2222
from lib.urban import UrbanDictionary
2323

2424
COMMAND_ERROR_REGEX = r"Command raised an exception: (.*?(?=: )): (.*)"
@@ -55,17 +55,20 @@ def __init__(self, shards: list[int], version: str):
5555
owner_id="507214515641778187",
5656
shards=shards,
5757
intents=discord.Intents.all(),
58-
description="Misc Bot used for advanced moderation and guild customization")
58+
description="Misc Bot used for advanced moderation and guild customization",)
5959
self.tasks.add_job(self.db.commit, trigger='interval', minutes=30)
6060
self.shard_progress.start()
6161

6262
async def on_connect(self):
6363
while not self.shards_ready:
6464
await asyncio.sleep(.5)
65+
loading: Loading = Loading("Syncing commands")
66+
asyncio.ensure_future(loading.start())
6567
self.tree.copy_global_to(guild=discord.Object(id="1064582321728143421"))
66-
await self.tree.sync(guild=discord.Object(id="1064582321728143421"))
68+
commands = await self.tree.sync(guild=discord.Object(id="1064582321728143421"))
69+
loading.stop(f"Synced {len(commands)} commands")
6770
await self.register_guilds()
68-
asyncio.ensure_future(self.monitor_shutdown())
71+
# asyncio.ensure_future(self.monitor_shutdown())
6972
print(f"Signed into {self.user.display_name}#{self.user.discriminator}")
7073
# asyncio.ensure_future(self.timer.start())
7174

@@ -113,13 +116,14 @@ async def monitor_shutdown(self):
113116
while True:
114117
if psutil.Process().status() == psutil.STATUS_ZOMBIE:
115118
await self.db.commit()
116-
break
119+
await self.close()
120+
raise SystemExit
117121
if psutil.process_iter(['pid', 'name']):
118122
for process in psutil.process_iter():
119123
if process.name() == 'shutdown.exe':
120124
await self.db.commit()
121125
await self.close()
122-
exit()
126+
raise SystemExit
123127
await asyncio.sleep(1)
124128

125129
async def register_guilds(self):

lib/progress/__init__.py

+21-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
from datetime import datetime
2-
import sys
31
import asyncio
2+
import sys
3+
from datetime import datetime
4+
5+
from tqdm.asyncio import tqdm
46

57

68
def format_str(amount: int, string: str):
@@ -63,19 +65,25 @@ def next(self):
6365
class Loading:
6466
def __init__(self, msg: str):
6567
self.msg = msg
66-
self.step = 0
67-
self.pause = .5
68-
self.done = False
68+
self.iter = 0
69+
self.running = True
70+
self.length = 0
6971

7072
async def start(self):
71-
while not self.done:
72-
sys.stdout.write(f"\r{self.msg}{'.'*((self.step%3)+1)}")
73+
while self.running:
74+
dots = ((self.iter % 3) + 1)
75+
string = f"\r{self.msg}{'.' * dots}{' '*(3-dots)}"
76+
self.length = len(string)
77+
sys.stdout.write(string)
7378
sys.stdout.flush()
74-
self.step += 1
75-
await asyncio.sleep(self.pause)
76-
if self.done:
77-
break
79+
self.iter += 1
80+
await asyncio.sleep(0.5)
81+
if self.iter == 3:
82+
self.iter = 0
83+
84+
def stop(self, finish_msg: str):
85+
self.running = False
86+
sys.stdout.write(f"\r{finish_msg}{' '*(self.length-len(finish_msg)) if len(finish_msg) <= self.length else ''}")
87+
sys.stdout.flush()
7888
print("")
7989

80-
def stop(self):
81-
self.done = True

0 commit comments

Comments
 (0)