2016-05-05 06:39:18 +00:00
|
|
|
#include "amuse/AudioGroupPool.hpp"
|
|
|
|
#include "amuse/Common.hpp"
|
2016-05-06 05:19:19 +00:00
|
|
|
#include "amuse/Entity.hpp"
|
2016-05-05 06:39:18 +00:00
|
|
|
|
|
|
|
namespace amuse
|
|
|
|
{
|
|
|
|
|
|
|
|
struct Header
|
|
|
|
{
|
|
|
|
uint32_t soundMacrosOffset;
|
|
|
|
uint32_t tablesOffset;
|
|
|
|
uint32_t keymapsOffset;
|
|
|
|
uint32_t layersOffset;
|
|
|
|
void swapBig()
|
|
|
|
{
|
|
|
|
soundMacrosOffset = SBig(soundMacrosOffset);
|
|
|
|
tablesOffset = SBig(tablesOffset);
|
|
|
|
keymapsOffset = SBig(keymapsOffset);
|
|
|
|
layersOffset = SBig(layersOffset);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
AudioGroupPool::AudioGroupPool(const unsigned char* data)
|
|
|
|
{
|
|
|
|
Header head = *reinterpret_cast<const Header*>(data);
|
|
|
|
head.swapBig();
|
|
|
|
|
|
|
|
if (head.soundMacrosOffset)
|
|
|
|
{
|
|
|
|
const unsigned char* cur = data + head.soundMacrosOffset;
|
|
|
|
while (*reinterpret_cast<const uint32_t*>(cur) != 0xffffffff)
|
|
|
|
{
|
|
|
|
uint32_t size = SBig(*reinterpret_cast<const uint32_t*>(cur));
|
2016-05-06 05:19:19 +00:00
|
|
|
ObjectId id = *reinterpret_cast<const ObjectId*>(cur + 4);
|
2016-05-05 06:39:18 +00:00
|
|
|
m_soundMacros[id] = cur + 8;
|
|
|
|
cur += size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (head.tablesOffset)
|
|
|
|
{
|
|
|
|
const unsigned char* cur = data + head.tablesOffset;
|
|
|
|
while (*reinterpret_cast<const uint32_t*>(cur) != 0xffffffff)
|
|
|
|
{
|
|
|
|
uint32_t size = SBig(*reinterpret_cast<const uint32_t*>(cur));
|
2016-05-06 05:19:19 +00:00
|
|
|
ObjectId id = *reinterpret_cast<const ObjectId*>(cur + 4);
|
2016-05-05 06:39:18 +00:00
|
|
|
m_tables[id] = cur + 8;
|
|
|
|
cur += size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (head.keymapsOffset)
|
|
|
|
{
|
|
|
|
const unsigned char* cur = data + head.keymapsOffset;
|
|
|
|
while (*reinterpret_cast<const uint32_t*>(cur) != 0xffffffff)
|
|
|
|
{
|
|
|
|
uint32_t size = SBig(*reinterpret_cast<const uint32_t*>(cur));
|
2016-05-06 05:19:19 +00:00
|
|
|
ObjectId id = *reinterpret_cast<const ObjectId*>(cur + 4);
|
2016-05-05 06:39:18 +00:00
|
|
|
m_keymaps[id] = reinterpret_cast<const Keymap*>(cur + 8);
|
|
|
|
cur += size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (head.layersOffset)
|
|
|
|
{
|
|
|
|
const unsigned char* cur = data + head.layersOffset;
|
|
|
|
while (*reinterpret_cast<const uint32_t*>(cur) != 0xffffffff)
|
|
|
|
{
|
|
|
|
uint32_t size = SBig(*reinterpret_cast<const uint32_t*>(cur));
|
2016-05-06 05:19:19 +00:00
|
|
|
ObjectId id = *reinterpret_cast<const ObjectId*>(cur + 4);
|
2016-05-05 06:39:18 +00:00
|
|
|
std::vector<const LayerMapping*>& mappingsOut = m_layers[id];
|
|
|
|
|
|
|
|
uint32_t count = SBig(*reinterpret_cast<const uint32_t*>(cur+8));
|
|
|
|
mappingsOut.reserve(count);
|
|
|
|
const unsigned char* subcur = cur + 12;
|
|
|
|
for (int i=0 ; i<count ; ++i)
|
|
|
|
mappingsOut.push_back(reinterpret_cast<const LayerMapping*>(subcur + i * 12));
|
|
|
|
|
|
|
|
cur += size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-06 05:19:19 +00:00
|
|
|
const ADSR* AudioGroupPool::tableAsAdsr(ObjectId id) const
|
|
|
|
{
|
|
|
|
auto search = m_tables.find(id);
|
|
|
|
if (search == m_tables.cend())
|
|
|
|
return nullptr;
|
|
|
|
return reinterpret_cast<const ADSR*>(search->second);
|
|
|
|
}
|
|
|
|
|
2016-05-05 06:39:18 +00:00
|
|
|
}
|