/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-08-09 * Changed: 2021-04-23 * * */ #include #include #include ls_std::Boolean::Boolean() : ls_std::Class("Boolean") {} ls_std::Boolean::Boolean(bool _value) : ls_std::Class("Boolean"), value(_value) {} ls_std::Boolean::operator bool() const { return this->value; } ls_std::Boolean &ls_std::Boolean::operator=(int _value) { this->value = _value; return *this; } ls_std::Boolean &ls_std::Boolean::operator=(bool _value) { this->value = _value; return *this; } bool ls_std::Boolean::operator&&(const ls_std::Boolean &_boolean) const { return this->value && _boolean; } bool ls_std::Boolean::operator&&(bool _value) const { return this->value && _value; } bool ls_std::Boolean::operator&&(int _value) const { return this->value && _value; } bool ls_std::Boolean::operator||(const ls_std::Boolean &_boolean) const { return this->value || _boolean; } bool ls_std::Boolean::operator||(bool _value) const { return this->value || _value; } bool ls_std::Boolean::operator||(int _value) const { return this->value || _value; } ls_std::byte_field ls_std::Boolean::load() { ls_std::byte_field data{}; if (this->storable != nullptr && this->serializable != nullptr) { data = this->storable->load(); this->serializable->unmarshal(data); } return data; } ls_std::byte_field ls_std::Boolean::marshal() { ls_std::byte_field data{}; if (this->serializable != nullptr) { data = this->serializable->marshal(); } return data; } void ls_std::Boolean::parse(std::string _parseText) { std::transform(_parseText.begin(), _parseText.end(), _parseText.begin(), ::tolower); if (_parseText != this->TRUE_STRING && _parseText != this->FALSE_STRING) { throw ls_std::IllegalArgumentException{}; } else { if (_parseText == this->TRUE_STRING) { this->value = true; } if (_parseText == this->FALSE_STRING) { this->value = false; } } } void ls_std::Boolean::save(const ls_std::byte_field &_data) { if (this->serializable != nullptr) { if (_data.empty()) { this->storable->save(this->serializable->marshal()); } else { this->storable->save(_data); } } } std::string ls_std::Boolean::toString() { return this->_toString(); } void ls_std::Boolean::unmarshal(const ls_std::byte_field &_data) { if (this->serializable != nullptr) { this->serializable->unmarshal(_data); } } bool ls_std::Boolean::getValue() const { return this->value; } void ls_std::Boolean::setSerializable(std::shared_ptr _serializable) { this->serializable = std::move(_serializable); } void ls_std::Boolean::setStorable(std::shared_ptr _storable) { this->storable = std::move(_storable); } bool ls_std::Boolean::XOR(const ls_std::Boolean &_leftExpression, const ls_std::Boolean &_rightExpression) { return (_leftExpression && !_rightExpression) || (!_leftExpression && _rightExpression); } bool ls_std::Boolean::XOR(const ls_std::Boolean &_leftExpression, bool _rightExpression) { return (_leftExpression && !_rightExpression) || (!_leftExpression && _rightExpression); } bool ls_std::Boolean::XOR(bool _leftExpression, const ls_std::Boolean &_rightExpression) { return (_leftExpression && !_rightExpression) || (!_leftExpression && _rightExpression); } bool ls_std::Boolean::XOR(bool _leftExpression, bool _rightExpression) { return (_leftExpression && !_rightExpression) || (!_leftExpression && _rightExpression); } std::string ls_std::Boolean::_toString() const { std::string booleanString{}; if (this->value) { booleanString = this->TRUE_STRING; } else { booleanString = this->FALSE_STRING; } return booleanString; }