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

HRTF.h « fx « include « audaspace « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 750d5f189912321f2af3ad5e029a3eb6ea08c2fe (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
/*******************************************************************************
* 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 HRTF.h
* @ingroup fx
* The HRTF class.
*/

#include "util/StreamBuffer.h"
#include "util/FFTPlan.h"
#include "ImpulseResponse.h"

#include <memory>
#include <vector>
#include <unordered_map>
#include <utility>

AUD_NAMESPACE_BEGIN

/**
* This class represents a complete set of HRTFs.
*/
class AUD_API HRTF
{
private:
	/**
	* An unordered map of unordered maps containing the ImpulseResponse objects of the HRTFs.
	*/
	std::unordered_map<float, std::unordered_map<float, std::shared_ptr<ImpulseResponse>>> m_hrtfs;

	/**
	* The FFTPlan used to create the ImpulseResponses.
	*/
	std::shared_ptr<FFTPlan> m_plan;

	/**
	* The specifications of the HRTFs.
	*/
	Specs m_specs;

	/**
	* True if the HRTF object is empty.
	*/
	bool m_empty;

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

public:
	/**
	* Creates a new empty HRTF object that will instance it own FFTPlan with default size.
	*/
	HRTF();

	/**
	* Creates a new empty HRTF object.
	* \param plan A shared pointer to a FFT plan used to transform the impulse responses added.
	*/
	HRTF(std::shared_ptr<FFTPlan> plan);

	/**
	* Adds a new HRTF to the class.
	* \param impulseResponse A shared pointer to an StreamBuffer with the HRTF.
	* \param azimuth The azimuth angle of the HRTF. Interval [0,360).
	* \param elevation The elevation angle of the HRTF.
	* \return True if the impulse response was added successfully, false otherwise (the specs weren't correct).
	*/
	bool addImpulseResponse(std::shared_ptr<StreamBuffer> impulseResponse, float azimuth, float elevation);

	/**
	* Retrieves a pair of HRTFs for a certain azimuth and elevation. If no exact match is found, the closest ones will be chosen (the elevation has priority over the azimuth).
	* \param[in,out] azimuth The desired azimuth angle. If no exact match is found, the value of azimuth will represent the actual azimuth elevation of the chosen HRTF. Interval [0,360)
	* \param[in,out] elevation The desired elevation angle. If no exact match is found, the value of elevation will represent the actual elevation angle of the chosen HRTF.
	* \return A pair of shared pointers to ImpulseResponse objects containing the HRTFs for the left (first element) and right (second element) ears.
	*/
	std::pair<std::shared_ptr<ImpulseResponse>, std::shared_ptr<ImpulseResponse>> getImpulseResponse(float &azimuth, float &elevation);

	/**
	* Retrieves the specs shared by all the HRTFs.
	* \return The shared specs of all the HRTFs.
	*/
	Specs getSpecs();

	/**
	* Retrieves the state of the HRTF object.
	* \return True if it is empty, false otherwise.
	*/
	bool isEmpty();
};

AUD_NAMESPACE_END