习题41

# -*- coding:utf-8 -*-
from sys import exit
from random import randint


wendangzidian = {'1':"""The Gothos of PLANET Percal #25 have invaded your ship and destoryed.
Your entire crew. You are the last surviving member and your last.
mission is to get the neutron destruct bomb from the Weapons Armory.
put it in the bridge, and blow the shipi up afer getting into an.
escape pod.
\n
You're running down the central corridor to the Weapons Armory when
a Gothon jumps out ,red scaly skin ,dark grimy teeth ,and evil clown costume."
flowing around his hate filled body,He's blocking the door to the 
Armory and about to pull a weapon to blast you.""",
'2':'''"Quick on the draw you yank out your blaster and fire it at the Gothon."
His clown costume is flowing and moving around his body, which throws."
off your aim. Your laser hits his costume but misses him entirely. This"
completely ruins his brand new costume his mother bought him ,which"
makes him fly into an insane rage and blast you repeatedly in the face until."
you are dead. then he eats you."''',
'3': ''' "Like a world class boxer you dodge ,weave,slip and slide right."
         "as the gothon's blaster cranks a laser past your head."
        "In the middle of your artful dodge your  fott slips and you "
        "bang your head on the metal wall and pass out."
        "You wake up shortly after only to die as the Gothon stomps on"
        "your head and eats you ."''',
'4':'''"Lucky for you they made you learn Gothon insluts in the academy."
         "You tell the one Gothon joke you know:"
         "Lbhe zbgure vf fb sng, jura fur fvgf nebhaq gur ubhfr,fur fvgf nebhaq gur ubhfr."
         "The Gothon stops,tries not to laugh,then busts out laughing and can't move."
         "While he's laughing you run up and shoot him square in the head"
         "putting him down,then jump through the Weapon Armory door."
        ''',
'5':''' "You do a dive roll into the Weapon Armory, crouch and scan the room"
     "for more Gothons that might be hiding. It's dead qutet,too quiet."
     "You stad up and run to the far side of the room and find the"
     "neutron bomb in its container.There's a keypad lock on the box."
     "and you need the code to get the bomb out .If you get the code"
     "wrong 10 times then the lock closes forever and you can't "
     "get the bomb. The code is 3 digits."''',
'6':'''"The container clicks open and the seal breaks, letting gas out."
         "You grab the neutron bomb and run as fast as you can to the "
         "bridge where you must plae it in the right spot."''',
'7':''' "The lock buzzes one last time and then you hear a sickening."
         "melting sound as the mechanism is fused together."
         "You decide to site there ,and finally the Gothons blow up the "
         "ship from their ship and you die "''',
'8':'''"You burst onto the Bridge with the neutron destruct bomb."
    "under your arm and surprise 5 Gothons who are trying to"
    "take control of the ship.Each of them has an even uglier"
    "clown costume than the last.They haven't pulled their"
    "weapons out yet,as they see the active bomb under your"
    "arm and don't want to set it off."''',
'9': '''"You rush through the ship desperately trying to make it to"
     "the escape pod before the whole ship explodes. It seems like"
     "hardly any Gothons are on the ship, so your run is clear of"
     "interference.  You get to the chamber with the escape pods, and"
     "now need to pick one to take.  Some of them could be damaged"
     "but you don't have time to look.  There's 5 pods, which one"
     "do you take?"''',
'10':''' "In a panic you throw the bomb at the group of Gothons"
         "and make a leap for the door .Tight as you drop it a "
         "Gothon shoots you right in the back killing you."
         "As you die you see another Gothon frantically try to disarm"
         "the bomb. You die knowing they will probably blow up when"
         "it goes off."''',
'11':''' "You point your blaster at the bomb under your arm"
        "and the Gothons put their hands up and start to sweat."
        "You inch backward to the floor ,potinting your blaster at it."
        "and blast the lock so the Gothons can't get out."
        "Now that the bomb is placed you run to the escape pod to"
        "get off this tin can"''',
'12':''' "You point your blaster at the bomb under your arm"
        "and the Gothons put their hands up and start to sweat."
        "You inch backward to the floor ,potinting your blaster at it."
        "and blast the lock so the Gothons can't get out."
        "Now that the bomb is placed you run to the escape pod to"
        "get off this tin can"''',
'13':''' "You jump into pod %s and hit the eject button."% guess
         "The pod easily slides out into space heading to"
         "the planet below. As it flies to the planet, you look "
         "back and see your ship implode then explode like a"
         "bright star, taking out the Gothon ship at the same "
         "time ,You won!"'''
}
def death():
    quips = ["You died.You kinda suck at this.","Nice job,you died…jackass.",
              "Such a luser.","I have a small puppy that's better at this."]
    print quips[randint(0,len(quips)-1)]
    exit(1)
def central_corridor():
    print wendangzidian['1']
    action = raw_input(">")
    
    if action == "shoot!":
        print wendangzidian['2']
        return 'death'
    elif action == "dodge!":
        print wendangzidian['3']
        return 'death'
    elif action == "tell a joke":
        print wendangzidian['4']
        return 'laser_weapon_armory'
    else:
        print "DOES NOT COMPUTE!"
        return 'central_corridor'
def laser_weapon_armory():
    print wendangzidian['5']
    code = "%d%d%d"%(randint(1,9),randint(1,9),randint(1,9))
    guess = raw_input("[keypad]>")
    guesses = 0
    while guess !=code and guesses<10:
        print "BZZZEDDD!"
        guesses +=1
        guess = raw_input("keypad>")
    if guess == code:
        print wendangzidian['6']
        return "the_bridge"
    else :
        print wendangzidian['7']
        return 'death'
def the_bridge():
    print wendangzidian['8']
    action = raw_input(">")
    if action == "throw the bomb":
        print wendangzidian['10']
        return 'death'
    elif action == "slowly place the bomb":
        print wendangzidian['12']
        return 'escape_pod'
    else:
        print wendangzidian['13']
        print "DOES NOT COMPUTE!"
        return 'the_bridge'

def escape_pod():
    print wendangzidian['9']
    good_pod = randint(1,5)
    guess =raw_input("[pod #]>")
    
    if int(guess) != good_pod:
        
        exit(0)
rooms = {
    'death':death,
    'central_corridor':central_corridor,
    'laser_weapon_armory':laser_weapon_armory,
    'the_bridge':the_bridge,
    'escape_pod':escape_pod
}
#dingyi hanshu  next ='central_corridor'  room = rooms['central_corridor']=central_corridor,room()=central_corridor()
def runner(map,start):
    next = start
    
    while True:
        room = map[next]#room被赋值字典的值,也就是函数名。
        print "\n--------"
        next = room()#运行函数,并且得到函数的返回值,返回的是字典的key,继续下一轮循环。
#run runner hanshu
runner(rooms,'central_corridor')

 

posted @ 2016-06-18 14:50  你好呀。  阅读(187)  评论(0编辑  收藏  举报