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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
/**********************************************************************
WrappedType.cpp
James Crook
(C) Audacity Developers, 2007
wxWidgets license. See Licensing.txt
**********************************************************************//*!
\class WrappedType
\brief
Used in type conversions, this wrapper for ints, strings, doubles and
enums provides conversions between all the types. Functions that
work on wrapped types can quickly be reused to work on any of
these types. This cuts out a lot of repetitive code.
JKC: This class grows in size with the square of the number of
types it supports. It has to do all conversions between all pairs,
so try to re-use existing types if you can.
It's probable that not all the cases are actually used in practice.
The most heavily used will be conversions to <-> from string.
*//**********************************************************************/
#include "WrappedType.h"
#include <wx/wxprec.h>
#include "Internat.h"
/// @return true iff the wrapped type is a string.
bool WrappedType::IsString()
{
return eWrappedType == eWrappedString;
}
wxString WrappedType::ReadAsString()
{
switch( eWrappedType )
{
case eWrappedString:
return *mpStr;
break;
case eWrappedInt:
return wxString::Format(wxT("%i"),*mpInt );
break;
case eWrappedDouble:
return wxString::Format(wxT("%.8g"),*mpDouble );
break;
case eWrappedBool:
return (* mpBool) ? wxT("true") : wxT("false" );
break;
case eWrappedEnum:
wxASSERT( false );
break;
default:
wxASSERT( false );
break;
}
return wxT("ERROR"); //Compiler pacifier
}
int WrappedType::ReadAsInt()
{
switch( eWrappedType )
{
case eWrappedString:
{
long l;
mpStr->ToLong(&l);
return (int) l;
}
case eWrappedInt:
return *mpInt;
case eWrappedDouble:
return (int)*mpDouble;
case eWrappedBool:
return (* mpBool) ? 1 : 0;
case eWrappedEnum:
wxASSERT( false );
break;
default:
wxASSERT( false );
break;
}
return -1;//Compiler pacifier
}
double WrappedType::ReadAsDouble()
{
switch( eWrappedType )
{
case eWrappedString:
return Internat::CompatibleToDouble( *mpStr );
break;
case eWrappedInt:
return (double)*mpInt;
break;
case eWrappedDouble:
return * mpDouble;
break;
case eWrappedBool:
return (* mpBool)? 1.0 : 0.0;
break;
case eWrappedEnum:
wxASSERT( false );
break;
default:
wxASSERT( false );
break;
}
return -1.0f;//Compiler pacifier
}
bool WrappedType::ReadAsBool()
{
switch( eWrappedType )
{
case eWrappedString:
return mpStr->IsSameAs( wxT("true"), false ); // case free comparison.
break;
case eWrappedInt:
return *mpInt != 0;
break;
case eWrappedDouble:
wxASSERT( false );// DANGEROUS USE OF WrappedType. Can't rely on equality.
return * mpDouble != 0.0f; // this is what the code would be...
break;
case eWrappedBool:
return * mpBool;
break;
case eWrappedEnum:
wxASSERT( false );
break;
default:
wxASSERT( false );
break;
}
return false;//Compiler pacifier
}
void WrappedType::WriteToAsString( const wxString & InStr)
{
switch( eWrappedType )
{
case eWrappedString:
*mpStr = InStr;
break;
case eWrappedInt:
{
long l;
InStr.ToLong(&l);
*mpInt = (int) l;
break;
}
case eWrappedDouble:
*mpDouble = Internat::CompatibleToDouble( InStr );
break;
case eWrappedBool:
*mpBool = InStr.IsSameAs( wxT("true"), false ); // case free comparison.;
break;
case eWrappedEnum:
wxASSERT( false );
break;
default:
wxASSERT( false );
break;
}
}
void WrappedType::WriteToAsInt( const int InInt)
{
switch( eWrappedType )
{
case eWrappedString:
*mpStr = wxString::Format( wxT("%i"), InInt );
break;
case eWrappedInt:
*mpInt = InInt;
break;
case eWrappedDouble:
*mpDouble = (double)InInt;
break;
case eWrappedBool:
* mpBool = (InInt !=0);
break;
case eWrappedEnum:
wxASSERT( false );
break;
default:
wxASSERT( false );
break;
}
}
void WrappedType::WriteToAsDouble( const double InDouble)
{
switch( eWrappedType )
{
case eWrappedString:
*mpStr = wxString::Format( wxT("%.8g"), InDouble );
break;
case eWrappedInt:
*mpInt = (int)InDouble;
break;
case eWrappedDouble:
*mpDouble = InDouble;
break;
case eWrappedBool:
wxASSERT( false );
* mpBool = InDouble != 0.0;
break;
case eWrappedEnum:
wxASSERT( false );
break;
default:
wxASSERT( false );
break;
}
}
void WrappedType::WriteToAsBool( const bool InBool)
{
switch( eWrappedType )
{
case eWrappedString:
*mpStr = InBool ? wxT("true") : wxT("false" );
break;
case eWrappedInt:
*mpInt = InBool ? 1 : 0;
break;
case eWrappedDouble:
*mpDouble = InBool ? 1.0 : 0.0;
break;
case eWrappedBool:
*mpBool = InBool;
break;
case eWrappedEnum:
wxASSERT( false );
break;
default:
wxASSERT( false );
break;
}
}
|