Mercurial > touhou
view pytouhou/game/game.py @ 89:1513f5626656
Fix attack flags implementation
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Sun, 04 Sep 2011 09:36:51 +0200 |
parents | fc0294c745b6 |
children | ac2e5e1c2c3c |
line wrap: on
line source
# -*- encoding: utf-8 -*- ## ## Copyright (C) 2011 Thibaut Girka <thib@sitedethib.com> ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published ## by the Free Software Foundation; version 3 only. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## from pytouhou.utils.random import Random class GameState(object): __slots__ = ('resources', 'players', 'rank', 'difficulty', 'frame', 'stage', 'boss', 'prng') def __init__(self, resources, players, stage, rank, difficulty): self.resources = resources self.stage = stage self.players = players self.rank = rank self.difficulty = difficulty self.boss = None self.prng = Random() self.frame = 0 class Resources(object): def __init__(self, etama_anm_wrappers, players_anm_wrappers, effects_anm_wrapper): self.etama_anm_wrappers = etama_anm_wrappers self.players_anm_wrappers = players_anm_wrappers self.effects_anm_wrapper = effects_anm_wrapper