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
|
|
|
|
2023-06-16 20:15:21 +02:00
|
|
|
/**
|
|
|
|
* Describes the sound information for playback.
|
|
|
|
* Positional handling is done separately.
|
|
|
|
*
|
|
|
|
* `SimpleSoundSpec`, as used by modding, is a `SoundSpec` with only name, fain,
|
|
|
|
* pitch and fade.
|
|
|
|
*/
|
|
|
|
struct SoundSpec
|
2012-03-23 19:23:03 +01:00
|
|
|
{
|
2023-06-16 20:15:21 +02:00
|
|
|
SoundSpec(const std::string &name = "", float gain = 1.0f,
|
|
|
|
bool loop = false, float fade = 0.0f, float pitch = 1.0f,
|
|
|
|
float start_time = 0.0f) :
|
|
|
|
name(name), gain(gain), fade(fade), pitch(pitch), start_time(start_time),
|
|
|
|
loop(loop)
|
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
|
|
|
|
2023-06-16 20:15:21 +02:00
|
|
|
/**
|
|
|
|
* Serialize a `SimpleSoundSpec`.
|
|
|
|
*/
|
|
|
|
void serializeSimple(std::ostream &os, u16 protocol_version) const
|
2019-01-03 17:04:26 +01:00
|
|
|
{
|
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);
|
|
|
|
}
|
|
|
|
|
2023-06-16 20:15:21 +02:00
|
|
|
/**
|
|
|
|
* Deserialize a `SimpleSoundSpec`.
|
|
|
|
*/
|
|
|
|
void deSerializeSimple(std::istream &is, u16 protocol_version)
|
2019-01-03 17:04:26 +01:00
|
|
|
{
|
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);
|
|
|
|
}
|
|
|
|
|
2023-06-16 20:15:21 +02:00
|
|
|
// Name of the sound-group
|
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;
|
2023-06-16 20:15:21 +02:00
|
|
|
float start_time = 0.0f;
|
2022-06-20 21:56:12 +02:00
|
|
|
bool loop = false;
|
2023-06-16 20:15:21 +02:00
|
|
|
// If true, a local fallback (ie. from the user's sound pack) is used if the
|
|
|
|
// sound-group does not exist.
|
|
|
|
bool use_local_fallback = true;
|
2012-03-23 19:23:03 +01:00
|
|
|
};
|
2022-07-09 22:32:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
// The order must not be changed. This is sent over the network.
|
|
|
|
enum class SoundLocation : u8 {
|
|
|
|
Local,
|
|
|
|
Position,
|
|
|
|
Object
|
|
|
|
};
|