Solution: Linking Worlds
Understand the solution to the “Linking Worlds” challenge.
We'll cover the following...
Solution
Let's execute the following code solution and see how it works:
Press + to interact
require 'sphere_grid'require 'prims'# reopen and add a new possible neighborclass HemisphereCellattr_accessor :alien_grid, :aliendef neighborssuper.tap do |list|list << alien if alienendendendclass MultiSphereGridattr_reader :subgridsdef initialize(subgrids, connections)@subgrids = subgrids@subgrids.each do |subgrid|others = @subgrids - [ subgrid ]connections.times doother = others.samplelocal, alien = subgrid.random_cell, other.random_cell# skip cells that are already linked to another subgridnext if local.alien || alien.alienlocal.alien_grid = otherlocal.alien = alienalien.alien_grid = subgridalien.alien = localendendenddef random_cell@subgrids.sample.random_cellenddef each_cell@subgrids.each do |subgrid|subgrid.each_cell { |cell| yield cell }endenddef braid(p=1.0)@subgrids.each { |subgrid| subgrid.braid(p) }endendworld = SphereGrid.new(20)moon1 = SphereGrid.new(10)moon2 = SphereGrid.new(8)moon3 = SphereGrid.new(6)grid = MultiSphereGrid.new([ world, moon1, moon2, moon3 ], 3)TruePrims.on(grid)grid.braid(0.5)
Code explanation
Lines 18–37: We initialize ...