To make a map for the game Snake, you have to follow the steps below in general.
draw a black and white image(120*29) by any tool you like.
Use the provided tools to convert the image into a binary file that will read by the game at runtime.
python3 convert.py map.png
[Optional] You can use our C++ tool to preview/test the map .
Put the binary map file into map directory.
In progress