加载中...

习题 41: 来自 Percal 25 号行星的哥顿人(Gothons)


你在上一节中发现 Hash 的秘密功能了吗?你可以解释给自己吗?让我来给你解释一下,顺便和你自己的理解对比看有什么不同。这里是我们要讨论的程式码:

  1. cities[:find] = method(:find_city)
  2. puts cities[:find].call(cities, state)

你要记住一个函式也可以作为一个变量,为了要将一个程式码区段储存在一个变量里,我们创造了一个东西叫“proc”,proc 是 procedure 缩写。在这段程式码中,首先我们呼叫了 Ruby 内建的函式method,它会回传一个 proc 版的 find_city 函式。然后我们将之除存在一个 Hash 里:key 是 :find,value 是 cities。。这和我们将州和市关联起来的程式码做的事情一样,只不过在这个情况里是个 proc。

好了,所以一旦我们知道 find_city 是在Hash中 :find 的位置,这就意味着我们可以去呼叫它。第二行程式码可以分解成如下步骤:

  1. Ruby 读到了 cities,然后知道了它是一个 “Hash”。
  2. 然后看到了[:find],于是 Ruby 就从索引找到了 cities Hash 中对应的位置,并且获取了该位置的内容。
  3. [:find] 这个位置的内容是我们的函式 find_city,所以Ruby就知道了这里表示一个函式,于是当它碰到.call就开始了 proc呼叫。
  4. citiesstate 这两个参数将被传递到函式 find_city 中,然后这个函式就被运行了。
  5. find_city 接着从 cities 中寻找 states,并且回传它找到的内容,如果什么都没找到,就返回一个信息说它什么都没找到。
  6. Ruby 接受 find_city 传回的资讯,最后将该资讯赋值给一开始的 city_found 这个变量。

我再教你一个小技巧。如果你倒著阅读的话,程式码可能会变得更容易理解。让我们来试一下,一样是那行:

  1. state 和 city 是…
  2. 最为参数传递给…
  3. 一个 proc 位于…
  4. :find 然后寻找,目的地为…
  5. cities 这个 Hash…
  6. 最后印到萤幕上

还有一种方法读它,这回是“由里向外”。

  1. 找到表示式的中心位置,此次为[:find]
  2. 逆时针追溯,首先看到的是一个叫 cities的 Hash,这样就知道了 cities 中的 :find 元素。
  3. 上一步得到一个函式。继续逆时针寻找,看到的是参数。
  4. 参数传递给函式后,函式会传回一个值。然后再逆时针寻找。
  5. 最后,我们到了city_found =的赋值位置,并且得到了最终结果。

数十年的程式经验下来,我在读程式码的过程中已经用不到上面的三种方法了。我只要瞄一眼就能知道它的意思。甚至给我一整页的程式码,我也可以一眼瞄出里边的 bug 和错误。这样的技能是花了超乎常人的时间和精力才锻炼得来的。在磨练的过程中,我学会了下面三种读程式码的方法:

  1. 从前向后。
  2. 从后向前。
  3. 逆时针方向。

现在我们来写这次的练习,写完后再过一遍,这节习题其实挺有趣的。

程式码不少,不过还是从头写完吧。确认它能运行,然后玩一下看看。

  1. def prompt()
  2. print "> "
  3. end
  4. def death()
  5. quips = ["You died. You kinda suck at this.",
  6. "Nice job, you died ...jackass.",
  7. "Such a luser.",
  8. "I have a small puppy that's better at this."]
  9. puts quips[rand(quips.length())]
  10. Process.exit(1)
  11. end
  12. def central_corridor()
  13. puts "The Gothons of Planet Percal #25 have invaded your ship and destroyed"
  14. puts "your entire crew. You are the last surviving member and your last"
  15. puts "mission is to get the neutron destruct bomb from the Weapons Armory,"
  16. puts "put it in the bridge, and blow the ship up after getting into an "
  17. puts "escape pod."
  18. puts "\n"
  19. puts "You're running down the central corridor to the Weapons Armory when"
  20. puts "a Gothon jumps out, red scaly skin, dark grimy teeth, and evil clown costume"
  21. puts "flowing around his hate filled body. He's blocking the door to the"
  22. puts "Armory and about to pull a weapon to blast you."
  23. prompt()
  24. action = gets.chomp()
  25. if action == "shoot!"
  26. puts "Quick on the draw you yank out your blaster and fire it at the Gothon."
  27. puts "His clown costume is flowing and moving around his body, which throws"
  28. puts "off your aim. Your laser hits his costume but misses him entirely. This"
  29. puts "completely ruins his brand new costume his mother bought him, which"
  30. puts "makes him fly into an insane rage and blast you repeatedly in the face until"
  31. puts "you are dead. Then he eats you."
  32. return :death
  33. elsif action == "dodge!"
  34. puts "Like a world class boxer you dodge, weave, slip and slide right"
  35. puts "as the Gothon's blaster cranks a laser past your head."
  36. puts "In the middle of your artful dodge your foot slips and you"
  37. puts "bang your head on the metal wall and pass out."
  38. puts "You wake up shortly after only to die as the Gothon stomps on"
  39. puts "your head and eats you."
  40. return :death
  41. elsif action == "tell a joke"
  42. puts "Lucky for you they made you learn Gothon insults in the academy."
  43. puts "You tell the one Gothon joke you know:"
  44. puts "Lbhe zbgure vf fb sng, jura fur fvgf nebhaq gur ubhfr, fur fvgf nebhaq gur ubhfr."
  45. puts "The Gothon stops, tries not to laugh, then busts out laughing and can't move."
  46. puts "While he's laughing you run up and shoot him square in the head"
  47. puts "putting him down, then jump through the Weapon Armory door."
  48. return :laser_weapon_armory
  49. else
  50. puts "DOES NOT COMPUTE!"
  51. return :central_corridor
  52. end
  53. end
  54. def laser_weapon_armory()
  55. puts "You do a dive roll into the Weapon Armory, crouch and scan the room"
  56. puts "for more Gothons that might be hiding. It's dead quiet, too quiet."
  57. puts "You stand up and run to the far side of the room and find the"
  58. puts "neutron bomb in its container. There's a keypad lock on the box"
  59. puts "and you need the code to get the bomb out. If you get the code"
  60. puts "wrong 10 times then the lock closes forever and you can't"
  61. puts "get the bomb. The code is 3 digits."
  62. code = "%s%s%s" % [rand(9)+1, rand(9)+1, rand(9)+1]
  63. print "[keypad]> "
  64. guess = gets.chomp()
  65. guesses = 0
  66. while guess != code and guesses < 10
  67. puts "BZZZZEDDD!"
  68. guesses += 1
  69. print "[keypad]> "
  70. guess = gets.chomp()
  71. end
  72. if guess == code
  73. puts "The container clicks open and the seal breaks, letting gas out."
  74. puts "You grab the neutron bomb and run as fast as you can to the"
  75. puts "bridge where you must place it in the right spot."
  76. return :the_bridge
  77. else
  78. puts "The lock buzzes one last time and then you hear a sickening"
  79. puts "melting sound as the mechanism is fused together."
  80. puts "You decide to sit there, and finally the Gothons blow up the"
  81. puts "ship from their ship and you die."
  82. return :death
  83. end
  84. end
  85. def the_bridge()
  86. puts "You burst onto the Bridge with the netron destruct bomb"
  87. puts "under your arm and surprise 5 Gothons who are trying to"
  88. puts "take control of the ship. Each of them has an even uglier"
  89. puts "clown costume than the last. They haven't pulled their"
  90. puts "weapons out yet, as they see the active bomb under your"
  91. puts "arm and don't want to set it off."
  92. prompt()
  93. action = gets.chomp()
  94. if action == "throw the bomb"
  95. puts "In a panic you throw the bomb at the group of Gothons"
  96. puts "and make a leap for the door. Right as you drop it a"
  97. puts "Gothon shoots you right in the back killing you."
  98. puts "As you die you see another Gothon frantically try to disarm"
  99. puts "the bomb. You die knowing they will probably blow up when"
  100. puts "it goes off."
  101. return :death
  102. elsif action == "slowly place the bomb"
  103. puts "You point your blaster at the bomb under your arm"
  104. puts "and the Gothons put their hands up and start to sweat."
  105. puts "You inch backward to the door, open it, and then carefully"
  106. puts "place the bomb on the floor, pointing your blaster at it."
  107. puts "You then jump back through the door, punch the close button"
  108. puts "and blast the lock so the Gothons can't get out."
  109. puts "Now that the bomb is placed you run to the escape pod to"
  110. puts "get off this tin can."
  111. return :escape_pod
  112. else
  113. puts "DOES NOT COMPUTE!"
  114. return :the_bridge
  115. end
  116. end
  117. def escape_pod()
  118. puts "You rush through the ship desperately trying to make it to"
  119. puts "the escape pod before the whole ship explodes. It seems like"
  120. puts "hardly any Gothons are on the ship, so your run is clear of"
  121. puts "interference. You get to the chamber with the escape pods, and"
  122. puts "now need to pick one to take. Some of them could be damaged"
  123. puts "but you don't have time to look. There's 5 pods, which one"
  124. puts "do you take?"
  125. good_pod = rand(5)+1
  126. print "[pod #]>"
  127. guess = gets.chomp()
  128. if guess.to_i != good_pod
  129. puts "You jump into pod %s and hit the eject button." % guess
  130. puts "The pod escapes out into the void of space, then"
  131. puts "implodes as the hull ruptures, crushing your body"
  132. puts "into jam jelly."
  133. return :death
  134. else
  135. puts "You jump into pod %s and hit the eject button." % guess
  136. puts "The pod easily slides out into space heading to"
  137. puts "the planet below. As it flies to the planet, you look"
  138. puts "back and see your ship implode then explode like a"
  139. puts "bright star, taking out the Gothon ship at the same"
  140. puts "time. You won!"
  141. Process.exit(0)
  142. end
  143. end
  144. ROOMS = {
  145. :death => method(:death),
  146. :central_corridor => method(:central_corridor),
  147. :laser_weapon_armory => method(:laser_weapon_armory),
  148. :the_bridge => method(:the_bridge),
  149. :escape_pod => method(:escape_pod)
  150. }
  151. def runner(map, start)
  152. next_one = start
  153. while true
  154. room = map[next_one]
  155. puts "\n--------"
  156. next_one = room.call()
  157. end
  158. end
  159. runner(ROOMS, :central_corridor)

你应该看到的结果

  1. $ ruby ex41.rb
  2. --------
  3. The Gothons of Planet Percal #25 have invaded your ship and destroyed
  4. your entire crew. You are the last surviving member and your last
  5. mission is to get the neutron destruct bomb from the Weapons Armory,
  6. put it in the bridge, and blow the ship up after getting into an
  7. escape pod.
  8. You're running down the central corridor to the Weapons Armory when
  9. a Gothon jumps out, red scaly skin, dark grimy teeth, and evil clown costume
  10. flowing around his hate filled body. He's blocking the door to the
  11. Armory and about to pull a weapon to blast you.
  12. > dodge!
  13. Like a world class boxer you dodge, weave, slip and slide right
  14. as the Gothon's blaster cranks a laser past your head.
  15. In the middle of your artful dodge your foot slips and you
  16. bang your head on the metal wall and pass out.
  17. You wake up shortly after only to die as the Gothon stomps on
  18. your head and eats you.
  19. --------
  20. Such a luser.
  21. $ ruby ex41.rb
  22. --------
  23. The Gothons of Planet Percal #25 have invaded your ship and destroyed
  24. your entire crew. You are the last surviving member and your last
  25. mission is to get the neutron destruct bomb from the Weapons Armory,
  26. put it in the bridge, and blow the ship up after getting into an
  27. escape pod.
  28. You're running down the central corridor to the Weapons Armory when
  29. a Gothon jumps out, red scaly skin, dark grimy teeth, and evil clown costume
  30. flowing around his hate filled body. He's blocking the door to the
  31. Armory and about to pull a weapon to blast you.
  32. > tell a joke
  33. Lucky for you they made you learn Gothon insults in the academy.
  34. You tell the one Gothon joke you know:
  35. Lbhe zbgure vf fb sng, jura fur fvgf nebhaq gur ubhfr, fur fvgf nebhaq gur ubhfr.
  36. The Gothon stops, tries not to laugh, then busts out laughing and can't move.
  37. While he's laughing you run up and shoot him square in the head
  38. putting him down, then jump through the Weapon Armory door.
  39. --------
  40. You do a dive roll into the Weapon Armory, crouch and scan the room
  41. for more Gothons that might be hiding. It's dead quiet, too quiet.
  42. You stand up and run to the far side of the room and find the
  43. neutron bomb in its container. There's a keypad lock on the box
  44. and you need the code to get the bomb out. If you get the code
  45. wrong 10 times then the lock closes forever and you can't
  46. get the bomb. The code is 3 digits.
  47. [keypad]> 123
  48. BZZZZEDDD!
  49. [keypad]> 234
  50. BZZZZEDDD!
  51. [keypad]> 345
  52. BZZZZEDDD!
  53. [keypad]> 456
  54. BZZZZEDDD!
  55. [keypad]> 567
  56. BZZZZEDDD!
  57. [keypad]> 678
  58. BZZZZEDDD!
  59. [keypad]> 789
  60. BZZZZEDDD!
  61. [keypad]> 384
  62. BZZZZEDDD!
  63. [keypad]> 764
  64. BZZZZEDDD!
  65. [keypad]> 354
  66. BZZZZEDDD!
  67. [keypad]> 263
  68. The lock buzzes one last time and then you hear a sickening
  69. melting sound as the mechanism is fused together.
  70. You decide to sit there, and finally the Gothons blow up the
  71. ship from their ship and you die.
  72. --------
  73. You died. You kinda suck at this.

加分习题

  1. 解释一下返回至下一个房间的运作原理。 2.建立更多的房间,让游戏规模变大。
  2. 除了让每个函式印出自己以外,试试学习一下“文件注解(doc comments)”。
  3. 看看你能不能将房间描述写成文件注解,然后修改运行它的程式码,让它把文档注解打印出来。
  4. 一旦你用了文件注解作为房间描述,你还需要让这个函式打出用户提示吗?试着让运行函数的代码打出用户提示来,然后将用户输入传递到各个函式。你的函式应该只是一些 if 语句组合,将结果印出来,并且返回下一个房间。
  5. 这其实是一个小版本的“有限状态机(finite state machine)”,找资料阅读了解一下,虽然你可能看不懂,但还是找来看看吧

还没有评论.