Rock–paper–scissors is a popular hand game. However, some nerds may prefer playing this game on their computer rather than actually shaking their hands.

Rock–paper–scissors rules

Image credit: Enzoklop, Wikimedia Commons, CC-BY-SA 3.0

We can write this game in less than 10 lines of code in the Julia programming language. This implementation will offer the opportunity to have a closer look to one of Julia’s main features: multiple dispatch.

The game

Here we go:

1
2
3
4
5
6
7
8
9
abstract type Shape end
struct Rock     <: Shape end
struct Paper    <: Shape end
struct Scissors <: Shape end
play(::Type{Paper}, ::Type{Rock})     = "Paper wins"
play(::Type{Paper}, ::Type{Scissors}) = "Scissors wins"
play(::Type{Rock},  ::Type{Scissors}) = "Rock wins"
play(::Type{T},     ::Type{T}) where {T<: Shape} = "Tie, try again"
play(a::Type{<:Shape}, b::Type{<:Shape}) = play(b, a) # Commutativity

That’s all. Nine lines of code, as promised. This is considerably shorter, simpler, and easier to understand than any other implementation in all languages over at Rosetta Code.

Explanation

Let’s dissect the code.

abstract type Shape end

defines Shape as an abstract type. This will be the parent of the concrete types Rock, Paper and Scissors that represent the characters of the game. To be fair, it’s not necessary to create the Shape abstract type (so they would be eight lines in total!), but this allows us to define methods for the play function only with Shape subtypes as arguments, so that one can extended that function to other games without clashing with our definitions.

struct Rock     <: Shape end
struct Paper    <: Shape end
struct Scissors <: Shape end

Here the concrete shapes are defined as composite types, subtypes of Shape (indicated by the <: sign). They don’t actually contain anything, but that’s OK, we just want to define the elements of the game as types in order to take advantage of Julia’s type system.

play(::Type{Paper}, ::Type{Rock})     = "Paper wins"
play(::Type{Paper}, ::Type{Scissors}) = "Scissors wins"
play(::Type{Rock},  ::Type{Scissors}) = "Rock wins"

These are the basic rules of the game. We’ve defined three methods for the play function, which return a string indicating the winning shape. The two arguments of these methods are two shapes, for instance Rock and Scissors. If you look carefully to the definitions, we omitted the names of the arguments (they should come right before the :: in the list of elements), because they’re not used in the body of the function and we don’t need them. Instead, what’s important here is the type of both arguments.

play(::Type{T}, ::Type{T}) where {T<: Shape} = "Tie, try again"

With this single line we’ve defined the tie for all shapes. The arguments of this method are two equal shapes, they have the same type T subtype of Shape, whatever T is. T doesn’t even need to be defined at this point, because in Julia, dispatch is dynamic on all arguments (in in C++/Java you can achieve dynamic dispatch on first argument, but it’ll be static for the others).

So far we’ve seen the rules, for example, for the arguments Paper and Rock, in this order, but there is no rule for the same arguments in the reversed order. Here comes the magic:

play(a::Type{<:Shape}, b::Type{<:Shape}) = play(b, a)

Recall that multiple dispatch is the ability to define function behavior across many combinations of argument types. What’s crucial here is that the type of all arguments matters, not just the first one as in object-oriented programming languages. If none of the previous methods applies (Paper-Rock, Paper-Scissors, Rock-Scissors and all the combinations of arguments with equal types), this method will be used, which simply swaps the two arguments so that one of the above methods can be called.

Besides letting us save four definitions, multiple dispatch makes the program very efficient. The appropriate method is quickly selected based on the type of all the arguments. Without multiple dispatch we’d have to write explicitly a sequence of at least seven if ... elseif ... end, but branching comes at a performance cost. Of course this isn’t a big deal in a simple game like this, but think about your CPU-intensive application.

Play the game

Now that we’ve implemented the game we can play it in the Julia REPL:

julia> abstract type Shape end

julia> struct Rock     <: Shape end

julia> struct Paper    <: Shape end

julia> struct Scissors <: Shape end

julia> play(::Type{Paper}, ::Type{Rock})     = "Paper wins"
play (generic function with 1 method)

julia> play(::Type{Paper}, ::Type{Scissors}) = "Scissors wins"
play (generic function with 2 methods)

julia> play(::Type{Rock},  ::Type{Scissors}) = "Rock wins"
play (generic function with 3 methods)

julia> play(::Type{T},     ::Type{T}) where {T<: Shape} = "Tie, try again"
play (generic function with 4 methods)

julia> play(a::Type{<:Shape}, b::Type{<:Shape}) = play(b, a) # Commutativity
play (generic function with 5 methods)

julia> play(Paper, Scissors)
"Scissors wins"

julia> play(Rock, Rock)
"Tie, try again"

julia> play(Rock, Paper)
"Paper wins"

julia> @which play(Rock, Paper)
play(a::Type{#s1} where #s1<:Shape, b::Type{#s2} where #s2<:Shape) in Main at REPL[9]:1

There was no explicit method for the combination of arguments Rock-Paper, but the commutative rule has been used here, as confirmed by the @which macro.

Play randomly

We can also add some randomness to the game. The rand function can pick up a random element from a given collection. Luckily, the subtypes function returns the array with all the subtypes of the given abstract type:

julia> subtypes(Shape)
3-element Array{Union{DataType, UnionAll},1}:
 Paper
 Rock
 Scissors

julia> rand(subtypes(Shape))
Rock

julia> rand(subtypes(Shape))
Rock

julia> rand(subtypes(Shape))
Paper

julia> rand(subtypes(Shape))
Scissors

julia> play(rand(subtypes(Shape)), rand(subtypes(Shape)))
"Scissors wins"

julia> play(rand(subtypes(Shape)), rand(subtypes(Shape)))
"Paper wins"

julia> play(rand(subtypes(Shape)), rand(subtypes(Shape)))
"Paper wins"

julia> play(rand(subtypes(Shape)), rand(subtypes(Shape)))
"Tie, try again"

julia> play(rand(subtypes(Shape)), rand(subtypes(Shape)))
"Paper wins"

Extend to four shapes

Here it is proposed an extension of the game to a fourth shape, the well, with the following rules:

  • the well wins against rock and scissors, because both fall into it,
  • the well loses against paper, because the paper covers it.

This is a non-zero-sum game, but this isn’t a concern for us.

We can extend the above Julia implementation to include the well.

1
2
3
4
struct Well <: Shape end
play(::Type{Well}, ::Type{Rock})     = "Well wins"
play(::Type{Well}, ::Type{Scissors}) = "Well wins"
play(::Type{Well}, ::Type{Paper})    = "Paper wins"

We accomplished the extension with just four additional lines, one to define the new type and three for the new game rules. We don’t need to redefine the tie or the commutativity methods, thanks to Julia’s dynamic type system.

Here you can see that multiple dispatch let us extend the game very easily, saving us four more definitions. Out of the total \(4 \times 4 = 16\) necessary definitions we had just \(8\) definitions, without giving up commutativity.

Let’s see it in action in the REPL:

julia> struct Well <: Shape end

julia> play(::Type{Well}, ::Type{Rock})     = "Well wins"
play (generic function with 6 methods)

julia> play(::Type{Well}, ::Type{Scissors}) = "Well wins"
play (generic function with 7 methods)

julia> play(::Type{Well}, ::Type{Paper})    = "Paper wins"
play (generic function with 8 methods)

julia> play(Paper, Well)
"Paper wins"

julia> play(Well, Rock)
"Well wins"

julia> play(Well, Well)
"Tie, try again"

Extra Bonus (added on 2019-02-26)

The main goal of this post is to show how multiple dispatch enables writing generic and extensible code in a few lines. Mason Protter showed that we can get a fancier and more informative output by writing some more code:

abstract type Shape end
struct Rock     <: Shape end
struct Paper    <: Shape end
struct Scissors <: Shape end

const rock     = Rock()
const paper    = Paper()
const scissors = Scissors()

Base.show(io::IO, ::Rock)     = print(io, "rock")
Base.show(io::IO, ::Paper)    = print(io, "paper")
Base.show(io::IO, ::Scissors) = print(io, "scissors")

@enum Player Tie=0 One=1 Two=2
struct Winner
    player::Player
    shape::Shape
end

function Base.show(io::IO, w::Winner)
    if w.player == Tie
        str = print(io, "Players tied with $(w.shape)")
    else
        str = print(io, "Player $(w.player) wins with $(w.shape)!")
    end
end

function Base.adjoint(w::Winner)
    if w.player == Tie
        w
    elseif w.player == One
        Winner(Two, w.shape)
    else
        Winner(One, w.shape)
    end
end

play(::Paper, ::Rock)     = Winner(One, paper)
play(::Paper, ::Scissors) = Winner(Two, scissors)
play(::Rock,  ::Scissors) = Winner(One, rock)
play(a::T,    ::T) where {T<:Shape} = Winner(Tie, a)
play(a::T1,  b::T2) where {T1<:Shape,T2<:Shape} = (play(b, a))' # Anticommutivity of winning players

instanceof(x::Type) = x.instance
Base.rand(::Type{Shape}) = rand(instanceof.(subtypes(Shape)))

function playrand(verbose=true)
    s1 = rand(Shape); s2 = rand(Shape)
    verbose && println("Player 1 chooses $s1, player 2 chooses $s2")
    play(s1, s2)
end

Now we can play in the REPL with the single playrand() command:

julia> playrand()
Player 1 chooses scissors, player 2 chooses rock
Player Two wins with rock!

julia> playrand()
Player 1 chooses scissors, player 2 chooses scissors
Players tied with scissors

julia> playrand()
Player 1 chooses scissors, player 2 chooses paper
Player One wins with scissors!

julia> playrand()
Player 1 chooses scissors, player 2 chooses scissors
Players tied with scissors

julia> playrand()
Player 1 chooses paper, player 2 chooses rock
Player One wins with paper!

julia> playrand()
Player 1 chooses paper, player 2 chooses scissors
Player Two wins with scissors!