view pytouhou/game/player.pxd @ 792:11bc22bad1bf

python: Replace the image crate with png We weren’t using any of its features anyway, so the png crate is exactly what we need, without the many heavy dependencies of image. https://github.com/image-rs/image-png/pull/670 will eventually make it even faster to build.
author Link Mauve <linkmauve@linkmauve.fr>
date Sat, 17 Jan 2026 22:22:25 +0100
parents a6af3ff86612
children
line wrap: on
line source

from pytouhou.game.element cimport Element
from pytouhou.game.game cimport Game

cdef class Player(Element):
    cdef public Game _game
    cdef public long death_time
    cdef public bint touchable, focused
    cdef public long character, score, effective_score, lives, bombs, power
    cdef public long graze, points

    cdef long number
    cdef long invulnerable_time, power_bonus, continues, continues_used, miss,
    cdef long bombs_used

    cdef object anm
    cdef tuple speeds
    cdef long fire_time, bomb_time, direction

    cdef bint set_anim(self, index) except True
    cdef bint play_sound(self, str name) except True
    cdef bint collide(self) except True
    cdef bint fire(self) except True
    cpdef update(self, long keystate)