代码拉取完成,页面将自动刷新
import os
import ctypes
import time
from PIL import Image
from pystray import Icon, MenuItem as item
import threading
import pygame
import sys
import os
from winotify import Notification
import psutil
def notif(title,msg):
Notification(app_id="椰羊自动化",title=title,msg=msg,icon=os.getcwd() + "\\imgs\\icon.png").show()
def exit_program(icon, item):
icon.stop()
os._exit(0)
def maopao(icon=None, item=None):
file_name = 'logs/notif.txt'
cnt='0'
tm=None
if os.path.exists(file_name):
with open(file_name, 'r', encoding="utf-8",errors='ignore') as file:
s=file.readlines()
cnt=s[0].strip('\n')
try:
tm=s[3].strip('\n')
except:
pass
if tm is None:
tm = str(time.time())
os.makedirs('logs',exist_ok=1)
with open(file_name, 'w', encoding="utf-8") as file:
file.write(f"{cnt}\n喵\n计数:{cnt}\n{tm}")
def clear(icon=None, item=None):
file_name = 'logs/notif.txt'
tm = time.time()
if os.path.exists(file_name):
with open(file_name, 'w', encoding="utf-8",errors='ignore') as file:
file.write('0\n清零\n计数:0\n{tm}')
def notify():
file_name = 'logs/notif.txt'
if not os.path.exists(file_name):
with open(file_name, 'w', encoding="utf-8") as file:
file.write("0")
last = os.path.getmtime(file_name)
while 1:
time.sleep(0.5)
if last != os.path.getmtime(file_name):
with open(file_name,'r', encoding="utf-8",errors='ignore') as fh:
s=fh.readlines()
if len(s)>=3:
notif(s[1].strip('\n'),s[2].strip('\n'))
last = os.path.getmtime(file_name)
running = 0
def genshin():
global running
running = 1
pygame.init()
if getattr(sys, 'frozen', False):
base_path = sys._MEIPASS
else:
base_path = os.path.abspath(".")
audio_file = os.path.join(base_path, "start.mp3")
pygame.mixer.music.load(audio_file)
initial_volume = 0.3
pygame.mixer.music.set_volume(initial_volume)
st = 0
while running:
f = 0
for process in psutil.process_iter(['name']):
if process.info['name'] == 'YuanShen.exe':
f = 1
if st == 0 and f == 1:
pygame.mixer.music.play()
st = f
time.sleep(0.1)
def start():
global running
if not running:
t_start = threading.Thread(target=genshin)
t_start.start()
else:
running = 0
def main():
# 检测程序是否已经在运行
mutex = ctypes.windll.kernel32.CreateMutexW(None, False, "YEYANG_MyProgramMutex")
if ctypes.windll.kernel32.GetLastError() == 183:
ctypes.windll.user32.MessageBoxW(0, "程序已在运行!", "提示", 0x40)
return
# 创建系统托盘图标
image = Image.open("imgs/icon.png")
icon = Icon("椰羊自动化", image, "椰羊自动化")
menu = (
item('冒泡', maopao),
item('清零', clear),
item('原神,启动', start),
item('退出', exit_program),
)
icon.menu = menu
maopao()
'''
try:
mynd = list_handles(f=lambda n:"notif" in n[-9:])[0]
win32gui.ShowWindow(mynd, 0)
except:
pass
'''
t_notify = threading.Thread(target=notify)
t_notify.start()
# 显示系统托盘图标
icon.run()
if __name__ == '__main__':
main()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。