Source code for arcade.sprite

"""
This module manages all of the code around Sprites.

For information on Spatial Hash Maps, see:
https://www.gamedev.net/articles/programming/general-and-gameplay-programming/spatial-hashing-r2697/
"""

import math
import dataclasses
from typing import (
    Any,
    Tuple,
    Iterable,
    Dict,
    List,
    Optional,
    TYPE_CHECKING,
)
import PIL.Image

import arcade
from arcade.geometry_generic import get_angle_degrees
from arcade import load_texture
from arcade import Texture
from arcade import rotate_point
from arcade import make_soft_circle_texture
from arcade import make_circle_texture
from arcade import Color
from arcade.color import BLACK
from arcade.resources import resolve_resource_path
from arcade.arcade_types import RGBA, Point, PointList
from arcade.cache import build_cache_name
from arcade.texture import SolidColorTexture

if TYPE_CHECKING:  # handle import cycle caused by type hinting
    from arcade.sprite_list import SpriteList

FACE_RIGHT = 1
FACE_LEFT = 2
FACE_UP = 3
FACE_DOWN = 4


[docs]class PyMunk: """Object used to hold pymunk info for a sprite.""" __slots__ = ( "damping", "gravity", "max_velocity", "max_horizontal_velocity", "max_vertical_velocity", ) def __init__(self): """Set up pymunk object""" self.damping = None self.gravity = None self.max_velocity = None self.max_horizontal_velocity = None self.max_vertical_velocity = None
[docs]class Sprite: """ Class that represents a 'sprite' on-screen. Most games center around sprites. For examples on how to use this class, see: https://api.arcade.academy/en/latest/examples/index.html#sprites :param str filename: Filename of an image that represents the sprite. :param float scale: Scale the image up or down. Scale of 1.0 is none. :param float image_x: X offset to sprite within sprite sheet. :param float image_y: Y offset to sprite within sprite sheet. :param float image_width: Width of the sprite :param float image_height: Height of the sprite :param float center_x: Location of the sprite :param float center_y: Location of the sprite :param bool flipped_horizontally: Mirror the sprite image. Flip left/right across vertical axis. :param bool flipped_vertically: Flip the image up/down across the horizontal axis. :param bool flipped_diagonally: Transpose the image, flip it across the diagonal. :param str hit_box_algorithm: One of None, 'None', 'Simple' or 'Detailed'. Defaults to 'Simple'. Use 'Simple' for the :data:`PhysicsEngineSimple`, :data:`PhysicsEnginePlatformer` and 'Detailed' for the :data:`PymunkPhysicsEngine`. :param Texture texture: Specify the texture directly. :param float angle: The initial rotation of the sprite in degrees This will ignore all hit box and image size arguments. .. figure:: ../images/hit_box_algorithm_none.png :width: 40% hit_box_algorithm = "None" .. figure:: ../images/hit_box_algorithm_simple.png :width: 55% hit_box_algorithm = "Simple" .. figure:: ../images/hit_box_algorithm_detailed.png :width: 75% hit_box_algorithm = "Detailed" :param float hit_box_detail: Float, defaults to 4.5. Used with 'Detailed' to hit box Attributes: :alpha: Transparency of sprite. 0 is invisible, 255 is opaque. :angle: Rotation angle in degrees. Sprites rotate counter-clock-wise. :radians: Rotation angle in radians. Sprites rotate counter-clock-wise. :bottom: Set/query the sprite location by using the bottom coordinate. \ This will be the 'y' of the bottom of the sprite. :boundary_left: Used in movement. Left boundary of moving sprite. :boundary_right: Used in movement. Right boundary of moving sprite. :boundary_top: Used in movement. Top boundary of moving sprite. :boundary_bottom: Used in movement. Bottom boundary of moving sprite. :center_x: X location of the center of the sprite :center_y: Y location of the center of the sprite :change_x: Movement vector, in the x direction. :change_y: Movement vector, in the y direction. :change_angle: Change in rotation. :color: Color tint the sprite :cur_texture_index: Index of current texture being used. :guid: Unique identifier for the sprite. Useful when debugging. :height: Height of the sprite. :force: Force being applied to the sprite. Useful when used with Pymunk \ for physics. :hit_box: Points, in relation to the center of the sprite, that are used \ for collision detection. Arcade defaults to creating a hit box via the \ 'simple' hit box algorithm \ that encompass the image. If you are creating a ramp or making better \ hit-boxes, you can custom-set these. :left: Set/query the sprite location by using the left coordinate. This \ will be the 'x' of the left of the sprite. :position: A list with the (x, y) of where the sprite is. :right: Set/query the sprite location by using the right coordinate. \ This will be the 'y=x' of the right of the sprite. :sprite_lists: List of all the sprite lists this sprite is part of. :texture: :class:`arcade.Texture` class with the current texture. Setting a new texture does \ **not** update the hit box of the sprite. This can be done with \ ``my_sprite.hit_box = my_sprite.texture.hit_box_points``. New textures will be centered \ on the current center_x/center_y. :textures: List of textures associated with this sprite. :top: Set/query the sprite location by using the top coordinate. This \ will be the 'y' of the top of the sprite. :scale: Scale the image up or down. Scale of 1.0 is original size, 0.5 \ is 1/2 height and width. :velocity: Change in x, y expressed as a list. (0, 0) would be not moving. :width: Width of the sprite It is common to over-ride the `update` method and provide mechanics on movement or other sprite updates. """ def __init__( self, filename: Optional[str] = None, scale: float = 1.0, image_x: int = 0, image_y: int = 0, image_width: int = 0, image_height: int = 0, center_x: float = 0.0, center_y: float = 0.0, flipped_horizontally: bool = False, flipped_vertically: bool = False, flipped_diagonally: bool = False, hit_box_algorithm: Optional[str] = "Simple", hit_box_detail: float = 4.5, texture: Optional[Texture] = None, angle: float = 0.0, ): """ Constructor """ # Position, size and orientation properties self._width: float = 0.0 self._height: float = 0.0 self._scale: Tuple[float, float] = (scale, scale) self._position: Point = (center_x, center_y) self._angle = angle self._velocity = 0.0, 0.0 self.change_angle: float = 0.0 # Hit box and collision property self._points: Optional[PointList] = None self._point_list_cache: Optional[PointList] = None # Hit box type info self._hit_box_algorithm = hit_box_algorithm self._hit_box_detail = hit_box_detail # Color self._color: RGBA = 255, 255, 255, 255 # Custom sprite properties self._properties: Optional[Dict[str, Any]] = None # Boundaries for moving platforms in tilemaps self.boundary_left: Optional[float] = None self.boundary_right: Optional[float] = None self.boundary_top: Optional[float] = None self.boundary_bottom: Optional[float] = None # Texture properties self._texture: Optional[Texture] = None self.textures: List[Texture] = [] self.cur_texture_index: int = 0 self.sprite_lists: List["SpriteList"] = [] self.physics_engines: List[Any] = [] self._sprite_list: Optional["SpriteList"] = None # Used for Sprite.draw() # Pymunk specific properties self._pymunk: Optional[PyMunk] = None self.force = [0.0, 0.0] # Debug properties self.guid: Optional[str] = None if texture: self._texture = texture self._textures = [texture] self._width = self._texture.width * scale self._height = self._texture.height * scale elif filename is not None: # Sanity check values if image_width < 0: raise ValueError("Width entered is less than zero. Width must be a positive float.") if image_height < 0: raise ValueError( "Height entered is less than zero. Height must be a positive float." ) if image_width == 0 and image_height != 0: raise ValueError("Width can't be zero.") if image_height == 0 and image_width != 0: raise ValueError("Height can't be zero.") self._texture = load_texture( filename, image_x, image_y, image_width, image_height, flipped_horizontally=flipped_horizontally, flipped_vertically=flipped_vertically, flipped_diagonally=flipped_diagonally, hit_box_algorithm=hit_box_algorithm, hit_box_detail=hit_box_detail, ) self.textures = [self._texture] # Ignore the texture's scale and use ours self._width = self._texture.width * scale self._height = self._texture.height * scale # We'll allow creating sprites without textures for now. # The sprite must at some point get a texture assigned before used. # else: # raise ValueError("You must provide either a texture or a filename.") if self._texture and not self._points: self._points = self._texture.hit_box_points @property def properties(self) -> Dict[str, Any]: """ Get or set custom sprite properties. :rtype: Dict[str, Any] """ if self._properties is None: self._properties = {} return self._properties @properties.setter def properties(self, value): self._properties = value @property def pymunk(self) -> PyMunk: """ Get or set the Pymunk property objects. This is used by the pymunk physics engine. """ if self._pymunk is None: self._pymunk = PyMunk() return self._pymunk @pymunk.setter def pymunk(self, value): self._pymunk = value
[docs] def append_texture(self, texture: Texture): """ Appends a new texture to the list of textures that can be applied to this sprite. :param arcade.Texture texture: Texture to add to the list of available textures """ self.textures.append(texture)
@property def position(self) -> Point: """ Get the center x and y coordinates of the sprite. Returns: (center_x, center_y) """ return self._position @position.setter def position(self, new_value: Point): """ Set the center x and y coordinates of the sprite. :param Point new_value: New position. """ if new_value == self._position: return self.clear_spatial_hashes() self._point_list_cache = None self._position = new_value self.add_spatial_hashes() for sprite_list in self.sprite_lists: sprite_list.update_location(self)
[docs] def set_position(self, center_x: float, center_y: float) -> None: """ Set a sprite's position :param float center_x: New x position of sprite :param float center_y: New y position of sprite """ self.position = (center_x, center_y)
[docs] def set_hit_box(self, points: PointList) -> None: """ Set a sprite's hit box. Hit box should be relative to a sprite's center, and with a scale of 1.0. Points will be scaled with get_adjusted_hit_box. """ self._point_list_cache = None self._points = points
[docs] def get_hit_box(self) -> PointList: """ Use the hit_box property to get or set a sprite's hit box. Hit boxes are specified assuming the sprite's center is at (0, 0). Specify hit boxes like: .. code-block:: mySprite.hit_box = [[-10, -10], [10, -10], [10, 10]] Specify a hit box unadjusted for translation, rotation, or scale. You can get an adjusted hit box with :class:`arcade.Sprite.get_adjusted_hit_box`. """ # If there is no hitbox, use the width/height to get one if self._points is None and self._texture: self._points = self._texture.hit_box_points if self._points is None and self._width: x1, y1 = -self._width / 2, -self._height / 2 x2, y2 = +self._width / 2, -self._height / 2 x3, y3 = +self._width / 2, +self._height / 2 x4, y4 = -self._width / 2, +self._height / 2 self._points = ((x1, y1), (x2, y2), (x3, y3), (x4, y4)) if self._points is None and self.texture is not None: self._points = self.texture.hit_box_points if self._points is None: raise ValueError( "Error trying to get the hit box of a sprite, when no hit box is set.\nPlease make sure the " "Sprite.texture is set to a texture before trying to draw or do collision testing.\n" "Alternatively, manually call Sprite.set_hit_box with points for your hitbox." ) return self._points
@property def hit_box(self) -> PointList: return self.get_hit_box() @hit_box.setter def hit_box(self, points: PointList): self.set_hit_box(points)
[docs] def get_adjusted_hit_box(self) -> PointList: """ Get the points that make up the hit box for the rect that makes up the sprite, including rotation and scaling. """ # If we've already calculated the adjusted hit box, use the cached version if self._point_list_cache is not None: return self._point_list_cache def _adjust_point(point) -> Point: # Rotate the point if needed if self._angle: # Rotate with scaling to not distort it if scale x and y is different point = rotate_point(point[0] * self._scale[0], point[1] * self._scale[1], 0, 0, self._angle) # Apply position return ( point[0] + self._position[0], point[1] + self._position[1], ) # Apply position and scale return ( point[0] * self._scale[0] + self._position[0], point[1] * self._scale[1] + self._position[1], ) # Cache the results self._point_list_cache = tuple(_adjust_point(point) for point in self.hit_box) return self._point_list_cache
[docs] def forward(self, speed: float = 1.0) -> None: """ Adjusts a Sprite's movement vector forward. This method does not actually move the sprite, just takes the current change_x/change_y and adjusts it by the speed given. :param speed: speed factor """ self.change_x += math.cos(self.radians) * speed self.change_y += math.sin(self.radians) * speed
[docs] def reverse(self, speed: float = 1.0) -> None: """ Adjusts a Sprite's movement vector backwards. This method does not actually move the sprite, just takes the current change_x/change_y and adjusts it by the speed given. :param speed: speed factor """ self.forward(-speed)
[docs] def strafe(self, speed: float = 1.0) -> None: """ Adjusts a Sprite's movement vector sideways. This method does not actually move the sprite, just takes the current change_x/change_y and adjusts it by the speed given. :param speed: speed factor """ self.change_x += -math.sin(self.radians) * speed self.change_y += math.cos(self.radians) * speed
[docs] def turn_right(self, theta: float = 90.0) -> None: """ Rotate the sprite right by the passed number of degrees. :param theta: change in angle, in degrees """ self.angle -= theta
[docs] def turn_left(self, theta: float = 90.0) -> None: """ Rotate the sprite left by the passed number of degrees. :param theta: change in angle, in degrees """ self.angle += theta
[docs] def stop(self) -> None: """ Stop the Sprite's motion. """ self.change_x = 0 self.change_y = 0 self.change_angle = 0
[docs] def clear_spatial_hashes(self) -> None: """ Search the sprite lists this sprite is a part of, and remove it from any spatial hashes it is a part of. """ for sprite_list in self.sprite_lists: if sprite_list._use_spatial_hash and sprite_list.spatial_hash is not None: try: sprite_list.spatial_hash.remove_object(self) except ValueError: print( "Warning, attempt to remove item from spatial hash that doesn't exist in the hash." )
[docs] def add_spatial_hashes(self) -> None: """ Add spatial hashes for this sprite in all the sprite lists it is part of. """ for sprite_list in self.sprite_lists: if sprite_list.spatial_hash: sprite_list.spatial_hash.insert_object_for_box(self)
@property def bottom(self) -> float: """ Return the y coordinate of the bottom of the sprite. """ points = self.get_adjusted_hit_box() # This happens if our point list is empty, such as a completely # transparent sprite. if len(points) == 0: return self.center_y y_points = [point[1] for point in points] return min(y_points) @bottom.setter def bottom(self, amount: float): """ Set the location of the sprite based on the bottom y coordinate. """ lowest = self.bottom diff = lowest - amount self.center_y -= diff @property def top(self) -> float: """ Return the y coordinate of the top of the sprite. """ points = self.get_adjusted_hit_box() # This happens if our point list is empty, such as a completely # transparent sprite. if len(points) == 0: return self.center_y y_points = [point[1] for point in points] return max(y_points) @top.setter def top(self, amount: float): """The highest y coordinate.""" highest = self.top diff = highest - amount self.center_y -= diff @property def width(self) -> float: """Get the width of the sprite.""" return self._width @width.setter def width(self, new_value: float): """Set the width in pixels of the sprite.""" if new_value != self._width: self.clear_spatial_hashes() self._point_list_cache = None self._scale = new_value / self.texture.width, self._scale[1] self._width = new_value self.add_spatial_hashes() for sprite_list in self.sprite_lists: sprite_list.update_size(self) @property def height(self) -> float: """Get the height in pixels of the sprite.""" return self._height @height.setter def height(self, new_value: float): """Set the center x coordinate of the sprite.""" if new_value != self._height: self.clear_spatial_hashes() self._point_list_cache = None self._scale = self._scale[0], new_value / self.texture.height self._height = new_value self.add_spatial_hashes() for sprite_list in self.sprite_lists: sprite_list.update_height(self) @property def scale(self) -> float: """ Get the sprite's x scale value or set both x & y scale to the same value. .. note:: Negative values are supported. They will flip & mirror the sprite. """ return self._scale[0] @scale.setter def scale(self, new_value: float): if new_value == self._scale[0] and new_value == self._scale[1]: return self.clear_spatial_hashes() self._point_list_cache = None self._scale = new_value, new_value if self._texture: self._width = self._texture.width * self._scale[0] self._height = self._texture.height * self._scale[1] self.add_spatial_hashes() for sprite_list in self.sprite_lists: sprite_list.update_size(self) @property def scale_xy(self) -> Point: """Get or set the x & y scale of the sprite as a pair of values.""" return self._scale @scale_xy.setter def scale_xy(self, new_value: Point): if new_value[0] == self._scale[0] and new_value[1] == self._scale[1]: return self.clear_spatial_hashes() self._point_list_cache = None self._scale = new_value if self._texture: self._width = self._texture.width * self._scale[0] self._height = self._texture.height * self._scale[1] self.add_spatial_hashes() for sprite_list in self.sprite_lists: sprite_list.update_size(self)
[docs] def rescale_relative_to_point(self, point: Point, factor: float) -> None: """ Rescale the sprite and its distance from the passed point. This function does two things: 1. Multiply both values in the sprite's :py:attr:`~scale_xy` value by ``factor``. 2. Scale the distance between the sprite and ``point`` by ``factor``. If ``point`` equals the sprite's :py:attr:`~position`, the distance will be zero and the sprite will not move. :param point: The reference point for rescaling. :param factor: Multiplier for sprite scale & distance to point. :return: """ # abort if the multiplier wouldn't do anything if factor == 1.0: return # clear spatial metadata both locally and in sprite lists self.clear_spatial_hashes() self._point_list_cache = None # set the scale and, if this sprite has a texture, the size data self._scale = self._scale[0] * factor, self._scale[1] * factor if self._texture: self._width = self._texture.width * self._scale[0] self._height = self._texture.height * self._scale[1] # detect the edge case where distance to multiply is zero position_changed = point != self._position # be lazy about math; only do it if we have to if position_changed: self._position = ( (self._position[0] - point[0]) * factor + point[0], (self._position[1] - point[1]) * factor + point[1] ) # rebuild all spatial metadata self.add_spatial_hashes() for sprite_list in self.sprite_lists: sprite_list.update_size(self) if position_changed: sprite_list.update_location(self)
[docs] def rescale_xy_relative_to_point( self, point: Point, factors_xy: Iterable[float] ) -> None: """ Rescale the sprite and its distance from the passed point. This method can scale by different amounts on each axis. To scale along only one axis, set the other axis to ``1.0`` in ``factors_xy``. Internally, this function does the following: 1. Multiply the x & y of the sprite's :py:attr:`~scale_xy` attribute by the corresponding part from ``factors_xy``. 2. Scale the x & y of the difference between the sprite's position and ``point`` by the corresponding component from ``factors_xy``. If ``point`` equals the sprite's :py:attr:`~position`, the distance will be zero and the sprite will not move. :param point: The reference point for rescaling. :param factors_xy: A 2-length iterable containing x and y multipliers for ``scale`` & distance to ``point``. :return: """ # exit early if nothing would change factor_x, factor_y = factors_xy if factor_x == 1.0 and factor_y == 1.0: return # clear spatial metadata both locally and in sprite lists self.clear_spatial_hashes() self._point_list_cache = None # set the scale and, if this sprite has a texture, the size data self._scale = self._scale[0] * factor_x, self._scale[1] * factor_y if self._texture: self._width = self._texture.width * self._scale[0] self._height = self._texture.height * self._scale[1] # detect the edge case where the distance to multiply is 0 position_changed = point != self._position # be lazy about math; only do it if we have to if position_changed: self._position = ( (self._position[0] - point[0]) * factor_x + point[0], (self._position[1] - point[1]) * factor_y + point[1] ) # rebuild all spatial metadata self.add_spatial_hashes() for sprite_list in self.sprite_lists: sprite_list.update_size(self) if position_changed: sprite_list.update_location(self)
@property def center_x(self) -> float: """Get the center x coordinate of the sprite.""" return self._position[0] @center_x.setter def center_x(self, new_value: float): """Set the center x coordinate of the sprite.""" if new_value == self._position[0]: return self.clear_spatial_hashes() self._point_list_cache = None self._position = (new_value, self._position[1]) self.add_spatial_hashes() for sprite_list in self.sprite_lists: sprite_list.update_location(self) @property def center_y(self) -> float: """Get the center y coordinate of the sprite.""" return self._position[1] @center_y.setter def center_y(self, new_value: float): """Set the center y coordinate of the sprite.""" if new_value == self._position[1]: return self.clear_spatial_hashes() self._point_list_cache = None self._position = (self._position[0], new_value) self.add_spatial_hashes() for sprite_list in self.sprite_lists: sprite_list.update_location(self) @property def velocity(self) -> Point: """ Get or set the velocity of the sprite. The x and y velocity can also be set separately using the ``sprite.change_x`` and ``sprite.change_y`` properties. Example:: sprite.velocity = 1.0, 0.0 Returns: Tuple[float, float] """ return self._velocity @velocity.setter def velocity(self, new_value: Point): self._velocity = new_value @property def change_x(self) -> float: """Get the velocity in the x plane of the sprite.""" return self.velocity[0] @change_x.setter def change_x(self, new_value: float): """Set the velocity in the x plane of the sprite.""" self._velocity = new_value, self._velocity[1] @property def change_y(self) -> float: """Get the velocity in the y plane of the sprite.""" return self.velocity[1] @change_y.setter def change_y(self, new_value: float): """Set the velocity in the y plane of the sprite.""" self._velocity = self._velocity[0], new_value @property def angle(self) -> float: """Get the angle of the sprite's rotation.""" return self._angle @angle.setter def angle(self, new_value: float): """Set the angle of the sprite's rotation.""" if new_value == self._angle: return self.clear_spatial_hashes() self._angle = new_value self._point_list_cache = None for sprite_list in self.sprite_lists: sprite_list.update_angle(self) self.add_spatial_hashes() @property def radians(self) -> float: """ Converts the degrees representation of self.angle into radians. :return: float """ return self._angle / 180.0 * math.pi @radians.setter def radians(self, new_value: float): """ Converts a radian value into degrees and stores it into angle. """ self.angle = new_value * 180.0 / math.pi @property def left(self) -> float: """ Return the x coordinate of the left-side of the sprite's hit box. """ points = self.get_adjusted_hit_box() # This happens if our point list is empty, such as a completely # transparent sprite. if len(points) == 0: return self.center_x x_points = [point[0] for point in points] return min(x_points) @left.setter def left(self, amount: float): """The left most x coordinate.""" leftmost = self.left diff = amount - leftmost self.center_x += diff @property def right(self) -> float: """ Return the x coordinate of the right-side of the sprite's hit box. """ points = self.get_adjusted_hit_box() # This happens if our point list is empty, such as a completely # transparent sprite. if len(points) == 0: return self.center_x x_points = [point[0] for point in points] return max(x_points) @right.setter def right(self, amount: float): """The right most x coordinate.""" rightmost = self.right diff = rightmost - amount self.center_x -= diff @property def texture(self) -> Texture: # TODO: Remove this when we require a texture if not self._texture: raise ValueError("Sprite has not texture") return self._texture @texture.setter def texture(self, texture: Texture): """Sets texture by texture id. Should be renamed but keeping this for backwards compatibility.""" if texture == self._texture: return if __debug__ and not isinstance(texture, Texture): raise TypeError(f"The 'texture' parameter must be an instance of arcade.Texture," f" but is an instance of '{type(texture)}'.") self.clear_spatial_hashes() self._point_list_cache = None self._texture = texture self._width = texture.width * self._scale[0] self._height = texture.height * self._scale[1] self.add_spatial_hashes() for sprite_list in self.sprite_lists: sprite_list.update_texture(self)
[docs] def set_texture(self, texture_no: int) -> None: """ Sets texture by texture id. Should be renamed because it takes a number rather than a texture, but keeping this for backwards compatibility. """ texture = self.textures[texture_no] self.texture = texture
@property def color(self) -> RGBA: """ Get or set the RGB/RGBA color associated with the sprite. Example usage:: print(sprite.color) sprite.color = arcade.color.RED sprite.color = 255, 0, 0 sprite.color = 255, 0, 0, 128 """ return self._color @color.setter def color(self, color: RGBA): if len(color) == 4: if ( self._color == color[0] and self._color[1] == color[1] and self._color[2] == color[2] and self._color[3] == color[3] ): return self._color = color[0], color[1], color[2], color[3] elif len(color) == 3: if ( self._color == color[0] and self._color[1] == color[1] and self._color[2] == color[2] ): return self._color = color[0], color[1], color[2], self._color[3] else: raise ValueError("Color must be three or four ints from 0-255") for sprite_list in self.sprite_lists: sprite_list.update_color(self) @property def alpha(self) -> int: """ Return the alpha associated with the sprite. """ return self._color[3] @alpha.setter def alpha(self, alpha: int): """ Set the current sprite color as a value """ self._color = self._color[0], self._color[1], self._color[2], int(alpha) for sprite_list in self.sprite_lists: sprite_list.update_color(self) @property def visible(self) -> bool: """ Get or set the visibility of this sprite. This is a shortcut for changing the alpha value of a sprite to 0 or 255:: # Make the sprite invisible sprite.visible = False # Change back to visible sprite.visible = True # Toggle visible sprite.visible = not sprite.visible :rtype: bool """ return self._color[3] > 0 @visible.setter def visible(self, value: bool): self._color = self._color[0], self._color[1], self._color[2], 255 if value else 0 for sprite_list in self.sprite_lists: sprite_list.update_color(self)
[docs] def register_sprite_list(self, new_list: "SpriteList") -> None: """ Register this sprite as belonging to a list. We will automatically remove ourselves from the list when kill() is called. """ self.sprite_lists.append(new_list)
[docs] def register_physics_engine(self, physics_engine) -> None: """ Register a physics engine on the sprite. This is only needed if you actually need a reference to your physics engine in the sprite itself. It has no other purposes. The registered physics engines can be accessed through the ``physics_engines`` attribute. It can for example be the pymunk physics engine or a custom one you made. """ self.physics_engines.append(physics_engine)
[docs] def pymunk_moved(self, physics_engine, dx, dy, d_angle): """Called by the pymunk physics engine if this sprite moves.""" pass
[docs] def face_point(self, point: Point) -> None: """ Face the sprite towards a point. Assumes sprite image is facing upwards. :param Point point: Point to face towards. """ angle = get_angle_degrees(self.center_x, self.center_y, point[0], point[1]) # Reverse angle because sprite angles are backwards self.angle = -angle
[docs] def draw(self, *, filter=None, pixelated=None, blend_function=None) -> None: """ Draw the sprite. :param filter: Optional parameter to set OpenGL filter, such as `gl.GL_NEAREST` to avoid smoothing. :param pixelated: ``True`` for pixelated and ``False`` for smooth interpolation. Shortcut for setting filter=GL_NEAREST. :param blend_function: Optional parameter to set the OpenGL blend function used for drawing the sprite list, such as 'arcade.Window.ctx.BLEND_ADDITIVE' or 'arcade.Window.ctx.BLEND_DEFAULT' """ if self._sprite_list is None: from arcade import SpriteList self._sprite_list = SpriteList(capacity=1) self._sprite_list.append(self) self._sprite_list.draw(filter=filter, pixelated=pixelated, blend_function=blend_function)
[docs] def draw_hit_box(self, color: Color = BLACK, line_thickness: float = 2.0) -> None: """ Draw a sprite's hit-box. The 'hit box' drawing is cached, so if you change the color/line thickness later, it won't take. :param color: Color of box :param line_thickness: How thick the box should be """ points = self.get_adjusted_hit_box() # NOTE: This is a COPY operation. We don't want to modify the points. points = tuple(points) + tuple(points[:-1]) arcade.draw_line_strip(points, color=color, line_width=line_thickness)
[docs] def update(self) -> None: """ Update the sprite. """ self.position = ( self._position[0] + self.change_x, self._position[1] + self.change_y, ) self.angle += self.change_angle
[docs] def on_update(self, delta_time: float = 1 / 60) -> None: """ Update the sprite. Similar to update, but also takes a delta-time. """ pass
[docs] def update_animation(self, delta_time: float = 1 / 60) -> None: """ Override this to add code that will change what image is shown, so the sprite can be animated. :param float delta_time: Time since last update. """ pass
[docs] def remove_from_sprite_lists(self) -> None: """ Remove the sprite from all sprite lists. """ if len(self.sprite_lists) > 0: # We can't modify a list as we iterate through it, so create a copy. sprite_lists = self.sprite_lists.copy() else: # If the list is a size 1, we don't need to copy sprite_lists = self.sprite_lists for sprite_list in sprite_lists: if self in sprite_list: sprite_list.remove(self) for engine in self.physics_engines: engine.remove_sprite(self) self.physics_engines.clear() self.sprite_lists.clear()
[docs] def kill(self) -> None: """ Alias of `remove_from_sprite_lists` """ self.remove_from_sprite_lists()
[docs] def collides_with_point(self, point: Point) -> bool: """Check if point is within the current sprite. :param Point point: Point to check. :return: True if the point is contained within the sprite's boundary. :rtype: bool """ from arcade.geometry import is_point_in_polygon x, y = point return is_point_in_polygon(x, y, self.get_adjusted_hit_box())
[docs] def collides_with_sprite(self, other: "Sprite") -> bool: """Will check if a sprite is overlapping (colliding) another Sprite. :param Sprite other: the other sprite to check against. :return: True or False, whether or not they are overlapping. :rtype: bool """ from arcade import check_for_collision return check_for_collision(self, other)
[docs] def collides_with_list(self, sprite_list: "SpriteList") -> List["Sprite"]: """Check if current sprite is overlapping with any other sprite in a list :param SpriteList sprite_list: SpriteList to check against :return: List of all overlapping Sprites from the original SpriteList :rtype: list """ from arcade import check_for_collision_with_list # noinspection PyTypeChecker return check_for_collision_with_list(self, sprite_list)
[docs]@dataclasses.dataclass class AnimationKeyframe: """ Used in animated sprites. """ tile_id: int duration: int texture: Texture
[docs]class AnimatedTimeBasedSprite(Sprite): """ Sprite for platformer games that supports animations. These can be automatically created by the Tiled Map Editor. """ def __init__( self, filename: Optional[str] = None, scale: float = 1.0, image_x: int = 0, image_y: int = 0, image_width: int = 0, image_height: int = 0, center_x: float = 0.0, center_y: float = 0.0, ): super().__init__( filename=filename, scale=scale, image_x=image_x, image_y=image_y, image_width=image_width, image_height=image_height, center_x=center_x, center_y=center_y, ) self.cur_frame_idx = 0 self.frames: List[AnimationKeyframe] = [] self.time_counter = 0.0
[docs] def update_animation(self, delta_time: float = 1 / 60) -> None: """ Logic for selecting the proper texture to use. """ self.time_counter += delta_time while self.time_counter > self.frames[self.cur_frame_idx].duration / 1000.0: self.time_counter -= self.frames[self.cur_frame_idx].duration / 1000.0 self.cur_frame_idx += 1 if self.cur_frame_idx >= len(self.frames): self.cur_frame_idx = 0 # source = self.frames[self.cur_frame].texture.image.source cur_frame = self.frames[self.cur_frame_idx] # print(f"Advance to frame {self.cur_frame_idx}: {cur_frame.texture.name}") self.texture = cur_frame.texture
[docs]class AnimatedWalkingSprite(Sprite): """ Deprecated Sprite for platformer games that supports walking animations. Make sure to call update_animation after loading the animations so the initial texture can be set. Or manually set it. It is highly recommended you create your own version of this class rather than try to use this pre-packaged one. For an example, see this section of the platformer tutorial: :ref:`platformer_part_twelve`. """ def __init__( self, scale: float = 1.0, image_x: int = 0, image_y: int = 0, center_x: float = 0.0, center_y: float = 0.0, ): super().__init__( scale=scale, image_x=image_x, image_y=image_y, center_x=center_x, center_y=center_y, ) self.state = FACE_RIGHT self.stand_right_textures: List[Texture] = [] self.stand_left_textures: List[Texture] = [] self.walk_left_textures: List[Texture] = [] self.walk_right_textures: List[Texture] = [] self.walk_up_textures: List[Texture] = [] self.walk_down_textures: List[Texture] = [] self.cur_texture_index = 0 self.texture_change_distance = 20 self.last_texture_change_center_x: float = 0.0 self.last_texture_change_center_y: float = 0.0
[docs] def update_animation(self, delta_time: float = 1 / 60) -> None: """ Logic for selecting the proper texture to use. """ x1 = self.center_x x2 = self.last_texture_change_center_x y1 = self.center_y y2 = self.last_texture_change_center_y distance = math.sqrt((x2 - x1) ** 2 + (y2 - y1) ** 2) texture_list: List[Texture] = [] change_direction = False if ( self.change_x > 0 and self.change_y == 0 and self.state != FACE_RIGHT and len(self.walk_right_textures) > 0 ): self.state = FACE_RIGHT change_direction = True elif ( self.change_x < 0 and self.change_y == 0 and self.state != FACE_LEFT and len(self.walk_left_textures) > 0 ): self.state = FACE_LEFT change_direction = True elif ( self.change_y < 0 and self.change_x == 0 and self.state != FACE_DOWN and len(self.walk_down_textures) > 0 ): self.state = FACE_DOWN change_direction = True elif ( self.change_y > 0 and self.change_x == 0 and self.state != FACE_UP and len(self.walk_up_textures) > 0 ): self.state = FACE_UP change_direction = True if self.change_x == 0 and self.change_y == 0: if self.state == FACE_LEFT: self.texture = self.stand_left_textures[0] elif self.state == FACE_RIGHT: self.texture = self.stand_right_textures[0] elif self.state == FACE_UP: self.texture = self.walk_up_textures[0] elif self.state == FACE_DOWN: self.texture = self.walk_down_textures[0] elif change_direction or distance >= self.texture_change_distance: self.last_texture_change_center_x = self.center_x self.last_texture_change_center_y = self.center_y if self.state == FACE_LEFT: texture_list = self.walk_left_textures if texture_list is None or len(texture_list) == 0: raise RuntimeError( "update_animation was called on a sprite that doesn't have a " "list of walk left textures." ) elif self.state == FACE_RIGHT: texture_list = self.walk_right_textures if texture_list is None or len(texture_list) == 0: raise RuntimeError( "update_animation was called on a sprite that doesn't have a list of " "walk right textures." ) elif self.state == FACE_UP: texture_list = self.walk_up_textures if texture_list is None or len(texture_list) == 0: raise RuntimeError( "update_animation was called on a sprite that doesn't have a list of " "walk up textures." ) elif self.state == FACE_DOWN: texture_list = self.walk_down_textures if texture_list is None or len(texture_list) == 0: raise RuntimeError( "update_animation was called on a sprite that doesn't have a list of walk down textures." ) self.cur_texture_index += 1 if self.cur_texture_index >= len(texture_list): self.cur_texture_index = 0 self.texture = texture_list[self.cur_texture_index] if self._texture is None: print("Error, no texture set") else: self.width = self._texture.width * self.scale self.height = self._texture.height * self.scale
[docs]def load_animated_gif(resource_name) -> AnimatedTimeBasedSprite: """ Attempt to load an animated GIF as an :class:`AnimatedTimeBasedSprite`. Many older GIFs will load with incorrect transparency for every frame but the first. Until the Pillow library handles the quirks of the format better, loading animated GIFs will be pretty buggy. A good workaround is loading GIFs in another program and exporting them as PNGs, either as sprite sheets or a frame per file. """ file_name = resolve_resource_path(resource_name) # print(file_name) image_object = PIL.Image.open(file_name) if not image_object.is_animated: raise TypeError(f"The file {resource_name} is not an animated gif.") # print(image_object.n_frames) sprite = AnimatedTimeBasedSprite() for frame in range(image_object.n_frames): image_object.seek(frame) frame_duration = image_object.info['duration'] image = image_object.convert("RGBA") texture = Texture(f"{resource_name}-{frame}", image) sprite.textures.append(texture) sprite.frames.append(AnimationKeyframe(0, frame_duration, texture)) sprite.texture = sprite.textures[0] return sprite
[docs]class SpriteSolidColor(Sprite): """ A rectangular sprite of the given ``width``, ``height``, and ``color``. The texture is automatically generated instead of loaded from a file. Internally only a single global texture is used for this sprite type, so concerns about memory usage non-existent regardless of size or number of sprite variations. :param int width: Width of the sprite in pixels :param int height: Height of the sprite in pixels :param Color color: The color of the sprite as an RGB or RGBA tuple """ _default_image = PIL.Image.new("RGBA", (32, 32), (255, 255, 255, 255)) def __init__(self, width: int, height: int, color: Color): """ Create a solid-color rectangular sprite. """ super().__init__() self.texture = SolidColorTexture("sprite_solid_color", width, height, self._default_image) self._color = arcade.get_four_byte_color(color)
[docs]class SpriteCircle(Sprite): """ A circle of the specified `radius <https://simple.wikipedia.org/wiki/Radius>`_. The texture is automatically generated instead of loaded from a file. There may be a stutter the first time a combination of ``radius``, ``color``, and ``soft`` is used due to texture generation. All subsequent calls for the same combination will run faster because they will re-use the texture generated earlier. For a gradient fill instead of a solid color, set ``soft`` to ``True``. The circle will fade from an opaque center to transparent at the edges. :param int radius: Radius of the circle in pixels :param Color color: The Color of the sprite as an RGB or RGBA tuple :param bool soft: If ``True``, the circle will fade from an opaque center to transparent edges. """ def __init__(self, radius: int, color: Color, soft: bool = False): super().__init__() radius = int(radius) diameter = radius * 2 color_rgba = arcade.get_four_byte_color(color) # NOTE: We are only creating white textures. The actual color is # is applied in the shader through the sprite's color attribute. # determine the texture's cache name. if soft: cache_name = build_cache_name("circle_texture_soft", diameter, 255, 255, 255, 255) else: cache_name = build_cache_name("circle_texture", diameter, 255, 255, 255, 255) # use the named texture if it was already made if cache_name in Texture.cache: # type: ignore texture = Texture.cache[cache_name] # type: ignore # generate the texture if it's not in the cache else: if soft: texture = make_soft_circle_texture(diameter, (255, 255, 255, 255), name=cache_name) else: texture = make_circle_texture(diameter, (255, 255, 255, 255), name=cache_name) Texture.cache[cache_name] = texture # type: ignore # apply results to the new sprite self.texture = texture self.color = color_rgba self._points = self.texture.hit_box_points
[docs]def get_distance_between_sprites(sprite1: Sprite, sprite2: Sprite) -> float: """ Returns the distance between the center of two given sprites :param Sprite sprite1: Sprite one :param Sprite sprite2: Sprite two :return: Distance :rtype: float """ return arcade.get_distance(*sprite1._position, *sprite2._position)