make
There is an alternate version, the original, which does not work well in macOS. See Alternate code below if you are curious.
The current status of this entry is:
STATUS: INABIAF - please **DO NOT** fix
For more detailed information see 2019 duble bugs.
./prog file
./prog /tmp/drawing
Open another window / terminal.
./prog /tmp/drawing
Open more terminals and repeat…
You might also wish to try a full screen size. For this try:
make clobber fullscreen
Alternatively, if you want to change the size, do something like:
make clobber LINES=20 COLUMNS=20 all
The author provided us with the following table for use:
p
key: enter pen mode (type p again to return to the default move
mode).l
key: enter line mode (type l again to validate the line and return
to the move mode).c
key: cycle through a small set of different colors.q
key: quit the editor. The drawing is automatically saved.The mode and current color is indicated at the bottom left corner of the editor.
After editing the file and quitting, try:
/tmp/drawing
i.e. execute the file.
WARNING: if the file is deleted it might lock any session still in use. These will have to be killed from another shell session or by closing the terminal tab (in other words don’t do this from the console!). If the file cannot be opened in the beginning this will also happen. This is discussed in 2019 duble bugs.
NOTE: this entry might leave sockets lying about in the current working directory which you’ll have to delete manually. This is also discussed in 2019 duble bugs.
An alternate version of this entry, prog.alt.c, is provided. This alternate code might not work as well in macOS.
make alt
Use prog.alt
as you would prog
above.
After starting the program, use the cursor keys, then try some modes, like p
or l
(they toggle).
This program is a graphics editor, running in the terminal.
It provides collaborative features: one can join the drawing session of someone else by just opening the same file!
The program can run on Linux, FreeBSD, macOS, and in most terminals. See section Limits, Portability for more info.
To build, type make
(assuming gcc) or make CC=clang
.
Then you can start the program. It expects a file path as its first argument:
./prog /tmp/drawing
(If not started this way, with a file, prog
will refuse to start.)
If the file does not exist, you will start with a blank drawing.
If someone else (or another instance of yourself, maybe?) is already editing this file, you will join the session!
p
key: enter pen mode (type p again to return to the default move mode).l
key: enter line mode (type l again to validate the line and return to the move mode).c
key: cycle through a small set of different colors.q
key: quit the editor. The drawing is automatically saved.The mode and current color is indicated at the bottom left corner of the editor.
./<the-file>
.
(This will fail if someone is still editing the file, though.)ls --color <drawing-files...>
will probably select different colors
to indicate whether a drawing file is being edited or not. :-)You will probably have a hard time analyzing this entry, because:
stdlib.h
call results are inferred.Did you notice the enum
declaration? Could it be just an int
or const int
variable, instead? (spoiler: http://c-faq.com/ansi/constasconst.html)
If your keyboard has no arrow keys, you can probably find alternate keys by reading the source code.
I tested the program on several Linux systems, on FreeBSD 12, and on macOS (Mojave).
On Linux, the program uses an OS-specific detail to hide communication artefacts, and avoids the need to remove them on exit. Since this is Linux-specific, it was not possible on FreeBSD or macOS. Its behavior is a little more dirty there.
The program should work on most terminals that support 8-bit colors,
inverse video mode, and movement escape codes, e.g. xterm
, gnome-terminal
,
terminator
, etc.
Note: the drawing files prog
generates are probably even more portable than
prog
itself!
The default size is the one of my xterm (see top of Makefile). You may set it to the full size of your terminal window by typing:
make clobber fullscreen
IMPORTANT NOTES:
The file prog.alt.c is the one I submitted.
The judges proposed a small update: the program was using macro FD_SET
inside an
expression, which breaks compilation on macOS. Wrapping this macro into a
function was enough to fix this compilation issue.
However, that was not enough to make the program work on macOS. If you analyse
the program you will see that it heavily relies on OS resources. And, for this
first version of the program, you even needed to increase default sysctl
parameters to make it work on FreeBSD (this was the purpose of file
check-os.sh). I tried hard to tune macOS the same, but failed.
The simple fact the Judges proposed this update meant they wish it could work on
Mac. And if the judges wish something, it has to be done. ;) So I
refactored a little more the program to reduce OS resources consumption. Or
maybe not reduce consumption, but consume them differently… And I obtained
prog.c. With this version, no need to touch sysctl
parameters, and
it works on macOS too! I must confess it was challenging to remain below the
size limit with this little change.