Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BinauralSound.h « fx « include « audaspace « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 733e111dc2b82cf279ba9949a1aeca7a932d1047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*******************************************************************************
* Copyright 2015-2016 Juan Francisco Crespo Galán
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/

#pragma once

/**
* @file BinauralSound.h
* @ingroup fx
* The BinauralSound class.
*/

#include "ISound.h"
#include "HRTF.h"
#include "Source.h"
#include "util/ThreadPool.h"
#include "util/FFTPlan.h"

#include <memory>
#include <vector>

AUD_NAMESPACE_BEGIN

/**
* This class represents a sound that can sound different depending on its realtive position with the listener.
*/
class AUD_API BinauralSound : public ISound
{
private:
	/**
	* A pointer to the imput sound.
	*/
	std::shared_ptr<ISound> m_sound;

	/**
	* A pointer to an HRTF object with a collection of impulse responses.
	*/
	std::shared_ptr<HRTF> m_hrtfs;

	/**
	* A pointer to a Source object which represents the source of the sound.
	*/
	std::shared_ptr<Source> m_source;

	/**
	* A shared ptr to a thread pool.
	*/
	std::shared_ptr<ThreadPool> m_threadPool;

	/**
	* A shared ponter to an FFT plan.
	*/
	std::shared_ptr<FFTPlan> m_plan;

	// delete copy constructor and operator=
	BinauralSound(const BinauralSound&) = delete;
	BinauralSound& operator=(const BinauralSound&) = delete;

public:
	/**
	* Creates a new ConvolverSound.
	* \param sound The sound that will be convolved. It must have only one channel.
	* \param hrtfs The HRTF set that will be used.
	* \param source A shared pointer to a Source object that contains the source of the sound.
	* \param threadPool A shared pointer to a ThreadPool object with 1 or more threads.
	* \param plan A shared pointer to a FFTPlan object that will be used for convolution.
	* \warning The same FFTPlan object must be used to construct both this and the HRTF object provided.
	*/
	BinauralSound(std::shared_ptr<ISound> sound, std::shared_ptr<HRTF> hrtfs, std::shared_ptr<Source> source, std::shared_ptr<ThreadPool> threadPool, std::shared_ptr<FFTPlan> plan);

	/**
	* Creates a new BinauralSound. A default FFT plan will be created.
	* \param sound The sound that will be convolved. Must have only one channel.
	* \param hrtfs The HRTF set that will be used.
	* \param source A shared pointer to a Source object that contains the source of the sound.
	* \param threadPool A shared pointer to a ThreadPool object with 1 or more threads.
	* \warning To use this constructor no FFTPlan object must have been provided to the hrtfs.
	*/
	BinauralSound(std::shared_ptr<ISound> sound, std::shared_ptr<HRTF> hrtfs, std::shared_ptr<Source> source, std::shared_ptr<ThreadPool> threadPool);

	virtual std::shared_ptr<IReader> createReader();

	/**
	* Retrieves the HRTF set being used.
	* \return A shared pointer to the current HRTF object being used.
	*/
	std::shared_ptr<HRTF> getHRTFs();

	/**
	* Changes the set of HRTFs used for convolution, it'll only affect newly created readers.
	* \param hrtfs A shared pointer to the new HRTF object.
	*/
	void setHRTFs(std::shared_ptr<HRTF> hrtfs);

	/**
	* Retrieves the Source object being used.
	* \return A shared pointer to the current Source object being used.
	*/
	std::shared_ptr<Source> getSource();

	/**
	* Changes the Source object used to change the source position of the sound.
	* \param source A shared pointer to the new Source object.
	*/
	void setSource(std::shared_ptr<Source> source);
};
AUD_NAMESPACE_END