Skip to content

Commit

Permalink
Generating an empty MIDITune.
Browse files Browse the repository at this point in the history
  • Loading branch information
DamonHD committed May 30, 2024
1 parent 207749f commit 1d87d2c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion javasrc/org/hd/d/statsHouse/feedHits/GenerateSummary.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,14 @@
package org.hd.d.statsHouse.feedHits;

import java.io.IOException;
import java.util.Collections;
import java.util.List;
import java.util.Objects;

import org.hd.d.statsHouse.feedHits.data.FeedStatusBlocks;
import org.hd.d.statsHouse.generic.TuneSectionPlan;
import org.hd.d.statsHouse.midi.MIDIDataMelodyTrack;
import org.hd.d.statsHouse.midi.MIDISupportTrack;
import org.hd.d.statsHouse.midi.MIDITune;

/**Generate sonification from summary information across 1 or more data blocks.
Expand Down Expand Up @@ -55,7 +59,10 @@ public static MIDITune summary1(final List<String> dirnames) throws IOException
// Total number of data bars to generate.
final int nDataBars = nTotalHours / nHoursPerBar;

final List<MIDIDataMelodyTrack> dataMelody = Collections.emptyList();
final List<MIDISupportTrack> supportTracks = Collections.emptyList();
final TuneSectionPlan tsp = null;

throw new RuntimeException("NOT IMPLEMENTED");
return(new MIDITune(dataMelody, supportTracks, tsp));
}
}

0 comments on commit 1d87d2c

Please sign in to comment.