blob: d97f9d63b0728328001e9bad85743352bddf3172 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
unit module Octans::Puzzle;
use WWW;
# get-puzzle returns the @puzzle given input path.
sub get-puzzle (
Str $path
) is export {
my @puzzle;
# Read the puzzle from file if it exists.
if $path.IO.f {
@puzzle = $path.IO.lines.map(*.words.cache.Array);
} else {
# $url will hold the url that we'll call to get the toot data.
my Str $url;
# User can pass 2 types of links, either it will be the one
# when they view it from their local instance or the one they
# get from Algot's profile. We set $url from it.
if $path.match("web/statuses") -> $match {
$url = $match.replace-with("api/v1/statuses");
} else {
$url = "https://mastodon.art/api/v1/statuses/" ~ $path.split("/")[*-1];
}
# grids capture grids of a row.
my token grids { \S \*? }
# rows capture rows of the puzzle.
my token rows { <grids> ** 2..* % \h }
# jget just get's the url & decodes the json. We access the
# description field of 1st media attachment.
if (jget($url)<media_attachments>[0]<description> ~~
/ \n\n <rows>+ % \n /
) -> $match {
for 0 .. $match<rows>.end -> $y {
for 0 .. $match<rows>[$y]<grids>.end -> $x {
@puzzle[$y][$x] = $match<rows>[$y]<grids>[$x].lc;
}
}
}
}
return @puzzle;
}
# set-gray squares will set the @gray-squares array while removing the
# "*" in @puzzle. Algot marks them with an asterisk ("*") after the
# character.
sub set-gray-squares (
@puzzle --> List
) is export {
my List @gray-squares;
for 0 .. @puzzle.end -> $y {
for 0 .. @puzzle[$y].end -> $x {
if @puzzle[$y][$x].ends-with("*") {
@puzzle[$y][$x] .= chop;
push @gray-squares, ($y, $x);
}
}
}
return @gray-squares;
}
|