summaryrefslogtreecommitdiff
path: root/server/src/tostring.cc
blob: e218a32ab290c93dd19e98db6e9ee463e9737a12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
 *            tostring.cc
 *
 *  Thu Mar 29 13:16:13 CEST 2007
 *  Copyright  2006 Bent Bisballe Nyeng
 *  deva@aasimon.org
 ****************************************************************************/

/*
 *  This file is part of Artefact.
 *
 *  Artefact is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  Artefact is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with Artefact; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 */
#include "tostring.h"

#include "debug.h"

#include <stdio.h>

std::string Pentominos::toString(std::string s)
{
  return s;
}

std::string Pentominos::toString(char c)
{
  char buf[32];
  sprintf(buf, "%c", c);
  std::string out = buf;
  return buf;
}

std::string Pentominos::toString(unsigned char c)
{
  char buf[32];
  sprintf(buf, "%c", c);
  std::string out = buf;
  return buf;
}

std::string Pentominos::toString(short int si)
{
  char buf[32];
  sprintf(buf, "%d", si);
  std::string out = buf;
  return buf;
}

std::string Pentominos::toString(short unsigned int su)
{
  char buf[32];
  sprintf(buf, "%u", su);
  std::string out = buf;
  return buf;
}

std::string Pentominos::toString(int li)
{
  char buf[32];
  sprintf(buf, "%ld", li);
  std::string out = buf;
  return buf;
}

std::string Pentominos::toString(unsigned int lu)
{
  char buf[32];
  sprintf(buf, "%lu", lu);
  std::string out = buf;
  return buf;
}

std::string Pentominos::toString(bool b)
{
  if(b) return "true";
  else return "false";
}

std::string Pentominos::toString(float f, unsigned int precision)
{
  char buf[100];
  char format[12];
  sprintf(format, "%%.%uf", precision);
  sprintf(buf, format, f);
  std::string out = buf;
  return buf;
  return "";
}

std::string Pentominos::toString(double d, unsigned int precision)
{
  char buf[100];
  char format[12];
  sprintf(format, "%%.%uf", precision);
  sprintf(buf, format, d);
  std::string out = buf;
  return buf;
}

std::string Pentominos::toString(long double ld, unsigned int precision)
{
  char buf[100];
  char format[12];
  sprintf(format, "%%.%uLg", precision);
  sprintf(buf, format, ld);
  std::string out = buf;
  return buf;
}

#ifdef TEST_TOSTRING
/* Compile:
 * c++ -DTEST_TOSTRING tostring.cc -o test_tostring
 */
using namespace Pentominos;

int main()
{
  std::string s = "string";
  char c = -4;
  unsigned char uc = 'a';
  short int si = 0x8000;
  short unsigned int su = 0xffff;
  long int li = 0x80000000L;
  long unsigned int lu = 0xffffffffL;
  bool b = true;
  float f = 0.1;
  double d  = 0.1;
  long double ld = 0.1;

std::string str =
  "[" + Pentominos::toString(s)
  + "] [" + Pentominos::toString(c)
  + "] [" + Pentominos::toString(uc)
  + "] [" + Pentominos::toString(si)
  + "] [" + Pentominos::toString(su)
  //  + "] [" + Pentominos::toString(li)
  //  + "] [" + Pentominos::toString(lu)
  + "] [" + Pentominos::toString(b)
  + "] [" + Pentominos::toString(f, 10)
  + "] [" + Pentominos::toString(d, 18)
  + "] [" + Pentominos::toString(ld, 36)
  + "]";

 printf("%s\n", str.c_str()); 

 return 0;
}
#endif/*TEST_TOSTRING*/