glui_string.cpp
上传用户:gb3593
上传日期:2022-01-07
资源大小:3028k
文件大小:2k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. /****************************************************************************
  2.   
  3.   GLUI User Interface Toolkit
  4.   ---------------------------
  5.      glui.cpp
  6.           --------------------------------------------------
  7.   Copyright (c) 1998 Paul Rademacher (this file, Bill Baxter 2005)
  8.   This library is free software; you can redistribute it and/or modify
  9.   it under the terms of the GNU Lesser General Public License as
  10.   published by the Free Software Foundation; either version 2.1 of the
  11.   License, or (at your option) any later version.
  12.   This library is distributed in the hope that it will be useful, but
  13.   WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.   Lesser General Public License for more details.
  16.   You should have received a copy of the GNU Lesser General Public
  17.   License along with this library; if not, write to the Free Software
  18.   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  19.   USA
  20.   This program is -not- in the public domain.
  21. *****************************************************************************/
  22. #include "GL/glui.h"
  23. #include <stdarg.h>
  24. #ifdef _MSC_VER
  25. #define vsnprintf _vsnprintf
  26. #endif
  27. GLUI_String& glui_format_str(GLUI_String& str, const char* fmt, ...)
  28. {
  29.   const size_t ISIZE = 128;
  30.   char stackbuf[ISIZE];
  31.   size_t bufsz = ISIZE;
  32.   char *buf = stackbuf;
  33.   str = "";
  34.   va_list arg;
  35.   while (1) {
  36.     va_start(arg, fmt);
  37.     int ret = vsnprintf(buf,299,fmt,arg);
  38.     va_end(arg);
  39.     if (ret>=0) {
  40.       break;
  41.     }
  42.     // else make a bigger buf, try again
  43.     bufsz <<= 1;
  44.     if (buf==stackbuf) buf = (char*)malloc(sizeof(char)*bufsz);
  45.     else buf = (char*)realloc(buf, sizeof(char)*bufsz);
  46.   }
  47.   if (buf!=stackbuf) free(buf);
  48.   str=buf;
  49.   return str;
  50. }