Esempio n. 1
0
File: first.py Progetto: wlaub/pybld
class Door(game.Item):
    name = "door"

    strings = {"desc": "It is a mural of a {}", "desc2": "It is a normal {}"}

    defLoc = "First Room"

    addVerbs = ["open"]

    defSprite = bldgfx.Sprite('img/froom/door.bmi', 2, 40)

    def look(self, cmd):
        state = game.g.getFlag("text pars'r", 0)
        if state == 0:
            game.say(self.getString("desc"))
        else:
            game.say(self.getString("desc2"))

    @standing
    def open(self, cmd):
        state = game.g.getFlag("text pars'r", 0)

        if state == 0:
            return game.fail("It's not a real door.")

        game.say(
            "You open the door and walk through into the next room. There's no going back now. Hope you didn't miss anything important!"
        )
        game.wait()
        game.g.moveRoom('Second Room')

        return True
Esempio n. 2
0
File: _init.py Progetto: wlaub/pybld
class Room(game.Room):
    name = "_init"

    strings = {"desc": "", "closer": ""}

    sitable = False

    defSprite = bldgfx.Sprite('img/start/title.bmi',
                              0,
                              0,
                              -1,
                              callback=bldgfx.oneshot)

    addVerbs = ["start"]

    fancyVerbs = {}

    defFlags = {}

    def start(self, cmd):
        game.g.moveRoom('First Room')

    def _onOtherEnter(self):
        game.g.banVerbs(['save', 'restart', 'score', 'hint', 'help'])
        #TODO Wait for sprite to finish animating?
        time.sleep(7)
        game.say("START  LOAD  EXIT")
        game.g.showsaves("saves")
Esempio n. 3
0
File: first.py Progetto: wlaub/pybld
class Bean(game.Item):
    name = "bean"
    unique = False
    takeable = True
    dropable = True
    visible = True
    strings = {
        "desc": "It is a {}",
        "ground": "There are {qty} {}(s) on the ground.",
        "take": "You take a {}.",
        "drop": "You drop a {}."
    }

    defSprite = bldgfx.Sprite('img/froom/beanmd.bmi', 10, 15)

    defLoc = 'First Room'
    defQty = 5

    def _checkSprite(self):
        if self.qty < 3:
            self.sprite.name = 'img/froom/beansm.bmi'
        elif self.qty < 6:
            self.sprite.name = 'img/froom/beanmd.bmi'
        else:
            self.sprite.name = 'img/froom/beanlg.bmi'
Esempio n. 4
0
class Chair(game.Item):
    name = "chair"

    takeable =  False
    dropable =  False
    visible  =  True 
    hidden   =  False 
    spawn    =  True  
    obscure  =  False 
    unique   =  True  
    useable  =  False 

    strings =   { "desc": "The {} pulses with DARK MAGYX."
                , "descSafe": "The {} looks safe now."
                , "ground": "There is a {} in the middle of the room."
                , "take": "You'd better not get too close"
                , "takeSafe": "You can't pick it up. It's too unwieldy."
                }

    addVerbs = []
    
    fancyVerbs ={
                }

    defFlags =  { "safe": False
                }    

    defSprite = bldgfx.Sprite('img/sroom/chair.bmi', 0, 23)

    defLoc = 'Second Room'
Esempio n. 5
0
class Darkmagyx(game.Item):
    name = "dark magyx"

    takeable =  False #Default
    dropable =  False #Default
    visible  =  False  #Default
    hidden   =  False  #Default
    spawn    =  True   #Default
    obscure  =  False  #Default
    unique   =  True   #Default
    useable  =  False  #Default

    strings =   { "desc": "The {} pulse and writhe upon the CHAIR."
                , "ground": ""
                , "take": ""
                , "drop": ""
                , "dispel": "D'SPEL with what?"
                }

    addVerbs = []
    
    fancyVerbs ={ "d'spel": 'dispel'
                }

    defFlags =  {
                }    

    defSprite = bldgfx.Sprite('img/sroom/magyx1.bmi', 0, 19)

    defLoc = 'Second Room'
    defQty = 1

    def dispel(self, cmd):
        return game.fail(self.getString('dispel'))
Esempio n. 6
0
class Room(game.Room):
    name = "gameover"

    strings = {"desc": "You have died. Your score was:", "closer": ""}

    sitable = False  #Default

    defSprite = bldgfx.Sprite('img/go/go1.bmi', 0, 0, -1, bldgfx.oneshot)

    addVerbs = []
    rmVerbs = []

    fancyVerbs = {}

    defFlags = {}

    def _onOtherEnter(self):
        game.lf(6)
        self.look("look")
        game.g.score("score")
Esempio n. 7
0
File: first.py Progetto: wlaub/pybld
class Room(game.Room):
    name = "First Room"

    strings = {
        "desc":
        "You are sitting in a room, different from the one I am in. There is a door to the RIGHT. <flag=`black wind|escape=1` `Black wind escaped` `Black wind did not escaped`>.",
        "closer":
        "You take a closer look. The walls and floor are made out of MATERIALS.ACOUSTIC.002C.COLORS.00.NAME MATERIALS.ACOUSTICS.002C.NAME. The drop ceiling is made of white high-grade asbestos tile. There is a single square flourescent light in the middle of the ceiling. You stare hard at the ceiling for a few minutes to make sure it's not coated in shifting iridescent glyphs. It is not.",
        "no beans": "There are no bean(s) left in the alpha bnple.",
        "beanup": "You increment the beancount.",
        "beandown": "You decrement the beancount.",
        "sit": "You sit down on the floor."
    }

    sitable = True

    defSprite = bldgfx.Sprite('img/froom/froom.bmi', 0, 0, -1)

    addVerbs = ["beanup", "beandown"]

    def _onFirstEnter(self):
        game.g.setFlag('sit', True)
        self._onOtherEnter()

    def beanup(self, cmd):
        if not 'bean' in self.items.keys():
            return game.fail(self.getString("no beans"))
        game.say(self.getString("beanup"))
        self.items['bean'].qty += 1
        return True

    def beandown(self, cmd):
        if not 'bean' in self.items.keys():
            return game.fail(self.getString("no beans"))
        game.say(self.getString("beandown"))
        self.items['bean'].qty -= 1
        return True
Esempio n. 8
0
File: first.py Progetto: wlaub/pybld
class dldo(game.Item):
    takeable = True
    dropable = True
    visible = True
    name = "d'ldo"
    defLoc = "First Room"

    strings = {
        "desc":
        "The blocky machine shimmers with r'cane en'rgy. There are four rows of keys bearing stranges glyphs you do not recognize. A scroll of parchment protrudes from the top.",
        "descBrk": "It is a broken {}. It's not much use for anyone.",
        "ground": "There is a {} on the ground.",
        "take": "You pick up the {}.",
        "drop": "You drop the {}.",
        "cmd": "slay",
        "useTry":
        "You press a few keys at random and then press the large one on the right.",
        "use":
        "The {} shackes and clatters for a few moments as text appears on the parchment:\n",
        "useBrk": "But nothing happens."
    }

    defPos = 'left'

    addVerbs = ["use"]

    defSprite = bldgfx.Sprite('img/froom/dldo.bmi', 8, 3)

    def __init__(self):
        game.Item.__init__(self)
        self.broken = False

    def look(self, cmd):
        if self.broken:
            lookstr = self.getString('descBrk')
        else:
            lookstr = self.getString('desc')
        game.say(lookstr)
        return True

    def drop(self, cmd):
        if not game.Item.drop(self, cmd):
            return False
        if not self.broken:
            game.say("It breaks.")
            self.sprite.change('img/froom/dldobrk.bmi')
            self.broken = True
            game.g.giveAchievement("dldo")
        return True

    @inv
    def use(self, cmd):
        game.say(self.strings['useTry'])
        if not self.broken:
            game.say(self.strings['use'])
        time.sleep(1)
        if self.broken:
            game.say(self.strings['useBrk'])
        else:
            try:
                fakeCmd = self.strings['cmd']
                v = "defy"
                getattr(game.g, v)(cmd)
            except Exception as e:
                eList = traceback.format_stack()
                eList = eList[:-2]
                eList.extend(traceback.format_tb(sys.exc_info()[2]))
                eList.extend(
                    traceback.format_exception_only(sys.exc_info()[0],
                                                    sys.exc_info()[1]))

                eStr = "Traceback (most recent call last):\n"
                eStr += "".join(eList)
                eStr = eStr[:-1]
                game.say(eStr)
            return True
        return False
Esempio n. 9
0
File: first.py Progetto: wlaub/pybld
class TextParser(game.Item):
    takeable = True
    dropable = False
    visible = True
    name = "text pars'r"
    defLoc = "First Room"

    strings = {
        "desc":
        "It looks like a normal {}",
        "ground":
        "There is a {} on the ground.",
        "take":
        "You pick up the {}. a BLACK WIND blows through you.",
        "drop":
        "You cannot.",
        "use":
        "The TEXT PARS'R throbs gently in your hands. It seems pleased.",
        "useHint":
        "The TEXT PARS'R throbs gently in your hands. It seems pleased, but it would like a little more attention.",
        "usePrimed":
        "The TEXT PARS'R pulse violenty in your hands. It seems XCIT'D."
    }

    addVerbs = ["use", "caress", "eat"]

    defFlags = {"tries": 0, "speed": 0}

    defSprite = bldgfx.Sprite('img/froom/txt.bmi', 9, 23)

    def eat(self, cmd):
        game.say("Ew, no.")

    speedStr = [
        "you can't help it.", "you open your mouth as wide as you can.",
        "and force the text parser inside.",
        "your throat convulses as you try to resist.",
        "but you swallow anyway.",
        "it doesn't seem to fit but you keep trying.",
        "eventually it slides down your throat.",
        "you can feel it throbbing inside you."
    ]

    def take(self, cmd):
        if game.Item.take(self, cmd):
            wind = game.g.items['black wind']
            game.g.setAlarm(wind.timeout, wind._tick)
            blkTime = game.g.getFlag("turns")
            game.g.items['black wind'].setFlag("time", blkTime)
            return True
        return False

    @inv
    def use(self, cmd):

        tries = self.getFlag("tries")
        speed = self.getFlag("speed")

        if speed == 1:
            game.say(self.getString("usePrimed"))
            return False
        elif speed > 1 and speed < len(self.speedStr) + 2:
            game.g.forceCmd("use text pars'r")
            self.setFlag("speed", speed + 1)
            game.say(self.speedStr[speed - 2])
        elif speed == len(self.speedStr) + 2:
            game.say("You obtained the text pars'r! HP/MP restored.\n")
            time.sleep(1)
            game.sayLine("But you're still ")
            game.spell("h u n g r y", .25)
            game.say("...")
            game.g.flags["text pars'r"] = 1
            self._move("trash")
        else:
            if tries > 0:
                game.say(self.getString('useHint'))
            else:
                game.say(self.getString('use'))
            self.setFlag("tries", tries + 1)
            return False
        return True

    @inv
    def caress(self, cmd):

        speed = self.getFlag("speed")
        if speed < 2:
            game.say("It begins to beat faster.")
            self.setFlag("speed", speed + 1)
            if speed == 1:
                game.say("It is ready.")
            return True
        if speed == 2:
            game.say("It is ready.")
            return False
        return False