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

from arcade.texture import _build_cache_name

import dataclasses

from typing import (
    Any,
    cast,
    Dict,
    List,
    Optional,
    TYPE_CHECKING,
)

import PIL.Image

from arcade import load_texture
from arcade import Texture
from arcade import rotate_point
from arcade import create_line_loop
from arcade import ShapeElementList
from arcade import make_soft_circle_texture
from arcade import make_circle_texture
from arcade import Color
from arcade.color import BLACK
from pyglet.math import Mat3
from arcade.resources import resolve_resource_path

from arcade.arcade_types import RGB, Point, PointList

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', '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. :radians: Rotation angle in radians. :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 :collision_radius: Used as a fast-check to see if this item is close \ enough to another item. If this check works, we do a slower more accurate check. \ You probably don't want to use this field. Instead, set points in the \ hit box. :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. :left: Set/query the sprite location by using the left coordinate. This \ will be the 'x' of the left of the sprite. :points: Points, in relation to the center of the sprite, that are used \ for collision detection. Arcade defaults to creating points for a rectangle \ that encompass the image. If you are creating a ramp or making better \ hit-boxes, you can custom-set these. :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: `Texture` class with the current texture. :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: str = None, scale: float = 1, image_x: float = 0, image_y: float = 0, image_width: float = 0, image_height: float = 0, center_x: float = 0, center_y: float = 0, repeat_count_x: int = 1, # Unused repeat_count_y: int = 1, # Unused flipped_horizontally: bool = False, flipped_vertically: bool = False, flipped_diagonally: bool = False, hit_box_algorithm: str = "Simple", hit_box_detail: float = 4.5, texture: Texture = None, angle: float = 0, ): """ Constructor """ # Position, size and orientation propreties self._width: float = 0.0 self._height: float = 0.0 self._scale: float = 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 propret self._points: Optional[PointList] = None self._point_list_cache: Optional[PointList] = None self._hit_box_shape: Optional[ShapeElementList] = None self._hit_box_algorithm = hit_box_algorithm self._hit_box_detail = hit_box_detail self._collision_radius: Optional[float] = None # Color self._color: RGB = (255, 255, 255) self._alpha: int = 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 propreties 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() self._texture_transform = None # Pymunk specific properties self._pymunk: Optional[PyMunk] = None self.force = [0, 0] # Debug propreties self.guid: Optional[str] = None # Sanity check values if image_width < 0: raise ValueError("Width of image can't be less than zero.") 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.") if hit_box_algorithm not in ["Simple", "Detailed", "None"]: raise ValueError( "hit_box_algorithm must be 'Simple', 'Detailed', or 'None'." ) if texture: self._texture = texture self._textures = [texture] self._width, self._height = self._texture.size elif filename is not None: 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 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 ot the list of available textures """ self.textures.append(texture)
def _get_position(self) -> Point: """ Get the center x and y coordinates of the sprite. Returns: (center_x, center_y) """ return self._position def _set_position(self, new_value: Point): """ Set the center x and y coordinates of the sprite. :param Point new_value: New position. """ if new_value[0] != self._position[0] or new_value[1] != self._position[1]: 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) position = property(_get_position, _set_position)
[docs] def set_position(self, center_x: float, center_y: float): """ Set a sprite's position :param float center_x: New x position of sprite :param float center_y: New y position of sprite """ self._set_position((center_x, center_y))
[docs] def set_hit_box(self, points: PointList): """ 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._hit_box_shape = 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
hit_box = property(get_hit_box, set_hit_box)
[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): # Rotate the point if self._angle: point = rotate_point(point[0], point[1], 0, 0, self._angle) # Get a copy of the point point = [point[0] * self._scale + self.position[0], point[1] * self._scale + self.position[1]] return point point_list = [_adjust_point(point) for point in self.hit_box] # Cache the results self._point_list_cache = point_list return self._point_list_cache
[docs] def forward(self, speed: float = 1.0): """ Set a Sprite's position to speed by its angle :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): """ Set a new speed, but in reverse. :param speed: speed factor """ self.forward(-speed)
[docs] def strafe(self, speed: float = 1.0): """ Set a sprites position perpendicular to its angle by speed :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): """ Rotate the sprite right a certain number of degrees. :param theta: change in angle """ self.angle -= theta
[docs] def turn_left(self, theta: float = 90): """ Rotate the sprite left a certain number of degrees. :param theta: change in angle """ self.angle += theta
[docs] def stop(self): """ Stop the Sprite's motion """ self.change_x = 0 self.change_y = 0 self.change_angle = 0
def _set_collision_radius(self, collision_radius: float): """ Set the collision radius. .. note:: Final collision checking is done via geometry that was set in the hit_box property. These points are used in the check_for_collision function. This collision_radius variable is used as a "pre-check." We do a super-fast check with collision_radius and see if the sprites are close. If they are, then we look at the geometry and figure if they really are colliding. :param float collision_radius: Collision radius """ self._collision_radius = collision_radius def _get_collision_radius(self): """ Get the collision radius. .. note:: Final collision checking is done via geometry that was set in get_points/set_points. These points are used in the check_for_collision function. This collision_radius variable is used as a "pre-check." We do a super-fast check with collision_radius and see if the sprites are close. If they are, then we look at the geometry and figure if they really are colliding. """ if not self._collision_radius: self._collision_radius = max(self.width, self.height) return self._collision_radius collision_radius = property(_get_collision_radius, _set_collision_radius) def __lt__(self, other): return self._texture.texture_id.value < other.texture.texture_id.value
[docs] def clear_spatial_hashes(self): """ 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): """ 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._use_spatial_hash: sprite_list.spatial_hash.insert_object_for_box(self)
def _get_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) def _set_bottom(self, amount: float): """ Set the location of the sprite based on the bottom y coordinate. """ lowest = self._get_bottom() diff = lowest - amount self.center_y -= diff bottom = property(_get_bottom, _set_bottom) def _get_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) def _set_top(self, amount: float): """The highest y coordinate.""" highest = self._get_top() diff = highest - amount self.center_y -= diff top = property(_get_top, _set_top) def _get_width(self) -> float: """Get the width of the sprite.""" return self._width def _set_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 # If there is a hit box, rescale it to the new width if self._points: scale = new_value / self._width old_points = self._points self._points = [(point[0] * scale, point[1]) for point in old_points] self._width = new_value self.add_spatial_hashes() for sprite_list in self.sprite_lists: sprite_list.update_size(self) width = property(_get_width, _set_width) def _get_height(self) -> float: """Get the height in pixels of the sprite.""" return self._height def _set_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 # If there is a hit box, rescale it to the new width if self._points: scale = new_value / self._height old_points = self._points self._points = [(point[0], point[1] * scale) for point in old_points] self._height = new_value self.add_spatial_hashes() for sprite_list in self.sprite_lists: sprite_list.update_height(self) height = property(_get_height, _set_height) def _get_scale(self) -> float: """Get the scale of the sprite.""" return self._scale def _set_scale(self, new_value: float): """Set the center x coordinate of the sprite.""" if new_value != self._scale: self.clear_spatial_hashes() self._point_list_cache = None self._scale = new_value if self._texture: self._width = self._texture.width * self._scale self._height = self._texture.height * self._scale self.add_spatial_hashes() for sprite_list in self.sprite_lists: sprite_list.update_size(self) scale = property(_get_scale, _set_scale)
[docs] def rescale_relative_to_point(self, point: Point, factor: float) -> None: """Rescale the sprite relative to a different point than its center.""" self.scale *= factor self.center_x = (self.center_x - point[0]) * factor + point[0] self.center_y = (self.center_y - point[1]) * factor + point[1]
def _get_center_x(self) -> float: """Get the center x coordinate of the sprite.""" return self._position[0] def _set_center_x(self, new_value: float): """Set the center x coordinate of the sprite.""" if new_value != self._position[0]: 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) center_x = property(_get_center_x, _set_center_x) def _get_center_y(self) -> float: """Get the center y coordinate of the sprite.""" return self._position[1] def _set_center_y(self, new_value: float): """Set the center y coordinate of the sprite.""" if new_value != self._position[1]: 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) center_y = property(_get_center_y, _set_center_y) def _get_change_x(self) -> float: """Get the velocity in the x plane of the sprite.""" return self.velocity[0] def _set_change_x(self, new_value: float): """Set the velocity in the x plane of the sprite.""" self.velocity[0] = new_value change_x = property(_get_change_x, _set_change_x) def _get_change_y(self) -> float: """Get the velocity in the y plane of the sprite.""" return self.velocity[1] def _set_change_y(self, new_value: float): """Set the velocity in the y plane of the sprite.""" self.velocity[1] = new_value change_y = property(_get_change_y, _set_change_y) def _get_angle(self) -> float: """Get the angle of the sprite's rotation.""" return self._angle def _set_angle(self, new_value: float): """Set the angle of the sprite's rotation.""" if new_value != self._angle: 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() angle = property(_get_angle, _set_angle) def _to_radians(self) -> float: """ Converts the degrees representation of self.angle into radians. :return: float """ return self.angle / 180.0 * math.pi def _from_radians(self, new_value: float): """ Converts a radian value into degrees and stores it into angle. """ self.angle = new_value * 180.0 / math.pi radians = property(_to_radians, _from_radians) def _get_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) def _set_left(self, amount: float): """The left most x coordinate.""" leftmost = self._get_left() diff = amount - leftmost self.center_x += diff left = property(_get_left, _set_left) def _get_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) def _set_right(self, amount: float): """The right most x coordinate.""" rightmost = self._get_right() diff = rightmost - amount self.center_x -= diff right = property(_get_right, _set_right)
[docs] def set_texture(self, texture_no: int): """ Sets texture by texture id. Should be renamed because it takes a number rather than a texture, but keeping this for backwards compatibility. """ if self.textures[texture_no] == self._texture: return texture = self.textures[texture_no] self.clear_spatial_hashes() self._point_list_cache = None self._texture = texture self._width = texture.width * self.scale self._height = texture.height * self.scale self.add_spatial_hashes() for sprite_list in self.sprite_lists: sprite_list.update_texture(self)
def _set_texture2(self, texture: Texture): """Sets texture by texture id. Should be renamed but keeping this for backwards compatibility.""" if texture == self._texture: return if not isinstance(texture, Texture): raise ValueError(f"The 'texture' parameter must be an instance of arcade.Texture." f"It is an instance of '{type(texture)}'.") assert isinstance(texture, Texture) self.clear_spatial_hashes() self._point_list_cache = None self._texture = texture self._width = texture.width * self.scale self._height = texture.height * self.scale self.add_spatial_hashes() for sprite_list in self.sprite_lists: sprite_list.update_texture(self) def _get_texture(self): return self._texture texture = property(_get_texture, _set_texture2) def _get_texture_transform(self) -> Mat3: if self._texture_transform is None: self._texture_transform = Mat3() return self._texture_transform def _set_texture_transform(self, m: Mat3): self._texture_transform = m texture_transform = property(_get_texture_transform, _set_texture_transform) def _get_color(self) -> RGB: """ Return the RGB color associated with the sprite. """ return self._color def _set_color(self, color: Color): """ Set the current sprite color as a RGB value """ if color is None: raise ValueError("Color must be three or four ints from 0-255") if len(color) == 3: if ( self._color[0] == color[0] and self._color[1] == color[1] and self._color[2] == color[2] ): return elif len(color) == 4: color = cast(List, color) # Prevent typing error if ( self._color[0] == color[0] and self._color[1] == color[1] and self._color[2] == color[2] and self.alpha == color[3] ): return self.alpha = color[3] else: raise ValueError("Color must be three or four ints from 0-255") self._color = color[0], color[1], color[2] for sprite_list in self.sprite_lists: sprite_list.update_color(self) color = property(_get_color, _set_color) def _get_alpha(self) -> int: """ Return the alpha associated with the sprite. """ return self._alpha def _set_alpha(self, alpha: int): """ Set the current sprite color as a value """ if alpha < 0 or alpha > 255: raise ValueError( f"Invalid value for alpha. Must be 0 to 255, received {alpha}" ) self._alpha = int(alpha) for sprite_list in self.sprite_lists: sprite_list.update_color(self) alpha = property(_get_alpha, _set_alpha) @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._alpha > 0 @visible.setter def visible(self, value: bool): if value: self._alpha = 255 else: self._alpha = 0 for sprite_list in self.sprite_lists: sprite_list.update_color(self)
[docs] def register_sprite_list(self, new_list: "SpriteList"): """ Register this sprite as belonging to a list. We will automatically remove ourselves from the the list when kill() is called. """ self.sprite_lists.append(new_list)
[docs] def register_physics_engine(self, physics_engine): """Called by the Pymunk physics engine when this sprite is added to that physics engine. Lets the sprite know about the engine and remove itself if it gets deleted.""" 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 draw(self, *, filter=None, pixelated=None, blend_function=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() 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 = 1): """ 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 """ if self._hit_box_shape is None: # Adjust the hitbox point_list = [] for point in self.hit_box: # Get a copy of the point point = [point[0], point[1]] # Scale the point if self.scale != 1: point[0] *= self.scale point[1] *= self.scale # Rotate the point (Don't, should already be rotated.) # if self.angle: # point = rotate_point(point[0], point[1], 0, 0, self.angle) point_list.append(point) shape = create_line_loop(point_list, color, line_thickness) self._hit_box_shape = ShapeElementList() self._hit_box_shape.append(shape) self._hit_box_shape.center_x = self.center_x self._hit_box_shape.center_y = self.center_y self._hit_box_shape.angle = self.angle self._hit_box_shape.draw()
# point_list = self.get_adjusted_hit_box() # draw_polygon_outline(point_list, color, line_thickness)
[docs] def update(self): """ 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): """ Update the sprite. Similar to update, but also takes a delta-time. """ pass
[docs] def update_animation(self, delta_time: float = 1 / 60): """ 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): """ 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): """ 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: """Check if current sprite is overlapping with any other sprite in a list :param SpriteList sprite_list: SpriteList to check against :return: SpriteList of all overlapping Sprites from the original SpriteList :rtype: SpriteList """ 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: str = None, scale: float = 1, image_x: float = 0, image_y: float = 0, image_width: float = 0, image_height: float = 0, center_x: float = 0, center_y: float = 0, _repeat_count_x=1, # Unused _repeat_count_y=1, # Unused ): 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): """ 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, image_x: float = 0, image_y: float = 0, center_x: float = 0, center_y: float = 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 = 0 self.last_texture_change_center_y = 0
[docs] def update_animation(self, delta_time: float = 1 / 60): """ 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): """ Given an animated gif, return a AnimatedTimeBasedSprite. Support for transparency in animated gifs in Python is lacking. There are a lot of older animated gifs that are saved weird. The end result is that the often the first frame of an animated gif is the only frame that we correctly get the transparency on. Until the Pillow library better handles this, loading animated gifs will be pretty buggy. """ 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(0, image_object.n_frames): image_object.seek(frame) frame_duration = image_object.info['duration'] print(frame_duration) image = image_object.convert("RGBA") texture = Texture(f"{resource_name}-{frame}", image) sprite.textures.append(texture) frame = AnimationKeyframe(0, frame_duration, texture) sprite.frames.append(frame) sprite.texture = sprite.textures[0] return sprite
[docs]class SpriteSolidColor(Sprite): """ This sprite is just a rectangular sprite of one solid color. No need to use an image file. :param int width: Width of the sprite :param int height: Height of the sprite :param Color color: Color of the sprite """ def __init__(self, width: int, height: int, color: Color): """ Create a solid-color rectangular sprite. """ super().__init__() cache_name = _build_cache_name("Solid", width, height, color[0], color[1], color[2]) # use existing texture if it exists if cache_name in load_texture.texture_cache: # type: ignore texture = load_texture.texture_cache[cache_name] # type: ignore # otherwise, generate a filler sprite and add it to the cache else: image = PIL.Image.new("RGBA", (width, height), color) texture = Texture(cache_name, image) load_texture.texture_cache[cache_name] = texture # type: ignore # apply chosen texture to the current sprite self.texture = texture self._points = texture.hit_box_points
[docs]class SpriteCircle(Sprite): """ This sprite is just an elliptical sprite of one solid color. No need to use an image file. :param float radius: Radius of the circle :param Color color: Color of the circle :param bool soft: If True, will add a alpha gradient """ def __init__(self, radius: int, color: Color, soft: bool = False): super().__init__() diameter = radius * 2 # determine the texture's cache name if soft: cache_name = _build_cache_name("circle_texture_soft", diameter, color[0], color[1], color[2]) else: cache_name = _build_cache_name("circle_texture", diameter, color[0], color[1], color[2], 255, 0) # use the named texture if it was already made if cache_name in load_texture.texture_cache: # type: ignore texture = load_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, color, name=cache_name) else: texture = make_circle_texture(diameter, color, name=cache_name) load_texture.texture_cache[cache_name] = texture # type: ignore # apply results to the new sprite self.texture = texture 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 """ distance = math.sqrt( (sprite1.center_x - sprite2.center_x) ** 2 + (sprite1.center_y - sprite2.center_y) ** 2 ) return distance