about summary refs log tree commit diff stats
path: root/lib/Fornax/CLI.rakumod
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2021-11-16 22:48:50 +0530
committerAndinus <andinus@nand.sh>2021-11-16 22:48:50 +0530
commitde4d273c225d1fc672c26bbe0bb3b0fe330c4528 (patch)
tree67c12572f8614f81216504d33ab72c14242a3a27 /lib/Fornax/CLI.rakumod
parent7858dba48b41417f951031d36e7fbf66da8d14e2 (diff)
downloadfornax-de4d273c225d1fc672c26bbe0bb3b0fe330c4528.tar.gz
Update to latest fornax format
Diffstat (limited to 'lib/Fornax/CLI.rakumod')
-rw-r--r--lib/Fornax/CLI.rakumod54
1 files changed, 33 insertions, 21 deletions
diff --git a/lib/Fornax/CLI.rakumod b/lib/Fornax/CLI.rakumod
index 38ed03d..35109b7 100644
--- a/lib/Fornax/CLI.rakumod
+++ b/lib/Fornax/CLI.rakumod
@@ -37,23 +37,28 @@ multi sub MAIN(
     constant $PATH = '.';
     constant $BLOK = '#';
     constant $DEST = '$';
+    constant $STRT = '^';
     constant $VIS = '-';
     constant $CUR = '@';
+    constant $CURPATH = '~';
 
     constant %CANVAS = :1920width, :1080height;
 
     # Colors.
     constant %C = (
-        red => "#f2b0a2",
-        blue => "#b5d0ff",
-        cyan => "#c0efff",
-        black => "#000000",
-        white => "#ffffff",
-        green => "#aecf90",
-
-        pointer => "#093060",
-        pointer-red => "#5d3026",
-        pointer-green => "#184034",
+        bg-main => "#ffffff",
+
+        red-subtle-bg => "#f2b0a2",
+        blue-subtle-bg => "#b5d0ff",
+        cyan-subtle-bg => "#c0efff",
+        green-subtle-bg => "#aecf90",
+
+        fg-main => "#000000",
+
+        fg-special-cold => "#093060",
+        fg-special-warm => "#5d3026",
+        fg-special-mild => "#184034",
+        fg-special-calm => "#61284f",
     ).map: {.key => hex2rgb(.value)};
 
     # Every cell must be square. Get the maximum width, height and use
@@ -106,7 +111,7 @@ multi sub MAIN(
             ) {
                 given Cairo::Context.new($_) {
                     # Paint the entire canvas white.
-                    .rgb: |%C<white>;
+                    .rgb: |%C<bg-main>;
                     .rectangle(0, 0, %CANVAS<width>, %CANVAS<height>);
                     .fill;
 
@@ -119,23 +124,30 @@ multi sub MAIN(
                             .rectangle: |@target;
 
                             given @grid[$r][$c] -> $cell {
+                                # According to the format, current
+                                # position may be prioritized over
+                                # Destination symbol so we colorize it
+                                # according to $status.
                                 when $cell eq $CUR {
-                                    .rgba: |%C<pointer>, 0.56;
-                                    .rgba: |%C<pointer-green>, 0.72 if $status == Completed;
-                                    .rgba: |%C<pointer-red>, 0.72 if $status == Blocked;
+                                    .rgba: |%C<fg-special-cold>, 0.56;
+                                    .rgba: |%C<fg-special-mild>, 0.72 if $status == Completed;
+                                    .rgba: |%C<fg-special-warm>, 0.72 if $status == Blocked;
+                                }
+                                when $cell eq $CURPATH {
+                                    .rgba: |%C<blue-subtle-bg>, 0.84;
+                                    .rgba: |%C<green-subtle-bg>, 0.96 if $status == Completed;
+                                    .rgba: |%C<red-subtle-bg>, 0.96 if $status == Blocked;
                                 }
                                 when $cell eq $VIS {
-                                    .rgba: |%C<blue>, 0.72;
-                                    .rgba: |%C<green>, 0.96 if $status == Completed;
-                                    .rgba: |%C<red>, 0.96 if $status == Blocked;
+                                    .rgba: |%C<cyan-subtle-bg>, 0.72;
                                 }
-                                when $cell eq $BLOK { .rgba: |%C<black>, 0.56 }
-                                when $cell eq $DEST { .rgb: |%C<green> }
-                                default { .rgba: |%C<black>, 0.08 }
+                                when $cell eq $BLOK { .rgba: |%C<fg-main>, 0.56 }
+                                when $cell eq $STRT|$DEST { .rgba: |%C<fg-special-mild>, 0.72 }
+                                default { .rgba: |%C<fg-main>, 0.08 }
                             }
                             .fill :preserve;
 
-                            .rgb: |%C<black>;
+                            .rgb: |%C<fg-main>;
                             .stroke;
                         }
                     }
s='alt'>
83822d63 ^




89bcb567 ^
8b9dd2d1 ^
83822d63 ^

aff782c4 ^
83822d63 ^
dd9ba09a ^
af5797ee ^
aff782c4 ^
af5797ee ^
cf02c20b ^
83822d63 ^
af5797ee ^
83822d63 ^













dd9ba09a ^
83822d63 ^








cf02c20b ^
83822d63 ^










8b9dd2d1 ^
83822d63 ^













































8b9dd2d1 ^





































































83822d63 ^
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233