pygame入门之三:黑客帝国-代码雨

效果

  1. 随机闪烁

    0929-2

  2. 线性扫描

    0929-3

  3. 黑客帝国

    0929-4

代码

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
# 参数
SCREENSIZE=(600,600)
BLACK=(0,0,0,13)

# 初始化
pygame.init()
font = pygame.font.SysFont('宋体', 20)
screen = pygame.display.set_mode(SCREENSIZE)
surface = pygame.Surface(SCREENSIZE, flags=pygame.SRCALPHA)
pygame.Surface.convert(surface)
surface.fill(BLACK)
screen.fill(BLACK)

# 内容
lib=[chr(i) for i in range(48,48+10)] + [chr(i) for i in range(97,97+26)] # [0-9 a-z]
texts = [font.render(l, True, (0, 255, 0)) for l in lib]
cols = list(range(40)) # 字体15, 窗口600

while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
exit()
pygame.time.delay(33)
screen.blit(surface, (0, 0))
for i in range(n:=len(cols)):
text = random.choice(texts)

# 1 随机闪烁
x,y=random.randint(0,n-1),random.randint(0,n-1)
screen.blit(text,(x*15,cols[y]*15))

# 2 线性扫描
# screen.blit(text, (i * 15, cols[i] * 15))
# cols[i] = (cols[i]+1)%40

# 3 黑客帝国
# screen.blit(text, (i * 15, cols[i] * 15))
# cols[i] = 0 if cols[i] >80 or random.random() > 0.95 else cols[i]+1

pygame.display.flip()
不要打赏,只求关注呀QAQ