More GetValues() overrides (#6896)
* Benchmarks and tests for Image and Constant GetValues Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com> * Verify GetValues for Perlin and Random Gradients Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com> * Standardized the assert format for GetValues(). Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com> * More GetValues unit tests and test cleanup Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com> * Fixed typos Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com> * GetValues() unit tests for surface gradients. Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com> * Benchmarks for ShapeAreaFalloff Gradient Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com> * Added benchmarks for all remaining gradients and cleaned up the helper methods. Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com> * Renamed class for better report formatting. Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com> * Added missing Mocks dependencies for the Editor tests. Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com> * First batch of specific GetValues() overrides. Each one is measurably faster than the generic version. Also, in ShapeAreaFalloffGradient, I optimized and simplified the logic a bit, so GetValue() is marginally faster too. Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com> * Change GetValues() to use span and add more overrides. Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com> * Convert GetValues() to use AZStd::span and added more overrides. Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com> * Add missing include. Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com> * PR feedback - switch to fill Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com> * Fixed the logic and added unit tests and comments. Signed-off-by: Mike Balfour <82224783+mbalfour-amzn@users.noreply.github.com>
This commit is contained in:
@@ -135,7 +135,7 @@ namespace GradientSignal
|
||||
}
|
||||
|
||||
void ConstantGradientComponent::GetValues(
|
||||
[[maybe_unused]] AZStd::array_view<AZ::Vector3> positions, AZStd::array_view<float> outValues) const
|
||||
[[maybe_unused]] AZStd::span<AZ::Vector3> positions, AZStd::span<float> outValues) const
|
||||
{
|
||||
if (positions.size() != outValues.size())
|
||||
{
|
||||
@@ -143,11 +143,7 @@ namespace GradientSignal
|
||||
return;
|
||||
}
|
||||
|
||||
for (auto& outValue : outValues)
|
||||
{
|
||||
float& writableOutValue = const_cast<float&>(outValue);
|
||||
writableOutValue = m_configuration.m_value;
|
||||
}
|
||||
AZStd::fill(outValues.begin(), outValues.end(), m_configuration.m_value);
|
||||
}
|
||||
|
||||
float ConstantGradientComponent::GetConstantValue() const
|
||||
|
||||
@@ -174,90 +174,122 @@ namespace GradientSignal
|
||||
return false;
|
||||
}
|
||||
|
||||
int PositionToMatrixIndex(float position, int patternSize)
|
||||
int DitherGradientComponent::ScaledPositionToPatternIndex(const AZ::Vector3& scaledPosition, int patternSize)
|
||||
{
|
||||
int result = static_cast<int>(std::floor(fmod(position, static_cast<float>(patternSize))));
|
||||
// The input position is expected to be scaled up so that each integer value is a unique point in our dither pattern, and
|
||||
// the fractional value is just the amount within the point. The output is the specific index into an NxN pattern to use
|
||||
// for the dither comparison value.
|
||||
|
||||
if (result < 0)
|
||||
{
|
||||
result += patternSize;
|
||||
}
|
||||
// Get the floor before casting to int because we want fractional negative values to go "down" to the next negative value.
|
||||
AZ::Vector3 flooredScaledPosition = scaledPosition.GetFloor();
|
||||
|
||||
return result;
|
||||
// For a pattern of 4, we want our indices to go 0, 1, 2, 3, 0, 1, 2, 3, etc. However, we want it continuous across
|
||||
// negative and positive positions so we can't just use mod with abs(). Instead, we use a double-mod which gives us
|
||||
// a result that's continuous across all coordinate space.
|
||||
const int x = ((static_cast<int>(flooredScaledPosition.GetX()) % patternSize) + patternSize) % patternSize;
|
||||
const int y = ((static_cast<int>(flooredScaledPosition.GetY()) % patternSize) + patternSize) % patternSize;
|
||||
|
||||
return (patternSize * y + x);
|
||||
}
|
||||
|
||||
float GetDitherValue4x4(const AZ::Vector3& position)
|
||||
float DitherGradientComponent::GetDitherValue4x4(const AZ::Vector3& scaledPosition)
|
||||
{
|
||||
const int patternSize = 4;
|
||||
const int patternSizeSq = patternSize * patternSize;
|
||||
const int indexMatrix[patternSizeSq] = {
|
||||
0, 8, 2, 10,
|
||||
12, 4, 14, 6,
|
||||
3, 11, 1, 9,
|
||||
15, 7, 13, 5 };
|
||||
constexpr int patternSize = 4;
|
||||
constexpr float indexMatrix[] = {
|
||||
0.0f / 16.0f, 8.0f / 16.0f, 2.0f / 16.0f, 10.0f / 16.0f,
|
||||
12.0f / 16.0f, 4.0f / 16.0f, 14.0f / 16.0f, 6.0f / 16.0f,
|
||||
3.0f / 16.0f, 11.0f / 16.0f, 1.0f / 16.0f, 9.0f / 16.0f,
|
||||
15.0f / 16.0f, 7.0f / 16.0f, 13.0f / 16.0f, 5.0f / 16.0f };
|
||||
|
||||
const int x = PositionToMatrixIndex(position.GetX(), patternSize);
|
||||
const int y = PositionToMatrixIndex(position.GetY(), patternSize);
|
||||
|
||||
return indexMatrix[patternSize * y + x] / static_cast<float>(patternSizeSq);
|
||||
return indexMatrix[ScaledPositionToPatternIndex(scaledPosition, patternSize)];
|
||||
}
|
||||
|
||||
float GetDitherValue8x8(const AZ::Vector3& position)
|
||||
float DitherGradientComponent::GetDitherValue8x8(const AZ::Vector3& scaledPosition)
|
||||
{
|
||||
const int patternSize = 8;
|
||||
const int patternSizeSq = patternSize * patternSize;
|
||||
const int indexMatrix[patternSizeSq] = {
|
||||
0, 32, 8, 40, 2, 34, 10, 42,
|
||||
48, 16, 56, 24, 50, 18, 58, 26,
|
||||
12, 44, 4, 36, 14, 46, 6, 38,
|
||||
60, 28, 52, 20, 62, 30, 54, 22,
|
||||
3, 35, 11, 43, 1, 33, 9, 41,
|
||||
51, 19, 59, 27, 49, 17, 57, 25,
|
||||
15, 47, 7, 39, 13, 45, 5, 37,
|
||||
63, 31, 55, 23, 61, 29, 53, 21 };
|
||||
constexpr int patternSize = 8;
|
||||
constexpr float indexMatrix[] = {
|
||||
0.0f / 64.0f, 32.0f / 64.0f, 8.0f / 64.0f, 40.0f / 64.0f, 2.0f / 64.0f, 34.0f / 64.0f, 10.0f / 64.0f, 42.0f / 64.0f,
|
||||
48.0f / 64.0f, 16.0f / 64.0f, 56.0f / 64.0f, 24.0f / 64.0f, 50.0f / 64.0f, 18.0f / 64.0f, 58.0f / 64.0f, 26.0f / 64.0f,
|
||||
12.0f / 64.0f, 44.0f / 64.0f, 4.0f / 64.0f, 36.0f / 64.0f, 14.0f / 64.0f, 46.0f / 64.0f, 6.0f / 64.0f, 38.0f / 64.0f,
|
||||
60.0f / 64.0f, 28.0f / 64.0f, 52.0f / 64.0f, 20.0f / 64.0f, 62.0f / 64.0f, 30.0f / 64.0f, 54.0f / 64.0f, 22.0f / 64.0f,
|
||||
3.0f / 64.0f, 35.0f / 64.0f, 11.0f / 64.0f, 43.0f / 64.0f, 1.0f / 64.0f, 33.0f / 64.0f, 9.0f / 64.0f, 41.0f / 64.0f,
|
||||
51.0f / 64.0f, 19.0f / 64.0f, 59.0f / 64.0f, 27.0f / 64.0f, 49.0f / 64.0f, 17.0f / 64.0f, 57.0f / 64.0f, 25.0f / 64.0f,
|
||||
15.0f / 64.0f, 47.0f / 64.0f, 7.0f / 64.0f, 39.0f / 64.0f, 13.0f / 64.0f, 45.0f / 64.0f, 5.0f / 64.0f, 37.0f / 64.0f,
|
||||
63.0f / 64.0f, 31.0f / 64.0f, 55.0f / 64.0f, 23.0f / 64.0f, 61.0f / 64.0f, 29.0f / 64.0f, 53.0f / 64.0f, 21.0f / 64.0f
|
||||
};
|
||||
|
||||
const int x = PositionToMatrixIndex(position.GetX(), patternSize);
|
||||
const int y = PositionToMatrixIndex(position.GetY(), patternSize);
|
||||
|
||||
return indexMatrix[patternSize * y + x] / static_cast<float>(patternSizeSq);
|
||||
return indexMatrix[ScaledPositionToPatternIndex(scaledPosition, patternSize)];
|
||||
}
|
||||
|
||||
float DitherGradientComponent::GetValue(const GradientSampleParams& sampleParams) const
|
||||
float DitherGradientComponent::GetCalculatedPointsPerUnit() const
|
||||
{
|
||||
AZ_PROFILE_FUNCTION(Entity);
|
||||
|
||||
const AZ::Vector3& coordinate = sampleParams.m_position;
|
||||
|
||||
float pointsPerUnit = m_configuration.m_pointsPerUnit;
|
||||
if (m_configuration.m_useSystemPointsPerUnit)
|
||||
{
|
||||
SectorDataRequestBus::Broadcast(&SectorDataRequestBus::Events::GetPointsPerMeter, pointsPerUnit);
|
||||
}
|
||||
pointsPerUnit = AZ::GetMax(pointsPerUnit, 0.0001f);
|
||||
|
||||
auto scaledCoordinate = coordinate * pointsPerUnit;
|
||||
auto x = std::floor(scaledCoordinate.GetX()) / pointsPerUnit;
|
||||
auto y = std::floor(scaledCoordinate.GetY()) / pointsPerUnit;
|
||||
auto z = std::floor(scaledCoordinate.GetZ()) / pointsPerUnit;
|
||||
AZ::Vector3 flooredCoordinate(x, y, z);
|
||||
|
||||
GradientSampleParams adjustedSampleParams = sampleParams;
|
||||
adjustedSampleParams.m_position = flooredCoordinate;
|
||||
float value = m_configuration.m_gradientSampler.GetValue(adjustedSampleParams);
|
||||
return AZ::GetMax(pointsPerUnit, 0.0001f);
|
||||
}
|
||||
|
||||
float DitherGradientComponent::GetDitherValue(const AZ::Vector3& scaledPosition, float value) const
|
||||
{
|
||||
float d = 0.0f;
|
||||
switch (m_configuration.m_patternType)
|
||||
{
|
||||
default:
|
||||
case DitherGradientConfig::BayerPatternType::PATTERN_SIZE_4x4:
|
||||
d = GetDitherValue4x4((scaledCoordinate) + m_configuration.m_patternOffset);
|
||||
d = GetDitherValue4x4(scaledPosition + m_configuration.m_patternOffset);
|
||||
break;
|
||||
case DitherGradientConfig::BayerPatternType::PATTERN_SIZE_8x8:
|
||||
d = GetDitherValue8x8((scaledCoordinate) + m_configuration.m_patternOffset);
|
||||
d = GetDitherValue8x8(scaledPosition + m_configuration.m_patternOffset);
|
||||
break;
|
||||
}
|
||||
|
||||
return value > d ? 1.0f : 0.0f;
|
||||
return (value > d) ? 1.0f : 0.0f;
|
||||
}
|
||||
|
||||
float DitherGradientComponent::GetValue(const GradientSampleParams& sampleParams) const
|
||||
{
|
||||
const AZ::Vector3& coordinate = sampleParams.m_position;
|
||||
|
||||
const float pointsPerUnit = GetCalculatedPointsPerUnit();
|
||||
|
||||
AZ::Vector3 scaledCoordinate = coordinate * pointsPerUnit;
|
||||
AZ::Vector3 flooredCoordinate = scaledCoordinate.GetFloor() / pointsPerUnit;
|
||||
|
||||
GradientSampleParams adjustedSampleParams = sampleParams;
|
||||
adjustedSampleParams.m_position = flooredCoordinate;
|
||||
float value = m_configuration.m_gradientSampler.GetValue(adjustedSampleParams);
|
||||
|
||||
return GetDitherValue(scaledCoordinate, value);
|
||||
}
|
||||
|
||||
void DitherGradientComponent::GetValues(AZStd::span<AZ::Vector3> positions, AZStd::span<float> outValues) const
|
||||
{
|
||||
if (positions.size() != outValues.size())
|
||||
{
|
||||
AZ_Assert(false, "input and output lists are different sizes (%zu vs %zu).", positions.size(), outValues.size());
|
||||
return;
|
||||
}
|
||||
|
||||
const float pointsPerUnit = GetCalculatedPointsPerUnit();
|
||||
|
||||
// Create the entire set of floored coordinates to use in the gradient value lookups.
|
||||
AZStd::vector<AZ::Vector3> flooredCoordinates(positions.size());
|
||||
for (size_t index = 0; index < positions.size(); index++)
|
||||
{
|
||||
AZ::Vector3 scaledCoordinate = positions[index] * pointsPerUnit;
|
||||
flooredCoordinates[index] = scaledCoordinate.GetFloor() / pointsPerUnit;
|
||||
}
|
||||
|
||||
m_configuration.m_gradientSampler.GetValues(flooredCoordinates, outValues);
|
||||
|
||||
// For each gradient value, turn it into a 0 or 1 based on the location and the dither pattern.
|
||||
for (size_t index = 0; index < positions.size(); index++)
|
||||
{
|
||||
AZ::Vector3 scaledCoordinate = positions[index] * pointsPerUnit;
|
||||
outValues[index] = GetDitherValue(scaledCoordinate, outValues[index]);
|
||||
}
|
||||
}
|
||||
|
||||
bool DitherGradientComponent::IsEntityInHierarchy(const AZ::EntityId& entityId) const
|
||||
|
||||
@@ -219,7 +219,7 @@ namespace GradientSignal
|
||||
return 0.0f;
|
||||
}
|
||||
|
||||
void ImageGradientComponent::GetValues(AZStd::array_view<AZ::Vector3> positions, AZStd::array_view<float> outValues) const
|
||||
void ImageGradientComponent::GetValues(AZStd::span<AZ::Vector3> positions, AZStd::span<float> outValues) const
|
||||
{
|
||||
if (positions.size() != outValues.size())
|
||||
{
|
||||
@@ -234,20 +234,16 @@ namespace GradientSignal
|
||||
|
||||
for (size_t index = 0; index < positions.size(); index++)
|
||||
{
|
||||
// The const_cast is necessary for now since array_view currently only supports const entries.
|
||||
// If/when array_view is fixed to support non-const, or AZStd::span gets created, the const_cast can get removed.
|
||||
auto& outValue = const_cast<float&>(outValues[index]);
|
||||
|
||||
m_gradientTransform.TransformPositionToUVWNormalized(positions[index], uvw, wasPointRejected);
|
||||
|
||||
if (!wasPointRejected)
|
||||
{
|
||||
outValue = GetValueFromImageAsset(
|
||||
outValues[index] = GetValueFromImageAsset(
|
||||
m_configuration.m_imageAsset, uvw, m_configuration.m_tilingX, m_configuration.m_tilingY, 0.0f);
|
||||
}
|
||||
else
|
||||
{
|
||||
outValue = 0.0f;
|
||||
outValues[index] = 0.0f;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -137,6 +137,21 @@ namespace GradientSignal
|
||||
return output;
|
||||
}
|
||||
|
||||
void InvertGradientComponent::GetValues(AZStd::span<AZ::Vector3> positions, AZStd::span<float> outValues) const
|
||||
{
|
||||
if (positions.size() != outValues.size())
|
||||
{
|
||||
AZ_Assert(false, "input and output lists are different sizes (%zu vs %zu).", positions.size(), outValues.size());
|
||||
return;
|
||||
}
|
||||
|
||||
m_configuration.m_gradientSampler.GetValues(positions, outValues);
|
||||
for (auto& outValue : outValues)
|
||||
{
|
||||
outValue = 1.0f - AZ::GetClamp(outValue, 0.0f, 1.0f);
|
||||
}
|
||||
}
|
||||
|
||||
bool InvertGradientComponent::IsEntityInHierarchy(const AZ::EntityId& entityId) const
|
||||
{
|
||||
return m_configuration.m_gradientSampler.IsEntityInHierarchy(entityId);
|
||||
|
||||
@@ -172,8 +172,6 @@ namespace GradientSignal
|
||||
|
||||
float LevelsGradientComponent::GetValue(const GradientSampleParams& sampleParams) const
|
||||
{
|
||||
AZ_PROFILE_FUNCTION(Entity);
|
||||
|
||||
float output = 0.0f;
|
||||
|
||||
output = GetLevels(
|
||||
@@ -187,6 +185,21 @@ namespace GradientSignal
|
||||
return output;
|
||||
}
|
||||
|
||||
void LevelsGradientComponent::GetValues(AZStd::span<AZ::Vector3> positions, AZStd::span<float> outValues) const
|
||||
{
|
||||
if (positions.size() != outValues.size())
|
||||
{
|
||||
AZ_Assert(false, "input and output lists are different sizes (%zu vs %zu).", positions.size(), outValues.size());
|
||||
return;
|
||||
}
|
||||
|
||||
m_configuration.m_gradientSampler.GetValues(positions, outValues);
|
||||
|
||||
GetLevels(outValues,
|
||||
m_configuration.m_inputMid, m_configuration.m_inputMin, m_configuration.m_inputMax,
|
||||
m_configuration.m_outputMin, m_configuration.m_outputMax);
|
||||
}
|
||||
|
||||
bool LevelsGradientComponent::IsEntityInHierarchy(const AZ::EntityId& entityId) const
|
||||
{
|
||||
return m_configuration.m_gradientSampler.IsEntityInHierarchy(entityId);
|
||||
|
||||
@@ -203,7 +203,7 @@ namespace GradientSignal
|
||||
return 0.0f;
|
||||
}
|
||||
|
||||
void PerlinGradientComponent::GetValues(AZStd::array_view<AZ::Vector3> positions, AZStd::array_view<float> outValues) const
|
||||
void PerlinGradientComponent::GetValues(AZStd::span<AZ::Vector3> positions, AZStd::span<float> outValues) const
|
||||
{
|
||||
if (positions.size() != outValues.size())
|
||||
{
|
||||
@@ -218,21 +218,17 @@ namespace GradientSignal
|
||||
|
||||
for (size_t index = 0; index < positions.size(); index++)
|
||||
{
|
||||
// The const_cast is necessary for now since array_view currently only supports const entries.
|
||||
// If/when array_view is fixed to support non-const, or AZStd::span gets created, the const_cast can get removed.
|
||||
auto& outValue = const_cast<float&>(outValues[index]);
|
||||
|
||||
m_gradientTransform.TransformPositionToUVW(positions[index], uvw, wasPointRejected);
|
||||
|
||||
if (!wasPointRejected)
|
||||
{
|
||||
outValue = m_perlinImprovedNoise->GenerateOctaveNoise(
|
||||
outValues[index] = m_perlinImprovedNoise->GenerateOctaveNoise(
|
||||
uvw.GetX(), uvw.GetY(), uvw.GetZ(), m_configuration.m_octave, m_configuration.m_amplitude,
|
||||
m_configuration.m_frequency);
|
||||
}
|
||||
else
|
||||
{
|
||||
outValue = 0.0f;
|
||||
outValues[index] = 0.0f;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -183,7 +183,7 @@ namespace GradientSignal
|
||||
return 0.0f;
|
||||
}
|
||||
|
||||
void RandomGradientComponent::GetValues(AZStd::array_view<AZ::Vector3> positions, AZStd::array_view<float> outValues) const
|
||||
void RandomGradientComponent::GetValues(AZStd::span<AZ::Vector3> positions, AZStd::span<float> outValues) const
|
||||
{
|
||||
if (positions.size() != outValues.size())
|
||||
{
|
||||
@@ -200,19 +200,15 @@ namespace GradientSignal
|
||||
|
||||
for (size_t index = 0; index < positions.size(); index++)
|
||||
{
|
||||
// The const_cast is necessary for now since array_view currently only supports const entries.
|
||||
// If/when array_view is fixed to support non-const, or AZStd::span gets created, the const_cast can get removed.
|
||||
auto& outValue = const_cast<float&>(outValues[index]);
|
||||
|
||||
m_gradientTransform.TransformPositionToUVW(positions[index], uvw, wasPointRejected);
|
||||
|
||||
if (!wasPointRejected)
|
||||
{
|
||||
outValue = GetRandomValue(uvw, seed);
|
||||
outValues[index] = GetRandomValue(uvw, seed);
|
||||
}
|
||||
else
|
||||
{
|
||||
outValue = 0.0f;
|
||||
outValues[index] = 0.0f;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -168,7 +168,7 @@ namespace GradientSignal
|
||||
return (distance <= 0.0f) ? 1.0f : AZ::GetMax(1.0f - (distance / m_configuration.m_falloffWidth), 0.0f);
|
||||
}
|
||||
|
||||
void ShapeAreaFalloffGradientComponent::GetValues(AZStd::array_view<AZ::Vector3> positions, AZStd::array_view<float> outValues) const
|
||||
void ShapeAreaFalloffGradientComponent::GetValues(AZStd::span<AZ::Vector3> positions, AZStd::span<float> outValues) const
|
||||
{
|
||||
if (positions.size() != outValues.size())
|
||||
{
|
||||
@@ -187,10 +187,6 @@ namespace GradientSignal
|
||||
|
||||
for (size_t index = 0; index < positions.size(); index++)
|
||||
{
|
||||
// The const_cast is necessary for now since array_view currently only supports const entries.
|
||||
// If/when array_view is fixed to support non-const, or AZStd::span gets created, the const_cast can get removed.
|
||||
auto& outValue = const_cast<float&>(outValues[index]);
|
||||
|
||||
float distance = shapeRequests->DistanceFromPoint(positions[index]);
|
||||
|
||||
// Since this is outer falloff, distance should give us values from 1.0 at the minimum distance to 0.0 at the maximum
|
||||
@@ -198,18 +194,15 @@ namespace GradientSignal
|
||||
// inside the shape (0 distance) return 1.0, and all points outside the shape return 0. This works because division by 0
|
||||
// gives infinity, which gets clamped by the GetMax() to 0. However, if distance == 0, it would give us NaN, so we have
|
||||
// the separate conditional check to handle that case and clamp to 1.0.
|
||||
outValue = (distance <= 0.0f) ? 1.0f : AZ::GetMax(1.0f - (distance / falloffWidth), 0.0f);
|
||||
outValues[index] = (distance <= 0.0f) ? 1.0f : AZ::GetMax(1.0f - (distance / falloffWidth), 0.0f);
|
||||
}
|
||||
});
|
||||
|
||||
// If there's no shape, there's no falloff.
|
||||
if (!shapeConnected)
|
||||
{
|
||||
for (size_t index = 0; index < positions.size(); index++)
|
||||
for (auto& outValue : outValues)
|
||||
{
|
||||
// The const_cast is necessary for now since array_view currently only supports const entries.
|
||||
// If/when array_view is fixed to support non-const, or AZStd::span gets created, the const_cast can get removed.
|
||||
auto& outValue = const_cast<float&>(outValues[index]);
|
||||
outValue = 1.0f;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user