-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tools.cpp
47 lines (41 loc) · 908 Bytes
/
Tools.cpp
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
/*! \file Tools.cpp
* @author Sylvain Filteau <[email protected]>
* @author Philippe Tremblay <[email protected]>
* @date avril 2004
* @version 0.6
*
* \brief Corp de la classe CTools
*/
#include "tools.h"
// Fonction de comparaison de deux chaînes de caractères
int CTools::StringComparer( char *string1, char *string2, int nbChar )
{
for( int i = 0; i < nbChar; i++ )
{
if( string1[i] != string2[i] )
{
return 0;
}
}
return 1;
}
// Copieur de son
void CTools::SoundCopier( short *orig, short *copie, int longueur)
{
for (int i = 0; i < longueur; i++)
{
copie[i] = orig[i];
}
}
int CTools::MsToNbSamples(int ms, int debit)
{
return ms / 1000 * debit;
}
int CTools::NbEchantillonsParCycle(float vitesse, float frequence)
{
return (int)(frequence/((1/vitesse)*1000));
}
short CTools::Mixer(short son1, short son2, float mix)
{
return (short)((1-mix) * son1) + (mix * son2);
}