2012-03-23 11:05:17 +01:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2013-02-24 19:38:45 +01:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2012-03-23 11:05:17 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 16:56:56 +02:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
2012-03-23 11:05:17 +01:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2012-06-05 16:56:56 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2012-03-23 11:05:17 +01:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2012-03-23 11:05:17 +01:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2012-03-23 11:05:17 +01:00
|
|
|
|
|
|
|
#include <set>
|
2017-04-07 08:50:17 +02:00
|
|
|
#include <string>
|
2019-01-03 17:04:26 +01:00
|
|
|
#include "util/serialize.h"
|
2017-04-07 08:50:17 +02:00
|
|
|
#include "irrlichttypes_bloated.h"
|
2012-03-23 11:05:17 +01:00
|
|
|
|
2012-03-23 19:23:03 +01:00
|
|
|
struct SimpleSoundSpec
|
|
|
|
{
|
2017-06-11 13:58:26 +02:00
|
|
|
SimpleSoundSpec(const std::string &name = "", float gain = 1.0f,
|
2017-10-09 11:32:06 +02:00
|
|
|
float fade = 0.0f, float pitch = 1.0f) :
|
|
|
|
name(name),
|
|
|
|
gain(gain), fade(fade), pitch(pitch)
|
2017-04-21 23:40:48 +02:00
|
|
|
{
|
|
|
|
}
|
2017-04-20 00:12:52 +02:00
|
|
|
|
2017-08-20 13:30:50 +02:00
|
|
|
bool exists() const { return !name.empty(); }
|
2017-04-20 00:12:52 +02:00
|
|
|
|
2019-01-03 17:04:26 +01:00
|
|
|
// Take cf_version from ContentFeatures::serialize to
|
|
|
|
// keep in sync with item definitions
|
|
|
|
void serialize(std::ostream &os, u8 cf_version) const
|
|
|
|
{
|
2020-09-20 13:12:55 +02:00
|
|
|
os << serializeString16(name);
|
2019-01-03 17:04:26 +01:00
|
|
|
writeF32(os, gain);
|
|
|
|
writeF32(os, pitch);
|
|
|
|
writeF32(os, fade);
|
|
|
|
// if (cf_version < ?)
|
|
|
|
// return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void deSerialize(std::istream &is, u8 cf_version)
|
|
|
|
{
|
2020-09-20 13:12:55 +02:00
|
|
|
name = deSerializeString16(is);
|
2019-01-03 17:04:26 +01:00
|
|
|
gain = readF32(is);
|
|
|
|
pitch = readF32(is);
|
|
|
|
fade = readF32(is);
|
|
|
|
}
|
|
|
|
|
2018-03-24 15:45:25 +01:00
|
|
|
std::string name;
|
2017-06-11 13:58:26 +02:00
|
|
|
float gain = 1.0f;
|
|
|
|
float fade = 0.0f;
|
|
|
|
float pitch = 1.0f;
|
2012-03-23 19:23:03 +01:00
|
|
|
};
|