Clementine-audio-player-Mac.../3rdparty/taglib/xm/xmproperties.cpp

196 lines
4.5 KiB
C++

/***************************************************************************
copyright : (C) 2011 by Mathias Panzenböck
email : grosser.meister.morti@gmx.net
***************************************************************************/
/***************************************************************************
* This library is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License version *
* 2.1 as published by the Free Software Foundation. *
* *
* This library 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 *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library; if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA *
* 02110-1301 USA *
* *
* Alternatively, this file is available under the Mozilla Public *
* License Version 1.1. You may obtain a copy of the License at *
* http://www.mozilla.org/MPL/ *
***************************************************************************/
#include "xmproperties.h"
using namespace TagLib;
using namespace XM;
class XM::Properties::PropertiesPrivate
{
public:
PropertiesPrivate() :
lengthInPatterns(0),
channels(0),
version(0),
restartPosition(0),
patternCount(0),
instrumentCount(0),
sampleCount(0),
flags(0),
tempo(0),
bpmSpeed(0)
{
}
unsigned short lengthInPatterns;
int channels;
unsigned short version;
unsigned short restartPosition;
unsigned short patternCount;
unsigned short instrumentCount;
unsigned int sampleCount;
unsigned short flags;
unsigned short tempo;
unsigned short bpmSpeed;
};
XM::Properties::Properties(AudioProperties::ReadStyle propertiesStyle) :
AudioProperties(propertiesStyle),
d(new PropertiesPrivate())
{
}
XM::Properties::~Properties()
{
delete d;
}
int XM::Properties::length() const
{
return 0;
}
int XM::Properties::lengthInSeconds() const
{
return 0;
}
int XM::Properties::lengthInMilliseconds() const
{
return 0;
}
int XM::Properties::bitrate() const
{
return 0;
}
int XM::Properties::sampleRate() const
{
return 0;
}
int XM::Properties::channels() const
{
return d->channels;
}
unsigned short XM::Properties::lengthInPatterns() const
{
return d->lengthInPatterns;
}
unsigned short XM::Properties::version() const
{
return d->version;
}
unsigned short XM::Properties::restartPosition() const
{
return d->restartPosition;
}
unsigned short XM::Properties::patternCount() const
{
return d->patternCount;
}
unsigned short XM::Properties::instrumentCount() const
{
return d->instrumentCount;
}
unsigned int XM::Properties::sampleCount() const
{
return d->sampleCount;
}
unsigned short XM::Properties::flags() const
{
return d->flags;
}
unsigned short XM::Properties::tempo() const
{
return d->tempo;
}
unsigned short XM::Properties::bpmSpeed() const
{
return d->bpmSpeed;
}
void XM::Properties::setLengthInPatterns(unsigned short lengthInPatterns)
{
d->lengthInPatterns = lengthInPatterns;
}
void XM::Properties::setChannels(int channels)
{
d->channels = channels;
}
void XM::Properties::setVersion(unsigned short version)
{
d->version = version;
}
void XM::Properties::setRestartPosition(unsigned short restartPosition)
{
d->restartPosition = restartPosition;
}
void XM::Properties::setPatternCount(unsigned short patternCount)
{
d->patternCount = patternCount;
}
void XM::Properties::setInstrumentCount(unsigned short instrumentCount)
{
d->instrumentCount = instrumentCount;
}
void XM::Properties::setSampleCount(unsigned int sampleCount)
{
d->sampleCount = sampleCount;
}
void XM::Properties::setFlags(unsigned short flags)
{
d->flags = flags;
}
void XM::Properties::setTempo(unsigned short tempo)
{
d->tempo = tempo;
}
void XM::Properties::setBpmSpeed(unsigned short bpmSpeed)
{
d->bpmSpeed = bpmSpeed;
}