rbot 0.9.10 → 0.9.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (706) hide show
  1. data/AUTHORS +22 -4
  2. data/COPYING +5 -18
  3. data/ChangeLog +396 -0
  4. data/README +23 -25
  5. data/REQUIREMENTS +58 -12
  6. data/Rakefile +215 -0
  7. data/bin/rbot +47 -25
  8. data/bin/rbot-remote +76 -0
  9. data/data/rbot/languages/french.lang +5 -5
  10. data/data/rbot/languages/german.lang +4 -4
  11. data/data/rbot/languages/italian.lang +53 -0
  12. data/data/rbot/languages/japanese.lang +43 -0
  13. data/data/rbot/languages/russian.lang +60 -60
  14. data/data/rbot/languages/traditional_chinese.lang +75 -0
  15. data/data/rbot/plugins/alias.rb +192 -0
  16. data/data/rbot/plugins/autoop.rb +74 -37
  17. data/data/rbot/plugins/autorejoin.rb +15 -5
  18. data/data/rbot/plugins/bans.rb +454 -150
  19. data/data/rbot/plugins/bash.rb +173 -31
  20. data/data/rbot/plugins/botsnack.rb +37 -0
  21. data/data/rbot/plugins/cal.rb +11 -2
  22. data/data/rbot/plugins/chanserv.rb +132 -0
  23. data/data/rbot/plugins/chucknorris.rb +2 -2
  24. data/data/rbot/plugins/chucknorris.yml.gz +0 -0
  25. data/data/rbot/plugins/debugger.rb +136 -0
  26. data/data/rbot/plugins/deepthoughts.rb +89 -95
  27. data/data/rbot/plugins/delicious.rb +109 -0
  28. data/data/rbot/plugins/dice.rb +77 -25
  29. data/data/rbot/plugins/dict.rb +243 -0
  30. data/data/rbot/plugins/dictclient.rb +211 -0
  31. data/data/rbot/plugins/digg.rb +2 -2
  32. data/data/rbot/plugins/excuse.rb +4 -4
  33. data/data/rbot/plugins/factoids.rb +506 -0
  34. data/data/rbot/plugins/figlet.rb +127 -18
  35. data/data/rbot/plugins/fish.rb +93 -33
  36. data/data/rbot/plugins/forecast.rb +40 -27
  37. data/data/rbot/plugins/fortune.rb +86 -11
  38. data/data/rbot/plugins/freshmeat.rb +46 -12
  39. data/data/rbot/plugins/games/azgame.rb +565 -0
  40. data/data/rbot/plugins/games/quiz.rb +961 -0
  41. data/data/rbot/plugins/games/roshambo.rb +62 -0
  42. data/data/rbot/plugins/{roulette.rb → games/roulette.rb} +58 -8
  43. data/data/rbot/plugins/games/shiritori.rb +485 -0
  44. data/data/rbot/plugins/games/uno.rb +1205 -0
  45. data/data/rbot/plugins/games/wheelfortune.rb +615 -0
  46. data/data/rbot/plugins/grouphug.rb +76 -22
  47. data/data/rbot/plugins/hl2.rb +97 -0
  48. data/data/rbot/plugins/host.rb +10 -1
  49. data/data/rbot/plugins/httpd.rb.disabled +1 -0
  50. data/data/rbot/plugins/imdb.rb +511 -47
  51. data/data/rbot/plugins/insult.rb +32 -37
  52. data/data/rbot/plugins/iplookup.rb +224 -224
  53. data/data/rbot/plugins/karma.rb +45 -21
  54. data/data/rbot/plugins/keywords.rb +258 -160
  55. data/data/rbot/plugins/lart.rb +126 -95
  56. data/data/rbot/plugins/lastfm.rb +421 -12
  57. data/data/rbot/plugins/linkbot.rb +75 -0
  58. data/data/rbot/plugins/markov.rb +103 -46
  59. data/data/rbot/plugins/math.rb +6 -5
  60. data/data/rbot/plugins/modes.rb +114 -0
  61. data/data/rbot/plugins/nickrecover.rb +97 -0
  62. data/data/rbot/plugins/nickserv.rb +111 -48
  63. data/data/rbot/plugins/nslookup.rb +15 -19
  64. data/data/rbot/plugins/plugin.header +11 -0
  65. data/data/rbot/plugins/quakeauth.rb +74 -11
  66. data/data/rbot/plugins/quotes.rb +189 -233
  67. data/data/rbot/plugins/reaction.rb +415 -0
  68. data/data/rbot/plugins/remind.rb +11 -15
  69. data/data/rbot/plugins/remotectl.rb +29 -0
  70. data/data/rbot/plugins/ri.rb +74 -0
  71. data/data/rbot/plugins/rot13.rb +16 -1
  72. data/data/rbot/plugins/rss.rb +1219 -585
  73. data/data/rbot/plugins/salut.rb +226 -0
  74. data/data/rbot/plugins/script.rb +184 -0
  75. data/data/rbot/plugins/search.rb +233 -0
  76. data/data/rbot/plugins/seen.rb +44 -40
  77. data/data/rbot/plugins/shortenurls.rb +93 -0
  78. data/data/rbot/plugins/slashdot.rb +49 -11
  79. data/data/rbot/plugins/spell.rb +37 -27
  80. data/data/rbot/plugins/theyfightcrime.rb +36 -39
  81. data/data/rbot/plugins/threat.rb +25 -22
  82. data/data/rbot/plugins/time.rb +135 -0
  83. data/data/rbot/plugins/topic.rb +107 -50
  84. data/data/rbot/plugins/translator.rb +360 -0
  85. data/data/rbot/plugins/tube.rb +28 -40
  86. data/data/rbot/plugins/twitter.rb +187 -0
  87. data/data/rbot/plugins/urban.rb +62 -53
  88. data/data/rbot/plugins/url.rb +193 -409
  89. data/data/rbot/plugins/usermodes.rb +26 -0
  90. data/data/rbot/plugins/wall.rb +60 -0
  91. data/data/rbot/plugins/weather.rb +254 -598
  92. data/data/rbot/plugins/wow.rb +41 -37
  93. data/data/rbot/plugins/wserver.rb +17 -25
  94. data/data/rbot/plugins/youtube.rb +237 -0
  95. data/data/rbot/templates/lart/{larts → larts-english} +0 -0
  96. data/data/rbot/templates/lart/larts-italian +25 -0
  97. data/data/rbot/templates/lart/larts-japanese +10 -0
  98. data/data/rbot/templates/lart/{praises → praises-english} +0 -0
  99. data/data/rbot/templates/lart/praises-italian +4 -0
  100. data/data/rbot/templates/lart/praises-japanese +3 -0
  101. data/data/rbot/templates/quiz/win_messages +11 -0
  102. data/data/rbot/templates/salut/salut-english +40 -0
  103. data/data/rbot/templates/salut/salut-french +29 -0
  104. data/data/rbot/templates/salut/salut-italian +51 -0
  105. data/data/rbot/templates/salut/salut-japanese +31 -0
  106. data/lib/rbot/botuser.rb +940 -0
  107. data/lib/rbot/config-compat.rb +23 -0
  108. data/lib/rbot/config.rb +211 -276
  109. data/lib/rbot/core/auth.rb +1063 -0
  110. data/lib/rbot/core/basics.rb +214 -0
  111. data/lib/rbot/core/config.rb +330 -0
  112. data/lib/rbot/core/filters_ui.rb +64 -0
  113. data/lib/rbot/core/irclog.rb +292 -0
  114. data/lib/rbot/core/remote.rb +401 -0
  115. data/lib/rbot/core/unicode.rb +91 -0
  116. data/lib/rbot/core/userdata.rb +200 -0
  117. data/lib/rbot/core/utils/extends.rb +444 -0
  118. data/lib/rbot/core/utils/filters.rb +154 -0
  119. data/lib/rbot/core/utils/httputil.rb +689 -0
  120. data/lib/rbot/core/utils/utils.rb +717 -0
  121. data/lib/rbot/dbhash.rb +30 -9
  122. data/lib/rbot/irc.rb +1966 -0
  123. data/lib/rbot/ircbot.rb +816 -675
  124. data/lib/rbot/ircsocket.rb +246 -232
  125. data/lib/rbot/language.rb +86 -8
  126. data/lib/rbot/load-gettext.rb +154 -0
  127. data/lib/rbot/maskdb.rb +162 -0
  128. data/lib/rbot/message.rb +392 -65
  129. data/lib/rbot/messagemapper.rb +438 -94
  130. data/lib/rbot/pkgconfig.rb +6 -0
  131. data/lib/rbot/plugins.rb +713 -172
  132. data/lib/rbot/post-config.rb +1 -0
  133. data/lib/rbot/rbotconfig.rb +31 -12
  134. data/lib/rbot/registry.rb +79 -48
  135. data/lib/rbot/rfc2812.rb +927 -519
  136. data/lib/rbot/timer.rb +232 -167
  137. data/po/en_US/rbot-alias.po +82 -0
  138. data/po/en_US/rbot-autoop.po +0 -0
  139. data/po/en_US/rbot-autorejoin.po +0 -0
  140. data/po/en_US/rbot-azgame.po +200 -0
  141. data/po/en_US/rbot-bans.po +0 -0
  142. data/po/en_US/rbot-bash.po +0 -0
  143. data/po/en_US/rbot-botsnack.po +0 -0
  144. data/po/en_US/rbot-cal.po +3 -0
  145. data/po/en_US/rbot-chanserv.po +0 -0
  146. data/po/en_US/rbot-chucknorris.po +0 -0
  147. data/po/en_US/rbot-debugger.po +0 -0
  148. data/po/en_US/rbot-deepthoughts.po +0 -0
  149. data/po/en_US/rbot-delicious.po +0 -0
  150. data/po/en_US/rbot-dice.po +0 -0
  151. data/po/en_US/rbot-dict.po +0 -0
  152. data/po/en_US/rbot-dictclient.po +124 -0
  153. data/po/en_US/rbot-digg.po +0 -0
  154. data/po/en_US/rbot-eightball.po +0 -0
  155. data/po/en_US/rbot-excuse.po +0 -0
  156. data/po/en_US/rbot-factoids.po +107 -0
  157. data/po/en_US/rbot-figlet.po +36 -0
  158. data/po/en_US/rbot-fish.po +0 -0
  159. data/po/en_US/rbot-forecast.po +0 -0
  160. data/po/en_US/rbot-fortune.po +0 -0
  161. data/po/en_US/rbot-freshmeat.po +0 -0
  162. data/po/en_US/rbot-grouphug.po +18 -0
  163. data/po/en_US/rbot-hl2.po +0 -0
  164. data/po/en_US/rbot-host.po +3 -0
  165. data/po/en_US/rbot-imdb.po +0 -0
  166. data/po/en_US/rbot-insult.po +0 -0
  167. data/po/en_US/rbot-iplookup.po +0 -0
  168. data/po/en_US/rbot-karma.po +0 -0
  169. data/po/en_US/rbot-keywords.po +24 -0
  170. data/po/en_US/rbot-lart.po +0 -0
  171. data/po/en_US/rbot-lastfm.po +172 -0
  172. data/po/en_US/rbot-linkbot.po +0 -0
  173. data/po/en_US/rbot-markov.po +20 -0
  174. data/po/en_US/rbot-math.po +0 -0
  175. data/po/en_US/rbot-modes.po +0 -0
  176. data/po/en_US/rbot-nickrecover.po +40 -0
  177. data/po/en_US/rbot-nickserv.po +104 -0
  178. data/po/en_US/rbot-nslookup.po +0 -0
  179. data/po/en_US/rbot-quakeauth.po +0 -0
  180. data/po/en_US/rbot-quiz.po +0 -0
  181. data/po/en_US/rbot-quotes.po +108 -0
  182. data/po/en_US/rbot-reaction.po +0 -0
  183. data/po/en_US/rbot-remind.po +0 -0
  184. data/po/en_US/rbot-remotectl.po +0 -0
  185. data/po/en_US/rbot-ri.po +0 -0
  186. data/po/en_US/rbot-roshambo.po +0 -0
  187. data/po/en_US/rbot-rot13.po +0 -0
  188. data/po/en_US/rbot-roulette.po +0 -0
  189. data/po/en_US/rbot-rss.po +20 -0
  190. data/po/en_US/rbot-salut.po +0 -0
  191. data/po/en_US/rbot-script.po +0 -0
  192. data/po/en_US/rbot-search.po +0 -0
  193. data/po/en_US/rbot-seen.po +0 -0
  194. data/po/en_US/rbot-shiritori.po +113 -0
  195. data/po/en_US/rbot-shortenurls.po +0 -0
  196. data/po/en_US/rbot-slashdot.po +0 -0
  197. data/po/en_US/rbot-spell.po +54 -0
  198. data/po/en_US/rbot-theyfightcrime.po +0 -0
  199. data/po/en_US/rbot-threat.po +0 -0
  200. data/po/en_US/rbot-time.po +0 -0
  201. data/po/en_US/rbot-topic.po +0 -0
  202. data/po/en_US/rbot-translator.po +77 -0
  203. data/po/en_US/rbot-tube.po +0 -0
  204. data/po/en_US/rbot-twitter.po +24 -0
  205. data/po/en_US/rbot-uno.po +512 -0
  206. data/po/en_US/rbot-urban.po +0 -0
  207. data/po/en_US/rbot-url.po +0 -0
  208. data/po/en_US/rbot-usermodes.po +0 -0
  209. data/po/en_US/rbot-wall.po +33 -0
  210. data/po/en_US/rbot-weather.po +0 -0
  211. data/po/en_US/rbot-wheelfortune.po +205 -0
  212. data/po/en_US/rbot-wow.po +0 -0
  213. data/po/en_US/rbot-wserver.po +0 -0
  214. data/po/en_US/rbot-youtube.po +58 -0
  215. data/po/en_US/rbot.po +1097 -0
  216. data/po/fr/rbot-alias.po +97 -0
  217. data/po/fr/rbot-autoop.po +0 -0
  218. data/po/fr/rbot-autorejoin.po +0 -0
  219. data/po/fr/rbot-azgame.po +204 -0
  220. data/po/fr/rbot-bans.po +0 -0
  221. data/po/fr/rbot-bash.po +0 -0
  222. data/po/fr/rbot-botsnack.po +0 -0
  223. data/po/fr/rbot-cal.po +3 -0
  224. data/po/fr/rbot-chanserv.po +0 -0
  225. data/po/fr/rbot-chucknorris.po +0 -0
  226. data/po/fr/rbot-debugger.po +0 -0
  227. data/po/fr/rbot-deepthoughts.po +0 -0
  228. data/po/fr/rbot-delicious.po +0 -0
  229. data/po/fr/rbot-dice.po +0 -0
  230. data/po/fr/rbot-dict.po +0 -0
  231. data/po/fr/rbot-dictclient.po +134 -0
  232. data/po/fr/rbot-digg.po +0 -0
  233. data/po/fr/rbot-eightball.po +0 -0
  234. data/po/fr/rbot-excuse.po +0 -0
  235. data/po/fr/rbot-factoids.po +111 -0
  236. data/po/fr/rbot-figlet.po +37 -0
  237. data/po/fr/rbot-fish.po +0 -0
  238. data/po/fr/rbot-forecast.po +0 -0
  239. data/po/fr/rbot-fortune.po +0 -0
  240. data/po/fr/rbot-freshmeat.po +0 -0
  241. data/po/fr/rbot-grouphug.po +18 -0
  242. data/po/fr/rbot-hl2.po +0 -0
  243. data/po/fr/rbot-host.po +3 -0
  244. data/po/fr/rbot-imdb.po +0 -0
  245. data/po/fr/rbot-insult.po +0 -0
  246. data/po/fr/rbot-iplookup.po +0 -0
  247. data/po/fr/rbot-karma.po +0 -0
  248. data/po/fr/rbot-keywords.po +24 -0
  249. data/po/fr/rbot-lart.po +0 -0
  250. data/po/fr/rbot-lastfm.po +172 -0
  251. data/po/fr/rbot-linkbot.po +0 -0
  252. data/po/fr/rbot-markov.po +20 -0
  253. data/po/fr/rbot-math.po +0 -0
  254. data/po/fr/rbot-modes.po +0 -0
  255. data/po/fr/rbot-nickrecover.po +36 -0
  256. data/po/fr/rbot-nickserv.po +116 -0
  257. data/po/fr/rbot-nslookup.po +0 -0
  258. data/po/fr/rbot-quakeauth.po +0 -0
  259. data/po/fr/rbot-quiz.po +0 -0
  260. data/po/fr/rbot-quotes.po +138 -0
  261. data/po/fr/rbot-reaction.po +0 -0
  262. data/po/fr/rbot-remind.po +0 -0
  263. data/po/fr/rbot-remotectl.po +0 -0
  264. data/po/fr/rbot-ri.po +0 -0
  265. data/po/fr/rbot-roshambo.po +0 -0
  266. data/po/fr/rbot-rot13.po +0 -0
  267. data/po/fr/rbot-roulette.po +0 -0
  268. data/po/fr/rbot-rss.po +20 -0
  269. data/po/fr/rbot-salut.po +0 -0
  270. data/po/fr/rbot-script.po +0 -0
  271. data/po/fr/rbot-search.po +0 -0
  272. data/po/fr/rbot-seen.po +0 -0
  273. data/po/fr/rbot-shiritori.po +119 -0
  274. data/po/fr/rbot-shortenurls.po +0 -0
  275. data/po/fr/rbot-slashdot.po +0 -0
  276. data/po/fr/rbot-spell.po +56 -0
  277. data/po/fr/rbot-theyfightcrime.po +0 -0
  278. data/po/fr/rbot-threat.po +0 -0
  279. data/po/fr/rbot-time.po +0 -0
  280. data/po/fr/rbot-topic.po +0 -0
  281. data/po/fr/rbot-translator.po +90 -0
  282. data/po/fr/rbot-tube.po +0 -0
  283. data/po/fr/rbot-twitter.po +24 -0
  284. data/po/fr/rbot-uno.po +521 -0
  285. data/po/fr/rbot-urban.po +0 -0
  286. data/po/fr/rbot-url.po +0 -0
  287. data/po/fr/rbot-usermodes.po +0 -0
  288. data/po/fr/rbot-wall.po +33 -0
  289. data/po/fr/rbot-weather.po +0 -0
  290. data/po/fr/rbot-wheelfortune.po +255 -0
  291. data/po/fr/rbot-wow.po +0 -0
  292. data/po/fr/rbot-wserver.po +0 -0
  293. data/po/fr/rbot-youtube.po +64 -0
  294. data/po/fr/rbot.po +1133 -0
  295. data/po/it/rbot-alias.po +82 -0
  296. data/po/it/rbot-autoop.po +0 -0
  297. data/po/it/rbot-autorejoin.po +0 -0
  298. data/po/it/rbot-azgame.po +186 -0
  299. data/po/it/rbot-bans.po +0 -0
  300. data/po/it/rbot-bash.po +0 -0
  301. data/po/it/rbot-botsnack.po +0 -0
  302. data/po/it/rbot-cal.po +3 -0
  303. data/po/it/rbot-chanserv.po +0 -0
  304. data/po/it/rbot-chucknorris.po +0 -0
  305. data/po/it/rbot-debugger.po +0 -0
  306. data/po/it/rbot-deepthoughts.po +0 -0
  307. data/po/it/rbot-delicious.po +0 -0
  308. data/po/it/rbot-dice.po +0 -0
  309. data/po/it/rbot-dict.po +0 -0
  310. data/po/it/rbot-dictclient.po +111 -0
  311. data/po/it/rbot-digg.po +0 -0
  312. data/po/it/rbot-eightball.po +0 -0
  313. data/po/it/rbot-excuse.po +0 -0
  314. data/po/it/rbot-factoids.po +110 -0
  315. data/po/it/rbot-figlet.po +36 -0
  316. data/po/it/rbot-fish.po +0 -0
  317. data/po/it/rbot-forecast.po +0 -0
  318. data/po/it/rbot-fortune.po +0 -0
  319. data/po/it/rbot-freshmeat.po +0 -0
  320. data/po/it/rbot-grouphug.po +18 -0
  321. data/po/it/rbot-hl2.po +0 -0
  322. data/po/it/rbot-host.po +3 -0
  323. data/po/it/rbot-imdb.po +0 -0
  324. data/po/it/rbot-insult.po +0 -0
  325. data/po/it/rbot-iplookup.po +0 -0
  326. data/po/it/rbot-karma.po +0 -0
  327. data/po/it/rbot-keywords.po +24 -0
  328. data/po/it/rbot-lart.po +0 -0
  329. data/po/it/rbot-lastfm.po +172 -0
  330. data/po/it/rbot-linkbot.po +0 -0
  331. data/po/it/rbot-markov.po +20 -0
  332. data/po/it/rbot-math.po +0 -0
  333. data/po/it/rbot-modes.po +0 -0
  334. data/po/it/rbot-nickrecover.po +36 -0
  335. data/po/it/rbot-nickserv.po +104 -0
  336. data/po/it/rbot-nslookup.po +0 -0
  337. data/po/it/rbot-quakeauth.po +0 -0
  338. data/po/it/rbot-quiz.po +0 -0
  339. data/po/it/rbot-quotes.po +108 -0
  340. data/po/it/rbot-reaction.po +0 -0
  341. data/po/it/rbot-remind.po +0 -0
  342. data/po/it/rbot-remotectl.po +0 -0
  343. data/po/it/rbot-ri.po +0 -0
  344. data/po/it/rbot-roshambo.po +0 -0
  345. data/po/it/rbot-rot13.po +0 -0
  346. data/po/it/rbot-roulette.po +0 -0
  347. data/po/it/rbot-rss.po +20 -0
  348. data/po/it/rbot-salut.po +0 -0
  349. data/po/it/rbot-script.po +0 -0
  350. data/po/it/rbot-search.po +0 -0
  351. data/po/it/rbot-seen.po +0 -0
  352. data/po/it/rbot-shiritori.po +102 -0
  353. data/po/it/rbot-shortenurls.po +0 -0
  354. data/po/it/rbot-slashdot.po +0 -0
  355. data/po/it/rbot-spell.po +54 -0
  356. data/po/it/rbot-theyfightcrime.po +0 -0
  357. data/po/it/rbot-threat.po +0 -0
  358. data/po/it/rbot-time.po +0 -0
  359. data/po/it/rbot-topic.po +0 -0
  360. data/po/it/rbot-translator.po +77 -0
  361. data/po/it/rbot-tube.po +0 -0
  362. data/po/it/rbot-twitter.po +24 -0
  363. data/po/it/rbot-uno.po +564 -0
  364. data/po/it/rbot-urban.po +0 -0
  365. data/po/it/rbot-url.po +0 -0
  366. data/po/it/rbot-usermodes.po +0 -0
  367. data/po/it/rbot-wall.po +33 -0
  368. data/po/it/rbot-weather.po +0 -0
  369. data/po/it/rbot-wheelfortune.po +251 -0
  370. data/po/it/rbot-wow.po +0 -0
  371. data/po/it/rbot-wserver.po +0 -0
  372. data/po/it/rbot-youtube.po +64 -0
  373. data/po/it/rbot.po +1127 -0
  374. data/po/ja/rbot-alias.po +82 -0
  375. data/po/ja/rbot-autoop.po +0 -0
  376. data/po/ja/rbot-autorejoin.po +0 -0
  377. data/po/ja/rbot-azgame.po +194 -0
  378. data/po/ja/rbot-bans.po +0 -0
  379. data/po/ja/rbot-bash.po +0 -0
  380. data/po/ja/rbot-botsnack.po +0 -0
  381. data/po/ja/rbot-cal.po +3 -0
  382. data/po/ja/rbot-chanserv.po +0 -0
  383. data/po/ja/rbot-chucknorris.po +0 -0
  384. data/po/ja/rbot-debugger.po +0 -0
  385. data/po/ja/rbot-deepthoughts.po +0 -0
  386. data/po/ja/rbot-delicious.po +0 -0
  387. data/po/ja/rbot-dice.po +0 -0
  388. data/po/ja/rbot-dict.po +0 -0
  389. data/po/ja/rbot-dictclient.po +111 -0
  390. data/po/ja/rbot-digg.po +0 -0
  391. data/po/ja/rbot-eightball.po +0 -0
  392. data/po/ja/rbot-excuse.po +0 -0
  393. data/po/ja/rbot-factoids.po +107 -0
  394. data/po/ja/rbot-figlet.po +36 -0
  395. data/po/ja/rbot-fish.po +0 -0
  396. data/po/ja/rbot-forecast.po +0 -0
  397. data/po/ja/rbot-fortune.po +0 -0
  398. data/po/ja/rbot-freshmeat.po +0 -0
  399. data/po/ja/rbot-grouphug.po +18 -0
  400. data/po/ja/rbot-hl2.po +0 -0
  401. data/po/ja/rbot-host.po +3 -0
  402. data/po/ja/rbot-imdb.po +0 -0
  403. data/po/ja/rbot-insult.po +0 -0
  404. data/po/ja/rbot-iplookup.po +0 -0
  405. data/po/ja/rbot-karma.po +0 -0
  406. data/po/ja/rbot-keywords.po +24 -0
  407. data/po/ja/rbot-lart.po +0 -0
  408. data/po/ja/rbot-lastfm.po +172 -0
  409. data/po/ja/rbot-linkbot.po +0 -0
  410. data/po/ja/rbot-markov.po +20 -0
  411. data/po/ja/rbot-math.po +0 -0
  412. data/po/ja/rbot-modes.po +0 -0
  413. data/po/ja/rbot-nickrecover.po +36 -0
  414. data/po/ja/rbot-nickserv.po +104 -0
  415. data/po/ja/rbot-nslookup.po +0 -0
  416. data/po/ja/rbot-quakeauth.po +0 -0
  417. data/po/ja/rbot-quiz.po +0 -0
  418. data/po/ja/rbot-quotes.po +108 -0
  419. data/po/ja/rbot-reaction.po +0 -0
  420. data/po/ja/rbot-remind.po +0 -0
  421. data/po/ja/rbot-remotectl.po +0 -0
  422. data/po/ja/rbot-ri.po +0 -0
  423. data/po/ja/rbot-roshambo.po +0 -0
  424. data/po/ja/rbot-rot13.po +0 -0
  425. data/po/ja/rbot-roulette.po +0 -0
  426. data/po/ja/rbot-rss.po +20 -0
  427. data/po/ja/rbot-salut.po +0 -0
  428. data/po/ja/rbot-script.po +0 -0
  429. data/po/ja/rbot-search.po +0 -0
  430. data/po/ja/rbot-seen.po +0 -0
  431. data/po/ja/rbot-shiritori.po +115 -0
  432. data/po/ja/rbot-shortenurls.po +0 -0
  433. data/po/ja/rbot-slashdot.po +0 -0
  434. data/po/ja/rbot-spell.po +54 -0
  435. data/po/ja/rbot-theyfightcrime.po +0 -0
  436. data/po/ja/rbot-threat.po +0 -0
  437. data/po/ja/rbot-time.po +0 -0
  438. data/po/ja/rbot-topic.po +0 -0
  439. data/po/ja/rbot-translator.po +77 -0
  440. data/po/ja/rbot-tube.po +0 -0
  441. data/po/ja/rbot-twitter.po +24 -0
  442. data/po/ja/rbot-uno.po +512 -0
  443. data/po/ja/rbot-urban.po +0 -0
  444. data/po/ja/rbot-url.po +0 -0
  445. data/po/ja/rbot-usermodes.po +0 -0
  446. data/po/ja/rbot-wall.po +33 -0
  447. data/po/ja/rbot-weather.po +0 -0
  448. data/po/ja/rbot-wheelfortune.po +205 -0
  449. data/po/ja/rbot-wow.po +0 -0
  450. data/po/ja/rbot-wserver.po +0 -0
  451. data/po/ja/rbot-youtube.po +58 -0
  452. data/po/ja/rbot.po +999 -0
  453. data/po/rbot-alias.pot +83 -0
  454. data/po/rbot-autoop.pot +0 -0
  455. data/po/rbot-autorejoin.pot +0 -0
  456. data/po/rbot-azgame.pot +187 -0
  457. data/po/rbot-bans.pot +0 -0
  458. data/po/rbot-bash.pot +0 -0
  459. data/po/rbot-botsnack.pot +0 -0
  460. data/po/rbot-cal.pot +21 -0
  461. data/po/rbot-chanserv.pot +0 -0
  462. data/po/rbot-chucknorris.pot +0 -0
  463. data/po/rbot-debugger.pot +0 -0
  464. data/po/rbot-deepthoughts.pot +0 -0
  465. data/po/rbot-delicious.pot +0 -0
  466. data/po/rbot-dice.pot +0 -0
  467. data/po/rbot-dict.pot +0 -0
  468. data/po/rbot-dictclient.pot +112 -0
  469. data/po/rbot-digg.pot +0 -0
  470. data/po/rbot-eightball.pot +0 -0
  471. data/po/rbot-excuse.pot +0 -0
  472. data/po/rbot-factoids.pot +108 -0
  473. data/po/rbot-figlet.pot +37 -0
  474. data/po/rbot-fish.pot +0 -0
  475. data/po/rbot-forecast.pot +0 -0
  476. data/po/rbot-fortune.pot +0 -0
  477. data/po/rbot-freshmeat.pot +0 -0
  478. data/po/rbot-grouphug.pot +36 -0
  479. data/po/rbot-hl2.pot +0 -0
  480. data/po/rbot-host.pot +21 -0
  481. data/po/rbot-imdb.pot +0 -0
  482. data/po/rbot-insult.pot +0 -0
  483. data/po/rbot-iplookup.pot +0 -0
  484. data/po/rbot-karma.pot +0 -0
  485. data/po/rbot-keywords.pot +25 -0
  486. data/po/rbot-lart.pot +0 -0
  487. data/po/rbot-lastfm.pot +190 -0
  488. data/po/rbot-linkbot.pot +0 -0
  489. data/po/rbot-markov.pot +21 -0
  490. data/po/rbot-math.pot +0 -0
  491. data/po/rbot-modes.pot +0 -0
  492. data/po/rbot-nickrecover.pot +37 -0
  493. data/po/rbot-nickserv.pot +105 -0
  494. data/po/rbot-nslookup.pot +0 -0
  495. data/po/rbot-quakeauth.pot +0 -0
  496. data/po/rbot-quiz.pot +0 -0
  497. data/po/rbot-quotes.pot +109 -0
  498. data/po/rbot-reaction.pot +0 -0
  499. data/po/rbot-remind.pot +0 -0
  500. data/po/rbot-remotectl.pot +0 -0
  501. data/po/rbot-ri.pot +0 -0
  502. data/po/rbot-roshambo.pot +0 -0
  503. data/po/rbot-rot13.pot +0 -0
  504. data/po/rbot-roulette.pot +0 -0
  505. data/po/rbot-rss.pot +21 -0
  506. data/po/rbot-salut.pot +0 -0
  507. data/po/rbot-script.pot +0 -0
  508. data/po/rbot-search.pot +0 -0
  509. data/po/rbot-seen.pot +0 -0
  510. data/po/rbot-shiritori.pot +103 -0
  511. data/po/rbot-shortenurls.pot +0 -0
  512. data/po/rbot-slashdot.pot +0 -0
  513. data/po/rbot-spell.pot +55 -0
  514. data/po/rbot-theyfightcrime.pot +0 -0
  515. data/po/rbot-threat.pot +0 -0
  516. data/po/rbot-time.pot +0 -0
  517. data/po/rbot-topic.pot +0 -0
  518. data/po/rbot-translator.pot +78 -0
  519. data/po/rbot-tube.pot +0 -0
  520. data/po/rbot-twitter.pot +25 -0
  521. data/po/rbot-uno.pot +513 -0
  522. data/po/rbot-urban.pot +0 -0
  523. data/po/rbot-url.pot +0 -0
  524. data/po/rbot-usermodes.pot +0 -0
  525. data/po/rbot-wall.pot +33 -0
  526. data/po/rbot-weather.pot +0 -0
  527. data/po/rbot-wheelfortune.pot +206 -0
  528. data/po/rbot-wow.pot +0 -0
  529. data/po/rbot-wserver.pot +0 -0
  530. data/po/rbot-youtube.pot +59 -0
  531. data/po/rbot.pot +1004 -0
  532. data/po/zh_CN/rbot-alias.po +82 -0
  533. data/po/zh_CN/rbot-autoop.po +0 -0
  534. data/po/zh_CN/rbot-autorejoin.po +0 -0
  535. data/po/zh_CN/rbot-azgame.po +186 -0
  536. data/po/zh_CN/rbot-bans.po +0 -0
  537. data/po/zh_CN/rbot-bash.po +0 -0
  538. data/po/zh_CN/rbot-botsnack.po +0 -0
  539. data/po/zh_CN/rbot-cal.po +3 -0
  540. data/po/zh_CN/rbot-chanserv.po +0 -0
  541. data/po/zh_CN/rbot-chucknorris.po +0 -0
  542. data/po/zh_CN/rbot-debugger.po +0 -0
  543. data/po/zh_CN/rbot-deepthoughts.po +0 -0
  544. data/po/zh_CN/rbot-delicious.po +0 -0
  545. data/po/zh_CN/rbot-dice.po +0 -0
  546. data/po/zh_CN/rbot-dict.po +0 -0
  547. data/po/zh_CN/rbot-dictclient.po +111 -0
  548. data/po/zh_CN/rbot-digg.po +0 -0
  549. data/po/zh_CN/rbot-eightball.po +0 -0
  550. data/po/zh_CN/rbot-excuse.po +0 -0
  551. data/po/zh_CN/rbot-factoids.po +107 -0
  552. data/po/zh_CN/rbot-figlet.po +36 -0
  553. data/po/zh_CN/rbot-fish.po +0 -0
  554. data/po/zh_CN/rbot-forecast.po +0 -0
  555. data/po/zh_CN/rbot-fortune.po +0 -0
  556. data/po/zh_CN/rbot-freshmeat.po +0 -0
  557. data/po/zh_CN/rbot-grouphug.po +18 -0
  558. data/po/zh_CN/rbot-hl2.po +0 -0
  559. data/po/zh_CN/rbot-host.po +3 -0
  560. data/po/zh_CN/rbot-imdb.po +0 -0
  561. data/po/zh_CN/rbot-insult.po +0 -0
  562. data/po/zh_CN/rbot-iplookup.po +0 -0
  563. data/po/zh_CN/rbot-karma.po +0 -0
  564. data/po/zh_CN/rbot-keywords.po +24 -0
  565. data/po/zh_CN/rbot-lart.po +0 -0
  566. data/po/zh_CN/rbot-lastfm.po +172 -0
  567. data/po/zh_CN/rbot-linkbot.po +0 -0
  568. data/po/zh_CN/rbot-markov.po +20 -0
  569. data/po/zh_CN/rbot-math.po +0 -0
  570. data/po/zh_CN/rbot-modes.po +0 -0
  571. data/po/zh_CN/rbot-nickrecover.po +36 -0
  572. data/po/zh_CN/rbot-nickserv.po +104 -0
  573. data/po/zh_CN/rbot-nslookup.po +0 -0
  574. data/po/zh_CN/rbot-quakeauth.po +0 -0
  575. data/po/zh_CN/rbot-quiz.po +0 -0
  576. data/po/zh_CN/rbot-quotes.po +108 -0
  577. data/po/zh_CN/rbot-reaction.po +0 -0
  578. data/po/zh_CN/rbot-remind.po +0 -0
  579. data/po/zh_CN/rbot-remotectl.po +0 -0
  580. data/po/zh_CN/rbot-ri.po +0 -0
  581. data/po/zh_CN/rbot-roshambo.po +0 -0
  582. data/po/zh_CN/rbot-rot13.po +0 -0
  583. data/po/zh_CN/rbot-roulette.po +0 -0
  584. data/po/zh_CN/rbot-rss.po +20 -0
  585. data/po/zh_CN/rbot-salut.po +0 -0
  586. data/po/zh_CN/rbot-script.po +0 -0
  587. data/po/zh_CN/rbot-search.po +0 -0
  588. data/po/zh_CN/rbot-seen.po +0 -0
  589. data/po/zh_CN/rbot-shiritori.po +102 -0
  590. data/po/zh_CN/rbot-shortenurls.po +0 -0
  591. data/po/zh_CN/rbot-slashdot.po +0 -0
  592. data/po/zh_CN/rbot-spell.po +54 -0
  593. data/po/zh_CN/rbot-theyfightcrime.po +0 -0
  594. data/po/zh_CN/rbot-threat.po +0 -0
  595. data/po/zh_CN/rbot-time.po +0 -0
  596. data/po/zh_CN/rbot-topic.po +0 -0
  597. data/po/zh_CN/rbot-translator.po +77 -0
  598. data/po/zh_CN/rbot-tube.po +0 -0
  599. data/po/zh_CN/rbot-twitter.po +24 -0
  600. data/po/zh_CN/rbot-uno.po +512 -0
  601. data/po/zh_CN/rbot-urban.po +0 -0
  602. data/po/zh_CN/rbot-url.po +0 -0
  603. data/po/zh_CN/rbot-usermodes.po +0 -0
  604. data/po/zh_CN/rbot-wall.po +33 -0
  605. data/po/zh_CN/rbot-weather.po +0 -0
  606. data/po/zh_CN/rbot-wheelfortune.po +205 -0
  607. data/po/zh_CN/rbot-wow.po +0 -0
  608. data/po/zh_CN/rbot-wserver.po +0 -0
  609. data/po/zh_CN/rbot-youtube.po +58 -0
  610. data/po/zh_CN/rbot.po +1006 -0
  611. data/po/zh_TW/rbot-alias.po +82 -0
  612. data/po/zh_TW/rbot-autoop.po +0 -0
  613. data/po/zh_TW/rbot-autorejoin.po +0 -0
  614. data/po/zh_TW/rbot-azgame.po +186 -0
  615. data/po/zh_TW/rbot-bans.po +0 -0
  616. data/po/zh_TW/rbot-bash.po +0 -0
  617. data/po/zh_TW/rbot-botsnack.po +0 -0
  618. data/po/zh_TW/rbot-cal.po +3 -0
  619. data/po/zh_TW/rbot-chanserv.po +0 -0
  620. data/po/zh_TW/rbot-chucknorris.po +0 -0
  621. data/po/zh_TW/rbot-debugger.po +0 -0
  622. data/po/zh_TW/rbot-deepthoughts.po +0 -0
  623. data/po/zh_TW/rbot-delicious.po +0 -0
  624. data/po/zh_TW/rbot-dice.po +0 -0
  625. data/po/zh_TW/rbot-dict.po +0 -0
  626. data/po/zh_TW/rbot-dictclient.po +111 -0
  627. data/po/zh_TW/rbot-digg.po +0 -0
  628. data/po/zh_TW/rbot-eightball.po +0 -0
  629. data/po/zh_TW/rbot-excuse.po +0 -0
  630. data/po/zh_TW/rbot-factoids.po +107 -0
  631. data/po/zh_TW/rbot-figlet.po +36 -0
  632. data/po/zh_TW/rbot-fish.po +0 -0
  633. data/po/zh_TW/rbot-forecast.po +0 -0
  634. data/po/zh_TW/rbot-fortune.po +0 -0
  635. data/po/zh_TW/rbot-freshmeat.po +0 -0
  636. data/po/zh_TW/rbot-grouphug.po +18 -0
  637. data/po/zh_TW/rbot-hl2.po +0 -0
  638. data/po/zh_TW/rbot-host.po +3 -0
  639. data/po/zh_TW/rbot-imdb.po +0 -0
  640. data/po/zh_TW/rbot-insult.po +0 -0
  641. data/po/zh_TW/rbot-iplookup.po +0 -0
  642. data/po/zh_TW/rbot-karma.po +0 -0
  643. data/po/zh_TW/rbot-keywords.po +24 -0
  644. data/po/zh_TW/rbot-lart.po +0 -0
  645. data/po/zh_TW/rbot-lastfm.po +172 -0
  646. data/po/zh_TW/rbot-linkbot.po +0 -0
  647. data/po/zh_TW/rbot-markov.po +20 -0
  648. data/po/zh_TW/rbot-math.po +0 -0
  649. data/po/zh_TW/rbot-modes.po +0 -0
  650. data/po/zh_TW/rbot-nickrecover.po +36 -0
  651. data/po/zh_TW/rbot-nickserv.po +104 -0
  652. data/po/zh_TW/rbot-nslookup.po +0 -0
  653. data/po/zh_TW/rbot-quakeauth.po +0 -0
  654. data/po/zh_TW/rbot-quiz.po +0 -0
  655. data/po/zh_TW/rbot-quotes.po +108 -0
  656. data/po/zh_TW/rbot-reaction.po +0 -0
  657. data/po/zh_TW/rbot-remind.po +0 -0
  658. data/po/zh_TW/rbot-remotectl.po +0 -0
  659. data/po/zh_TW/rbot-ri.po +0 -0
  660. data/po/zh_TW/rbot-roshambo.po +0 -0
  661. data/po/zh_TW/rbot-rot13.po +0 -0
  662. data/po/zh_TW/rbot-roulette.po +0 -0
  663. data/po/zh_TW/rbot-rss.po +20 -0
  664. data/po/zh_TW/rbot-salut.po +0 -0
  665. data/po/zh_TW/rbot-script.po +0 -0
  666. data/po/zh_TW/rbot-search.po +0 -0
  667. data/po/zh_TW/rbot-seen.po +0 -0
  668. data/po/zh_TW/rbot-shiritori.po +102 -0
  669. data/po/zh_TW/rbot-shortenurls.po +0 -0
  670. data/po/zh_TW/rbot-slashdot.po +0 -0
  671. data/po/zh_TW/rbot-spell.po +54 -0
  672. data/po/zh_TW/rbot-theyfightcrime.po +0 -0
  673. data/po/zh_TW/rbot-threat.po +0 -0
  674. data/po/zh_TW/rbot-time.po +0 -0
  675. data/po/zh_TW/rbot-topic.po +0 -0
  676. data/po/zh_TW/rbot-translator.po +77 -0
  677. data/po/zh_TW/rbot-tube.po +0 -0
  678. data/po/zh_TW/rbot-twitter.po +24 -0
  679. data/po/zh_TW/rbot-uno.po +512 -0
  680. data/po/zh_TW/rbot-urban.po +0 -0
  681. data/po/zh_TW/rbot-url.po +0 -0
  682. data/po/zh_TW/rbot-usermodes.po +0 -0
  683. data/po/zh_TW/rbot-wall.po +33 -0
  684. data/po/zh_TW/rbot-weather.po +0 -0
  685. data/po/zh_TW/rbot-wheelfortune.po +205 -0
  686. data/po/zh_TW/rbot-wow.po +0 -0
  687. data/po/zh_TW/rbot-wserver.po +0 -0
  688. data/po/zh_TW/rbot-youtube.po +58 -0
  689. data/po/zh_TW/rbot.po +1034 -0
  690. data/setup.rb +800 -574
  691. metadata +723 -108
  692. data/data/rbot/contrib/plugins/figlet.rb +0 -20
  693. data/data/rbot/contrib/plugins/ri.rb +0 -83
  694. data/data/rbot/plugins/demauro.rb +0 -95
  695. data/data/rbot/plugins/google.rb +0 -53
  696. data/data/rbot/plugins/opme.rb +0 -19
  697. data/data/rbot/plugins/roshambo.rb +0 -54
  698. data/data/rbot/plugins/rubyurl.rb +0 -39
  699. data/data/rbot/plugins/tinyurl.rb +0 -39
  700. data/data/rbot/plugins/xmlrpc.rb.disabled +0 -52
  701. data/data/rbot/templates/levels.rbot +0 -32
  702. data/data/rbot/templates/users.rbot +0 -1
  703. data/lib/rbot/auth.rb +0 -314
  704. data/lib/rbot/channel.rb +0 -54
  705. data/lib/rbot/httputil.rb +0 -309
  706. data/lib/rbot/utils.rb +0 -83
@@ -0,0 +1,62 @@
1
+ #-- vim:sw=2:et
2
+ #++
3
+ #
4
+ # :title: Roshambo (rock-paper-scissors) plugin for rbot
5
+ #
6
+ # Author:: Hans Fugal
7
+ # Copyright:: (C) 2004 Hans Fugal
8
+ #
9
+ # Play the game of roshambo (rock-paper-scissors)
10
+ #
11
+ # Distributed under the same license as rbot itself
12
+
13
+ require 'time'
14
+
15
+ class RoshamboPlugin < Plugin
16
+
17
+ def initialize
18
+ super
19
+ @scoreboard = {}
20
+ @beats = { :rock => :scissors, :paper => :rock, :scissors => :paper}
21
+ @plays = @beats.keys
22
+ end
23
+
24
+ def help(plugin, topic="")
25
+ "roshambo <rock|paper|scissors> or rps <rock|paper|scissors> => play roshambo"
26
+ end
27
+
28
+ def rps(m, params)
29
+ # simultaneity
30
+ bot_choice = @plays.pick_one
31
+
32
+ # init scoreboard
33
+ if not @scoreboard.has_key?(m.sourcenick) or (Time.now - @scoreboard[m.sourcenick]['timestamp']) > 3600
34
+ @scoreboard[m.sourcenick] = { 'me' => 0, 'you' => 0, 'timestamp' => Time.now }
35
+ end
36
+ human_choice = params[:play].to_sym
37
+ s = score(bot_choice, human_choice)
38
+ @scoreboard[m.sourcenick]['timestamp'] = Time.now
39
+ myscore=@scoreboard[m.sourcenick]['me']
40
+ yourscore=@scoreboard[m.sourcenick]['you']
41
+ case s
42
+ when 1
43
+ yourscore = @scoreboard[m.sourcenick]['you'] += 1
44
+ m.reply "#{bot_choice}. You win. Score: me #{myscore} you #{yourscore}"
45
+ when 0
46
+ m.reply "#{bot_choice}. We tie. Score: me #{myscore} you #{yourscore}"
47
+ when -1
48
+ myscore = @scoreboard[m.sourcenick]['me'] += 1
49
+ m.reply "#{bot_choice}! I win! Score: me #{myscore} you #{yourscore}"
50
+ end
51
+ end
52
+
53
+ def score(bot_choice, human_choice)
54
+ return -1 if @beats[bot_choice] == human_choice
55
+ return 1 if @beats[human_choice] == bot_choice
56
+ return 0
57
+ end
58
+ end
59
+
60
+ plugin = RoshamboPlugin.new
61
+ plugin.map "roshambo :play", :action => :rps, :requirements => { :play => /rock|paper|scissors/ }
62
+ plugin.map "rps :play", :action => :rps, :requirements => { :play => /rock|paper|scissors/ }
@@ -1,14 +1,27 @@
1
- RouletteHistory = Struct.new("RouletteHistory", :games, :shots, :deaths, :misses, :wins)
1
+ define_structure :RouletteHistory, :games, :shots, :deaths, :misses, :wins
2
2
 
3
3
  class RoulettePlugin < Plugin
4
+ Config.register Config::BooleanValue.new('roulette.autospin',
5
+ :default => true,
6
+ :desc => "Automatically spins the roulette at the butlast shot")
7
+ Config.register Config::BooleanValue.new('roulette.kick',
8
+ :default => false,
9
+ :desc => "Kicks shot players from the channel")
10
+ Config.register Config::BooleanValue.new('roulette.twice_in_a_row',
11
+ :default => false,
12
+ :desc => "Allow players to go twice in a row")
13
+
4
14
  def initialize
5
15
  super
6
16
  reset_chambers
7
17
  @players = Array.new
18
+ @last = ''
8
19
  end
20
+
9
21
  def help(plugin, topic="")
10
- "roulette => play russian roulette - starts a new game if one isn't already running. One round in a six chambered gun. Take turns to say roulette to the bot, until somebody dies. roulette reload => force the gun to reload, roulette stats => show stats from all games, roulette stats <player> => show stats for <player>, roulette clearstats => clear stats (config level auth required)"
22
+ "roulette => play russian roulette - starts a new game if one isn't already running. One round in a six chambered gun. Take turns to say roulette to the bot, until somebody dies. roulette reload => force the gun to reload, roulette stats => show stats from all games, roulette stats <player> => show stats for <player>, roulette clearstats => clear stats (config level auth required), roulette spin => spins the cylinder"
11
23
  end
24
+
12
25
  def clearstats(m, params)
13
26
  @registry.clear
14
27
  m.okay
@@ -34,13 +47,19 @@ class RoulettePlugin < Plugin
34
47
  totals = RouletteHistory.new(0,0,0,0,0)
35
48
  end
36
49
 
50
+ if @last == m.sourcenick and not @bot.config['roulette.twice_in_a_row']
51
+ m.reply "you can't go twice in a row!"
52
+ return
53
+ end
54
+
55
+ @last = m.sourcenick
37
56
  unless @players.include?(m.sourcenick)
38
57
  @players << m.sourcenick
39
58
  playerdata.games += 1
40
59
  end
41
60
  playerdata.shots += 1
42
61
  totals.shots += 1
43
-
62
+
44
63
  shot = @chambers.pop
45
64
  if shot
46
65
  m.reply "#{m.sourcenick}: chamber #{6 - @chambers.length} of 6 => *BANG*"
@@ -54,7 +73,9 @@ class RoulettePlugin < Plugin
54
73
  totals.wins += 1
55
74
  @registry["player " + plyr] = pdata
56
75
  }
57
- @players = Array.new
76
+ @players.clear
77
+ @last = ''
78
+ @bot.kick(m.replyto, m.sourcenick, "*BANG*") if @bot.config['roulette.kick']
58
79
  else
59
80
  m.reply "#{m.sourcenick}: chamber #{6 - @chambers.length} of 6 => +click+"
60
81
  playerdata.misses += 1
@@ -63,13 +84,21 @@ class RoulettePlugin < Plugin
63
84
 
64
85
  @registry["player " + m.sourcenick] = playerdata
65
86
  @registry["totals"] = totals
66
-
87
+
67
88
  if shot || @chambers.empty?
68
89
  reload(m)
90
+ elsif @chambers.length == 1 and @bot.config['roulette.autospin']
91
+ spin(m)
69
92
  end
70
93
  end
94
+
71
95
  def reload(m, params = {})
72
- @bot.action m.replyto, "reloads"
96
+ if m.private?
97
+ m.reply "you gotta play roulette in channel dude"
98
+ return
99
+ end
100
+
101
+ m.act "reloads"
73
102
  reset_chambers
74
103
  # all players win on a reload
75
104
  # (allows you to play 3-shot matches etc)
@@ -91,12 +120,26 @@ class RoulettePlugin < Plugin
91
120
  totals.games += 1
92
121
  @registry["totals"] = totals
93
122
 
94
- @players = Array.new
123
+ @players.clear
124
+ @last = ''
95
125
  end
126
+
127
+ def spin(m, params={})
128
+ # Spinning is just like resetting, except that nobody wins
129
+ if m.private?
130
+ m.reply "you gotta play roulette in channel dude"
131
+ return
132
+ end
133
+
134
+ m.act "spins the cylinder"
135
+ reset_chambers
136
+ end
137
+
96
138
  def reset_chambers
97
139
  @chambers = [false, false, false, false, false, false]
98
140
  @chambers[rand(@chambers.length)] = true
99
141
  end
142
+
100
143
  def playerstats(m, params)
101
144
  player = params[:player]
102
145
  pstats = @registry["player " + player]
@@ -106,6 +149,7 @@ class RoulettePlugin < Plugin
106
149
  m.reply "#{player} has played #{pstats.games} games, won #{pstats.wins} and lost #{pstats.deaths}. #{player} pulled the trigger #{pstats.shots} times and found the chamber empty on #{pstats.misses} occasions."
107
150
  end
108
151
  end
152
+
109
153
  def stats(m, params)
110
154
  if @registry.has_key?("totals")
111
155
  totals = @registry["totals"]
@@ -173,9 +217,15 @@ class RoulettePlugin < Plugin
173
217
  end
174
218
  end
175
219
  end
220
+
176
221
  plugin = RoulettePlugin.new
222
+
223
+ plugin.default_auth('clearstats', false)
224
+
177
225
  plugin.map 'roulette reload', :action => 'reload'
226
+ plugin.map 'roulette spin', :action => 'spin'
178
227
  plugin.map 'roulette stats :player', :action => 'playerstats'
179
228
  plugin.map 'roulette stats', :action => 'stats'
180
- plugin.map 'roulette clearstats', :action => 'clearstats', :auth => 'config'
229
+ plugin.map 'roulette clearstats', :action => 'clearstats'
181
230
  plugin.map 'roulette'
231
+
@@ -0,0 +1,485 @@
1
+ #-- vim:sw=2:et
2
+ #kate: indent-width 2
3
+ #++
4
+ #
5
+ # :title: Shiritori Plugin for RBot
6
+ #
7
+ # Author:: Yaohan Chen <yaohan.chen@gmail.com>
8
+ # Copyright:: (c) 2007 Yaohan Chen
9
+ # License:: GNU Public License
10
+ #
11
+ #
12
+ # Shiritori is a word game where a few people take turns to continue a chain of words.
13
+ # To continue a word, the next word must start with the ending of the previous word,
14
+ # usually defined as the one to few letters/characters at the end. This plugin allows
15
+ # playing several games, each per channel. A game can be turn-based, where only new
16
+ # players can interrupt a turn to join, or a free mode where anyone can speak at any
17
+ # time.
18
+ #
19
+ # In Japanese mode, if present, the plugin can use normalize-japanese
20
+ # <http://neruchan.mine.nu:60880/normalize-japanese.rb> to allow
21
+ # katakana words be used like hiragana.
22
+ #
23
+ # TODO
24
+ # * a system to describe settings, so they can be displayed, changed and saved
25
+ # * adjust settings during game
26
+ # * allow other definitions of continues?
27
+ # * read default settings from configuration
28
+ # * keep statistics
29
+ # * other forms of dictionaries
30
+
31
+
32
+ # Abstract class representing a dictionary used by Shiritori
33
+ class Dictionary
34
+ # whether string s is a word
35
+ def has_word?(s)
36
+ raise NotImplementedError
37
+ end
38
+
39
+ # whether any word starts with prefix, excluding words in excludes. This can be
40
+ # possible with non-enumerable dictionaries since some dictionary engines provide
41
+ # prefix searching.
42
+ def any_word_starting?(prefix, excludes)
43
+ raise NotImplementedError
44
+ end
45
+ end
46
+
47
+ # A Dictionary that uses a enumrable word list.
48
+ class WordlistDictionary < Dictionary
49
+ def initialize(words)
50
+ super()
51
+ @words = words
52
+ # debug "Created dictionary with #{@words.length} words"
53
+ end
54
+
55
+ # whether string s is a word
56
+ def has_word?(s)
57
+ @words.include? s
58
+ end
59
+
60
+ # whether any word starts with prefix, excluding words in excludes
61
+ def any_word_starting?(prefix, excludes)
62
+ # (@words - except).any? {|w| w =~ /\A#{prefix}.+/}
63
+ # this seems to be faster:
64
+ !(@words.grep(/\A#{prefix}.+/) - excludes).empty?
65
+ end
66
+ end
67
+
68
+ # Logic of shiritori game, deals with checking whether words continue the chain, and
69
+ # whether it's possible to continue a word
70
+ class Shiritori
71
+ attr_reader :used_words
72
+
73
+ # dictionary:: a Dictionary object
74
+ # overlap_lengths:: a Range for allowed lengths to overlap when continuing words
75
+ # check_continuable:: whether all words are checked whether they're continuable,
76
+ # before being commited
77
+ # allow_reuse:: whether words are allowed to be used again
78
+ def initialize(dictionary, overlap_lengths, check_continuable, allow_reuse)
79
+ @dictionary = dictionary
80
+ @overlap_lengths = overlap_lengths
81
+ @check_continuable = check_continuable
82
+ @allow_reuse = allow_reuse
83
+ @used_words = []
84
+ end
85
+
86
+ # Prefix of s with length n
87
+ def head_of(s, n)
88
+ # TODO ruby2 unicode
89
+ s.split(//u)[0, n].join
90
+ end
91
+ # Suffix of s with length n
92
+ def tail_of(s, n)
93
+ # TODO ruby2 unicode
94
+ s.split(//u)[-n, n].join
95
+ end
96
+ # Number of unicode characters in string
97
+ def len(s)
98
+ # TODO ruby2 unicode
99
+ s.split(//u).length
100
+ end
101
+ # return subrange of range r that's under n
102
+ def range_under(r, n)
103
+ r.begin .. [r.end, n-1].min
104
+ end
105
+
106
+ # TODO allow the ruleset to customize this
107
+ def continues?(w2, w1)
108
+ # this uses the definition w1[-n,n] == w2[0,n] && n < [w1.length, w2.length].min
109
+ # TODO it might be worth allowing <= for the second clause
110
+ range_under(@overlap_lengths, [len(w1), len(w2)].min).any? {|n|
111
+ tail_of(w1, n)== head_of(w2, n)}
112
+ end
113
+
114
+ # Checks whether *any* unused word in the dictionary completes the word
115
+ # This has the limitation that it can't detect when a word is continuable, but the
116
+ # only continuers aren't continuable
117
+ def continuable_from?(s)
118
+ range_under(@overlap_lengths, len(s)).any? {|n|
119
+ @dictionary.any_word_starting?(tail_of(s, n), @used_words) }
120
+ end
121
+
122
+ # Given a string, give a verdict based on current shiritori state and dictionary
123
+ def process(s)
124
+ # TODO optionally allow used words
125
+ # TODO ruby2 unicode
126
+ if len(s) < @overlap_lengths.min || !@dictionary.has_word?(s)
127
+ # debug "#{s} is too short or not in dictionary"
128
+ :ignore
129
+ elsif @used_words.empty?
130
+ if !@check_continuable || continuable_from?(s)
131
+ @used_words << s
132
+ :start
133
+ else
134
+ :start_end
135
+ end
136
+ elsif continues?(s, @used_words.last)
137
+ if !@allow_reuse && @used_words.include?(s)
138
+ :used
139
+ elsif !@check_continuable || continuable_from?(s)
140
+ @used_words << s
141
+ :next
142
+ else
143
+ :end
144
+ end
145
+ else
146
+ :ignore
147
+ end
148
+ end
149
+ end
150
+
151
+ # A shiritori game on a channel. keeps track of rules related to timing and turns,
152
+ # and interacts with players
153
+ class ShiritoriGame
154
+ # timer:: the bot.timer object
155
+ # say:: a Proc which says the given message on the channel
156
+ # when_die:: a Proc that removes the game from plugin's list of games
157
+ def initialize(channel, ruleset, timer, say, when_die)
158
+ raise ArgumentError unless [:words, :overlap_lengths, :check_continuable,
159
+ :end_when_uncontinuable, :allow_reuse, :listen, :normalize, :time_limit,
160
+ :lose_when_timeout].all? {|r| ruleset.has_key?(r)}
161
+ @last_word = nil
162
+ @players = []
163
+ @booted_players = []
164
+ @ruleset = ruleset
165
+ @channel = channel
166
+ @timer = timer
167
+ @timer_handle = nil
168
+ @say = say
169
+ @when_die = when_die
170
+
171
+ # TODO allow other forms of dictionaries
172
+ dictionary = WordlistDictionary.new(@ruleset[:words])
173
+ @game = Shiritori.new(dictionary, @ruleset[:overlap_lengths],
174
+ @ruleset[:check_continuable],
175
+ @ruleset[:allow_reuse])
176
+ end
177
+
178
+ def say(s)
179
+ @say.call(s)
180
+ end
181
+
182
+ # Whether the players must take turns
183
+ # * when there is only one player, turns are not enforced
184
+ # * when time_limit > 0, new players can join at any time, but existing players must
185
+ # take turns, each of which expires after time_limit
186
+ # * when time_imit is 0, anyone can speak in the game at any time
187
+ def take_turns?
188
+ @players.length > 1 && @ruleset[:time_limit] > 0
189
+ end
190
+
191
+ # the player who has the current turn
192
+ def current_player
193
+ @players.first
194
+ end
195
+ # the word to continue in the current turn
196
+ def current_word
197
+ @game.used_words[-1]
198
+ end
199
+ # the word in the chain before current_word
200
+ def previous_word
201
+ @game.used_words[-2]
202
+ end
203
+
204
+ # announce the current word, and player if take_turns?
205
+ def announce
206
+ say(if take_turns?
207
+ _("%{current_player}, it's your turn. %{previous_word} -> %{current_word}") %
208
+ { :current_player => current_player, :previous_word => previous_word,
209
+ :current_word => current_word }
210
+ elsif @players.empty?
211
+ _("No one has given the first word yet. Say the first word to start.")
212
+ else
213
+ _("Poor %{current_player} is playing alone! Anyone care to join? %{previous_word} -> %{current_word}") %
214
+ { :current_player => current_player, :previous_word => previous_word,
215
+ :current_word => current_word }
216
+ end)
217
+ end
218
+ # create/reschedule timer
219
+ def restart_timer
220
+ # the first time the method is called, a new timer is added
221
+ @timer_handle = @timer.add(@ruleset[:time_limit]) {time_out}
222
+ # afterwards, it will reschdule the timer
223
+ instance_eval do
224
+ def restart_timer
225
+ @timer.reschedule(@timer_handle, @ruleset[:time_limit])
226
+ end
227
+ end
228
+ end
229
+ # switch to the next player's turn if take_turns?, and announce current words
230
+ def next_player
231
+ # when there's only one player, turns and timer are meaningless
232
+ if take_turns?
233
+ # place the current player to the last position, to implement circular queue
234
+ @players << @players.shift
235
+ # stop previous timer and set time for this turn
236
+ restart_timer
237
+ end
238
+ announce
239
+ end
240
+
241
+ # handle when turn time limit goes out
242
+ def time_out
243
+ if @ruleset[:lose_when_timeout]
244
+ say _("%{player} took too long and is out of the game. Try again next game!") %
245
+ { :player => current_player }
246
+ if @players.length == 2
247
+ # 2 players before, and one should remain now
248
+ # since the game is ending, save the trouble of removing and booting the player
249
+ say _("%{player} is the last remaining player and the winner! Congratulations!") %
250
+ {:player => @players.last}
251
+ die
252
+ else
253
+ @booted_players << @players.shift
254
+ announce
255
+ end
256
+ else
257
+ say _("%{player} took too long and skipped the turn.") %
258
+ {:player => current_player}
259
+ next_player
260
+ end
261
+ end
262
+
263
+ # change the rules, and update state when necessary
264
+ def change_rules(rules)
265
+ @ruleset.update! rules
266
+ end
267
+
268
+ # handle a message to @channel
269
+ def handle_message(m)
270
+ message = m.message
271
+ speaker = m.sourcenick.to_s
272
+
273
+ return unless @ruleset[:listen] =~ message
274
+
275
+ # in take_turns mode, only new players are allowed to interrupt a turn
276
+ return if @booted_players.include? speaker ||
277
+ (take_turns? &&
278
+ speaker != current_player &&
279
+ (@players.length > 1 && @players.include?(speaker)))
280
+
281
+ # let Shiritori process the message, and act according to result
282
+ case @game.process @ruleset[:normalize].call(message)
283
+ when :start
284
+ @players << speaker
285
+ m.reply _("%{player} has given the first word: %{word}") %
286
+ {:player => speaker, :word => current_word}
287
+ when :next
288
+ if !@players.include?(speaker)
289
+ # A new player
290
+ @players.unshift speaker
291
+ m.reply _("Welcome to shiritori, %{player}.") %
292
+ {:player => speaker}
293
+ end
294
+ next_player
295
+ when :used
296
+ m.reply _("The word %{used_word} has been used. Retry from %{word}") %
297
+ {:used_word => message, :word => current_word}
298
+ when :end
299
+ # TODO respect shiritori.end_when_uncontinuable setting
300
+ if @ruleset[:end_when_uncontinuable]
301
+ m.reply _("It's impossible to continue the chain from %{word}. The game has ended. Thanks a lot, %{player}! :(") %
302
+ {:word => message, :player => speaker}
303
+ die
304
+ else
305
+ m.reply _("It's impossible to continue the chain from %{bad_word}. Retry from %{word}") % {:bad_word => message, :word => current_word}
306
+ end
307
+ when :start_end
308
+ # when the first word is uncontinuable, the game doesn't stop, as presumably
309
+ # someone wanted to play
310
+ m.reply _("It's impossible to continue the chain from %{word}. Start with another word.") % {:word => message}
311
+ end
312
+ end
313
+
314
+ # end the game
315
+ def die
316
+ # redefine restart_timer to no-op
317
+ instance_eval do
318
+ def restart_timer
319
+ end
320
+ end
321
+ # remove any registered timer
322
+ @timer.remove @timer_handle unless @timer_handle.nil?
323
+ # should remove the game object from plugin's @games list
324
+ @when_die.call
325
+ end
326
+ end
327
+
328
+ # shiritori plugin for rbot
329
+ class ShiritoriPlugin < Plugin
330
+ def help(plugin, topic="")
331
+ _("A game in which each player must continue the previous player's word, by using its last one or few characters/letters of the word to start a new word. 'shiritori <ruleset>' => Play shiritori with a set of rules. Available rulesets: %{rulesets}. 'shiritori stop' => Stop the current shiritori game.") %
332
+ {:rulesets => @rulesets.keys.join(', ')}
333
+ end
334
+
335
+ def initialize()
336
+ super
337
+ @games = {}
338
+
339
+ # TODO make rulesets more easily customizable
340
+ # TODO initialize default ruleset from config
341
+ # Default values of rulesets
342
+ @default_ruleset = {
343
+ # the range of the length of "tail" that must be followed to continue the chain
344
+ :overlap_lengths => 1..2,
345
+ # messages cared about, pre-normalize
346
+ :listen => /\A\S+\Z/u,
347
+ # normalize messages with this function before checking with Shiritori
348
+ :normalize => lambda {|w| w},
349
+ # number of seconds for each player's turn
350
+ :time_limit => 60,
351
+ # when the time limit is reached, the player's booted out of the game and cannot
352
+ # join until the next game
353
+ :lose_when_timeout => true,
354
+ # check whether the word is continuable before adding it into chain
355
+ :check_continuable => true,
356
+ # allow reusing used words
357
+ :allow_reuse => false,
358
+ # end the game when an uncontinuable word is said
359
+ :end_when_uncontinuable => true
360
+ }
361
+ @rulesets = {
362
+ 'english' => {
363
+ :wordlist_file => 'english',
364
+ :listen => /\A[a-zA-Z]+\Z/,
365
+ :overlap_lengths => 2..5,
366
+ :normalize => lambda {|w| w.downcase},
367
+ :desc => 'Use English words; case insensitive; 2-6 letters at the beginning of the next word must overlap with those at the end of the previous word.'
368
+ },
369
+ 'japanese' => {
370
+ :wordlist_file => 'japanese',
371
+ :listen => /\A\S+\Z/u,
372
+ :overlap_lengths => 1..4,
373
+ :desc => 'Use Japanese words in hiragana; 1-4 kana at the beginning of the next word must overlap with those at the end of the previous word.',
374
+ :normalize =>
375
+ begin
376
+ require 'normalize-japanese'
377
+ lambda {|w| w.to_hiragana}
378
+ rescue LoadError
379
+ lambda {|w| w}
380
+ end
381
+ }
382
+ }
383
+ end
384
+
385
+ def load_ruleset(ruleset_name)
386
+ # set default values for each rule to default_ruleset's values
387
+ ruleset = @rulesets[ruleset_name].dup
388
+ ruleset.replace @default_ruleset.merge(ruleset)
389
+ unless ruleset.has_key?(:words)
390
+ if ruleset.has_key?(:wordlist_file)
391
+ begin
392
+ ruleset[:words] =
393
+ File.new("#{@bot.botclass}/shiritori/#{ruleset[:wordlist_file]}").grep(
394
+ ruleset[:listen]) {|l| ruleset[:normalize].call l.chomp}
395
+ rescue
396
+ raise "unable to load word list"
397
+ end
398
+ else
399
+ raise NotImplementedError, "ruleset not implemented (properly)"
400
+ end
401
+ end
402
+ return ruleset
403
+ end
404
+
405
+ # start shiritori in a channel
406
+ def cmd_shiritori(m, params)
407
+ if @games.has_key?( m.channel )
408
+ m.reply _("Already playing shiritori here")
409
+ @games[m.channel].announce
410
+ else
411
+ ruleset = params[:ruleset].downcase
412
+ if @rulesets.has_key? ruleset
413
+ begin
414
+ @games[m.channel] = ShiritoriGame.new(
415
+ m.channel, load_ruleset(ruleset),
416
+ @bot.timer,
417
+ lambda {|msg| m.reply msg},
418
+ lambda {remove_game m.channel} )
419
+ m.reply _("Shiritori has started. Please say the first word")
420
+ rescue => e
421
+ m.reply _("couldn't start %{ruleset} shiritori: %{error}") %
422
+ {:ruleset => ruleset, :error => e}
423
+ end
424
+ else
425
+ m.reply _("There is no ruleset named %{ruleset}") % {:ruleset => ruleset}
426
+ end
427
+ end
428
+ end
429
+
430
+ # change rules for current game
431
+ def cmd_set(m, params)
432
+ require 'enumerator'
433
+ new_rules = {}
434
+ params[:rules].each_slice(2) {|opt, value| new_rules[opt] = value}
435
+ raise NotImplementedError
436
+ end
437
+
438
+ # stop the current game
439
+ def cmd_stop(m, params)
440
+ if @games.has_key? m.channel
441
+ # TODO display statistics
442
+ @games[m.channel].die
443
+ m.reply _("Shiritori has stopped. Hope you had fun!")
444
+ else
445
+ # TODO display statistics
446
+ m.reply _("No game to stop here, because no game is being played.")
447
+ end
448
+ end
449
+
450
+ # remove the game, so channel messages are no longer processed, and timer removed
451
+ def remove_game(channel)
452
+ @games.delete channel
453
+ end
454
+
455
+ # all messages from a channel is sent to its shiritori game if any
456
+ def message(m)
457
+ return unless @games.has_key?(m.channel)
458
+ # send the message to the game in the channel to handle it
459
+ @games[m.channel].handle_message m
460
+ end
461
+
462
+ # remove all games
463
+ def cleanup
464
+ @games.each_key {|g| g.die}
465
+ @games.clear
466
+ super
467
+ end
468
+ end
469
+
470
+ plugin = ShiritoriPlugin.new
471
+ plugin.default_auth( 'edit', false )
472
+
473
+ # Normal commandsi have a stop_gamei have a stop_game
474
+ plugin.map 'shiritori stop',
475
+ :action => 'cmd_stop',
476
+ :private => false
477
+ # plugin.map 'shiritori set ',
478
+ # :action => 'cmd_set'
479
+ # :private => false
480
+ # plugin.map 'shiritori challenge',
481
+ # :action => 'cmd_challenge'
482
+ plugin.map 'shiritori [:ruleset]',
483
+ :action => 'cmd_shiritori',
484
+ :defaults => {:ruleset => 'japanese'},
485
+ :private => false