Mercurial > touhou
view pytouhou/vm/__init__.py @ 685:11d7e4d6947a
ecl_vm: nearing the complete list
author | Gauvain "GovanifY" Roussel-Tarbouriech <gauvain@govanify.com> |
---|---|
date | Fri, 16 Aug 2019 23:27:09 +0200 |
parents | d1f0bb0b7a17 |
children |
line wrap: on
line source
from .anmrunner import ANMRunner from .msgrunner import MSGRunner from .eclrunner import ECLMainRunner class PythonMainRunner: def __init__(self, main, game): self.main = main self.game = game def run_iter(self): self.main(self.game) class EnemyRunner: def __init__(self, enemy, game, sub): self.enemy = enemy self.game = game self.sub = sub def run_iteration(self): self.sub(self.enemy, self.game) def spawn_enemy(game, sub, x=0., y=0., life=1, item=-1, score=0, mirrored=False, random=False): instr_type = (2 if mirrored else 0) | (4 if random else 0) enemy = game.new_enemy((x, y, 0.), life, instr_type, item, score) enemy.process = EnemyRunner(enemy, game, sub) enemy.process.run_iteration()