4 # :title: Uno Game Plugin for rbot
6 # Author:: Giuseppe "Oblomov" Bilotta <giuseppe.bilotta@gmail.com>
8 # Copyright:: (C) 2008 Giuseppe Bilotta
12 # Uno Game: get rid of the cards you have
15 COLORS = %w{Red Green Blue Yellow}
16 SPECIALS = %w{+2 Reverse Skip}
17 NUMERICS = (0..9).to_a
18 VALUES = NUMERICS + SPECIALS
20 def UnoGame.color_map(clr)
33 def UnoGame.irc_color_bg(clr)
34 Irc.color([:white,:black][COLORS.index(clr)%2],UnoGame.color_map(clr))
37 def UnoGame.irc_color_fg(clr)
38 Irc.color(UnoGame.color_map(clr))
41 def UnoGame.colorify(str, fg=false)
43 str.length.times do |i|
45 UnoGame.irc_color_fg(COLORS[i%4]) :
46 UnoGame.irc_color_bg(COLORS[i%4]) ) +str[i,1]
51 UNO = UnoGame.colorify('UNO!', true)
57 attr_reader :shortform
61 def initialize(color, value)
62 raise unless COLORS.include? color
64 raise unless VALUES.include? value
65 if NUMERICS.include? value
73 @shortform = (@color[0,1]+@value).downcase
75 @shortform = (@color[0,1]+@value.to_s[0,1]).downcase
77 @to_s = UnoGame.irc_color_bg(@color) +
78 Bold + ['', @color, @value, ''].join(' ') + NormalText
82 return 0 unless @value.to_s[0,1] == '+'
83 return @value[1,1].to_i
87 SPECIALS.include?(@value)
91 cc = self.color <=> other.color
93 return self.value.to_s <=> other.value.to_s
101 # Wild, Wild +4 cards
103 def initialize(value=nil)
105 raise if value and not value == '+4'
108 @shortform = 'w'+value
114 @to_s = UnoGame.colorify(['', @color, @value, ''].compact.join(' '))
131 has << c if c.shortform == short
140 Bold + @user.to_s + Bold
148 attr_reader :player_has_picked
151 def initialize(plugin, channel)
165 @players.each { |p| return p if p.user == user }
169 def announce(msg, opts={})
170 @bot.say channel, msg, opts
173 def notify(player, msg, opts={})
174 @bot.notice player.user, msg, opts
178 @base_stock = COLORS.inject([]) do |list, clr|
180 list << Card.new(clr, n)
181 list << Card.new(clr, n) unless n == 0
186 @base_stock << Wild.new
187 @base_stock << Wild.new('+4')
192 @stock.replace @base_stock
193 # remove the cards in the players hand
194 @players.each { |p| p.cards.each { |c| @stock.delete_one c } }
195 # remove current top discarded card if present
197 @stock.delete_one(discard)
203 debug "Starting game"
206 announce _("%{p} deals the first card from the stock") % {
212 while Wild === card do
213 @stock.insert(rand(@stock.length), card)
222 @start_time = Time.now
226 if @players.length > 2
228 # put the current player back in its place
229 @players.unshift @players.pop
230 announce _("Playing order was reversed!")
237 @players << @players.shift
238 announce _("%{p} skips a turn!") % {
239 # this is first and not last because the actual
240 # turn change will be done by the following next_turn
256 def set_discard(card)
258 @value = card.value.dup rescue card.value
262 @color = card.color.dup
265 @picker += card.picker
266 @last_picker = @discard.picker
275 def next_turn(opts={})
276 @players << @players.shift
277 @player_has_picked = false
282 # When a +something is online, you can only play
283 # a +something of same or higher something, or a Reverse of
287 if (card.value == 'Reverse' and card.color == @color) or card.picker >= @last_picker
293 # You can always play a Wild
294 # FIXME W+4 can only be played if you don't have a proper card
295 # TODO make it playable anyway, and allow players to challenge
296 return true if Wild === card
297 # On a Wild, you must match the color
299 return card.color == @color
301 # Otherwise, you can match either the value or the color
302 return (card.value == @value) || (card.color == @color)
307 def play_card(source, cards)
308 debug "Playing card #{cards}"
309 p = get_player(source)
310 shorts = cards.scan(/[rbgy]\s*(?:\+?\d|[rs])|w\s*(?:\+4)?/)
312 if shorts.length > 2 or shorts.length < 1
313 announce _("you can only play one or two cards")
316 if shorts.length == 2 and shorts.first != shorts.last
317 announce _("you can only play two cards if they are the same")
320 if cards = p.has_card?(shorts.first)
322 unless can_play(cards.first)
323 announce _("you can't play that card")
326 if cards.length >= shorts.length
327 set_discard(p.cards.delete_one(cards.shift))
329 set_discard(p.cards.delete_one(cards.shift))
330 announce _("%{p} plays %{card} twice!") % {
335 announce _("%{p} plays %{card}") % { :p => p, :card => @discard }
337 if p.cards.length == 1
338 announce _("%{p} has %{uno}!") % {
341 elsif p.cards.length == 0
352 announce _("%{p}, choose a color with: co r|b|g|y") % { :p => p }
355 announce _("you don't have two cards of that kind")
358 announce _("you don't have that card")
365 announce _("%{p} passes turn, and has to pick %{b}%{n}%{b} cards!") % {
366 :p => p, :b => Bold, :n => @picker
371 if @player_has_picked
372 announce _("%{p} passes turn") % { :p => p }
374 announce _("you need to pick a card first")
381 def choose_color(user, color)
392 announce _('what color is that?')
395 announce _('color is now %{c}') % {
396 :c => UnoGame.irc_color_bg(@color)+" #{@color} "
403 announce _("This %{uno} game has been going on for %{time}") % {
405 :time => Utils.secs_to_string(Time.now - @start_time)
408 announce _("The game hasn't started yet")
413 announce _("%{uno} playing turn: %{players}") % {
414 :uno => UNO, :players => players.join(' ')
418 def show_turn(opts={})
420 cards = opts[:cards] if opts.key?(:cards)
421 player = @players.first
422 announce _("it's %{player}'s turn") % { :player => player }
423 show_user_cards(player) if cards
426 def has_turn?(source)
427 @players.first.user == source
432 announce _("next player must respond correctly or pick %{b}%{n}%{b} cards") % {
433 :b => Bold, :n => @picker
439 announce _("Current discard: %{card} %{c}") % { :card => @discard,
440 :c => (Wild === @discard) ? UnoGame.irc_color_bg(@color) + " #{@color} " : nil
445 def show_user_cards(player)
446 p = Player === player ? player : get_player(player)
447 notify p, _('Your cards: %{cards}') % {
448 :cards => p.cards.join(' ')
452 def show_all_cards(u=nil)
453 announce(@players.inject([]) { |list, p|
454 list << [p, p.cards.length].join(': ')
463 announce _("%{player} picks a card") % { :player => p }
465 @player_has_picked = true
468 def deal(player, num=1)
471 picked << @stock.delete_one
472 if @stock.length == 0
473 announce _("Shuffling discarded cards")
475 if @stock.length == 0
476 announce _("No more cards!")
477 end_game # FIXME nope!
482 notify player, _("You picked %{picked}") % { :picked => picked.join(' ') }
483 player.cards += picked
488 if p = get_player(user)
489 announce _("you're already in the game, %{p}") % {
496 announce _("%{p} joins this game of %{uno}") % {
501 @bot.timer.reschedule(@join_timer, 10)
502 elsif @players.length > 1
503 announce _("game will start in 20 seconds")
504 @join_timer = @bot.timer.add_once(20) {
511 announce _("%{uno} game finished! The winner is %{p}") % {
512 :uno => UNO, :p => @players.first
516 announce _("%{p} has to pick %{b}%{n}%{b} cards!") % {
517 :p => p, :n => @picker, :b => Bold
522 score = @players.inject(0) do |sum, p|
523 if p.cards.length > 0
524 announce _("%{p} still had %{cards}") % {
525 :p => p, :cards => p.cards.join(' ')
527 sum += p.cards.inject(0) do |cs, c|
533 announce _("%{p} wins with %{b}%{score}%{b} points!") % {
534 :p => @players.first, :score => score, :b => Bold
536 @plugin.end_game(@channel)
541 class UnoPlugin < Plugin
548 def help(plugin, topic="")
549 (_("%{uno} game. !uno to start a game. in-game commands (no prefix): ") % {
552 _("'jo' to join in"),
553 _("'pl <card>' to play <card>"),
554 _("'pe' to pick a card"),
555 _("'pa' to pass your turn"),
556 _("'co <color>' to pick a color"),
557 _("'ca' to show current cards"),
558 _("'cd' to show the current discard"),
559 _("'od' to show the playing order"),
560 _("'ti' to show play time"),
561 _("'tu' to show whose turn it is")
566 return unless @games.key?(m.channel)
567 g = @games[m.channel]
571 g.add_player(m.source)
574 if g.has_turn?(m.source)
575 if g.player_has_picked
576 m.reply _("you already picked a card")
578 m.reply _("you can't pick a card")
580 g.pick_card(m.source)
583 m.reply _("It's not your turn")
587 if g.has_turn?(m.source)
590 m.reply _("It's not your turn")
593 if g.has_turn?(m.source)
594 g.play_card(m.source, m.params.downcase)
596 m.reply _("It's not your turn")
598 when :co # pick color
599 if g.has_turn?(m.source)
600 g.choose_color(m.source, m.params.downcase)
602 m.reply _("It's not your turn")
604 when :ca # show current cards
606 g.show_all_cards(m.source)
607 when :cd # show current discard
613 when :od # show playing order
616 when :ti # show play time
619 when :tu # show whose turn is it
621 if g.has_turn?(m.source)
622 m.nickreply _("it's your turn, sleepyhead")
624 g.show_turn(:cards => false)
629 def create_game(m, p)
630 if @games.key?(m.channel)
631 m.reply _("There is already an %{uno} game running here, say 'jo' to join in") % { :uno => UnoGame::UNO }
634 @games[m.channel] = UnoGame.new(self, m.channel)
635 m.reply _("Ok, created %{uno} game on %{channel}, say 'jo' to join in") % {
636 :uno => UnoGame::UNO,
637 :channel => m.channel
641 def end_game(channel)
642 @games.delete(channel)
645 def print_stock(m, p)
646 unless @games.key?(m.channel)
647 m.reply _("There is no %{uno} game running here") % { :uno => UnoGame::UNO }
650 stock = @games[m.channel].stock
651 m.reply(_("%{num} cards in stock: %{stock}") % {
652 :num => stock.length,
653 :stock => stock.join(' ')
654 }, :split_at => /#{NormalText}\s*/)
660 pg.map 'uno', :private => false, :action => :create_game
661 pg.map 'uno stock', :private => false, :action => :print_stock
662 pg.default_auth('stock', false)