当前位置: 首页>>代码示例>>Python>>正文


Python Vector.reverse_y方法代码示例

本文整理汇总了Python中Vector.Vector.reverse_y方法的典型用法代码示例。如果您正苦于以下问题:Python Vector.reverse_y方法的具体用法?Python Vector.reverse_y怎么用?Python Vector.reverse_y使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Vector.Vector的用法示例。


在下文中一共展示了Vector.reverse_y方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: Bat

# 需要导入模块: from Vector import Vector [as 别名]
# 或者: from Vector.Vector import reverse_y [as 别名]
class Bat(Actor):
    """The class that represents bats in the game world."""

    cost = 35
    hitbox_height = 50
    hitbox_width = 30
    hitbox_offset = 0
    swoop_delay = 100
    swoop_initial_velocity = Vector(5, 5)
    swoop_acceleration = Vector(-.1, -.1)
    images = [
        pygame.image.load("assets/bat/bat1.png"),
        pygame.image.load("assets/bat/bat2.png"),
        pygame.image.load("assets/bat/bat3.png")
    ]
    __name__ = "Bat"

    def __init__(self, xpos, ypos):
        super().__init__()
        self.__name__ = Bat.__name__
        self.image = Bat.images[0]

        self.sprite_loop = lsm.create({
            0: Bat.images[1],
            10: Bat.images[0],
            20: Bat.images[2],
            30: Bat.images[1],
            40: Bat.images[0],
            60: lsm.end
        })

        self.rect = pygame.Rect(xpos-30/2, ypos-30/2, Bat.hitbox_width, Bat.hitbox_height)
        self.frames_till_swoop = Bat.swoop_delay
        self.velocity = Vector(0, 0)
        self.direction = Vector(1, 1)
        self.has_pitched = False
        self.is_swooping = False

    def _render(self):
        image = next(self.sprite_loop)

        if self.direction.x > 0:
            image = pygame.transform.flip(image, True, False)

        return image

    def _initiate_swoop(self, simon_rect):
        self.is_swooping = True
        self.velocity = Bat.swoop_initial_velocity
        x_direction = 1 if self.rect.x <= simon_rect.x else -1
        y_direction = 1 if self.rect.y <= simon_rect.y else -1
        self.direction = Vector(x_direction, y_direction)
        self.has_pitched = False if y_direction == 1 else True

    def _finish_swoop(self):
        self.is_swooping = False
        self.has_pitched = False
        self.frames_till_swoop = Bat.swoop_delay

    def _pitch_swoop(self):
        self.direction = self.direction.reverse_y()
        self.has_pitched = True

    def update(self, world):
        """enemy AI processing"""
        if not self.is_swooping:
            self.frames_till_swoop -= 1
            if self.frames_till_swoop <= 0:
                self._initiate_swoop(world.simon.rect)
        else:
            self.velocity = self.velocity.add(Bat.swoop_acceleration).bound(Vector(0, 0))
            if self.rect.y >= world.simon.rect.y and not self.has_pitched:
                self._pitch_swoop()
            if self.velocity.is_zero():
                self._finish_swoop()

        movement = self.velocity.pointwise_product(self.direction)
        self.rect.move_ip(movement.x, movement.y)
        self.image = self._render()
开发者ID:nafarlee,项目名称:tower-of-dracula,代码行数:81,代码来源:Bat.py


注:本文中的Vector.Vector.reverse_y方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。