2021-10-30 04:25:12 +08:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Luau/Common.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
template<typename T>
|
2024-03-09 07:57:12 +08:00
|
|
|
struct [[nodiscard]] ScopedFValue
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
Luau::FValue<T>* value = nullptr;
|
|
|
|
T oldValue = T();
|
|
|
|
|
|
|
|
public:
|
2023-12-02 10:04:44 +08:00
|
|
|
ScopedFValue(Luau::FValue<T>& fvalue, T newValue)
|
2021-10-30 04:25:12 +08:00
|
|
|
{
|
2023-12-02 10:04:44 +08:00
|
|
|
value = &fvalue;
|
|
|
|
oldValue = fvalue.value;
|
|
|
|
fvalue.value = newValue;
|
2021-10-30 04:25:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ScopedFValue(const ScopedFValue&) = delete;
|
|
|
|
ScopedFValue& operator=(const ScopedFValue&) = delete;
|
|
|
|
|
|
|
|
ScopedFValue(ScopedFValue&& rhs)
|
|
|
|
{
|
|
|
|
value = rhs.value;
|
|
|
|
oldValue = rhs.oldValue;
|
|
|
|
|
|
|
|
rhs.value = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
ScopedFValue& operator=(ScopedFValue&& rhs)
|
|
|
|
{
|
|
|
|
value = rhs.value;
|
|
|
|
oldValue = rhs.oldValue;
|
|
|
|
|
|
|
|
rhs.value = nullptr;
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
~ScopedFValue()
|
|
|
|
{
|
|
|
|
if (value)
|
|
|
|
value->value = oldValue;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
using ScopedFastFlag = ScopedFValue<bool>;
|
|
|
|
using ScopedFastInt = ScopedFValue<int>;
|