-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ea01c4b
commit 07c6d97
Showing
20 changed files
with
315 additions
and
376 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* Copyright 2020-2022 Subhadeep Jasu <[email protected]> | ||
* SPDX-License-Identifier: GPL-3.0-or-later | ||
*/ | ||
|
||
namespace Ensembles.Core { | ||
public class MidiEvent { | ||
public enum EventType { | ||
NOTE, | ||
CONTROL, | ||
VOICECHANGE, | ||
REVERB, | ||
REVERBON, | ||
CHORUS, | ||
CHORUSON, | ||
ACCOMP, | ||
STYLECHANGE, | ||
STYLECONTROL, | ||
STYLECONTROLACTUAL, | ||
STYLESTARTSTOP, | ||
STYLECHORD, | ||
TEMPO | ||
} | ||
|
||
public EventType event_type; | ||
public uint8 track; // Which track this event belongs to | ||
public int value1; // note value, voice number, style number, control number | ||
public int value2; // note on | ||
public uint8 channel; | ||
public int velocity; | ||
public ulong time_stamp; | ||
} | ||
} |
Oops, something went wrong.