Use Utility::move() instead of std::move().
This commit is contained in:
parent
90a2a9edd9
commit
fd9f9e5e36
13 changed files with 39 additions and 39 deletions
|
@ -31,7 +31,7 @@ namespace Gvas {
|
||||||
File::File(Containers::String filepath):
|
File::File(Containers::String filepath):
|
||||||
_propSerialiser{PropertySerialiser::instance()}
|
_propSerialiser{PropertySerialiser::instance()}
|
||||||
{
|
{
|
||||||
_filepath = std::move(filepath);
|
_filepath = Utility::move(filepath);
|
||||||
|
|
||||||
loadData();
|
loadData();
|
||||||
}
|
}
|
||||||
|
@ -65,9 +65,9 @@ File::saveType() {
|
||||||
|
|
||||||
void
|
void
|
||||||
File::appendProperty(Types::UnrealPropertyBase::ptr prop) {
|
File::appendProperty(Types::UnrealPropertyBase::ptr prop) {
|
||||||
auto none_prop = std::move(_properties.back());
|
auto none_prop = Utility::move(_properties.back());
|
||||||
_properties.back() = std::move(prop);
|
_properties.back() = Utility::move(prop);
|
||||||
arrayAppend(_properties, std::move(none_prop));
|
arrayAppend(_properties, Utility::move(none_prop));
|
||||||
}
|
}
|
||||||
|
|
||||||
Containers::ArrayView<Types::UnrealPropertyBase::ptr>
|
Containers::ArrayView<Types::UnrealPropertyBase::ptr>
|
||||||
|
@ -245,7 +245,7 @@ File::loadData() {
|
||||||
|
|
||||||
Types::UnrealPropertyBase::ptr prop;
|
Types::UnrealPropertyBase::ptr prop;
|
||||||
while((prop = _propSerialiser->read(reader)) != nullptr) {
|
while((prop = _propSerialiser->read(reader)) != nullptr) {
|
||||||
arrayAppend(_properties, std::move(prop));
|
arrayAppend(_properties, Utility::move(prop));
|
||||||
}
|
}
|
||||||
|
|
||||||
if(_properties.isEmpty()) {
|
if(_properties.isEmpty()) {
|
||||||
|
|
|
@ -100,7 +100,7 @@ PropertySerialiser::read(BinaryIo::Reader& reader) {
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
return deserialise(std::move(name), std::move(type), value_length, reader);
|
return deserialise(Utility::move(name), Utility::move(type), value_length, reader);
|
||||||
}
|
}
|
||||||
|
|
||||||
Types::UnrealPropertyBase::ptr
|
Types::UnrealPropertyBase::ptr
|
||||||
|
@ -111,7 +111,7 @@ PropertySerialiser::readItem(BinaryIo::Reader& reader, Containers::String type,
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
return deserialise(std::move(name), std::move(type), value_length, reader);
|
return deserialise(Utility::move(name), Utility::move(type), value_length, reader);
|
||||||
}
|
}
|
||||||
|
|
||||||
Containers::Array<Types::UnrealPropertyBase::ptr>
|
Containers::Array<Types::UnrealPropertyBase::ptr>
|
||||||
|
@ -151,7 +151,7 @@ PropertySerialiser::readSet(BinaryIo::Reader& reader, Containers::StringView ite
|
||||||
else {
|
else {
|
||||||
for(std::uint32_t i = 0; i < count; i++) {
|
for(std::uint32_t i = 0; i < count; i++) {
|
||||||
auto item = readItem(reader, item_type, std::size_t(-1), "");
|
auto item = readItem(reader, item_type, std::size_t(-1), "");
|
||||||
arrayAppend(array, std::move(item));
|
arrayAppend(array, Utility::move(item));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -176,8 +176,8 @@ PropertySerialiser::deserialise(Containers::String name, Containers::String type
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
prop->name = std::move(name);
|
prop->name = Utility::move(name);
|
||||||
prop->propertyType = std::move(type);
|
prop->propertyType = Utility::move(type);
|
||||||
|
|
||||||
return prop;
|
return prop;
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,7 +48,7 @@ ArrayProperty::deserialiseProperty(Containers::StringView name, Containers::Stri
|
||||||
}
|
}
|
||||||
|
|
||||||
auto prop = Containers::pointer<Types::ArrayProperty>();
|
auto prop = Containers::pointer<Types::ArrayProperty>();
|
||||||
prop->itemType = std::move(item_type);
|
prop->itemType = Utility::move(item_type);
|
||||||
prop->items = serialiser.readSet(reader, prop->itemType, item_count);
|
prop->items = serialiser.readSet(reader, prop->itemType, item_count);
|
||||||
|
|
||||||
return prop;
|
return prop;
|
||||||
|
|
|
@ -83,7 +83,7 @@ MapProperty::deserialiseProperty(Containers::StringView name, Containers::String
|
||||||
Types::UnrealPropertyBase::ptr value_item;
|
Types::UnrealPropertyBase::ptr value_item;
|
||||||
if(prop->valueType == "StructProperty"_s) {
|
if(prop->valueType == "StructProperty"_s) {
|
||||||
while((value_item = serialiser.read(reader)) != nullptr) {
|
while((value_item = serialiser.read(reader)) != nullptr) {
|
||||||
arrayAppend(pair.values, std::move(value_item));
|
arrayAppend(pair.values, Utility::move(value_item));
|
||||||
|
|
||||||
if(pair.values.back()->name == "None"_s &&
|
if(pair.values.back()->name == "None"_s &&
|
||||||
pair.values.back()->propertyType == "NoneProperty"_s &&
|
pair.values.back()->propertyType == "NoneProperty"_s &&
|
||||||
|
@ -98,10 +98,10 @@ MapProperty::deserialiseProperty(Containers::StringView name, Containers::String
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
arrayAppend(pair.values, std::move(value_item));
|
arrayAppend(pair.values, Utility::move(value_item));
|
||||||
}
|
}
|
||||||
|
|
||||||
arrayAppend(prop->map, std::move(pair));
|
arrayAppend(prop->map, Utility::move(pair));
|
||||||
}
|
}
|
||||||
|
|
||||||
// End dirty code
|
// End dirty code
|
||||||
|
|
|
@ -52,7 +52,7 @@ SetProperty::deserialiseProperty(Containers::StringView name, Containers::String
|
||||||
}
|
}
|
||||||
|
|
||||||
auto prop = Containers::pointer<Types::SetProperty>();
|
auto prop = Containers::pointer<Types::SetProperty>();
|
||||||
prop->itemType = std::move(item_type);
|
prop->itemType = Utility::move(item_type);
|
||||||
prop->items = serialiser.readSet(reader, prop->itemType, item_count);
|
prop->items = serialiser.readSet(reader, prop->itemType, item_count);
|
||||||
|
|
||||||
return prop;
|
return prop;
|
||||||
|
|
|
@ -60,8 +60,8 @@ Struct::deserialise(Containers::StringView name, Containers::StringView type, st
|
||||||
|
|
||||||
if(count == 0) {
|
if(count == 0) {
|
||||||
auto prop = Containers::pointer<Types::GenericStructProperty>();
|
auto prop = Containers::pointer<Types::GenericStructProperty>();
|
||||||
prop->structType = std::move(item_type);
|
prop->structType = Utility::move(item_type);
|
||||||
prop->structGuid = std::move(guid);
|
prop->structGuid = guid;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
for(std::uint32_t i = 0; i < count; i++) {
|
for(std::uint32_t i = 0; i < count; i++) {
|
||||||
|
@ -80,7 +80,7 @@ Struct::deserialise(Containers::StringView name, Containers::StringView type, st
|
||||||
|
|
||||||
dynamic_cast<Types::StructProperty*>(prop.get())->structGuid = guid;
|
dynamic_cast<Types::StructProperty*>(prop.get())->structGuid = guid;
|
||||||
|
|
||||||
arrayAppend(array, std::move(prop));
|
arrayAppend(array, Utility::move(prop));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -118,7 +118,7 @@ Struct::deserialise(Containers::StringView name, Containers::StringView type, st
|
||||||
if(!prop) {
|
if(!prop) {
|
||||||
prop = readStructValue(name, item_type, value_length, reader, serialiser);
|
prop = readStructValue(name, item_type, value_length, reader, serialiser);
|
||||||
if(prop) {
|
if(prop) {
|
||||||
dynamic_cast<Types::GenericStructProperty*>(prop.get())->structGuid = std::move(guid);
|
dynamic_cast<Types::GenericStructProperty*>(prop.get())->structGuid = guid;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -207,7 +207,7 @@ Struct::readStructValue(Containers::StringView name, Containers::StringView type
|
||||||
|
|
||||||
Types::UnrealPropertyBase::ptr prop;
|
Types::UnrealPropertyBase::ptr prop;
|
||||||
while((prop = serialiser.read(reader)) != nullptr) {
|
while((prop = serialiser.read(reader)) != nullptr) {
|
||||||
arrayAppend(st_prop->properties, std::move(prop));
|
arrayAppend(st_prop->properties, Utility::move(prop));
|
||||||
|
|
||||||
if(st_prop->properties.back()->name == "None" &&
|
if(st_prop->properties.back()->name == "None" &&
|
||||||
st_prop->properties.back()->propertyType == "NoneProperty" &&
|
st_prop->properties.back()->propertyType == "NoneProperty" &&
|
||||||
|
|
|
@ -62,7 +62,7 @@ TextProperty::deserialiseProperty(Containers::StringView name, Containers::Strin
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
arrayAppend(prop->data, std::move(str));
|
arrayAppend(prop->data, Utility::move(str));
|
||||||
|
|
||||||
interval = reader.position() - start_position;
|
interval = reader.position() - start_position;
|
||||||
} while(std::size_t(interval) < value_length);
|
} while(std::size_t(interval) < value_length);
|
||||||
|
|
|
@ -47,7 +47,7 @@ struct GenericStructProperty : public StructProperty {
|
||||||
atMove(Containers::StringView name) {
|
atMove(Containers::StringView name) {
|
||||||
for(auto& item : properties) {
|
for(auto& item : properties) {
|
||||||
if(item && item->name == name) {
|
if(item && item->name == name) {
|
||||||
return Containers::pointerCast<T>(std::move(item));
|
return Containers::pointerCast<T>(Utility::move(item));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
|
|
@ -358,7 +358,7 @@ Mass::writeBulletLauncherAttachments() {
|
||||||
attach_style_prop->name.emplace(MASS_BL_ATTACHMENT_STYLE);
|
attach_style_prop->name.emplace(MASS_BL_ATTACHMENT_STYLE);
|
||||||
attach_style_prop->enumType = "enuBLAttachmentStyle"_s;
|
attach_style_prop->enumType = "enuBLAttachmentStyle"_s;
|
||||||
Gvas::Types::ByteProperty::ptr prop{attach_style_prop};
|
Gvas::Types::ByteProperty::ptr prop{attach_style_prop};
|
||||||
arrayAppend(unit_data->properties, std::move(prop));
|
arrayAppend(unit_data->properties, Utility::move(prop));
|
||||||
}
|
}
|
||||||
|
|
||||||
auto& attach_style = attach_style_prop->enumValue;
|
auto& attach_style = attach_style_prop->enumValue;
|
||||||
|
|
|
@ -99,7 +99,7 @@ Mass::writeJointSliders() {
|
||||||
length->name.emplace(MASS_JOINT_NECK);
|
length->name.emplace(MASS_JOINT_NECK);
|
||||||
}
|
}
|
||||||
length->value = _frame.joints.neck;
|
length->value = _frame.joints.neck;
|
||||||
arrayAppend(temp, std::move(length));
|
arrayAppend(temp, Utility::move(length));
|
||||||
}
|
}
|
||||||
|
|
||||||
length = frame_prop->atMove<Gvas::Types::FloatProperty>(MASS_JOINT_BODY);
|
length = frame_prop->atMove<Gvas::Types::FloatProperty>(MASS_JOINT_BODY);
|
||||||
|
@ -109,7 +109,7 @@ Mass::writeJointSliders() {
|
||||||
length->name.emplace(MASS_JOINT_BODY);
|
length->name.emplace(MASS_JOINT_BODY);
|
||||||
}
|
}
|
||||||
length->value = _frame.joints.body;
|
length->value = _frame.joints.body;
|
||||||
arrayAppend(temp, std::move(length));
|
arrayAppend(temp, Utility::move(length));
|
||||||
}
|
}
|
||||||
|
|
||||||
length = frame_prop->atMove<Gvas::Types::FloatProperty>(MASS_JOINT_SHOULDER);
|
length = frame_prop->atMove<Gvas::Types::FloatProperty>(MASS_JOINT_SHOULDER);
|
||||||
|
@ -119,7 +119,7 @@ Mass::writeJointSliders() {
|
||||||
length->name.emplace(MASS_JOINT_SHOULDER);
|
length->name.emplace(MASS_JOINT_SHOULDER);
|
||||||
}
|
}
|
||||||
length->value = _frame.joints.shoulders;
|
length->value = _frame.joints.shoulders;
|
||||||
arrayAppend(temp, std::move(length));
|
arrayAppend(temp, Utility::move(length));
|
||||||
}
|
}
|
||||||
|
|
||||||
length = frame_prop->atMove<Gvas::Types::FloatProperty>(MASS_JOINT_ARM_UPPER);
|
length = frame_prop->atMove<Gvas::Types::FloatProperty>(MASS_JOINT_ARM_UPPER);
|
||||||
|
@ -129,7 +129,7 @@ Mass::writeJointSliders() {
|
||||||
length->name.emplace(MASS_JOINT_ARM_UPPER);
|
length->name.emplace(MASS_JOINT_ARM_UPPER);
|
||||||
}
|
}
|
||||||
length->value = _frame.joints.upperArms;
|
length->value = _frame.joints.upperArms;
|
||||||
arrayAppend(temp, std::move(length));
|
arrayAppend(temp, Utility::move(length));
|
||||||
}
|
}
|
||||||
|
|
||||||
length = frame_prop->atMove<Gvas::Types::FloatProperty>(MASS_JOINT_ARM_LOWER);
|
length = frame_prop->atMove<Gvas::Types::FloatProperty>(MASS_JOINT_ARM_LOWER);
|
||||||
|
@ -139,7 +139,7 @@ Mass::writeJointSliders() {
|
||||||
length->name.emplace(MASS_JOINT_ARM_LOWER);
|
length->name.emplace(MASS_JOINT_ARM_LOWER);
|
||||||
}
|
}
|
||||||
length->value = _frame.joints.lowerArms;
|
length->value = _frame.joints.lowerArms;
|
||||||
arrayAppend(temp, std::move(length));
|
arrayAppend(temp, Utility::move(length));
|
||||||
}
|
}
|
||||||
|
|
||||||
length = frame_prop->atMove<Gvas::Types::FloatProperty>(MASS_JOINT_HIP);
|
length = frame_prop->atMove<Gvas::Types::FloatProperty>(MASS_JOINT_HIP);
|
||||||
|
@ -149,7 +149,7 @@ Mass::writeJointSliders() {
|
||||||
length->name.emplace(MASS_JOINT_HIP);
|
length->name.emplace(MASS_JOINT_HIP);
|
||||||
}
|
}
|
||||||
length->value = _frame.joints.hips;
|
length->value = _frame.joints.hips;
|
||||||
arrayAppend(temp, std::move(length));
|
arrayAppend(temp, Utility::move(length));
|
||||||
}
|
}
|
||||||
|
|
||||||
length = frame_prop->atMove<Gvas::Types::FloatProperty>(MASS_JOINT_LEG_UPPER);
|
length = frame_prop->atMove<Gvas::Types::FloatProperty>(MASS_JOINT_LEG_UPPER);
|
||||||
|
@ -159,7 +159,7 @@ Mass::writeJointSliders() {
|
||||||
length->name.emplace(MASS_JOINT_LEG_UPPER);
|
length->name.emplace(MASS_JOINT_LEG_UPPER);
|
||||||
}
|
}
|
||||||
length->value = _frame.joints.upperLegs;
|
length->value = _frame.joints.upperLegs;
|
||||||
arrayAppend(temp, std::move(length));
|
arrayAppend(temp, Utility::move(length));
|
||||||
}
|
}
|
||||||
|
|
||||||
length = frame_prop->atMove<Gvas::Types::FloatProperty>(MASS_JOINT_LEG_LOWER);
|
length = frame_prop->atMove<Gvas::Types::FloatProperty>(MASS_JOINT_LEG_LOWER);
|
||||||
|
@ -169,14 +169,14 @@ Mass::writeJointSliders() {
|
||||||
length->name.emplace(MASS_JOINT_LEG_LOWER);
|
length->name.emplace(MASS_JOINT_LEG_LOWER);
|
||||||
}
|
}
|
||||||
length->value = _frame.joints.lowerLegs;
|
length->value = _frame.joints.lowerLegs;
|
||||||
arrayAppend(temp, std::move(length));
|
arrayAppend(temp, Utility::move(length));
|
||||||
}
|
}
|
||||||
|
|
||||||
arrayAppend(temp, std::move(frame_prop->properties[frame_prop->properties.size() - 3]));
|
arrayAppend(temp, Utility::move(frame_prop->properties[frame_prop->properties.size() - 3]));
|
||||||
arrayAppend(temp, std::move(frame_prop->properties[frame_prop->properties.size() - 2]));
|
arrayAppend(temp, Utility::move(frame_prop->properties[frame_prop->properties.size() - 2]));
|
||||||
arrayAppend(temp, std::move(frame_prop->properties[frame_prop->properties.size() - 1]));
|
arrayAppend(temp, Utility::move(frame_prop->properties[frame_prop->properties.size() - 1]));
|
||||||
|
|
||||||
frame_prop->properties = std::move(temp);
|
frame_prop->properties = Utility::move(temp);
|
||||||
|
|
||||||
if(!_mass->saveToFile()) {
|
if(!_mass->saveToFile()) {
|
||||||
_lastError = _mass->lastError();
|
_lastError = _mass->lastError();
|
||||||
|
|
|
@ -285,7 +285,7 @@ Profile::setMaterial(GameData::MaterialID id, std::int32_t amount) {
|
||||||
}
|
}
|
||||||
res_prop->id = id;
|
res_prop->id = id;
|
||||||
Gvas::Types::ResourceItemValue::ptr prop{res_prop};
|
Gvas::Types::ResourceItemValue::ptr prop{res_prop};
|
||||||
arrayAppend(mats_prop->items, std::move(prop));
|
arrayAppend(mats_prop->items, Utility::move(prop));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
res_prop = dynamic_cast<Gvas::Types::ResourceItemValue*>(it->get());
|
res_prop = dynamic_cast<Gvas::Types::ResourceItemValue*>(it->get());
|
||||||
|
|
|
@ -87,7 +87,7 @@ ProfileManager::refreshProfiles() {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
arrayAppend(_profiles, std::move(profile));
|
arrayAppend(_profiles, Utility::move(profile));
|
||||||
}
|
}
|
||||||
|
|
||||||
if(_profiles.isEmpty()) {
|
if(_profiles.isEmpty()) {
|
||||||
|
@ -298,7 +298,7 @@ ProfileManager::refreshBackups() {
|
||||||
arrayAppend(backup.includedFiles, InPlaceInit, zip_get_name(zip, i, ZIP_FL_UNCHANGED));
|
arrayAppend(backup.includedFiles, InPlaceInit, zip_get_name(zip, i, ZIP_FL_UNCHANGED));
|
||||||
}
|
}
|
||||||
|
|
||||||
arrayAppend(_backups, std::move(backup));
|
arrayAppend(_backups, Utility::move(backup));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -99,7 +99,7 @@ Toast::opacity() {
|
||||||
|
|
||||||
void
|
void
|
||||||
ToastQueue::addToast(Toast&& toast) {
|
ToastQueue::addToast(Toast&& toast) {
|
||||||
_toasts.push_back(std::move(toast));
|
_toasts.push_back(Utility::move(toast));
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue