711d189f612eb182cb0faa9be50928d95de3bc9f
[oweals/minetest.git] / src / particles.cpp
1 /*
2 Minetest
3 Copyright (C) 2020 sfan5 <sfan5@live.de>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "particles.h"
21 #include "util/serialize.h"
22
23 void ParticleParameters::serialize(std::ostream &os, u16 protocol_ver) const
24 {
25         writeV3F32(os, pos);
26         writeV3F32(os, vel);
27         writeV3F32(os, acc);
28         writeF32(os, expirationtime);
29         writeF32(os, size);
30         writeU8(os, collisiondetection);
31         os << serializeLongString(texture);
32         writeU8(os, vertical);
33         writeU8(os, collision_removal);
34         animation.serialize(os, 6); /* NOT the protocol ver */
35         writeU8(os, glow);
36         writeU8(os, object_collision);
37 }
38
39 void ParticleParameters::deSerialize(std::istream &is, u16 protocol_ver)
40 {
41         pos                = readV3F32(is);
42         vel                = readV3F32(is);
43         acc                = readV3F32(is);
44         expirationtime     = readF32(is);
45         size               = readF32(is);
46         collisiondetection = readU8(is);
47         texture            = deSerializeLongString(is);
48         vertical           = readU8(is);
49         collision_removal  = readU8(is);
50         animation.deSerialize(is, 6); /* NOT the protocol ver */
51         glow               = readU8(is);
52         object_collision   = readU8(is);
53 }