python - 使矩形对象可滚动

标签 python pygame scrollable

我正在将国际象棋移动日志绘制到一个矩形对象上 - 但是在某个点之后,文本会脱离底部并被切断。我想知道是否有可能使矩形表面能够滚动,以便我可以看到整个移动日志。

这是绘制移动日志的代码:

这就是我的意思

正如您在第 21 次移动后所看到的 - 日志离开移动日志区域的底部

def drawMoveLog(screen, gs, font): #draws move log
    moveLogArea = p.Rect(BOARD_WIDTH, 0, MOVE_LOG_PANEL_WIDTH, MOVE_LOG_PANEL_HEIGHT)
    p.draw.rect(screen , p.Color("gray"), moveLogArea)
    moveLog = gs.moveLog
    moveText = []
    for i in range(0, len(moveLog), 2): #go through move log 2 at a time
        moveString = "|| " + str(i//2 + 1) + ". " + str(moveLog[i]) + " "# to keep move 2 and 2 the same
        if i + 1 < len(moveLog): # before i continue want to make sure black moved
            moveString += str(moveLog[i + 1]) + " "
        moveText.append(moveString)

    movesPerRow = 1
    padding = 5
    lineSpacing = 4
    textY = padding
    #make 3 moves go in 1 line
    for i in range(0, len(moveText), movesPerRow):
        text = ""
        for j in range (movesPerRow):
            if i + j < len(moveText):
                text += moveText[i+j]
        textObject = font.render(text, True, p.Color('Black'))
        textLocation = moveLogArea.move(padding, textY)
        screen.blit(textObject, textLocation)
        textY += textObject.get_height() + lineSpacing

最佳答案

创建一个以透明方式呈现文本的函数 pygame.Surface足够高以包含全文。要创建透明的 Surface 对象,您必须设置标志 pygame.SRCALPHA:

def createMoveLog(gs, font): #draws move log
    moveLog = gs.moveLog
    moveText = []
    for i in range(0, len(moveLog), 2): #go through move log 2 at a time
        moveString = "|| " + str(i//2 + 1) + ". " + str(moveLog[i]) + " "# to keep move 2 and 2 the same
        if i + 1 < len(moveLog): # before i continue want to make sure black moved
            moveString += str(moveLog[i + 1]) + " "
        moveText.append(moveString)

    movesPerRow = 1
    padding = 5
    lineSpacing = 4
    no_of_lines = (len(moveText)+movesPerRow-1) // movesPerRow
    line_height = font.get_height() + lineSpacing 
    text_size = (MOVE_LOG_PANEL_WIDTH, no_of_lines * line_height + 2*padding)
    text_surface = p.Surface(text_size, p.SRCALPHA)

    textY = padding
    #make 3 moves go in 1 line
    for i in range(0, len(moveText), movesPerRow):
        text = ""
        for j in range (movesPerRow):
            if i + j < len(moveText):
                text += moveText[i+j]
        textObject = font.render(text, True, p.Color('Black'))
        text_surface.blit(textObject, (0, textY))
        textY += textObject.get_height() + lineSpacing

    return text_surface

渲染全文并使用pygame.Surface.subsurface创建一个引用高度为 MOVE_LOG_PANEL_HEIGHT 的矩形区域的新曲面。
滚动参数是 [0.0, 1.0] 范围内的值,用于线性滚动文本。当滚动为0.0时,显示文本顶部,当滚动为1.0时,显示文本底部:

def drawMoveLog(screen, gs, font, scroll): #draws move log
    moveLogArea = p.Rect(BOARD_WIDTH, 0, MOVE_LOG_PANEL_WIDTH, MOVE_LOG_PANEL_HEIGHT)
    p.draw.rect(screen , p.Color("gray"), moveLogArea)

    text_surface = createMoveLog(gs, font)
    dy = text_surface.get_height() - MOVE_LOG_PANEL_HEIGHT
    if dy > 0:
        text_offset = int(dy * scroll) 
        test_rect = text_surface.get_rect()
        sub_rect = p.Rect(0, text_offset, MOVE_LOG_PANEL_WIDTH, MOVE_LOG_PANEL_HEIGHT)
        sub_text_surface = text_surface.subsurface(sub_rect)
        screen.blit(sub_text_surface, moveLogArea)

    else:
        screen.blit(text_surface, moveLogArea)

比较渲染

moveLog = ["d3", "Nh6", "e3", "Rg8", "f3", "b6", "g3", "a5", "h3", "Ra6", "c3", "g6", "b3", "a4"]

使用 scroll = 0.0scroll = 1.0

关于python - 使矩形对象可滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67288788/

相关文章:

python - pygame 中是否有事件处理选项来最小化和最大化屏幕?

scroll - 如何在 flutter 中制作可滚动文本?

css - 使 div 的内容可滚动

python - 为 Python 使用 OpenSceneGraph 绑定(bind)?

android - 带有滑动 ScrollView 的 PopupWindow

python - 如何使用 Apache-Spark 在 AWS 集群上运行代码?

python - 如何将装饰器与@contextmanager 装饰器混合使用?

python - 谁能告诉我为什么我收到 IndexError : list index out of range?

python - 想通过以文本格式保留所有行和列来使用 python 创建 excel 文件

python-2.7 - 在 64 位 Windows 7 和 64 位 Python 2.7 上安装 Pygame