Fix no sound bug (#5968)
authorRui <rui.minetest@gmail.com>
Wed, 14 Jun 2017 15:21:08 +0000 (00:21 +0900)
committerLoïc Blot <nerzhul@users.noreply.github.com>
Wed, 14 Jun 2017 15:21:08 +0000 (17:21 +0200)
src/itemdef.cpp
src/sound_openal.cpp

index ca6020e149d817b459ad635ba998739a78ffd5e7..8eca8cafb5e51af608ad9480a5ef49cfcee115bf 100644 (file)
@@ -124,8 +124,8 @@ void ItemDefinition::reset()
 
 void ItemDefinition::serialize(std::ostream &os, u16 protocol_version) const
 {
-
-       writeU8(os, 3); // version (proto > 20)
+       u8 version = (protocol_version >= 34) ? 4 : 3;
+       writeU8(os, version);
        writeU8(os, type);
        os << serializeString(name);
        os << serializeString(description);
@@ -156,8 +156,11 @@ void ItemDefinition::serialize(std::ostream &os, u16 protocol_version) const
        writeF1000(os, sound_place_failed.gain);
        os << serializeString(palette_image);
        writeU32(os, color.color);
-       writeF1000(os, sound_place.pitch);
-       writeF1000(os, sound_place_failed.pitch);
+
+       if (version >= 4) {
+               writeF1000(os, sound_place.pitch);
+               writeF1000(os, sound_place_failed.pitch);
+       }
 }
 
 void ItemDefinition::deSerialize(std::istream &is)
@@ -167,7 +170,7 @@ void ItemDefinition::deSerialize(std::istream &is)
 
        // Deserialize
        int version = readU8(is);
-       if(version < 1 || version > 3)
+       if (version < 1 || version > 4)
                throw SerializationError("unsupported ItemDefinition version");
        type = (enum ItemType)readU8(is);
        name = deSerializeString(is);
@@ -216,8 +219,11 @@ void ItemDefinition::deSerialize(std::istream &is)
                sound_place_failed.gain = readF1000(is);
                palette_image = deSerializeString(is);
                color.set(readU32(is));
-               sound_place.pitch = readF1000(is);
-               sound_place_failed.pitch = readF1000(is);
+
+               if (version >= 4) {
+                       sound_place.pitch = readF1000(is);
+                       sound_place_failed.pitch = readF1000(is);
+               }
        } catch(SerializationError &e) {};
 }
 
index 0b53572c428b645a8d87e7c3798db8f1959a88d7..1772ee817f8fc81e8675215ea9421d280ab1da5e 100644 (file)
@@ -576,7 +576,7 @@ public:
                }
                int handle = -1;
                if (fade > 0) {
-                       handle = playSoundRaw(buf, loop, 0.0f, 0.0f);
+                       handle = playSoundRaw(buf, loop, 0.0f, pitch);
                        fadeSound(handle, fade, volume);
                } else {
                        handle = playSoundRaw(buf, loop, volume, pitch);