Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

tutorial.dox 2.9 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* $Id$ */
  2. /** \page libcaca-tutorial A libcucul and libcaca tutorial
  3. Before writing your first libcaca application, you need to know the difference between libcucul and libcaca :
  4. - libcucul is the text rendering library. It will do all the work you actually need. From imports (text, ANSI, caca internal format, all of this supporting n-bytes unicode), to exports (sames formats, adding SVG, PostScript, TGA, HTML (both 3 and 4), IRC), it'll cover all your needs.
  5. - libcaca handle everything that can be hardware related. It includes display (RAW, X11, OpenGL, Windows (native console), DOS (conio), ncurses, slang, text VGA (IMB-Compatible)), keyboard (same drivers but RAW), mouse (same drivers but RAW and VGA), time and resize events (on windowed drivers).
  6. So, you can write a libcucul only program, but you <b>can't</b> write a libcaca only program, it'll be nonsense. Period.
  7. First, a working program, very simple, to check you can compile and run it:
  8. \code
  9. #include <cucul.h>
  10. #include <caca.h>
  11. int main(void)
  12. {
  13. /* Initialise libcaca */
  14. cucul_canvas_t *cv; caca_display_t *dp; caca_event_t ev;
  15. dp = caca_create_display(NULL);
  16. if(!dp) return 1;
  17. cv = caca_get_canvas(dp);
  18. /* Set window title */
  19. caca_set_display_title(dp, "Hello!");
  20. /* Choose drawing colours */
  21. cucul_set_color_ansi(cv, CUCUL_BLACK, CUCUL_WHITE);
  22. /* Draw a string at coordinates (0, 0) */
  23. cucul_put_str(cv, 0, 0, "This is a message");
  24. /* Refresh display */
  25. caca_refresh_display(dp);
  26. /* Wait for a key press event */
  27. caca_get_event(dp, CACA_EVENT_KEY_PRESS, &ev, -1);
  28. /* Clean up library */
  29. caca_free_display(dp);
  30. return 0;
  31. }
  32. \endcode
  33. What does it do ? (we skip variable definitions, guessing you have a brain) :
  34. - Create a cucul canvas. A canvas is where everything happens. Writing characters, sprites, strings, images, everything. It is mandatory and is the reason of libcuculs' beeing. Size is there a width of 0 pixels, and a height of 0 pixels. It'll be resized according to contents you put in it.
  35. - Create a caca display. This is basically the window. Physically it can be a window (most of the displays), a console (ncurses, slang) or a real display (VGA).
  36. - Set the window name of our display (only available in windowed displays, does nothing otherwise). (so this is libcaca related)
  37. - Set current colors to black background, and white foreground of our canvas (so this is libcucul related)
  38. - Put a string "This is a message" with current colors in our libcucul canvas.
  39. - Refresh our caca display, whish was firstly attached to our canvas
  40. - Wait for an event of type "CACA_EVENT_KEY_PRESS", which seems obvious.
  41. - Free display (release memory)
  42. - Free canvas (release memory and close window if any)
  43. You can then compile this code under UNIX-like systems with following command : (you'll need pkg-config and gcc)
  44. \code
  45. gcc `pkg-config --libs --cflags cucul caca` example.c -o example
  46. \endcode
  47. */