]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - data/rbot/plugins/games/uno.rb
uno plugin: don't fail to drop players that left the channel
[user/henk/code/ruby/rbot.git] / data / rbot / plugins / games / uno.rb
1 #-- vim:sw=2:et
2 #++
3 #
4 # :title: Uno Game Plugin for rbot
5 #
6 # Author:: Giuseppe "Oblomov" Bilotta <giuseppe.bilotta@gmail.com>
7 #
8 # Copyright:: (C) 2008 Giuseppe Bilotta
9 #
10 # License:: GPL v2
11 #
12 # Uno Game: get rid of the cards you have
13 #
14 # TODO documentation
15 # TODO allow full form card names for play
16 # TODO allow color specification with wild
17 # TODO allow choice of rules re stacking + and playing Reverse with them
18 # TODO highscore table
19
20 class UnoGame
21   COLORS = %w{Red Green Blue Yellow}
22   SPECIALS = %w{+2 Reverse Skip}
23   NUMERICS = (0..9).to_a
24   VALUES = NUMERICS + SPECIALS
25
26   def UnoGame.color_map(clr)
27     case clr
28     when 'Red'
29       :red
30     when 'Blue'
31       :royal_blue
32     when 'Green'
33       :limegreen
34     when 'Yellow'
35       :yellow
36     end
37   end
38
39   def UnoGame.irc_color_bg(clr)
40     Irc.color([:white,:black][COLORS.index(clr)%2],UnoGame.color_map(clr))
41   end
42
43   def UnoGame.irc_color_fg(clr)
44     Irc.color(UnoGame.color_map(clr))
45   end
46
47   def UnoGame.colorify(str, fg=false)
48     ret = Bold.dup
49     str.length.times do |i|
50       ret << (fg ?
51               UnoGame.irc_color_fg(COLORS[i%4]) :
52               UnoGame.irc_color_bg(COLORS[i%4]) ) +str[i,1]
53     end
54     ret << NormalText
55   end
56
57   UNO = UnoGame.colorify('UNO!', true)
58
59   # Colored play cards
60   class Card
61     attr_reader :color
62     attr_reader :value
63     attr_reader :shortform
64     attr_reader :to_s
65     attr_reader :score
66
67     def initialize(color, value)
68       raise unless COLORS.include? color
69       @color = color.dup
70       raise unless VALUES.include? value
71       if NUMERICS.include? value
72         @value = value
73         @score = value
74       else
75         @value = value.dup
76         @score = 20
77       end
78       if @value == '+2'
79         @shortform = (@color[0,1]+@value).downcase
80       else
81         @shortform = (@color[0,1]+@value.to_s[0,1]).downcase
82       end
83       @to_s = UnoGame.irc_color_bg(@color) +
84         Bold + ['', @color, @value, ''].join(' ') + NormalText
85     end
86
87     def picker
88       return 0 unless @value.to_s[0,1] == '+'
89       return @value[1,1].to_i
90     end
91
92     def special?
93       SPECIALS.include?(@value)
94     end
95
96     def <=>(other)
97       cc = self.color <=> other.color
98       if cc == 0
99         return self.value.to_s <=> other.value.to_s
100       else
101         return cc
102       end
103     end
104     include Comparable
105   end
106
107   # Wild, Wild +4 cards
108   class Wild < Card
109     def initialize(value=nil)
110       @color = 'Wild'
111       raise if value and not value == '+4'
112       if value
113         @value = value.dup 
114         @shortform = 'w'+value
115       else
116         @value = nil
117         @shortform = 'w'
118       end
119       @score = 50
120       @to_s = UnoGame.colorify(['', @color, @value, ''].compact.join(' '))
121     end
122     def special?
123       @value
124     end
125   end
126
127   class Player
128     attr_accessor :cards
129     attr_accessor :user
130     def initialize(user)
131       @user = user
132       @cards = []
133     end
134     def has_card?(short)
135       has = []
136       @cards.each { |c|
137         has << c if c.shortform == short
138       }
139       if has.empty?
140         return false
141       else
142         return has
143       end
144     end
145     def to_s
146       Bold + @user.to_s + Bold
147     end
148   end
149
150   # cards in stock
151   attr_reader :stock
152   # current discard
153   attr_reader :discard
154   # previous discard, in case of challenge
155   attr_reader :last_discard
156   # channel the game is played in
157   attr_reader :channel
158   # list of players
159   attr :players
160   # true if the player picked a card (and can thus pass turn)
161   attr_reader :player_has_picked
162   # number of cards to be picked if the player can't play an appropriate card
163   attr_reader :picker
164
165   def initialize(plugin, channel)
166     @channel = channel
167     @plugin = plugin
168     @bot = plugin.bot
169     @players = []
170     @dropouts = []
171     @discard = nil
172     @last_discard = nil
173     @value = nil
174     @color = nil
175     make_base_stock
176     @stock = []
177     make_stock
178     @start_time = nil
179     @join_timer = nil
180     @picker = 0
181     @last_picker = 0
182     @must_play = nil
183   end
184
185   def get_player(user)
186     case user
187     when User
188       @players.each do |p|
189         return p if p.user == user
190       end
191     when String
192       @players.each do |p|
193         return p if p.user.irc_downcase == user.irc_downcase(channel.casemap)
194       end
195     else
196       get_player(user.to_s)
197     end
198     return nil
199   end
200
201   def announce(msg, opts={})
202     @bot.say channel, msg, opts
203   end
204
205   def notify(player, msg, opts={})
206     @bot.notice player.user, msg, opts
207   end
208
209   def make_base_stock
210     @base_stock = COLORS.inject([]) do |list, clr|
211       VALUES.each do |n|
212         list << Card.new(clr, n)
213         list << Card.new(clr, n) unless n == 0
214       end
215       list
216     end
217     4.times do
218       @base_stock << Wild.new
219       @base_stock << Wild.new('+4')
220     end
221   end
222
223   def make_stock
224     @stock.replace @base_stock
225     # remove the cards in the players hand
226     @players.each { |p| p.cards.each { |c| @stock.delete_one c } }
227     # remove current top discarded card if present
228     if @discard
229       @stock.delete_one(discard)
230     end
231     @stock.shuffle!
232   end
233
234   def start_game
235     debug "Starting game"
236     @players.shuffle!
237     show_order
238     announce _("%{p} deals the first card from the stock") % {
239       :p => @players.first
240     }
241     card = @stock.shift
242     @picker = 0
243     @special = false
244     while Wild === card do
245       @stock.insert(rand(@stock.length), card)
246       card = @stock.shift
247     end
248     set_discard(card)
249     show_discard
250     if @special
251       do_special
252     end
253     next_turn
254     @start_time = Time.now
255   end
256
257   def elapsed_time
258     if @start_time
259       Utils.secs_to_string(Time.now-@start_time)
260     else
261       _("no time")
262     end
263   end
264
265   def reverse_turn
266     if @players.length > 2
267       @players.reverse!
268       # put the current player back in its place
269       @players.unshift @players.pop
270       announce _("Playing order was reversed!")
271     else
272       skip_turn
273     end
274   end
275
276   def skip_turn
277     @players << @players.shift
278     announce _("%{p} skips a turn!") % {
279       # this is first and not last because the actual
280       # turn change will be done by the following next_turn
281       :p => @players.first
282     }
283   end
284
285   def do_special
286     case @discard.value
287     when 'Reverse'
288       reverse_turn
289       @special = false
290     when 'Skip'
291       skip_turn
292       @special = false
293     end
294   end
295
296   def set_discard(card)
297     @discard = card
298     @value = card.value.dup rescue card.value
299     if Wild === card
300       @color = nil
301     else
302       @color = card.color.dup
303     end
304     if card.picker > 0
305       @picker += card.picker
306       @last_picker = @discard.picker
307     end
308     if card.special?
309       @special = true
310     else
311       @special = false
312     end
313     @must_play = nil
314   end
315
316   def next_turn(opts={})
317     @players << @players.shift
318     @player_has_picked = false
319     show_turn
320   end
321
322   def can_play(card)
323     # if play is forced, check against the only allowed cards
324     return false if @must_play and not @must_play.include?(card)
325
326     # When a +something is online, you can only play
327     # a +something of same or higher something, or a Reverse of
328     # the correct color
329     # TODO make optional
330     if @picker > 0
331       if (card.value == 'Reverse' and card.color == @color) or card.picker >= @last_picker
332         return true
333       else
334         return false
335       end
336     else
337       # You can always play a Wild
338       return true if Wild === card
339       # On a Wild, you must match the color
340       if Wild === @discard
341         return card.color == @color
342       else
343         # Otherwise, you can match either the value or the color
344         return (card.value == @value) || (card.color == @color)
345       end
346     end
347   end
348
349   def play_card(source, cards)
350     debug "Playing card #{cards}"
351     p = get_player(source)
352     shorts = cards.gsub(/\s+/,'').match(/^(?:([rbgy]\+?\d){1,2}|([rbgy][rs])|(w(?:\+4)?)([rbgy])?)$/).to_a
353     debug shorts.inspect
354     if shorts.empty?
355       announce _("what cards were that again?")
356       return
357     end
358     full = shorts[0]
359     short = shorts[1] || shorts[2] || shorts[3]
360     jolly = shorts[3]
361     jcolor = shorts[4]
362     if jolly
363       toplay = 1
364     else
365       toplay = (full == short) ? 1 : 2
366     end
367     debug [full, short, jolly, jcolor, toplay].inspect
368     # r7r7 -> r7r7, r7, nil, nil
369     # r7 -> r7, r7, nil, nil
370     # w -> w, nil, w, nil
371     # wg -> wg, nil, w, g
372     if cards = p.has_card?(short)
373       debug cards
374       unless can_play(cards.first)
375         announce _("you can't play that card")
376         return
377       end
378       if cards.length >= toplay
379         # if the played card is a W+4 not played during a stacking +x
380         if @picker == 0 and Wild === cards.first and cards.first.value 
381           # save the previous discard in case of challenge
382           @last_discard = @discard.dup
383           # save the color too, in case it was a Wild
384           @last_color = @color.dup
385         else
386           @last_color = nil
387         end
388         set_discard(p.cards.delete_one(cards.shift))
389         if toplay > 1
390           set_discard(p.cards.delete_one(cards.shift))
391           announce _("%{p} plays %{card} twice!") % {
392             :p => p,
393             :card => @discard
394           }
395         else
396           announce _("%{p} plays %{card}") % { :p => p, :card => @discard }
397         end
398         if p.cards.length == 1
399           announce _("%{p} has %{uno}!") % {
400             :p => p, :uno => UNO
401           }
402         elsif p.cards.length == 0
403           end_game
404           return
405         end
406         show_picker
407         if @color
408           if @special
409             do_special
410           end
411           next_turn
412         elsif jcolor
413           choose_color(p.user, jcolor)
414         else
415           announce _("%{p}, choose a color with: co r|b|g|y") % { :p => p }
416         end
417       else
418         announce _("you don't have two cards of that kind")
419       end
420     else
421       announce _("you don't have that card")
422     end
423   end
424
425   def challenge
426     return unless @last_discard
427     # current player
428     cp = @players.first
429     # previous player
430     lp = @players.last
431     announce _("%{cp} challenges %{lp}'s %{card}!") % {
432       :cp => cp, :lp => lp, :card => @discard
433     }
434     # show the cards of the previous player to the current player
435     notify cp, _("%{p} has %{cards}") % {
436       :p => lp, :cards => lp.cards.join(' ')
437     }
438     # check if the previous player had a non-special card of the correct color
439     legal = true
440     lp.cards.each do |c|
441       if c.color == @last_color and not c.special?
442         legal = false
443       end
444     end
445     if legal
446       @picker += 2
447       announce _("%{lp}'s move was legal, %{cp} must pick %{b}%{n}%{b} cards!") % {
448         :cp => cp, :lp => lp, :b => Bold, :n => @picker
449       }
450       @last_color = nil
451       @last_discard = nil
452       deal(cp, @picker)
453       @picker = 0
454       next_turn
455     else
456       announce _("%{lp}'s move was %{b}not%{b} legal, %{lp} must pick %{b}%{n}%{b} cards and play again!") % {
457         :cp => cp, :lp => lp, :b => Bold, :n => @picker
458       }
459       lp.cards << @discard # put the W+4 back in place
460
461       # reset the discard
462       @color = @last_color.dup
463       @discard = @last_discard.dup
464       @special = false
465       @value = @discard.value.dup rescue @discard.value
466       @last_color = nil
467       @last_discard = nil
468
469       # force the player to play the current cards
470       @must_play = lp.cards.dup
471
472       # give him the penalty cards
473       deal(lp, @picker)
474       @picker = 0
475
476       # and restore the turn
477       @players.unshift @players.pop
478     end
479   end
480
481   def pass(user)
482     p = get_player(user)
483     if @picker > 0
484       announce _("%{p} passes turn, and has to pick %{b}%{n}%{b} cards!") % {
485         :p => p, :b => Bold, :n => @picker
486       }
487       deal(p, @picker)
488       @picker = 0
489     else
490       if @player_has_picked
491         announce _("%{p} passes turn") % { :p => p }
492       else
493         announce _("you need to pick a card first")
494         return
495       end
496     end
497     next_turn
498   end
499
500   def choose_color(user, color)
501     case color
502     when 'r'
503       @color = 'Red'
504     when 'b'
505       @color = 'Blue'
506     when 'g'
507       @color = 'Green'
508     when 'y'
509       @color = 'Yellow'
510     else
511       announce _('what color is that?')
512       return
513     end
514     announce _('color is now %{c}') % {
515       :c => UnoGame.irc_color_bg(@color)+" #{@color} "
516     }
517     next_turn
518   end
519
520   def show_time
521     if @start_time
522       announce _("This %{uno} game has been going on for %{time}") % {
523         :uno => UNO,
524         :time => elapsed_time
525       }
526     else
527       announce _("The game hasn't started yet")
528     end
529   end
530
531   def show_order
532     announce _("%{uno} playing turn: %{players}") % {
533       :uno => UNO, :players => players.join(' ')
534     }
535   end
536
537   def show_turn(opts={})
538     cards = true
539     cards = opts[:cards] if opts.key?(:cards)
540     player = @players.first
541     announce _("it's %{player}'s turn") % { :player => player }
542     show_user_cards(player) if cards
543   end
544
545   def has_turn?(source)
546     @players.first.user == source
547   end
548
549   def show_picker
550     if @picker > 0
551       announce _("next player must respond correctly or pick %{b}%{n}%{b} cards") % {
552         :b => Bold, :n => @picker
553       }
554     end
555   end
556
557   def show_discard
558     announce _("Current discard: %{card} %{c}") % { :card => @discard,
559       :c => (Wild === @discard) ? UnoGame.irc_color_bg(@color) + " #{@color} " : nil
560     }
561     show_picker
562   end
563
564   def show_user_cards(player)
565     p = Player === player ? player : get_player(player)
566     notify p, _('Your cards: %{cards}') % {
567       :cards => p.cards.join(' ')
568     }
569   end
570
571   def show_all_cards(u=nil)
572     announce(@players.inject([]) { |list, p|
573       list << [p, p.cards.length].join(': ')
574     }.join(', '))
575     if u
576       show_user_cards(u)
577     end
578   end
579
580   def pick_card(user)
581     p = get_player(user)
582     announce _("%{player} picks a card") % { :player => p }
583     deal(p, 1)
584     @player_has_picked = true
585   end
586
587   def deal(player, num=1)
588     picked = []
589     num.times do
590       picked << @stock.delete_one
591       if @stock.length == 0
592         announce _("Shuffling discarded cards")
593         make_stock
594         if @stock.length == 0
595           announce _("No more cards!")
596           end_game # FIXME nope!
597         end
598       end
599     end
600     picked.sort!
601     notify player, _("You picked %{picked}") % { :picked => picked.join(' ') }
602     player.cards += picked
603     player.cards.sort!
604   end
605
606   def add_player(user)
607     if p = get_player(user)
608       announce _("you're already in the game, %{p}") % {
609         :p => p
610       }
611       return
612     end
613     @dropouts.each do |dp|
614       if dp.user == user
615         announce _("you dropped from the game, %{p}, you can't get back in") % {
616           :p => dp
617         }
618         return
619       end
620     end
621     cards = 7
622     if @start_time
623       cards = @players.inject(0) do |s, pl|
624         s +=pl.cards.length
625       end/@players.length
626     end
627     p = Player.new(user)
628     @players << p
629     announce _("%{p} joins this game of %{uno}") % {
630       :p => p, :uno => UNO
631     }
632     deal(p, cards)
633     return if @start_time
634     if @join_timer
635       @bot.timer.reschedule(@join_timer, 10)
636     elsif @players.length > 1
637       announce _("game will start in 20 seconds")
638       @join_timer = @bot.timer.add_once(20) {
639         start_game
640       }
641     end
642   end
643
644   def drop_player(nick)
645     # A nick is passed because the original player might have left
646     # the channel or IRC
647     unless p = get_player(nick)
648       announce _("%{p} isn't playing %{uno}") % {
649         :p => p, :uno => UNO
650       }
651       return
652     end
653     announce _("%{p} gives up this game of %{uno}") % {
654       :p => p, :uno => UNO
655     }
656     case @players.length
657     when 2
658       if p == @players.first
659         next_turn
660       end
661       end_game
662       return
663     when 1
664       end_game(true)
665       return
666     end
667     debug @stock.length
668     while p.cards.length > 0
669       @stock.insert(rand(@stock.length), p.cards.shift)
670     end
671     debug @stock.length
672     @dropouts << @players.delete_one(p)
673   end
674
675   def replace_player(old, new)
676     # The new user
677     user = channel.get_user(new)
678     if p = get_player(user)
679       announce _("%{p} is already playing %{uno} here") % {
680         :p => p, :uno => UNO
681       }
682       return
683     end
684     # We scan the player list of the player with the old nick, instead
685     # of using get_player, in case of IRC drops etc
686     @players.each do |p|
687       if p.user.nick == old
688         p.user = user
689         announce _("%{p} takes %{b}%{old}%{b}'s place at %{uno}") % {
690           :p => p, :b => Bold, :old => old, :uno => UNO
691         }
692         return
693       end
694     end
695     announce _("%{b}%{old}%{b} isn't playing %{uno} here") % {
696       :uno => UNO, :b => Bold, :old => old
697     }
698   end
699
700   def end_game(halted = false)
701     if halted
702       if @start_time
703         announce _("%{uno} game halted after %{time}") % {
704           :time => elapsed_time,
705           :uno => UNO
706         }
707       else
708         announce _("%{uno} game halted before it could start") % {
709           :uno => UNO
710         }
711       end
712     else
713       announce _("%{uno} game finished after %{time}! The winner is %{p}") % {
714         :time => elapsed_time,
715         :uno => UNO, :p => @players.first
716       }
717     end
718     if @picker > 0 and not halted
719       p = @players[1]
720       announce _("%{p} has to pick %{b}%{n}%{b} cards!") % {
721         :p => p, :n => @picker, :b => Bold
722       }
723       deal(p, @picker)
724       @picker = 0
725     end
726     score = @players.inject(0) do |sum, p|
727       if p.cards.length > 0
728         announce _("%{p} still had %{cards}") % {
729           :p => p, :cards => p.cards.join(' ')
730         }
731         sum += p.cards.inject(0) do |cs, c|
732           cs += c.score
733         end
734       end
735       sum
736     end
737     if not halted
738       announce _("%{p} wins with %{b}%{score}%{b} points!") % {
739         :p => @players.first, :score => score, :b => Bold
740       }
741     end
742     @plugin.do_end_game(@channel)
743   end
744
745 end
746
747 class UnoPlugin < Plugin
748   attr :games
749   def initialize
750     super
751     @games = {}
752   end
753
754   def help(plugin, topic="")
755     case topic
756     when 'commands'
757       [
758       _("'jo' to join in"),
759       _("'pl <card>' to play <card>: e.g. 'pl g7' to play Green 7, or 'pl rr' to play Red Reverse, or 'pl y2y2' to play both Yellow 2 cards"),
760       _("'pe' to pick a card"),
761       _("'pa' to pass your turn"),
762       _("'co <color>' to pick a color after playing a Wild: e.g. 'co g' to select Green (or 'pl w+4 g' to select the color when playing the Wild)"),
763       _("'ca' to show current cards"),
764       _("'cd' to show the current discard"),
765       _("'ch' to challenge a Wild +4"),
766       _("'od' to show the playing order"),
767       _("'ti' to show play time"),
768       _("'tu' to show whose turn it is")
769     ].join(" ; ")
770     when 'challenge'
771       _("A Wild +4 can only be played legally if you don't have normal (not special) cards of the current color. ") +
772       _("The next player can challenge a W+4 by using the 'ch' command. ") +
773       _("If the W+4 play was illegal, the player who played it must pick the W+4, pick 4 cards from the stock, and play a legal card. ") +
774       _("If the W+4 play was legal, the challenger must pick 6 cards instead of 4.")
775     when 'rules'
776       _("play all your cards, one at a time, by matching either the color or the value of the currently discarded card. ") +
777       _("cards with special effects: Skip (next player skips a turn), Reverse (reverses the playing order), +2 (next player has to take 2 cards). ") +
778       _("Wilds can be played on any card, and you must specify the color for the next card. ") +
779       _("Wild +4 also forces the next player to take 4 cards, but it can only be played if you can't play a color card. ") +
780       _("you can play another +2 or +4 card on a +2 card, and a +4 on a +4, forcing the first player who can't play one to pick the cumulative sum of all cards. ") +
781       _("you can also play a Reverse on a +2 or +4, bouncing the effect back to the previous player (that now comes next). ")
782     else
783       (_("%{uno} game. !uno to start a game. see help uno rules for the rules. commands: %{cmds}") % {
784         :uno => UnoGame::UNO,
785         :cmds => help(plugin, 'commands')
786       })
787     end
788   end
789
790   def message(m)
791     return unless @games.key?(m.channel)
792     g = @games[m.channel]
793     case m.plugin.intern
794     when :jo # join game
795       return if m.params
796       g.add_player(m.source)
797     when :pe # pick card
798       return if m.params
799       if g.has_turn?(m.source)
800         if g.player_has_picked
801           m.reply _("you already picked a card")
802         elsif g.picker > 0
803           g.pass(m.source)
804         else
805           g.pick_card(m.source)
806         end
807       else
808         m.reply _("It's not your turn")
809       end
810     when :pa # pass turn
811       return if m.params
812       if g.has_turn?(m.source)
813         g.pass(m.source)
814       else
815         m.reply _("It's not your turn")
816       end
817     when :pl # play card
818       if g.has_turn?(m.source)
819         g.play_card(m.source, m.params.downcase)
820       else
821         m.reply _("It's not your turn")
822       end
823     when :co # pick color
824       if g.has_turn?(m.source)
825         g.choose_color(m.source, m.params.downcase)
826       else
827         m.reply _("It's not your turn")
828       end
829     when :ca # show current cards
830       return if m.params
831       g.show_all_cards(m.source)
832     when :cd # show current discard
833       return if m.params
834       g.show_discard
835     when :ch
836       if g.has_turn?(m.source)
837         if g.last_discard
838           g.challenge
839         else
840           m.reply _("previous move cannot be challenged")
841         end
842       else
843         m.reply _("It's not your turn")
844       end
845     when :od # show playing order
846       return if m.params
847       g.show_order
848     when :ti # show play time
849       return if m.params
850       g.show_time
851     when :tu # show whose turn is it
852       return if m.params
853       if g.has_turn?(m.source)
854         m.nickreply _("it's your turn, sleepyhead")
855       else
856         g.show_turn(:cards => false)
857       end
858     end
859   end
860
861   def create_game(m, p)
862     if @games.key?(m.channel)
863       m.reply _("There is already an %{uno} game running here, say 'jo' to join in") % { :uno => UnoGame::UNO }
864       return
865     end
866     @games[m.channel] = UnoGame.new(self, m.channel)
867     m.reply _("Ok, created %{uno} game on %{channel}, say 'jo' to join in") % {
868       :uno => UnoGame::UNO,
869       :channel => m.channel
870     }
871   end
872
873   def end_game(m, p)
874     unless @games.key?(m.channel)
875       m.reply _("There is no %{uno} game running here") % { :uno => UnoGame::UNO }
876       return
877     end
878     @games[m.channel].end_game(true)
879   end
880
881   def do_end_game(channel)
882     @games.delete(channel)
883   end
884
885   def replace_player(m, p)
886     unless @games.key?(m.channel)
887       m.reply _("There is no %{uno} game running here") % { :uno => UnoGame::UNO }
888       return
889     end
890     @games[m.channel].replace_player(p[:old], p[:new])
891   end
892
893   def drop_player(m, p)
894     unless @games.key?(m.channel)
895       m.reply _("There is no %{uno} game running here") % { :uno => UnoGame::UNO }
896       return
897     end
898     @games[m.channel].drop_player(p[:nick] || m.source.nick)
899   end
900
901   def print_stock(m, p)
902     unless @games.key?(m.channel)
903       m.reply _("There is no %{uno} game running here") % { :uno => UnoGame::UNO }
904       return
905     end
906     stock = @games[m.channel].stock
907     m.reply(_("%{num} cards in stock: %{stock}") % {
908       :num => stock.length,
909       :stock => stock.join(' ')
910     }, :split_at => /#{NormalText}\s*/)
911   end
912 end
913
914 pg = UnoPlugin.new
915
916 pg.map 'uno', :private => false, :action => :create_game
917 pg.map 'uno end', :private => false, :action => :end_game
918 pg.map 'uno drop', :private => false, :action => :drop_player
919 pg.map 'uno giveup', :private => false, :action => :drop_player
920 pg.map 'uno drop :nick', :private => false, :action => :drop_player, :auth_path => ':other'
921 pg.map 'uno replace :old [with] :new', :private => false, :action => :replace_player
922 pg.map 'uno stock', :private => false, :action => :print_stock
923
924 pg.default_auth('stock', false)
925 pg.default_auth('end', false)
926 pg.default_auth('drop::other', false)
927 pg.default_auth('replace', false)