view pytouhou/game/game.pxd @ 468:feecdb4a8928

Add “except *” to cdef void functions, and type some more.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Thu, 12 Sep 2013 15:47:08 +0200
parents b16d34fca5b4
children 06f0eeb519bb
line wrap: on
line source

from pytouhou.game.effect cimport Effect
from pytouhou.game.player cimport Player

cdef class Game:
    cdef public long width, height, nb_bullets_max, stage, rank, difficulty, difficulty_counter, difficulty_min, difficulty_max, frame, last_keystate
    cdef public list bullet_types, laser_types, item_types, players, enemies, effects, bullets, lasers, cancelled_bullets, players_bullets, players_lasers, items, labels, faces, texts, hints, bonus_list
    cdef public object interface, boss, msg_runner, prng, sfx_player
    cdef public double continues
    cdef public Effect spellcard_effect
    cdef public tuple spellcard
    cdef public bint time_stop, msg_wait
    cdef public unsigned short deaths_count, next_bonus

    cdef list msg_sprites(self)
    cdef list lasers_sprites(self)
    cdef void modify_difficulty(self, long diff) except *
    cpdef enable_spellcard_effect(self)
    cpdef disable_spellcard_effect(self)
    cdef void set_player_bomb(self) except *
    cdef void unset_player_bomb(self) except *
    cpdef drop_bonus(self, double x, double y, long _type, end_pos=*)
    cdef void autocollect(self, Player player) except *
    cdef void cancel_bullets(self) except *
    cpdef change_bullets_into_star_items(self)
    cpdef change_bullets_into_bonus(self)
    cpdef kill_enemies(self)
    cpdef new_effect(self, pos, long anim, anm=*, long number=*)
    cpdef new_particle(self, pos, long anim, long amp, long number=*, bint reverse=*, long duration=*)
    cpdef new_enemy(self, pos, life, instr_type, bonus_dropped, die_score)
    cpdef new_msg(self, sub)
    cdef new_label(self, pos, str text)
    cpdef new_native_text(self, pos, text, align=*)
    cpdef new_hint(self, hint)
    cpdef new_face(self, side, effect)
    cpdef run_iter(self, long keystate)
    cdef void update_background(self) except *
    cdef void update_enemies(self) except *
    cdef void update_msg(self, long keystate) except *
    cdef void update_players(self, long keystate) except *
    cdef void update_effects(self) except *
    cdef void update_hints(self) except *
    cdef void update_faces(self) except *
    cdef void update_bullets(self) except *
    cpdef cleanup(self)