OpenTTD Source  14.0-beta3
midifile.hpp
1 /*
2  * This file is part of OpenTTD.
3  * OpenTTD 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, version 2.
4  * OpenTTD 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.
5  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6  */
7 
8 /* @file midifile.hpp Parser for standard MIDI files */
9 
10 #ifndef MUSIC_MIDIFILE_HPP
11 #define MUSIC_MIDIFILE_HPP
12 
13 #include "../stdafx.h"
14 #include "midi.h"
15 
16 struct MusicSongInfo;
17 
18 struct MidiFile {
19  struct DataBlock {
20  uint32_t ticktime;
21  uint32_t realtime;
22  std::vector<byte> data;
23  DataBlock(uint32_t _ticktime = 0) : ticktime(_ticktime) { }
24  };
25  struct TempoChange {
26  uint32_t ticktime;
27  uint32_t tempo;
28  TempoChange(uint32_t _ticktime, uint32_t _tempo) : ticktime(_ticktime), tempo(_tempo) { }
29  };
30 
31  std::vector<DataBlock> blocks;
32  std::vector<TempoChange> tempos;
33  uint16_t tickdiv;
34 
35  MidiFile();
36  ~MidiFile();
37 
38  bool LoadFile(const std::string &filename);
39  bool LoadMpsData(const byte *data, size_t length);
40  bool LoadSong(const MusicSongInfo &song);
41  void MoveFrom(MidiFile &other);
42 
43  bool WriteSMF(const std::string &filename);
44 
45  static std::string GetSMFFile(const MusicSongInfo &song);
46  static bool ReadSMFHeader(const std::string &filename, SMFHeader &header);
47  static bool ReadSMFHeader(FILE *file, SMFHeader &header);
48 };
49 
50 #endif /* MUSIC_MIDIFILE_HPP */
MidiFile::tempos
std::vector< TempoChange > tempos
list of tempo changes in file
Definition: midifile.hpp:32
MidiFile
Definition: midifile.hpp:18
MidiFile::LoadFile
bool LoadFile(const std::string &filename)
Load a standard MIDI file.
Definition: midifile.cpp:448
MidiFile::TempoChange
Definition: midifile.hpp:25
MidiFile::TempoChange::ticktime
uint32_t ticktime
tick number since start of file this tempo change occurs at
Definition: midifile.hpp:26
MidiFile::TempoChange::tempo
uint32_t tempo
new tempo in microseconds per tick
Definition: midifile.hpp:27
MusicSongInfo
Metadata about a music track.
Definition: base_media_base.h:325
MidiFile::tickdiv
uint16_t tickdiv
ticks per quarter note
Definition: midifile.hpp:33
MidiFile::GetSMFFile
static std::string GetSMFFile(const MusicSongInfo &song)
Get the name of a Standard MIDI File for a given song.
Definition: midifile.cpp:1039
MidiFile::WriteSMF
bool WriteSMF(const std::string &filename)
Write a Standard MIDI File containing the decoded music.
Definition: midifile.cpp:909
MidiFile::blocks
std::vector< DataBlock > blocks
sequential time-annotated data of file, merged to a single track
Definition: midifile.hpp:31
MidiFile::MoveFrom
void MoveFrom(MidiFile &other)
Move data from other to this, and clears other.
Definition: midifile.cpp:865
MidiFile::DataBlock::data
std::vector< byte > data
raw midi data contained in block
Definition: midifile.hpp:22
SMFHeader
Header of a Stanard MIDI File.
Definition: midi.h:16
MidiFile::ReadSMFHeader
static bool ReadSMFHeader(const std::string &filename, SMFHeader &header)
Read the header of a standard MIDI file.
Definition: midifile.cpp:406
MidiFile::DataBlock::realtime
uint32_t realtime
real-time (microseconds) since start of file this block should be triggered at
Definition: midifile.hpp:21
MidiFile::DataBlock
Definition: midifile.hpp:19
MidiFile::LoadMpsData
bool LoadMpsData(const byte *data, size_t length)
Create MIDI data from song data for the original Microprose music drivers.
Definition: midifile.cpp:831
MidiFile::DataBlock::ticktime
uint32_t ticktime
tick number since start of file this block should be triggered at
Definition: midifile.hpp:20