ODPrntf.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /* OpenDoors Online Software Programming Toolkit
  2. * (C) Copyright 1991 - 1999 by Brian Pirie.
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2 of the License, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with this library; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. *
  18. *
  19. * File: ODPrntf.c
  20. *
  21. * Description: Implements the od_printf() function.
  22. *
  23. * Revisions: Date Ver Who Change
  24. * ---------------------------------------------------------------
  25. * Oct 13, 1994 6.00 BP New file header format.
  26. * Dec 09, 1994 6.00 BP Standardized coding style.
  27. * Nov 11, 1995 6.00 BP Removed register keyword.
  28. * Nov 14, 1995 6.00 BP 32-bit portability.
  29. * Nov 16, 1995 6.00 BP Removed oddoor.h, added odcore.h.
  30. * Dec 12, 1995 6.00 BP Added entry, exit and kernel macros.
  31. * Dec 30, 1995 6.00 BP Added ODCALL for calling convention.
  32. * Jan 03, 1996 6.00 BP Use ODVCALL instead of ODCALL.
  33. * Jan 04, 1996 6.00 BP Add missing OD_API_EXIT() at end.
  34. * Feb 19, 1996 6.00 BP Changed version number to 6.00.
  35. * Mar 03, 1996 6.10 BP Begin version 6.10.
  36. * Aug 10, 2003 6.23 SH *nix support
  37. */
  38. #define BUILDING_OPENDOORS
  39. #include <stdio.h>
  40. #include <stdarg.h>
  41. #include <string.h>
  42. #include <stdlib.h>
  43. #include "OpenDoor.h"
  44. #include "ODCore.h"
  45. #include "ODGen.h"
  46. #include "ODKrnl.h"
  47. /* Size of od_printf() working buffer. Adjust this upwards if you are */
  48. /* encountering difficulties when calling od_printf() with long strings. */
  49. #define WORK_BUFFER_SIZE 512
  50. /* ----------------------------------------------------------------------------
  51. * od_printf()
  52. *
  53. * The OpenDoors equivalent of the C printf() function, this function performs
  54. * formatted string output to both the local and remote screens.
  55. *
  56. * Parameters: pszFormat - Format string, in the same format as the printf()
  57. * format string.
  58. *
  59. * The semantics of any further parameters are dicated by the
  60. * contents of the format string.
  61. *
  62. * Return: void
  63. */
  64. ODAPIDEF void ODVCALL od_printf(const char *pszFormat,...)
  65. {
  66. va_list pArgumentList;
  67. static char *pszWorkBuffer = NULL;
  68. char *pchCurrent;
  69. char *pchStart;
  70. BOOL bNotFound;
  71. INT nCharCount;
  72. /* Log function entry if running in trace mode. */
  73. TRACE(TRACE_API, "od_printf()");
  74. /* Initialize OpenDoors if it hasn't already been done. */
  75. if(!bODInitialized) od_init();
  76. OD_API_ENTRY();
  77. /* Allocate work buffer if none has been allocated yet. */
  78. if(pszWorkBuffer == NULL &&
  79. (pszWorkBuffer = malloc(WORK_BUFFER_SIZE)) == NULL)
  80. {
  81. /* If we are unable to allocate a buffer, return with a memory error. */
  82. od_control.od_error = ERR_MEMORY;
  83. OD_API_EXIT();
  84. return;
  85. }
  86. /* Copy the arguments after the format string. */
  87. va_start(pArgumentList, pszFormat);
  88. /* Perform a string printf to the working buffer. */
  89. vsprintf(pszWorkBuffer, pszFormat, pArgumentList);
  90. va_end(pArgumentList);
  91. /* If no color characters are defined, then just display the entire */
  92. /* buffer in one shot. */
  93. if(!od_control.od_color_char && !od_control.od_color_delimiter)
  94. goto quick_print;
  95. chColorCheck = od_control.od_color_delimiter;
  96. bNotFound = TRUE;
  97. pchCurrent = (char *)pszWorkBuffer;
  98. pchStart = (char *)pszWorkBuffer;
  99. nCharCount = 0;
  100. while(*pchCurrent)
  101. {
  102. if(*pchCurrent == od_control.od_color_delimiter)
  103. {
  104. bNotFound = FALSE;
  105. if(nCharCount != 0)
  106. {
  107. od_disp(pchStart, nCharCount, TRUE);
  108. }
  109. if(!*(++pchCurrent))
  110. {
  111. chColorCheck = 0;
  112. OD_API_EXIT();
  113. return;
  114. }
  115. od_set_attrib(od_color_config(pchCurrent));
  116. if(!*(pchCurrent = (char *)pchColorEndPos))
  117. {
  118. chColorCheck = 0;
  119. OD_API_EXIT();
  120. return;
  121. }
  122. if(!*(++pchCurrent))
  123. {
  124. OD_API_EXIT();
  125. return;
  126. }
  127. pchStart = (char *)pchCurrent;
  128. nCharCount = 0;
  129. }
  130. else if(*pchCurrent == od_control.od_color_char)
  131. {
  132. bNotFound = FALSE;
  133. if(nCharCount != 0)
  134. {
  135. od_disp(pchStart, nCharCount, TRUE);
  136. }
  137. if(!*(++pchCurrent))
  138. {
  139. OD_API_EXIT();
  140. return;
  141. }
  142. od_set_attrib(*pchCurrent);
  143. if(!*(++pchCurrent))
  144. {
  145. OD_API_EXIT();
  146. return;
  147. }
  148. pchStart = (char *)pchCurrent;
  149. nCharCount = 0;
  150. }
  151. else
  152. {
  153. ++nCharCount;
  154. ++pchCurrent;
  155. }
  156. }
  157. chColorCheck = 0;
  158. if(bNotFound)
  159. {
  160. quick_print:
  161. /* Display the entire string in one shot. */
  162. od_disp_str(pszWorkBuffer);
  163. }
  164. else if(nCharCount != 0)
  165. {
  166. /* If there are remaining characters in the string, then display them. */
  167. od_disp(pchStart, nCharCount, TRUE);
  168. }
  169. OD_API_EXIT();
  170. }