123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651 |
- #include "stdafx.h"
- #include "Loaders.h"
- #include "WAVTools.h"
- #include "Tagging.h"
- #include "../common/version.h"
- #ifndef MODPLUG_NO_FILESAVE
- #include "mpt/io/io.hpp"
- #include "mpt/io/io_virtual_wrapper.hpp"
- #include "../common/mptFileIO.h"
- #endif
- OPENMPT_NAMESPACE_BEGIN
- WAVReader::WAVReader(FileReader &inputFile) : file(inputFile)
- {
- file.Rewind();
- RIFFHeader fileHeader;
- codePage = 28591;
- isDLS = false;
- subFormat = 0;
- mayBeCoolEdit16_8 = false;
- if(!file.ReadStruct(fileHeader)
- || (fileHeader.magic != RIFFHeader::idRIFF && fileHeader.magic != RIFFHeader::idLIST)
- || (fileHeader.type != RIFFHeader::idWAVE && fileHeader.type != RIFFHeader::idwave))
- {
- return;
- }
- isDLS = (fileHeader.magic == RIFFHeader::idLIST);
- auto chunks = file.ReadChunks<RIFFChunk>(2);
- if(chunks.chunks.size() >= 4
- && chunks.chunks[1].GetHeader().GetID() == RIFFChunk::iddata
- && chunks.chunks[1].GetHeader().GetLength() % 2u != 0
- && chunks.chunks[2].GetHeader().GetLength() == 0
- && chunks.chunks[3].GetHeader().GetID() == RIFFChunk::id____)
- {
-
-
-
-
-
-
-
-
-
-
- file.Seek(sizeof(RIFFHeader));
- chunks = file.ReadChunks<RIFFChunk>(1);
- }
-
- FileReader formatChunk = chunks.GetChunk(RIFFChunk::idfmt_);
- if(!formatChunk.ReadStruct(formatInfo))
- {
- return;
- }
- if(formatInfo.format == WAVFormatChunk::fmtPCM && formatChunk.BytesLeft() == 4)
- {
- uint16 size = formatChunk.ReadIntLE<uint16>();
- uint16 value = formatChunk.ReadIntLE<uint16>();
- if(size == 2 && value == 1)
- {
-
-
- mayBeCoolEdit16_8 = true;
- }
- } else if(formatInfo.format == WAVFormatChunk::fmtExtensible)
- {
- WAVFormatChunkExtension extFormat;
- if(!formatChunk.ReadStruct(extFormat))
- {
- return;
- }
- subFormat = static_cast<uint16>(mpt::UUID(extFormat.subFormat).GetData1());
- }
-
- sampleData = chunks.GetChunk(RIFFChunk::iddata);
- if(!sampleData.IsValid())
- {
-
-
- sampleData = chunks.GetChunk(RIFFChunk::idpcm_);
- }
-
- sampleLength = chunks.GetChunk(RIFFChunk::idfact).ReadUint32LE();
- if((formatInfo.format != WAVFormatChunk::fmtIMA_ADPCM || sampleLength == 0) && GetSampleSize() != 0)
- {
- if((GetBlockAlign() == 0) || (GetBlockAlign() / GetNumChannels() >= 2 * GetSampleSize()))
- {
-
-
-
- sampleLength = sampleData.GetLength() / GetSampleSize();
- } else
- {
-
- sampleLength = sampleData.GetLength() / GetBlockAlign();
- }
- }
-
- codePage = GetFileCodePage(chunks);
-
- FindMetadataChunks(chunks);
-
- wsmpChunk = chunks.GetChunk(RIFFChunk::idwsmp);
- }
- void WAVReader::FindMetadataChunks(FileReader::ChunkList<RIFFChunk> &chunks)
- {
-
- smplChunk = chunks.GetChunk(RIFFChunk::idsmpl);
- instChunk = chunks.GetChunk(RIFFChunk::idinst);
-
- cueChunk = chunks.GetChunk(RIFFChunk::idcue_);
-
- FileReader listChunk = chunks.GetChunk(RIFFChunk::idLIST);
- if(listChunk.ReadMagic("INFO"))
- {
- infoChunk = listChunk.ReadChunks<RIFFChunk>(2);
- }
-
- xtraChunk = chunks.GetChunk(RIFFChunk::idxtra);
- }
- uint16 WAVReader::GetFileCodePage(FileReader::ChunkList<RIFFChunk> &chunks)
- {
- FileReader csetChunk = chunks.GetChunk(RIFFChunk::idCSET);
- if(!csetChunk.IsValid())
- {
- FileReader iSFT = infoChunk.GetChunk(RIFFChunk::idISFT);
- if(iSFT.ReadMagic("OpenMPT"))
- {
- std::string versionString;
- iSFT.ReadString<mpt::String::maybeNullTerminated>(versionString, iSFT.BytesLeft());
- versionString = mpt::trim(versionString);
- Version version = Version::Parse(mpt::ToUnicode(mpt::Charset::ISO8859_1, versionString));
- if(version && version < MPT_V("1.28.00.02"))
- {
- return 1252;
- } else
- {
- return 28591;
- }
- } else
- {
- return 28591;
- }
- }
- if(!csetChunk.CanRead(2))
- {
-
- return 28591;
- }
- uint16 codepage = csetChunk.ReadUint16LE();
- return codepage;
- }
- void WAVReader::ApplySampleSettings(ModSample &sample, mpt::Charset sampleCharset, mpt::charbuf<MAX_SAMPLENAME> &sampleName)
- {
-
- FileReader textChunk = infoChunk.GetChunk(RIFFChunk::idINAM);
- if(textChunk.IsValid())
- {
- std::string sampleNameEncoded;
- textChunk.ReadString<mpt::String::nullTerminated>(sampleNameEncoded, textChunk.GetLength());
- sampleName = mpt::ToCharset(sampleCharset, mpt::ToUnicode(codePage, mpt::Charset::Windows1252, sampleNameEncoded));
- }
- if(isDLS)
- {
-
- sample.filename = sampleName;
- }
-
- const bool isOldMPT = infoChunk.GetChunk(RIFFChunk::idISFT).ReadMagic("Modplug Tracker");
-
-
- WAVSampleInfoChunk sampleInfo;
- smplChunk.Rewind();
- if(smplChunk.ReadStruct(sampleInfo))
- {
- WAVSampleLoop loopData;
- if(sampleInfo.numLoops > 1 && smplChunk.ReadStruct(loopData))
- {
-
- loopData.ApplyToSample(sample.nSustainStart, sample.nSustainEnd, sample.nLength, sample.uFlags, CHN_SUSTAINLOOP, CHN_PINGPONGSUSTAIN, isOldMPT);
- }
-
- if(smplChunk.ReadStruct(loopData))
- {
- loopData.ApplyToSample(sample.nLoopStart, sample.nLoopEnd, sample.nLength, sample.uFlags, CHN_LOOP, CHN_PINGPONGLOOP, isOldMPT);
- }
-
- sample.rootNote = static_cast<uint8>(sampleInfo.baseNote);
- if(sample.rootNote < 128)
- sample.rootNote += NOTE_MIN;
- else
- sample.rootNote = NOTE_NONE;
- sample.SanitizeLoops();
- }
- if(sample.rootNote == NOTE_NONE && instChunk.LengthIsAtLeast(sizeof(WAVInstrumentChunk)))
- {
- WAVInstrumentChunk inst;
- instChunk.Rewind();
- if(instChunk.ReadStruct(inst))
- {
- sample.rootNote = inst.unshiftedNote;
- if(sample.rootNote < 128)
- sample.rootNote += NOTE_MIN;
- else
- sample.rootNote = NOTE_NONE;
- }
- }
-
- if(cueChunk.IsValid())
- {
- uint32 numPoints = cueChunk.ReadUint32LE();
- LimitMax(numPoints, mpt::saturate_cast<uint32>(std::size(sample.cues)));
- for(uint32 i = 0; i < numPoints; i++)
- {
- WAVCuePoint cuePoint;
- cueChunk.ReadStruct(cuePoint);
- sample.cues[i] = cuePoint.position;
- }
- std::fill(std::begin(sample.cues) + numPoints, std::end(sample.cues), MAX_SAMPLE_LENGTH);
- }
-
- WAVExtraChunk mptInfo;
- xtraChunk.Rewind();
- if(xtraChunk.ReadStruct(mptInfo))
- {
- if(mptInfo.flags & WAVExtraChunk::setPanning) sample.uFlags.set(CHN_PANNING);
- sample.nPan = std::min(static_cast<uint16>(mptInfo.defaultPan), uint16(256));
- sample.nVolume = std::min(static_cast<uint16>(mptInfo.defaultVolume), uint16(256));
- sample.nGlobalVol = std::min(static_cast<uint16>(mptInfo.globalVolume), uint16(64));
- sample.nVibType = static_cast<VibratoType>(mptInfo.vibratoType.get());
- sample.nVibSweep = mptInfo.vibratoSweep;
- sample.nVibDepth = mptInfo.vibratoDepth;
- sample.nVibRate = mptInfo.vibratoRate;
- if(xtraChunk.CanRead(MAX_SAMPLENAME))
- {
-
-
-
-
- xtraChunk.ReadString<mpt::String::nullTerminated>(sampleName, MAX_SAMPLENAME);
- xtraChunk.ReadString<mpt::String::nullTerminated>(sample.filename, xtraChunk.BytesLeft());
- }
- }
- }
- void WAVSampleLoop::ApplyToSample(SmpLength &start, SmpLength &end, SmpLength sampleLength, SampleFlags &flags, ChannelFlags enableFlag, ChannelFlags bidiFlag, bool mptLoopFix) const
- {
- if(loopEnd == 0)
- {
-
- return;
- }
- start = std::min(static_cast<SmpLength>(loopStart), sampleLength);
- end = Clamp(static_cast<SmpLength>(loopEnd), start, sampleLength);
- if(!mptLoopFix && end < sampleLength)
- {
-
- end++;
- }
- flags.set(enableFlag);
- if(loopType == loopBidi)
- {
- flags.set(bidiFlag);
- }
- }
- void WAVSampleLoop::ConvertToWAV(SmpLength start, SmpLength end, bool bidi)
- {
- identifier = 0;
- loopType = bidi ? loopBidi : loopForward;
- loopStart = mpt::saturate_cast<uint32>(start);
-
- if(end > start)
- {
- loopEnd = mpt::saturate_cast<uint32>(end - 1);
- } else
- {
- loopEnd = loopStart;
- }
- fraction = 0;
- playCount = 0;
- }
- #ifndef MODPLUG_NO_FILESAVE
- WAVWriter::WAVWriter(mpt::IO::OFileBase &stream)
- : s(stream)
- {
-
- Seek(sizeof(RIFFHeader));
- }
- WAVWriter::~WAVWriter()
- {
- MPT_ASSERT(finalized);
- }
- std::size_t WAVWriter::Finalize()
- {
- FinalizeChunk();
- RIFFHeader fileHeader;
- Clear(fileHeader);
- fileHeader.magic = RIFFHeader::idRIFF;
- fileHeader.length = static_cast<uint32>(totalSize - 8);
- fileHeader.type = RIFFHeader::idWAVE;
- Seek(0);
- Write(fileHeader);
- finalized = true;
- return totalSize;
- }
- void WAVWriter::StartChunk(RIFFChunk::ChunkIdentifiers id)
- {
- FinalizeChunk();
- chunkStartPos = position;
- chunkHeader.id = id;
- Skip(sizeof(chunkHeader));
- }
- void WAVWriter::FinalizeChunk()
- {
- if(chunkStartPos != 0)
- {
- const std::size_t chunkSize = position - (chunkStartPos + sizeof(RIFFChunk));
- chunkHeader.length = mpt::saturate_cast<uint32>(chunkSize);
- std::size_t curPos = position;
- Seek(chunkStartPos);
- Write(chunkHeader);
- Seek(curPos);
- if((chunkSize % 2u) != 0)
- {
-
- uint8 padding = 0;
- Write(padding);
- }
- chunkStartPos = 0;
- }
- }
- void WAVWriter::Seek(std::size_t pos)
- {
- position = pos;
- totalSize = std::max(totalSize, position);
- mpt::IO::SeekAbsolute(s, pos);
- }
- void WAVWriter::Write(mpt::const_byte_span data)
- {
- MPT_ASSERT(!finalized);
- auto success = mpt::IO::WriteRaw(s, data);
- MPT_ASSERT(success);
- if(!success)
- {
- return;
- }
- position += data.size();
- totalSize = std::max(totalSize, position);
- }
- void WAVWriter::WriteBeforeDirect()
- {
- MPT_ASSERT(!finalized);
- }
- void WAVWriter::WriteAfterDirect(bool success, std::size_t count)
- {
- MPT_ASSERT(success);
- if (!success)
- {
- return;
- }
- position += count;
- totalSize = std::max(totalSize, position);
- }
- void WAVWriter::WriteFormat(uint32 sampleRate, uint16 bitDepth, uint16 numChannels, WAVFormatChunk::SampleFormats encoding)
- {
- StartChunk(RIFFChunk::idfmt_);
- WAVFormatChunk wavFormat;
- Clear(wavFormat);
- bool extensible = (numChannels > 2);
- wavFormat.format = static_cast<uint16>(extensible ? WAVFormatChunk::fmtExtensible : encoding);
- wavFormat.numChannels = numChannels;
- wavFormat.sampleRate = sampleRate;
- wavFormat.blockAlign = (bitDepth * numChannels + 7) / 8;
- wavFormat.byteRate = wavFormat.sampleRate * wavFormat.blockAlign;
- wavFormat.bitsPerSample = bitDepth;
- Write(wavFormat);
- if(extensible)
- {
- WAVFormatChunkExtension extFormat;
- Clear(extFormat);
- extFormat.size = sizeof(WAVFormatChunkExtension) - sizeof(uint16);
- extFormat.validBitsPerSample = bitDepth;
- switch(numChannels)
- {
- case 1:
- extFormat.channelMask = 0x0004;
- break;
- case 2:
- extFormat.channelMask = 0x0003;
- break;
- case 3:
- extFormat.channelMask = 0x0103;
- break;
- case 4:
- extFormat.channelMask = 0x0033;
- break;
- default:
- extFormat.channelMask = 0;
- break;
- }
- extFormat.subFormat = mpt::UUID(static_cast<uint16>(encoding), 0x0000, 0x0010, 0x800000AA00389B71ull);
- Write(extFormat);
- }
- }
- void WAVWriter::WriteMetatags(const FileTags &tags)
- {
- StartChunk(RIFFChunk::idCSET);
- Write(mpt::as_le(uint16(65001)));
- Write(mpt::as_le(uint16(0)));
- Write(mpt::as_le(uint16(0)));
- Write(mpt::as_le(uint16(0)));
- StartChunk(RIFFChunk::idLIST);
- const char info[] = { 'I', 'N', 'F', 'O' };
- Write(info);
- WriteTag(RIFFChunk::idINAM, tags.title);
- WriteTag(RIFFChunk::idIART, tags.artist);
- WriteTag(RIFFChunk::idIPRD, tags.album);
- WriteTag(RIFFChunk::idICRD, tags.year);
- WriteTag(RIFFChunk::idICMT, tags.comments);
- WriteTag(RIFFChunk::idIGNR, tags.genre);
- WriteTag(RIFFChunk::idTURL, tags.url);
- WriteTag(RIFFChunk::idISFT, tags.encoder);
-
- WriteTag(RIFFChunk::idTRCK, tags.trackno);
- }
- void WAVWriter::WriteTag(RIFFChunk::ChunkIdentifiers id, const mpt::ustring &utext)
- {
- std::string text = mpt::ToCharset(mpt::Charset::UTF8, utext);
- text = text.substr(0, uint32_max - 1u);
- if(!text.empty())
- {
- const uint32 length = mpt::saturate_cast<uint32>(text.length() + 1);
- RIFFChunk chunk;
- Clear(chunk);
- chunk.id = static_cast<uint32>(id);
- chunk.length = length;
- Write(chunk);
- Write(mpt::byte_cast<mpt::const_byte_span>(mpt::span(text.c_str(), length)));
- if((length % 2u) != 0)
- {
- uint8 padding = 0;
- Write(padding);
- }
- }
- }
- void WAVWriter::WriteLoopInformation(const ModSample &sample)
- {
- if(!sample.uFlags[CHN_LOOP | CHN_SUSTAINLOOP] && !ModCommand::IsNote(sample.rootNote))
- {
- return;
- }
- StartChunk(RIFFChunk::idsmpl);
- WAVSampleInfoChunk info;
- uint32 sampleRate = sample.nC5Speed;
- if(sampleRate == 0)
- {
- sampleRate = ModSample::TransposeToFrequency(sample.RelativeTone, sample.nFineTune);
- }
- info.ConvertToWAV(sampleRate, sample.rootNote);
-
- WAVSampleLoop loops[2];
- Clear(loops);
- if(sample.uFlags[CHN_SUSTAINLOOP])
- {
- loops[info.numLoops++].ConvertToWAV(sample.nSustainStart, sample.nSustainEnd, sample.uFlags[CHN_PINGPONGSUSTAIN]);
- }
- if(sample.uFlags[CHN_LOOP])
- {
- loops[info.numLoops++].ConvertToWAV(sample.nLoopStart, sample.nLoopEnd, sample.uFlags[CHN_PINGPONGLOOP]);
- } else if(sample.uFlags[CHN_SUSTAINLOOP])
- {
-
-
-
- loops[info.numLoops++].ConvertToWAV(0, 0, false);
- }
- Write(info);
- for(uint32 i = 0; i < info.numLoops; i++)
- {
- Write(loops[i]);
- }
- }
- void WAVWriter::WriteCueInformation(const ModSample &sample)
- {
- uint32 numMarkers = 0;
- for(const auto cue : sample.cues)
- {
- if(cue < sample.nLength)
- numMarkers++;
- }
- StartChunk(RIFFChunk::idcue_);
- Write(mpt::as_le(numMarkers));
- uint32 i = 0;
- for(const auto cue : sample.cues)
- {
- if(cue < sample.nLength)
- {
- WAVCuePoint cuePoint;
- cuePoint.ConvertToWAV(i++, cue);
- Write(cuePoint);
- }
- }
- }
- void WAVWriter::WriteExtraInformation(const ModSample &sample, MODTYPE modType, const char *sampleName)
- {
- StartChunk(RIFFChunk::idxtra);
- WAVExtraChunk mptInfo;
- mptInfo.ConvertToWAV(sample, modType);
- Write(mptInfo);
- if(sampleName != nullptr)
- {
-
-
-
-
- char name[MAX_SAMPLENAME];
- mpt::String::WriteBuf(mpt::String::nullTerminated, name) = sampleName;
- Write(name);
- char filename[MAX_SAMPLEFILENAME];
- mpt::String::WriteBuf(mpt::String::nullTerminated, filename) = sample.filename;
- Write(filename);
- }
- }
- #endif
- OPENMPT_NAMESPACE_END
|