954d44085c
Fixed workflows
2023-08-11 14:29:35 +02:00
8a6543cc1e
Updated the github workflows
2023-08-11 14:27:24 +02:00
485efeebaf
Does this one work?
v1.0.2
2023-08-11 14:18:52 +02:00
f803dc7771
Fixed github workflow (hopefully)
2023-08-11 14:10:35 +02:00
46c42cb67d
Refactored main.go to make the entry point clearer
2023-08-11 14:09:31 +02:00
32f7720069
Added github workflow for auto-generating
...
pre-resleases
2023-08-11 14:05:55 +02:00
3c7c181911
Fixed failing tests
v1.0.1
2023-08-11 13:48:39 +02:00
a7dd3e1a81
Added argument parsing to run the solver correctly
v1.0.0
2023-08-11 12:30:37 +02:00
5500007fb4
Added a solver: turn left
2023-08-10 19:39:16 +02:00
a80e2c9cc3
Added a logging system to show home much time it
...
took to do a certain part of the program
2023-08-10 19:38:43 +02:00
fb59c890ca
Corrected some bugs for when it came to parsing
...
and writing mazes
2023-08-10 19:13:24 +02:00
18f37e65ed
added new maze (15x15) for testing purposes
2023-08-10 19:11:15 +02:00
0f05998295
Changed type of maze in SolvedMaze to pointer, to
...
not copy the entire maze by value
2023-08-10 10:30:37 +02:00
99fc6ba48a
renamed assets so that they are more consistent
2023-08-09 19:54:38 +02:00
1cfd92593f
implemented image reader
2023-08-09 19:51:23 +02:00
e72e9e694a
added the png version of the mazes used for
...
testing purposes (so that the reader has something to read)
2023-08-09 17:46:24 +02:00
41e665c169
Written the ImageWriter
2023-08-09 17:44:59 +02:00
acf8aff469
Moved the generation of the solved mazes into its
...
own file since they are needed for both ImageWriter and StringsWriter
2023-08-09 17:42:53 +02:00
fd17cb3526
Added description comments
2023-08-09 17:41:44 +02:00
4949e5fa21
Updated writer interface and wrote the strings
...
writer
2023-08-09 10:21:11 +02:00
4852aece8a
Made the maze generation part of normal.txt a bit
...
shorter and more readable (or at least i hope so)
2023-08-09 10:17:00 +02:00
c77e3f514a
Removed TODO commment that was done
2023-08-09 10:14:45 +02:00
f085efa2fe
fixed name of file name in comment
2023-08-09 10:14:29 +02:00
92ba1b48e4
Forgot to put the width and height of the maze
...
when I parsed it, oops (and now it's tested)
2023-08-07 18:22:04 +02:00
58787dc4af
moved assertEquals to utils so that other tests
...
can use it
2023-08-07 18:18:25 +02:00
3d4a2b9bfb
Re-enabled text_test.go
2023-08-07 18:09:58 +02:00
b6dff509f9
Fixed parser
2023-08-07 17:43:35 +02:00
bfc370bdda
Removed useless prints in parser_test
2023-08-07 17:43:01 +02:00
8b0fa4c1f9
Moved RawMaze to reader package since it is used
...
mostly there
2023-08-05 16:36:49 +02:00
0e42c0f15d
Reader -> Reader+Parser refactoring: COMPLETE
...
Added a string reader too so that one can create a maze just with a slice of stings and RawMaze now has chunks of bytes to limit memory usage with big mazes (hopefully)
2023-08-05 16:21:56 +02:00
6481fe2665
Added min function to utils to get min between two
...
comparable types (how isn't it in the STL?)
2023-08-05 16:15:54 +02:00
ee9d439485
Added isWall and isPath to RawMaze with tests
2023-08-05 12:02:42 +02:00
130deb40d8
Reader -> Reader+Parser refactoring: main.go now
...
uses the new structure
2023-08-05 12:01:29 +02:00
c8e517f73c
Moved RaMaze to its own file, cuz we gonna need
...
some more functions and it would just clutter maze.go
2023-08-05 11:29:53 +02:00
be688e6920
Reader -> Reader+Parser refactoring: added tests
...
for new reader
2023-08-05 11:21:32 +02:00
435ea54343
Added String() method to RawMaze for debugging
...
purposes
2023-08-05 11:20:53 +02:00
929c5b58a0
Reader -> Reader+Parser refactoring: moved the
...
reading of the lines to its own function
2023-08-05 11:03:42 +02:00
ab6f85b7b6
Reader -> Reader+Parser refacfotring: create the
...
parser package, moved the parsing aspect of reader
to parser (still have some naughty stuff like
WallChar and PathChar in parser but it'll be fixed
in next commit)
2023-08-05 10:38:46 +02:00
e04aad4b77
Start of refactoring for reader+parser: read all
...
the lines before starting to parse
2023-08-05 10:01:34 +02:00
345d9267ad
moved instructions around to make it more
...
consistent and fixed tiny bug
2023-08-05 09:38:12 +02:00
ff28832f72
Added missing logic to text reader and tested it
2023-08-04 23:53:34 +02:00
f46af33702
Added a new test case for text reader
2023-08-04 23:06:37 +02:00
c2d16a4d20
Removed useless print statements
2023-08-04 23:05:16 +02:00
77aa385918
Written the first version of a text reader, with
...
tests
2023-08-04 21:05:28 +02:00
a4d2dc99af
Updated gitignore
2023-08-04 21:05:14 +02:00
4e4dde7ba8
Changed the structure of the Maze struct
2023-08-04 19:11:26 +02:00
fb99f77c4f
Renamed maze-solver.go to main.go
2023-08-04 19:11:00 +02:00
898d8463c8
Drawn the skeleton code for the structure of the project
2023-08-03 21:07:58 +02:00
ae8ea353ca
initalized go project
2023-08-03 20:08:52 +02:00
e932e370d7
Initial commit
2023-08-03 20:05:01 +02:00