Glymmer (Glyph Menu) 0.3
Graphic user interface made of glyphs and using controller style input.
|
This project is a glyph based user interface displayed in graphic mode which should be mostly used in video games, but it could be used for other projects. It use regular ascii characters to create window outline and display choices to the user.
The project will be coded in plain C for portability and simplicity.
The following artifacts are available for download or reading:
The following libraries are required:
Almost all user interface are event based, it required the program to react to use input which changes the flow of the program. Glymmer is a non-event based user interface that get things done by asking the user a series of questions. It relies on the fact that video games have little data entry but have a lot of operations to manipulate that data. You don't want the user to easily modify the game's data as it would be cheating. So there is no need to have input forms to add and modify data. Instead, it's only a series of choice that the user must make based on information displayed to them.
Glymmer takes advantage of this and gain the following benefits:
The disadvantages:
The build process has been simplified by using a script and cmake. Into the root folder, type
./build.sh
To run the script that will build the make files and the software. If successful, you can install the library and the demo by going into the _build
folder and launching the installation as root.
It should copy the .a library and the include files into the local directories. The demo program evilair
will be copied at the root of the project. To use the library in your projects, simply add -lglymmer
to your linker command line.
The documentation is made with doxygen, you simply need to type
doxygen Doxyfile
to generate the documentation. The web site entry point will be located in :
doc/html/index.html
The demonstration application used for functionnal testing. I allows exploring the various features of the library. It does not do anything in particular. You can launch it by typing in linux:
./evilair
You will need the following files that can be downloaded from my website. See links at the top of the documents:
Example programs are also available for learning purpose: