您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

220 行
6.9 KiB

  1. /* $Id$ */
  2. /** \page libcaca-migrating Migrating from libcaca 0.x to the 1.0 API
  3. This section will guide you through the migration of a \e libcaca 0.x
  4. application to the latest API version.
  5. \section foo1 Overview
  6. The most important change in the 1.0 API of \e libcaca is the
  7. object-oriented design. See these two examples for a rough idea of
  8. what changed:
  9. <table border="0"><tr><td valign="top">
  10. \code
  11. #include <caca.h>
  12. /* libcaca program - 0.x API */
  13. int main(void)
  14. {
  15. /* Initialise libcaca */
  16. caca_init();
  17. /* Set window title */
  18. caca_set_window_title("Window");
  19. /* Choose drawing colours */
  20. caca_set_color(CACA_COLOR_BLACK,
  21. CACA_COLOR_WHITE);
  22. /* Draw a string at (0, 0) */
  23. caca_putstr(0, 0, "Hello world!");
  24. /* Refresh display */
  25. caca_refresh();
  26. /* Wait for a key press event */
  27. caca_wait_event(CACA_EVENT_KEY_PRESS);
  28. /* Clean up library */
  29. caca_end();
  30. return 0;
  31. }
  32. \endcode
  33. </td><td>
  34. \code
  35. #include <caca.h>
  36. /* libcaca program - 1.0 API */
  37. int main(void)
  38. {
  39. /* Initialise libcaca */
  40. caca_canvas_t *cv;
  41. caca_display_t *dp;
  42. dp = caca_create_display(cv);
  43. cv = caca_get_canvas(dp);
  44. /* Set window title */
  45. caca_set_display_title(dp, "Window");
  46. /* Choose drawing colours */
  47. caca_set_color_ansi(cv, CACA_BLACK,
  48. CACA_WHITE);
  49. /* Draw a string at (0, 0) */
  50. caca_put_str(cv, 0, 0, "Hello world!");
  51. /* Refresh display */
  52. caca_refresh_display();
  53. /* Wait for a key press event */
  54. caca_get_event(dp, CACA_EVENT_KEY_PRESS,
  55. NULL, -1);
  56. /* Clean up library */
  57. caca_free_display(dp);
  58. return 0;
  59. }
  60. \endcode
  61. </td></tr></table>
  62. Note the following important things:
  63. - Functions now take an object handle as their first argument.
  64. - All input/output functions start with \b caca_ and all
  65. drawing and text handling functions start with \b caca_ .
  66. \section foo2 Migration strategy
  67. You have two ways to migrate your application to use \e libcaca 1.x:
  68. - Port your code using the function equivalence list. This is the preferred
  69. way because new functions are thread safe and offer much more features
  70. to both the programmer and the end user.
  71. - Use the legacy compatibility layer.
  72. Using the compatibility layer is as easy as adding the following three lines:
  73. <table border="0"><tr><td valign="top">
  74. \code
  75. #include <caca.h>
  76. /* libcaca program - 0.x API */
  77. ...
  78. \endcode
  79. </td><td>
  80. \code
  81. #include <caca.h>
  82. #ifdef CACA_API_VERSION_1
  83. # include <caca0.h>
  84. #endif
  85. /* libcaca program - 0.x API */
  86. ...
  87. \endcode
  88. </td></tr></table>
  89. \section foo3 Function equivalence list
  90. \subsection bar1 Basic functions
  91. - \b caca_init(): use caca_create_canvas() to create a \e libcaca canvas,
  92. followed by caca_create_display() to attach a \e libcaca display to it.
  93. - \b caca_set_delay(): use caca_set_display_time().
  94. - \b caca_get_feature(): deprecated.
  95. - \b caca_set_feature(): deprecated, see caca_set_dither_antialias(),
  96. caca_set_dither_color() and caca_set_dither_mode() instead.
  97. - \b caca_get_feature_name(): deprecated, see caca_get_dither_mode_list(),
  98. caca_get_dither_antialias_list() and caca_get_dither_color_list()
  99. instead.
  100. - \b caca_get_rendertime(): use caca_get_display_time().
  101. - \b caca_get_width(): use caca_get_canvas_width().
  102. - \b caca_get_height(): use caca_get_canvas_height().
  103. - \b caca_set_window_title(): use caca_set_display_title().
  104. - \b caca_get_window_width(): use caca_get_display_width().
  105. - \b caca_get_window_height(): use caca_get_display_height().
  106. - \b caca_refresh(): use caca_refresh_display().
  107. - \b caca_end(): use caca_free_display() to detach the \e libcaca display,
  108. followed by caca_free_canvas() to free the underlying \e libcaca canvas.
  109. \subsection bar2 Event handling
  110. - \b caca_get_event(): unchanged, but the event information retrieval
  111. changed a lot.
  112. - \b caca_wait_event(): use caca_get_event() with a \c timeout argument
  113. of \b -1.
  114. - \b caca_get_mouse_x(): unchanged.
  115. - \b caca_get_mouse_y(): unchanged.
  116. \subsection bar3 Character printing
  117. - \b caca_set_color(): use caca_set_color_ansi() or caca_set_color_argb().
  118. - \b caca_get_fg_color(): use caca_get_attr().
  119. - \b caca_get_bg_color(): use caca_get_attr().
  120. - \b caca_get_color_name(): this function is now deprecated due to major
  121. uselessness.
  122. - \b caca_putchar(): use caca_put_char().
  123. - \b caca_putstr(): use caca_put_str().
  124. - \b caca_printf(): use caca_printf().
  125. - \b caca_clear(): use caca_clear_canvas().
  126. \subsection bar4 Primitives drawing
  127. These functions are almost unchanged, except for Unicode support and the
  128. fact that they now act on a given canvas.
  129. - \b caca_draw_line(): use caca_draw_line().
  130. - \b caca_draw_polyline(): use caca_draw_polyline().
  131. - \b caca_draw_thin_line(): use caca_draw_thin_line().
  132. - \b caca_draw_thin_polyline(): use caca_draw_thin_polyline().
  133. - \b caca_draw_circle(): use caca_draw_circle().
  134. - \b caca_draw_ellipse(): use caca_draw_ellipse().
  135. - \b caca_draw_thin_ellipse(): use caca_draw_thin_ellipse().
  136. - \b caca_fill_ellipse(): use caca_fill_ellipse().
  137. - \b caca_draw_box(): use caca_draw_box().
  138. - \b caca_draw_thin_box(): use caca_draw_thin_box() or caca_draw_cp437_box().
  139. - \b caca_fill_box(): use caca_fill_box().
  140. - \b caca_draw_triangle(): use caca_draw_triangle().
  141. - \b caca_draw_thin_triangle(): use caca_draw_thin_triangle().
  142. - \b caca_fill_triangle(): use caca_fill_triangle().
  143. \subsection bar5 Mathematical functions
  144. - \b caca_rand(): use caca_rand(). The second argument is different, make
  145. sure you take that into account.
  146. - \b caca_sqrt(): this function is now deprecated, use your system's
  147. \b sqrt() call instead.
  148. \subsection bar6 Sprite handling
  149. The newly introduced canvases can have several frames. Sprites are hence
  150. completely deprecated.
  151. - \b caca_load_sprite(): use caca_import_file().
  152. - \b caca_get_sprite_frames(): use caca_get_frame_count().
  153. - \b caca_get_sprite_width(): use caca_get_canvas_width().
  154. - \b caca_get_sprite_height(): use caca_get_canvas_height().
  155. - \b caca_get_sprite_dx(): use caca_get_canvas_handle_x().
  156. - \b caca_get_sprite_dy(): use caca_get_canvas_handle_y().
  157. - \b caca_draw_sprite(): use caca_set_frame() and caca_blit().
  158. - \b caca_free_sprite(): use caca_free_canvas().
  159. \subsection bar7 Bitmap handling
  160. Bitmaps have been renamed to dithers, because these objects do not in fact
  161. store any pixels, they just have information on how bitmaps will be dithered.
  162. - \b caca_create_bitmap(): use caca_create_dither().
  163. - \b caca_set_bitmap_palette(): use caca_set_dither_palette().
  164. - \b caca_draw_bitmap(): use caca_dither_bitmap().
  165. - \b caca_free_bitmap(): use caca_free_dither().
  166. \section foo4 Compilation
  167. The \c caca-config utility is deprecated in favour of the standard
  168. \c pkg-config interface:
  169. \code
  170. gcc -c foobar.c -o foobar.o `pkg-config --cflags caca`
  171. gcc foobar.o -o foobar `pkg-config --libs caca`
  172. \endcode
  173. \c caca-config is still provided as a convenience tool but may be removed
  174. in the future.
  175. */