summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2020-05-25 23:36:45 +0200
committersfan5 <sfan5@live.de>2020-05-29 22:54:50 +0200
commitdb7c262ee85c5bcae68354280848218dbf14bf55 (patch)
treeb60fa5ac2b19668d6250fd290ee337cec5250972 /src
parent34862a644256f2717923de6d35288114a84acd19 (diff)
downloadminetest-db7c262ee85c5bcae68354280848218dbf14bf55.tar.gz
minetest-db7c262ee85c5bcae68354280848218dbf14bf55.tar.bz2
minetest-db7c262ee85c5bcae68354280848218dbf14bf55.zip
content_cao: Do not expire visuals when not necessary
fixes #6572
Diffstat (limited to 'src')
-rw-r--r--src/client/content_cao.cpp42
-rw-r--r--src/client/content_cao.h3
2 files changed, 34 insertions, 11 deletions
diff --git a/src/client/content_cao.cpp b/src/client/content_cao.cpp
index cdc12f041..947c1a279 100644
--- a/src/client/content_cao.cpp
+++ b/src/client/content_cao.cpp
@@ -1457,13 +1457,23 @@ void GenericCAO::updateAttachments()
}
}
-void GenericCAO::readAOMessageProperties(std::istream &is)
+bool GenericCAO::visualExpiryRequired(const ObjectProperties &new_) const
{
- // Reset object properties first
- m_prop = ObjectProperties();
-
- // Then read the whole new stream
- m_prop.deSerialize(is);
+ const ObjectProperties &old = m_prop;
+ // Ordered to compare primitive types before std::vectors
+ return old.backface_culling != new_.backface_culling ||
+ old.initial_sprite_basepos != new_.initial_sprite_basepos ||
+ old.is_visible != new_.is_visible ||
+ old.mesh != new_.mesh ||
+ old.nametag != new_.nametag ||
+ old.nametag_color != new_.nametag_color ||
+ old.spritediv != new_.spritediv ||
+ old.use_texture_alpha != new_.use_texture_alpha ||
+ old.visual != new_.visual ||
+ old.visual_size != new_.visual_size ||
+ old.wield_item != new_.wield_item ||
+ old.colors != new_.colors ||
+ old.textures != new_.textures;
}
void GenericCAO::processMessage(const std::string &data)
@@ -1473,14 +1483,21 @@ void GenericCAO::processMessage(const std::string &data)
// command
u8 cmd = readU8(is);
if (cmd == AO_CMD_SET_PROPERTIES) {
- readAOMessageProperties(is);
+ ObjectProperties newprops;
+ newprops.deSerialize(is);
+
+ // Check what exactly changed
+ bool expire_visuals = visualExpiryRequired(newprops);
+
+ // Apply changes
+ m_prop = std::move(newprops);
m_selection_box = m_prop.selectionbox;
m_selection_box.MinEdge *= BS;
m_selection_box.MaxEdge *= BS;
- m_tx_size.X = 1.0 / m_prop.spritediv.X;
- m_tx_size.Y = 1.0 / m_prop.spritediv.Y;
+ m_tx_size.X = 1.0f / m_prop.spritediv.X;
+ m_tx_size.Y = 1.0f / m_prop.spritediv.Y;
if(!m_initial_tx_basepos_set){
m_initial_tx_basepos_set = true;
@@ -1500,7 +1517,12 @@ void GenericCAO::processMessage(const std::string &data)
if ((m_is_player && !m_is_local_player) && m_prop.nametag.empty())
m_prop.nametag = m_name;
- expireVisuals();
+ if (expire_visuals) {
+ expireVisuals();
+ } else {
+ infostream << "GenericCAO: properties updated but expiring visuals"
+ << " not necessary" << std::endl;
+ }
} else if (cmd == AO_CMD_UPDATE_POSITION) {
// Not sent by the server if this object is an attachment.
// We might however get here if the server notices the object being detached before the client.
diff --git a/src/client/content_cao.h b/src/client/content_cao.h
index c53b81433..03a355204 100644
--- a/src/client/content_cao.h
+++ b/src/client/content_cao.h
@@ -68,7 +68,6 @@ struct SmoothTranslatorWrappedv3f : SmoothTranslator<v3f>
class GenericCAO : public ClientActiveObject
{
private:
- void readAOMessageProperties(std::istream &is);
// Only set at initialization
std::string m_name = "";
bool m_is_player = false;
@@ -131,6 +130,8 @@ private:
// Settings
bool m_enable_shaders = false;
+ bool visualExpiryRequired(const ObjectProperties &newprops) const;
+
public:
GenericCAO(Client *client, ClientEnvironment *env);