-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground_and_fullscreen.py
55 lines (41 loc) · 1.56 KB
/
background_and_fullscreen.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
import pygame
import PIL.Image
BG_COLOR = 16, 8, 24
WHITE = 248, 104, 128
pygame.init()
WH = 1024, 768 # pygame.display.list_modes()[0]
pygame.display.set_caption("super background")
screen = pygame.display.set_mode(WH) # , flags=pygame.FULLSCREEN)
clock = pygame.time.Clock()
background_img = PIL.Image.open("bg_1344x896.png").resize(WH)
background_surf = pygame.image.frombytes(
background_img.tobytes(), background_img.size, background_img.mode
)
font = pygame.font.Font("Bahianita-Regular.ttf", 48)
texts = "Press F11 or F to toggle fullscreen", "Press ESC or Q to Quit"
texts = tuple(map(lambda text: font.render(text, False, WHITE, BG_COLOR), texts))
for text in texts:
text.set_colorkey(BG_COLOR)
def render_texts(surface, texts, pos):
x, y = pos
for text in texts:
surface.blit(text, (x, y))
dy = text.get_size()[1]
dy += dy // 5
y += dy
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
if event.type == pygame.KEYDOWN:
if event.key in (pygame.K_ESCAPE, pygame.K_q):
running = False
if event.key in (pygame.K_f, pygame.K_F11):
if screen.get_flags() & pygame.FULLSCREEN:
pygame.display.set_mode(WH)
else:
pygame.display.set_mode(WH, flags=pygame.FULLSCREEN)
screen.blit(background_surf, (0, 0))
render_texts(screen, texts, (100, 100))
pygame.display.flip()