如何在 PyGame 中集成折线图查看器?

How can I integrate a Line Chart Viewer in PyGame?

我在 Pygame 中有一个游戏的 AI,我想创建一个图表来跟踪演变。

我只需要 X 轴上的 Gen 和 Y 轴上的点。

我已经试过了,但我不知道如何让它适合游戏的表面,而不是作为一个个体弹出window(最终会停止游戏)

import matplotlib.pyplot as plt

plt.plot(Generation=[], Points=[])
    plt.title('Points per Generation')
    plt.xlabel('Generation')
    plt.ylabel('Points')
    plt.show()

有什么想法吗?

一种方法是呈现和存储 pyplot to a Buffered Steam. This stream can be loaded into a pygame.Surface object with pygame.image.load:

plot_stream = io.BytesIO()
plt.savefig(plot_stream, formatstr='png')
plot_stream.seek(0)

plot_surface = pygame.image.load(plot_stream, 'PNG')

最小示例:

import matplotlib.pyplot as plt
import pygame
import io

plt.plot(Generation=[], Points=[])
plt.title('Points per Generation')
plt.xlabel('Generation')
plt.ylabel('Points')

plot_stream = io.BytesIO()
plt.savefig(plot_stream, formatstr='png')
plot_stream.seek(0)

pygame.init()
plot_surface = pygame.image.load(plot_stream, 'PNG')

window = pygame.display.set_mode(plot_surface.get_size())
clock = pygame.time.Clock()

run = True
while run:
    clock.tick(100)
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            run = False 

    window.fill(0)
    window.blit(plot_surface, (0, 0))
    pygame.display.flip()

pygame.quit()
exit()