summaryrefslogtreecommitdiff
path: root/src/music
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2019-05-03 18:11:14 +0200
committerCharles Pigott <charlespigott@googlemail.com>2019-05-04 19:50:53 +0100
commit9184a62958815393db5a505cc3b3ca9ab6d3076e (patch)
tree72ae2ef560eed1d57fbfa016422c1d3c1424cc62 /src/music
parent212140b88bc08172b4f90ccfcde0c6d479adbb55 (diff)
downloadopenttd-9184a62958815393db5a505cc3b3ca9ab6d3076e.tar.xz
Codechange: replace grow() usage for MidiFile
Diffstat (limited to 'src/music')
-rw-r--r--src/music/midifile.cpp42
1 files changed, 26 insertions, 16 deletions
diff --git a/src/music/midifile.cpp b/src/music/midifile.cpp
index 3717ad5d3..0259181b3 100644
--- a/src/music/midifile.cpp
+++ b/src/music/midifile.cpp
@@ -113,7 +113,7 @@ public:
/**
* Read bytes into a buffer.
- * @param[out] dest buffer to copy info
+ * @param[out] dest buffer to copy into
* @param length number of bytes to read
* @return true if the requested number of bytes were available
*/
@@ -127,6 +127,21 @@ public:
}
/**
+ * Read bytes into a MidiFile::DataBlock.
+ * @param[out] dest DataBlock to copy into
+ * @param length number of bytes to read
+ * @return true if the requested number of bytes were available
+ */
+ bool ReadDataBlock(MidiFile::DataBlock *dest, size_t length)
+ {
+ if (this->IsEnd()) return false;
+ if (this->buflen - this->pos < length) return false;
+ dest->data.insert(dest->data.end(), this->buf + this->pos, this->buf + this->pos + length);
+ this->pos += length;
+ return true;
+ }
+
+ /**
* Skip over a number of bytes in the buffer.
* @param count number of bytes to skip over
* @return true if there were enough bytes available
@@ -208,7 +223,6 @@ static bool ReadTrackChunk(FILE *file, MidiFile &target)
/* Regular channel message */
last_status = status;
running_status:
- byte *data;
switch (status & 0xF0) {
case MIDIST_NOTEOFF:
case MIDIST_NOTEON:
@@ -216,20 +230,19 @@ static bool ReadTrackChunk(FILE *file, MidiFile &target)
case MIDIST_CONTROLLER:
case MIDIST_PITCHBEND:
/* 3 byte messages */
- data = grow(block->data, 3);
- data[0] = status;
- if (!chunk.ReadBuffer(&data[1], 2)) {
+ block->data.push_back(status);
+ if (!chunk.ReadDataBlock(block, 2)) {
return false;
}
break;
case MIDIST_PROGCHG:
case MIDIST_CHANPRESS:
/* 2 byte messages */
- data = grow(block->data, 2);
- data[0] = status;
- if (!chunk.ReadByte(data[1])) {
+ block->data.push_back(status);
+ if (!chunk.ReadByte(buf[0])) {
return false;
}
+ block->data.push_back(buf[0]);
break;
default:
NOT_REACHED();
@@ -266,12 +279,11 @@ static bool ReadTrackChunk(FILE *file, MidiFile &target)
if (!chunk.ReadVariableLength(length)) {
return false;
}
- byte *data = grow(block->data, length + 1);
- data[0] = 0xF0;
- if (!chunk.ReadBuffer(data + 1, length)) {
+ block->data.push_back(0xF0);
+ if (!chunk.ReadDataBlock(block, length)) {
return false;
}
- if (data[length] != 0xF7) {
+ if (block->data.back() != 0xF7) {
/* Engage Casio weirdo mode - convert to normal sysex */
running_sysex = true;
block->data.push_back(0xF7);
@@ -284,8 +296,7 @@ static bool ReadTrackChunk(FILE *file, MidiFile &target)
if (!chunk.ReadVariableLength(length)) {
return false;
}
- byte *data = grow(block->data, length);
- if (!chunk.ReadBuffer(data, length)) {
+ if (!chunk.ReadDataBlock(block, length)) {
return false;
}
} else {
@@ -335,8 +346,7 @@ static bool FixupMidiData(MidiFile &target)
merged_blocks.push_back(block);
last_ticktime = block.ticktime;
} else {
- byte *datadest = grow(merged_blocks.back().data, block.data.size());
- memcpy(datadest, block.data.data(), block.data.size());
+ merged_blocks.back().data.insert(merged_blocks.back().data.end(), block.data.begin(), block.data.end());
}
}
std::swap(merged_blocks, target.blocks);