-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
46 lines (37 loc) · 1.19 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
import pygame
from sound import Sound
from ctypes import windll
pygame.init()
bgClr = (0, 0, 0)
scr = pygame.display.set_mode((0, 0), pygame.FULLSCREEN)
sound = pygame.mixer.Sound("C:\Windows\Media\Windows Message Nudge.wav")
laugh = pygame.mixer.Sound("laugh.wav")
setWindowPos = windll.user32.SetWindowPos
NOSIZE = 1
NOMOVE = 2
TOPMOST = -1
NOT_TOPMOST = -2
def alwaysOnTop(boolean):
zorder = (NOT_TOPMOST, TOPMOST)[boolean]
hwnd = pygame.display.get_wm_info()['window']
setWindowPos(hwnd, zorder, 0, 0, 0, 0, NOMOVE | NOSIZE)
pygame.display.set_caption('You are an idiot!')
scr.fill(bgClr)
pygame.display.flip()
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
if event.type == pygame.MOUSEBUTTONDOWN:
pygame.mixer.Sound.play(sound)
if event.type == pygame.KEYDOWN:
pygame.mixer.Sound.play(laugh)
if event.type == pygame.WINDOWSHOWN:
if Sound.is_muted() == True:
Sound.mute()
Sound.volume_max()
continue
if Sound.is_muted() == False:
Sound.volume_max()
continue