/***************************************************************************
* Copyright (C) 2009-2018 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program 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 2 of the License, or *
* (at your option) any later version. *
* *
* This program 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 this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
#include <QFile>
#include <stdint.h>
#include <libmodplug/stdafx.h>
#include <libmodplug/it_defs.h>
#include <libmodplug/sndfile.h>
#include <libmodplug/modplug.h>
#include "archivereader.h"
#include "modplugmetadatamodel.h"
#define MAX_MESSAGE_LENGTH 4000
ModPlugMetaDataModel::ModPlugMetaDataModel(const QString &path, QObject *parent) : MetaDataModel(parent)
{
m_soundFile = 0;
m_path = path;
ArchiveReader reader(this);
if(reader.isSupported(m_path))
{
m_buffer = reader.unpack(m_path);
}
else
{
QFile file(m_path);
if(!file.open(QIODevice::ReadOnly))
{
qWarning("DetailsDialog: error: %s", qPrintable(file.errorString ()));
return;
}
m_buffer = file.readAll();
file.close();
}
m_soundFile = new CSoundFile();
m_soundFile->Create((uchar*) m_buffer.data(), m_buffer.size());
}
ModPlugMetaDataModel::~ModPlugMetaDataModel()
{
if(m_soundFile)
{
m_soundFile->Destroy();
delete m_soundFile;
}
}
QHash<QString, QString> ModPlugMetaDataModel::audioProperties()
{
QHash<QString, QString> ap;
if(!m_soundFile)
return ap;
ap.insert(tr("File name"), m_path.section('/',-1));
QString text = getTypeName(m_soundFile->GetType());
ap.insert(tr("Type"), text);
int lSongTime = m_soundFile->GetSongTime();
text = QString("%1").arg(lSongTime/60);
text +=":"+QString("%1").arg(lSongTime%60,2,10,QChar('0'));
ap.insert(tr("Length"), text);
ap.insert(tr("Speed"), QString::number(m_soundFile->GetMusicSpeed()));
ap.insert(tr("Tempo"), QString::number(m_soundFile->GetMusicTempo()));
ap.insert(tr("Samples"), QString::number(m_soundFile->GetNumSamples()));
ap.insert(tr("Instruments"), QString::number(m_soundFile->GetNumInstruments()));
ap.insert(tr("Patterns"), QString::number(m_soundFile->GetNumPatterns()));
ap.insert(tr("Channels"), QString::number(m_soundFile->GetNumChannels()));
return ap;
}
QHash<QString, QString> ModPlugMetaDataModel::descriptions()
{
QHash<QString, QString> desc;
if(!m_soundFile)
return desc;
char lBuffer[33];
QString text;
for(uint i = 0; i < m_soundFile->GetNumSamples(); i++)
{
m_soundFile->GetSampleName(i, lBuffer);
text += QString::fromUtf8(lBuffer) + '\n';
}
text = text.trimmed();
if(!text.isEmpty())
desc.insert(tr("Samples"), text);
text.clear();
for(uint i = 0; i < m_soundFile->GetNumInstruments(); i++)
{
m_soundFile->GetInstrumentName(i, lBuffer);
text += QString::fromUtf8(lBuffer) + '\n';
}
text = text.trimmed();
if(!text.isEmpty())
desc.insert(tr("Instruments"), text);
text.clear();
char message[MAX_MESSAGE_LENGTH];
int length = m_soundFile->GetSongComments(message, MAX_MESSAGE_LENGTH, 80);
if (length != 0)
desc.insert(tr("Comment"), QString::fromUtf8(message).trimmed ());
return desc;
}
QString ModPlugMetaDataModel::getTypeName(quint32 type)
{
switch (type) {
case MOD_TYPE_MOD:
return "ProTracker";
case MOD_TYPE_S3M:
return "Scream Tracker 3";
case MOD_TYPE_XM:
return "Fast Tracker 2";
case MOD_TYPE_IT:
return "Impulse Tracker";
case MOD_TYPE_MED:
return "OctaMed";
case MOD_TYPE_MTM:
return "MTM";
case MOD_TYPE_669:
return "669 Composer / UNIS 669";
case MOD_TYPE_ULT:
return "ULT";
case MOD_TYPE_STM:
return "Scream Tracker";
case MOD_TYPE_FAR:
return "Farandole";
case MOD_TYPE_AMF:
return "ASYLUM Music Format";
case MOD_TYPE_AMS:
return "AMS module";
case MOD_TYPE_DSM:
return "DSIK Internal Format";
case MOD_TYPE_MDL:
return "DigiTracker";
case MOD_TYPE_OKT:
return "Oktalyzer";
case MOD_TYPE_DMF:
return "Delusion Digital Music Fileformat (X-Tracker)";
case MOD_TYPE_PTM:
return "PolyTracker";
case MOD_TYPE_DBM:
return "DigiBooster Pro";
case MOD_TYPE_MT2:
return "MT2";
case MOD_TYPE_AMF0:
return "AMF0";
case MOD_TYPE_PSM:
return "PSM";
default:
;
}
return "Unknown";
}