color.c 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. /*
  2. Color setup.
  3. Interface functions.
  4. Copyright (C) 1994-2017
  5. Free Software Foundation, Inc.
  6. Written by:
  7. Andrew Borodin <aborodin@vmail.ru>, 2009
  8. Slava Zanko <slavazanko@gmail.com>, 2009
  9. Egmont Koblinger <egmont@gmail.com>, 2010
  10. This file is part of the Midnight Commander.
  11. The Midnight Commander is free software: you can redistribute it
  12. and/or modify it under the terms of the GNU General Public License as
  13. published by the Free Software Foundation, either version 3 of the License,
  14. or (at your option) any later version.
  15. The Midnight Commander is distributed in the hope that it will be useful,
  16. but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. GNU General Public License for more details.
  19. You should have received a copy of the GNU General Public License
  20. along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. */
  22. /** \file color.c
  23. * \brief Source: color setup
  24. */
  25. #include <config.h>
  26. #include <stdio.h>
  27. #include <stdlib.h>
  28. #include <string.h>
  29. #include <sys/types.h> /* size_t */
  30. #include "lib/global.h"
  31. #include "tty.h"
  32. #include "color.h"
  33. #include "color-internal.h"
  34. /*** global variables ****************************************************************************/
  35. static char *tty_color_defaults__fg = NULL;
  36. static char *tty_color_defaults__bg = NULL;
  37. static char *tty_color_defaults__attrs = NULL;
  38. /* Set if we are actually using colors */
  39. gboolean use_colors = FALSE;
  40. /*** file scope macro definitions ****************************************************************/
  41. /*** file scope type declarations ****************************************************************/
  42. /*** file scope variables ************************************************************************/
  43. static GHashTable *mc_tty_color__hashtable = NULL;
  44. /*** file scope functions ************************************************************************/
  45. /* --------------------------------------------------------------------------------------------- */
  46. static gboolean
  47. tty_color_free_condition_cb (gpointer key, gpointer value, gpointer user_data)
  48. {
  49. gboolean is_temp_color;
  50. tty_color_pair_t *mc_color_pair;
  51. (void) key;
  52. is_temp_color = user_data != NULL;
  53. mc_color_pair = (tty_color_pair_t *) value;
  54. return (mc_color_pair->is_temp == is_temp_color);
  55. }
  56. /* --------------------------------------------------------------------------------------------- */
  57. static void
  58. tty_color_free_all (gboolean is_temp_color)
  59. {
  60. g_hash_table_foreach_remove (mc_tty_color__hashtable, tty_color_free_condition_cb,
  61. is_temp_color ? GSIZE_TO_POINTER (1) : NULL);
  62. }
  63. /* --------------------------------------------------------------------------------------------- */
  64. static gboolean
  65. tty_color_get_next_cpn_cb (gpointer key, gpointer value, gpointer user_data)
  66. {
  67. size_t cp;
  68. tty_color_pair_t *mc_color_pair;
  69. (void) key;
  70. cp = GPOINTER_TO_SIZE (user_data);
  71. mc_color_pair = (tty_color_pair_t *) value;
  72. return (cp == mc_color_pair->pair_index);
  73. }
  74. /* --------------------------------------------------------------------------------------------- */
  75. static size_t
  76. tty_color_get_next__color_pair_number (void)
  77. {
  78. size_t cp_count, cp;
  79. cp_count = g_hash_table_size (mc_tty_color__hashtable);
  80. for (cp = 0; cp < cp_count; cp++)
  81. if (g_hash_table_find (mc_tty_color__hashtable, tty_color_get_next_cpn_cb,
  82. GSIZE_TO_POINTER (cp)) == NULL)
  83. break;
  84. return cp;
  85. }
  86. /* --------------------------------------------------------------------------------------------- */
  87. /*** public functions ****************************************************************************/
  88. /* --------------------------------------------------------------------------------------------- */
  89. void
  90. tty_init_colors (gboolean disable, gboolean force)
  91. {
  92. tty_color_init_lib (disable, force);
  93. mc_tty_color__hashtable = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free);
  94. }
  95. /* --------------------------------------------------------------------------------------------- */
  96. void
  97. tty_colors_done (void)
  98. {
  99. tty_color_deinit_lib ();
  100. g_free (tty_color_defaults__fg);
  101. g_free (tty_color_defaults__bg);
  102. g_free (tty_color_defaults__attrs);
  103. g_hash_table_destroy (mc_tty_color__hashtable);
  104. }
  105. /* --------------------------------------------------------------------------------------------- */
  106. gboolean
  107. tty_use_colors (void)
  108. {
  109. return use_colors;
  110. }
  111. /* --------------------------------------------------------------------------------------------- */
  112. int
  113. tty_try_alloc_color_pair2 (const char *fg, const char *bg, const char *attrs,
  114. gboolean is_temp_color)
  115. {
  116. gchar *color_pair;
  117. tty_color_pair_t *mc_color_pair;
  118. int ifg, ibg, attr;
  119. if (fg == NULL || !strcmp (fg, "base"))
  120. fg = tty_color_defaults__fg;
  121. if (bg == NULL || !strcmp (bg, "base"))
  122. bg = tty_color_defaults__bg;
  123. if (attrs == NULL || !strcmp (attrs, "base"))
  124. attrs = tty_color_defaults__attrs;
  125. ifg = tty_color_get_index_by_name (fg);
  126. ibg = tty_color_get_index_by_name (bg);
  127. attr = tty_attr_get_bits (attrs);
  128. color_pair = g_strdup_printf ("%d.%d.%d", ifg, ibg, attr);
  129. if (color_pair == NULL)
  130. return 0;
  131. mc_color_pair =
  132. (tty_color_pair_t *) g_hash_table_lookup (mc_tty_color__hashtable, (gpointer) color_pair);
  133. if (mc_color_pair != NULL)
  134. {
  135. g_free (color_pair);
  136. return mc_color_pair->pair_index;
  137. }
  138. mc_color_pair = g_try_new0 (tty_color_pair_t, 1);
  139. if (mc_color_pair == NULL)
  140. {
  141. g_free (color_pair);
  142. return 0;
  143. }
  144. mc_color_pair->is_temp = is_temp_color;
  145. mc_color_pair->ifg = ifg;
  146. mc_color_pair->ibg = ibg;
  147. mc_color_pair->attr = attr;
  148. mc_color_pair->pair_index = tty_color_get_next__color_pair_number ();
  149. tty_color_try_alloc_pair_lib (mc_color_pair);
  150. g_hash_table_insert (mc_tty_color__hashtable, (gpointer) color_pair, (gpointer) mc_color_pair);
  151. return mc_color_pair->pair_index;
  152. }
  153. /* --------------------------------------------------------------------------------------------- */
  154. int
  155. tty_try_alloc_color_pair (const char *fg, const char *bg, const char *attrs)
  156. {
  157. return tty_try_alloc_color_pair2 (fg, bg, attrs, TRUE);
  158. }
  159. /* --------------------------------------------------------------------------------------------- */
  160. void
  161. tty_color_free_all_tmp (void)
  162. {
  163. tty_color_free_all (TRUE);
  164. }
  165. /* --------------------------------------------------------------------------------------------- */
  166. void
  167. tty_color_free_all_non_tmp (void)
  168. {
  169. tty_color_free_all (FALSE);
  170. }
  171. /* --------------------------------------------------------------------------------------------- */
  172. void
  173. tty_color_set_defaults (const char *fgcolor, const char *bgcolor, const char *attrs)
  174. {
  175. g_free (tty_color_defaults__fg);
  176. g_free (tty_color_defaults__bg);
  177. g_free (tty_color_defaults__attrs);
  178. tty_color_defaults__fg = g_strdup (fgcolor);
  179. tty_color_defaults__bg = g_strdup (bgcolor);
  180. tty_color_defaults__attrs = g_strdup (attrs);
  181. }
  182. /* --------------------------------------------------------------------------------------------- */