This is a level maker/editor program for my boulderdash clone (in C).
Main game that i made is here.
It works as a basic tilemap editor. Select tiles and paint. For camera movement, use arrow keys.
You need to pass 5 arguments when running the program. The arguments are, levels
- Name
- Timelimit
- Required diamonds to open door
- Canvas row limit
- Canvas col limit
./app MyLevel 150 30 128 56
Produced file will be a basic txt file, and it will work for my game.
You can change the symbols of tiles in base.h file.
If you run the game using makefile, there will be no problem.
But if you want to run the game without makefile set your LD_LIBRARY_PATH:
export LD_LIBRARY_PATH:$LD_LIBRARY_PATH:./libs