forked from OpenXcom/OpenXcom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSoundSet.cpp
More file actions
136 lines (123 loc) · 3.17 KB
/
Copy pathSoundSet.cpp
File metadata and controls
136 lines (123 loc) · 3.17 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/*
* Copyright 2010 OpenXcom Developers.
*
* This file is part of OpenXcom.
*
* OpenXcom is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* OpenXcom 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
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OpenXcom. If not, see <http://www.gnu.org/licenses/>.
*/
#include "SoundSet.h"
#include "CatFile.h"
#include "Sound.h"
#include "Exception.h"
namespace OpenXcom
{
/**
* Sets up a new empty sound set.
*/
SoundSet::SoundSet() : _sounds()
{
}
/**
* Deletes the sounds from memory.
*/
SoundSet::~SoundSet()
{
for (std::vector<Sound*>::iterator i = _sounds.begin(); i != _sounds.end(); ++i)
{
delete *i;
}
}
/**
* Loads the contents of an X-Com CAT file which usually contains
* a set of sound files. The CAT starts with an index of the offset
* and size of every file contained within. Each file consists of a
* filename followed by its contents.
* @param filename Filename of the CAT set.
* @param wav Are the sounds in WAV format?
* @sa http://www.ufopaedia.org/index.php?title=SOUND
*/
void SoundSet::loadCat(const std::string &filename, bool wav)
{
// Load CAT file
CatFile sndFile (filename.c_str());
if (!sndFile)
{
throw Exception("Failed to load CAT");
}
// Load each sound file
for (int i = 0; i < sndFile.getAmount(); i++)
{
// Read WAV chunk
char *sound = sndFile.load(i);
unsigned int size = sndFile.getObjectSize(i);
// If there's no WAV header (44 bytes), add it
// Assuming sounds are 8-bit 8000Hz (DOS version)
char *newsound = 0;
if (!wav)
{
char header[] = {'R', 'I', 'F', 'F', 0x00, 0x00, 0x00, 0x00, 'W', 'A', 'V', 'E', 'f', 'm', 't', ' ',
0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x40, 0x1f, 0x00, 0x00, 0x40, 0x1f, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00,
'd', 'a', 't', 'a', 0x00, 0x00, 0x00, 0x00};
int headersize = size + 36;
int soundsize = size;
memcpy(header + 4, &headersize, sizeof(headersize));
memcpy(header + 40, &soundsize, sizeof(soundsize));
newsound = new char[44 + size];
memcpy(newsound, header, 44);
memcpy(newsound + 44, sound, size);
}
Sound *s = new Sound();
try
{
if (wav)
s->load(sound, size);
else
s->load(newsound, 44 + size);
}
catch (Exception &e)
{
// Ignore junk in the file
e = e;
}
_sounds.push_back(s);
delete[] sound;
if (!wav)
{
delete[] newsound;
}
}
}
/**
* Returns a particular wave from the sound set.
* @param i Sound number in the set.
* @return Pointer to the respective sound.
*/
Sound *const SoundSet::getSound(unsigned int i) const
{
if (i >= _sounds.size())
{
return 0;
}
return _sounds[i];
}
/**
* Returns the total amount of sounds currently
* stored in the set.
* @return Number of sounds.
*/
int SoundSet::getTotalSounds() const
{
return _sounds.size();
}
}