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
|
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program 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 3 of the License, or
* (at your option) any later version.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "tetraedge/te/te_variant.h"
namespace Tetraedge {
TeVariant::TeVariant() : _type(TypeNone), _data(0) {
}
TeVariant::TeVariant(bool val) : _type(TypeBoolean), _data(val) {
}
TeVariant::TeVariant(double val) : _type(TypeFloat64), _data((uint64)val) {
}
TeVariant::TeVariant(const Common::String &val) : _type(TypeString), _data(0), _strVal(val) {
}
TeVariant::TeVariant(const char *val) : _type(TypeString), _data(0), _strVal(val) {
}
TeVariant::TeVariant(const TeVariant &other) : _type(other._type), _data(other._data), _strVal(other._strVal) {
}
bool TeVariant::toBoolean(bool *success) const {
if (_type == TypeBoolean) {
if (success)
*success = true;
return _data != 0;
} else {
if (success)
*success = false;
return false;
}
}
float TeVariant::toFloat32(bool *success) const {
if (_type == TypeFloat32) {
if (success)
*success = true;
return *(float *)_data;
} else {
if (success)
*success = false;
return false;
}
}
double TeVariant::toFloat64(bool *success) const {
if (_type == TypeFloat64) {
if (success)
*success = true;
return *(double *)_data;
} else {
if (success)
*success = false;
return false;
}
}
int32 TeVariant::toSigned32(bool *success) const {
if (_type == TypeInt32) {
if (success)
*success = true;
return *(int32 *)_data;
} else {
if (success)
*success = false;
return false;
}
}
int64 TeVariant::toSigned64(bool *success) const {
if (_type == TypeInt64) {
if (success)
*success = true;
return *(int64 *)_data;
} else {
if (success)
*success = false;
return false;
}
}
Common::String TeVariant::toString(bool *success) const {
if (_type == TypeString) {
if (success)
*success = true;
return _strVal;
} else {
if (success)
*success = false;
return "";
}
}
int32 TeVariant::toUnsigned32(bool *success) const {
if (_type == TypeUInt32) {
if (success)
*success = true;
return *(uint32 *)_data;
} else {
if (success)
*success = false;
return false;
}
}
int64 TeVariant::toUnsigned64(bool *success) const {
if (_type == TypeUInt64) {
if (success)
*success = true;
return *(uint64 *)_data;
} else {
if (success)
*success = false;
return false;
}
}
} // end namespace Tetraedge
|