TSE3 documentation Version 0.3.0 Index API  Version  Structure 

File Format for TSE3 Music Description Language (TSE3MDL)

Pete Goodliffe
Issue 1.01
9th June 1999


Introduction

The TSE3 Music Description Language provides an object-oriented description of a piece of music as MIDI data, in a linear sequencer form.

It is designed for use with TSE3, the Trax Sequencer Engine v3.00 and so parallels its song structure closely.

This file format is for use with TSE version 3.00 and later. Specifically, it is incompatible with the earlier format known as TSEMDL which was used with TSE v2.00.

TSE3MDL files commonly have a file extension of .tse3 although the format can be deduced from the file contents: the first eight bytes are "TSE3MDL\n"

TSE3MDL file conventions

TSE3MDL files are plain text files readable in any text editor. The data is arranged into hierarchical chunks which closely parallel the TSE3 Song class hierarchy.

Because TSE3MDL files are in text, all numbers are in ASCII decimal form. Times are represented in pulses, as integer values.

Each line of a TSE3MDL file may contain any amount of whitespace at it's start which is ignored. This is commonly used to enhance the readablilty of the chunk hierarchy. Additionally, any lines which start with a hash (#) symbol (after any whitespace) are ignored as comment lines.

Case is important when recognising identifiers.

Each file chunk follows a standard format. This is as shown below:

The CHUNK_TAG_IDENTIFIER is a single word containing any characters except ':'. If an identifier of this format is found then it signifies the beginning of a new chunk. The opening and closing braces will be on separate lines. Within the chunk data is commonly indented by four spaces, but this is not mandatory. Chunks can be hierarchically arranged - chunks can contain chunks. Chunk tag identifiers correspond the their related object names in the TSE3 Song hierarchy.

Lines other than CHUNK_TAG_IDENTIFIERs must be DATA_IDENTIFIER lines. These consist of a single word identifier which can contain any characters except ':' followed by a ':' and then the data associated with that identifier. The identifier name is local to each type of chunk. For example, there are several types of chunk with identifiers Status. In each chunk this refers to a different type of setting.

If you encounter a chunk that is not recognised then it should be ignored. You may warn the user if required. Similarly, if you encounter a data identifier that you do not recognise you should ignore it.

File header

The TSE3MDL file consists of a single chunk, with a number of sub-chunks.

The top level chunk has tag identifier

TSE3MDL
, with the rest of the file contents contained in it's pair of braces. As a special case, the first line cannot be prefixed by ant whitespace.

This first line identifies the file type as being TSE3MDL. To check whether a file is in TSE3MDL you only need to check the first eight bytes (don't forget the carriage return following the tag).

Insider this

TSE3MDL
chunk there is usually a Header chunk, followed by a Song chunk.

Header chunk

A Header chunk has chunk tag identifier Header and is defined to contain the following identifiers.

IdentifierDescriptionDefault if not present
Version-MajorMajor version number of this file * 100100
Version-MinorMinor version number of this file * 100100
OriginatorIdentity of the program that created this file.n/a
PPQNPPQN resolution timestamps in this file are based upon.96

Song chunk

A Song chunk has chunk tag identifier Song and is defined to contain the following identifiers.

IdentifierDescriptionDefault if not present
TitleString containing the title of this Songempty
AuthorString containing the author of this Songempty
CopyrightString containing the copyright message for this Songempty
DateString containing the date of this Songempty
NoTracksNumber of Tracks in the Song. ???empty

A Song is also defined to contain TempoTrack, TimeSigTrack, FlagTrack, Phrase and Track chunks.

TempoTrack chunk

A TempoTrack chunk has chunk tag identifier TempoTrack and is defined to contain the following identifiers.

IdentifierDescriptionDefault if not present
Status'On' if tempo changes are enabled, or 'Off' disabled.On

There then follows another chunk with identifier Events containing the TempoTrack events. There is one event per line in the form TIME:TEMPO where TIME and TEMPO are integer values.

TimeSigTrack chunk

A TimeSigTrack chunk has chunk tag identifier TimeSigTrack and is defined to contain the following identifiers.

IdentifierDescriptionDefault if not present
Status'On' if timesig changes are enabled, or 'Off' disabled.On

There then follows another chunk with identifier Events containing the TimeSigTrack events. There is one event per line in the form TIME:TOP/BOTTOM where TIME, TOP and BOTTOM are integer values.

FlagTrack chunk

A FlagTrack chunk has chunk tag identifier FlagTrack and is defined to contain no identifiers.

It contains another chunk with identifier Events containing the FlagTrack events. There is one event per line in the form TIME:STRING where TIME is a integer value and STRING is the associated flag string..

Phrase chunk

A Phrase chunk has chunk tag identifier Phrase and is defined to contain the following identifiers.

IdentifierDescriptionDefault if not present
TitleString containing unique reference name of this Phrase.n/a

There then follows another chunk with identifier Events containing the Phrase events.

There is one event per line in the form TIME:STATUS/DATA1/DATA2/CHANNEL/PORT where all values are integers. STATUS contains the MidiCommand status nybble, DATA1 and DATA2 contain the data bytes (which will not have bit 7 set), CHANNEL contains a value from 0-15 and PORT the computer MIDI port number to send the data on.

If the MidiCommand is a MidiCommand_NoteOn (STATUS == 9) then the line is followed by -OFFTIME:OFFSTATUS/OFFDATA1/OFFDATA2/OFFCHANNEL/OFFPORT which contains the balancing MidiCommand_NoteOff. All values are as for the previous MidiCommand_NoteOn.

Track chunk

A Track chunk has chunk tag identifier Track and is defined to contain the following identifiers.

IdentifierDescriptionDefault if not present
TitleString containing name of this Track.empty
NoPartsNumber of Parts in this Track ???empty

The Track chunk is defined to contain MidiFilter, MidiParams and Part chunks.

MidiFilter chunk

A MidiFilter chunk has chunk tag identifier MidiFilter and is defined to contain the following identifiers.

IdentifierDescriptionDefault if not present
Status'On' to allow events to be generated by parent, false to mute the parent.On
ChannelChannel to force MIDI events to be produced on. -1 to disable.-1
PortPort to force MIDI events to be produced on. -1 to disable.-1
QuantiseLinear quantise value to snap events to. 0 has no effect.0
TransposeTranspose value (added to note values, -127-127).0
MinVelocityMin velocity clip window value.0
MaxVelocityMax velocity clip window value.127
VelocityScaleVelocity scale percentage, 1 - 200. 0 disables0

MidiParams chunk

A MidiParams chunk has chunk tag identifier MidiParams and is defined to contain the following identifiers. These identifiers have values 0-127, or -1 to disable.

IdentifierDescriptionDefault if not present
BankLSBBank LSB byte sent at beginning of parent.-1
BankMSBBank MSB byte sent at beginning of parent.-1
ProgramProgram change sent at beginning of parent.-1
PanPan controller sent at beginning of parent.-1
ReverbReverb controller sent at beginning of parent.-1
ChorusChorus controller sent at beginning of parent.-1
VolumeVolume controller sent at beginning of parent.-1

Part chunk

A Part chunk has chunk tag identifier Part and is defined to contain the following identifiers.

IdentifierDescriptionDefault if not present
PhraseTitle of Phrase used by this Part.n/a
StartStart time of Partn/a
EndEnd time of Partn/a
RepeatRepeat time value of Partn/a
OffsetOffset time value of Partn/a

The Part chunk is defined to contain MidiFilter and MidiParams chunks.

See also

The MIDI Specification Level 1.0 for descriptions of MIDI commands.

Revision history

9 June 19991.00First version. Implemented in TSE3.
1 September 20001.01Changed SimpleMidiEventFilter to MidiFilter.
29 January 20011.02Whole file is one big chunk. Comments.
 © Pete Goodliffe, 2001-2003 Copyright Psalm 150