Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
I like the idea. Here's my attempt: I've tried to use a few more of the advanced features...
#!/usr/bin/perl6 given new life(dimension => 20) { for 1..Inf -> $count { .display(); print "TURN $count, press enter for next turn, ctl-c to quit"; <$*STDIN>; .calculate(); } } class life { has int $.dimension; has @.grid is dim($.dimension, $.dimension) is base_index($.dimension/2, $.dimension/2) of bit is default(0) is str {<< - + >>[$_]}; method BUILD($.dimension) { for (-1, 0), (-1, 1), (0, 0), (0, -1), (1, 0) -> $x, $y { @.grid[$y][$x] = 1; } } method will_live(int $y, int $x) returns bool is private { my $neighborhood = @.grid[$y+(-1|0|+1)][$x+(-1|0|+1)]; my $alive = sum($neighborhood.elems); @.grid[$y][$x] ?? 1 < $alive-1 < 4 :: $alive == 3; } method calculate { my @new_grid is like @.grid; for @new_grid.kv -> $y, @new_row is rw { for @row.kv -> $x, $new_cell is rw { $new_cell = .will_live($y,$x) ?? 1 :: 0; } } @.grid = @new_grid; } method display { for @.grid -> @row { print @row, "\n"; } } }
--Dave

Update: I'm pretty sure the junction I gave for the neighborhood won't work: here's an improved will_live method:

method will_live(int $y, int $x) returns bool { my $offsets = [-1|0|+1 , -1|0|+1] & none([0,0]); my @neighbors = ($offsets >>+<< [$y,$x]).states; my @cells = @neighbors.map {@.grid[$_[0]][$_[1]]}; my $alive = @cells.sum; @.grid[$y][$x] ?? $alive == 2|3 :: $alive == 3; }
Still too much line noise though. There must be a simpler way.

In reply to Re: Prolegemona To A Future Scripting Language: Game Of Life In Perl 6 by dpuu
in thread Prolegemona To A Future Scripting Language: Game Of Life In Perl 6 by jaldhar

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (4)
As of 2024-04-19 17:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found