|
|
@ -1,4 +1,4 @@ |
|
|
|
/*********************************************************************************
|
|
|
|
/***************************************************************************************
|
|
|
|
* |
|
|
|
* |
|
|
|
* MIDITONES_SCROLL |
|
|
|
* MIDITONES_SCROLL |
|
|
|
* |
|
|
|
* |
|
|
@ -50,27 +50,36 @@ |
|
|
|
* -vi says that we expect volume information to be in the file, but we |
|
|
|
* -vi says that we expect volume information to be in the file, but we |
|
|
|
* should ignore it when creating the display. |
|
|
|
* should ignore it when creating the display. |
|
|
|
* |
|
|
|
* |
|
|
|
|
|
|
|
* -ii says we should not display instrument information we find |
|
|
|
|
|
|
|
* |
|
|
|
* |
|
|
|
* |
|
|
|
* For source code to this and related programs, see |
|
|
|
* For source code to this and related programs, see |
|
|
|
* https://github.com/LenShustek/arduino-playtune
|
|
|
|
* www.github.com/LenShustek/miditones |
|
|
|
* https://github.com/LenShustek/miditones
|
|
|
|
* www.github.com/LenShustek/arduino-playtune |
|
|
|
* |
|
|
|
* |
|
|
|
*---------------------------------------------------------------------------------- |
|
|
|
*---------------------------------------------------------------------------------------- |
|
|
|
* (C) Copyright 2011,2013,2016 Len Shustek |
|
|
|
* The MIT License (MIT) |
|
|
|
|
|
|
|
* Copyright (c) 2011,2013,2015,2016, Len Shustek |
|
|
|
* |
|
|
|
* |
|
|
|
* This program is free software. You can redistribute it and/or modify |
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy |
|
|
|
* it under the terms of version 3 of the GNU General Public License as |
|
|
|
* of this software and associated documentation files (the "Software"), to deal |
|
|
|
* published by the Free Software Foundation at www.gnu.org/licenses, |
|
|
|
* in the Software without restriction, including without limitation the rights |
|
|
|
* with Additional Permissions under term 7(b) that the original copyright |
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
|
|
* notice and author attibution must be preserved and under term 7(c) that |
|
|
|
* copies of the Software, and to permit persons to whom the Software is |
|
|
|
* modified versions be marked as different from the original. |
|
|
|
* furnished to do so, subject to the following conditions: |
|
|
|
* |
|
|
|
* |
|
|
|
* This program is distributed in the hope that it will be useful, |
|
|
|
* The above copyright notice and this permission notice shall be included in all |
|
|
|
* but WITHOUT ANY WARRANTY,without even the implied warranty of |
|
|
|
* copies or substantial portions of the Software. |
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
|
|
|
|
|
|
* GNU General Public License for more details. |
|
|
|
|
|
|
|
* |
|
|
|
* |
|
|
|
***********************************************************************************/ |
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
|
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
|
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
|
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
|
|
|
|
|
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR |
|
|
|
|
|
|
|
* IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
|
|
|
|
|
|
|
******************************************************************************************/ |
|
|
|
|
|
|
|
// formatted with: indent miditones_scroll.c -br -brf -brs -ce -npsl -nut -i3 -l100 -lc100
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
/*
|
|
|
|
* Change log |
|
|
|
* Change log |
|
|
|
* |
|
|
|
* |
|
|
@ -80,7 +89,7 @@ |
|
|
|
* - Add a "-c" option to create C code output. |
|
|
|
* - Add a "-c" option to create C code output. |
|
|
|
* Thanks go to mats.engstrom for the idea. |
|
|
|
* Thanks go to mats.engstrom for the idea. |
|
|
|
* 04 April 2015, L. Shustek, V1.3 |
|
|
|
* 04 April 2015, L. Shustek, V1.3 |
|
|
|
* - Made friendlier to other compilers: import source of strlcpy and strlcat, |
|
|
|
* - Made friendlier to other compilers,import source of strlcpy and strlcat, |
|
|
|
* and fix various type mismatches that the LCC compiler didn't fret about. |
|
|
|
* and fix various type mismatches that the LCC compiler didn't fret about. |
|
|
|
* Generate "const" data initialization for compatibility with Arduino IDE v1.6.x. |
|
|
|
* Generate "const" data initialization for compatibility with Arduino IDE v1.6.x. |
|
|
|
* 5 August 2016, L. Shustek, V1.4 |
|
|
|
* 5 August 2016, L. Shustek, V1.4 |
|
|
@ -90,11 +99,14 @@ |
|
|
|
* - Make the number of generators be 16 maximum, but the number actually displayed |
|
|
|
* - Make the number of generators be 16 maximum, but the number actually displayed |
|
|
|
* can be specified by the -tn command-line option. |
|
|
|
* can be specified by the -tn command-line option. |
|
|
|
* - Remove string.h because OS X has macros for strlcpy; thus had to add strlen(). |
|
|
|
* - Remove string.h because OS X has macros for strlcpy; thus had to add strlen(). |
|
|
|
* (It's tough to write even non-GUI code for many environments!) |
|
|
|
* It's tough to write even non-GUI code for many environments! |
|
|
|
* - Add casts for where address subtraction is a long, like OS X. |
|
|
|
* - Add casts for where address subtraction is a long, like OS X. |
|
|
|
|
|
|
|
* 6 August 2016, L. Shustek, V1.5 |
|
|
|
|
|
|
|
* - Handle optional instrument change information. |
|
|
|
|
|
|
|
* - Look for the optional self-describing file header. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
#define VERSION "1.4" |
|
|
|
#define VERSION "1.5" |
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h> |
|
|
|
#include <stdio.h> |
|
|
|
#include <stdlib.h> |
|
|
|
#include <stdlib.h> |
|
|
@ -106,16 +118,19 @@ |
|
|
|
|
|
|
|
|
|
|
|
/*********** Global variables ******************/ |
|
|
|
/*********** Global variables ******************/ |
|
|
|
|
|
|
|
|
|
|
|
#define MAX_TONEGENS 16 /* max tone generators we could display */ |
|
|
|
#define MAX_TONEGENS 16 /* max tone generators we could display */ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define SILENT -1 /* "silent note" code */ |
|
|
|
|
|
|
|
|
|
|
|
int gen_note[MAX_TONEGENS]; // the note we're playing, or SILENT
|
|
|
|
int gen_note[MAX_TONEGENS]; // the note we're playing, or SILENT
|
|
|
|
#define SILENT -1 |
|
|
|
int gen_volume[MAX_TONEGENS]; // the volume we're playing
|
|
|
|
int gen_volume[MAX_TONEGENS]; // the volume we're playing
|
|
|
|
int gen_instrument[MAX_TONEGENS]; // the instrument we're playing
|
|
|
|
|
|
|
|
bool gen_instrument_changed[MAX_TONEGENS]; |
|
|
|
|
|
|
|
|
|
|
|
FILE *infile, *outfile; |
|
|
|
FILE *infile, *outfile; |
|
|
|
unsigned char *buffer, *bufptr; |
|
|
|
unsigned char *buffer, *bufptr; |
|
|
|
unsigned long buflen; |
|
|
|
unsigned long buflen; |
|
|
|
unsigned int num_tonegens = 6; // default number of generators
|
|
|
|
unsigned int num_tonegens = 6; // default number of generators
|
|
|
|
unsigned int max_tonegen_found = 0; |
|
|
|
unsigned int max_tonegen_found = 0; |
|
|
|
unsigned int notes_skipped; |
|
|
|
unsigned int notes_skipped; |
|
|
|
|
|
|
|
|
|
|
@ -126,324 +141,419 @@ unsigned delay; |
|
|
|
bool codeoutput = false; |
|
|
|
bool codeoutput = false; |
|
|
|
bool expect_volume = false; |
|
|
|
bool expect_volume = false; |
|
|
|
bool ignore_volume = false; |
|
|
|
bool ignore_volume = false; |
|
|
|
|
|
|
|
bool ignore_instruments = false; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct file_hdr_t { /* what the optional file header looks like */ |
|
|
|
|
|
|
|
char id1; // 'P'
|
|
|
|
|
|
|
|
char id2; // 't'
|
|
|
|
|
|
|
|
unsigned char hdr_length; // length of whole file header
|
|
|
|
|
|
|
|
unsigned char f1; // flag byte 1
|
|
|
|
|
|
|
|
unsigned char f2; // flag byte 2
|
|
|
|
|
|
|
|
unsigned char num_tgens; // how many tone generators are used by this score
|
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
#define HDR_F1_VOLUME_PRESENT 0x80 |
|
|
|
|
|
|
|
#define HDR_F1_INSTRUMENTS_PRESENT 0x40 |
|
|
|
|
|
|
|
#define HDR_F1_PERCUSSION_PRESENT 0x20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static char *notename[256] = { /* maximum 5 characters */ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// map from MIDI note number to octave and note name,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"-1C ", "-1C#", "-1D ", "-1D#", "-1E ", "-1F ", "-1F#", "-1G ", "-1G#", "-1A ", "-1A#", "-1B ", |
|
|
|
|
|
|
|
" 0C ", " 0C#", " 0D ", " 0D#", " 0E ", " 0F ", " 0F#", " 0G ", " 0G#", " 0A ", " 0A#", " 0B ", |
|
|
|
|
|
|
|
" 1C ", " 1C#", " 1D ", " 1D#", " 1E ", " 1F ", " 1F#", " 1G ", " 1G#", " 1A ", " 1A#", " 1B ", |
|
|
|
|
|
|
|
" 2C ", " 2C#", " 2D ", " 2D#", " 2E ", " 2F ", " 2F#", " 2G ", " 2G#", " 2A ", " 2A#", " 2B ", |
|
|
|
|
|
|
|
" 3C ", " 3C#", " 3D ", " 3D#", " 3E ", " 3F ", " 3F#", " 3G ", " 3G#", " 3A ", " 3A#", " 3B ", |
|
|
|
|
|
|
|
" 4C ", " 4C#", " 4D ", " 4D#", " 4E ", " 4F ", " 4F#", " 4G ", " 4G#", " 4A ", " 4A#", " 4B ", |
|
|
|
|
|
|
|
" 5C ", " 5C#", " 5D ", " 5D#", " 5E ", " 5F ", " 5F#", " 5G ", " 5G#", " 5A ", " 5A#", " 5B ", |
|
|
|
|
|
|
|
" 6C ", " 6C#", " 6D ", " 6D#", " 6E ", " 6F ", " 6F#", " 6G ", " 6G#", " 6A ", " 6A#", " 6B ", |
|
|
|
|
|
|
|
" 7C ", " 7C#", " 7D ", " 7D#", " 7E ", " 7F ", " 7F#", " 7G ", " 7G#", " 7A ", " 7A#", " 7B ", |
|
|
|
|
|
|
|
" 8C ", " 8C#", " 8D ", " 8D#", " 8E ", " 8F ", " 8F#", " 8G ", " 8G#", " 8A ", " 8A#", " 8B ", |
|
|
|
|
|
|
|
" 9C ", " 9C#", " 9D ", " 9D#", " 9E ", " 9F ", " 9F#", " 9G ", |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// or to channel 9 percussion notes as relocated by Miditones to notes 128..255
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"P000 ", "P001 ", "P002 ", "P003 ", "P004 ", "P005 ", "P006 ", "P007 ", |
|
|
|
|
|
|
|
"P008 ", "P009 ", "P010 ", "P011 ", "P012 ", "P013 ", "P014 ", "P015 ", |
|
|
|
|
|
|
|
"P016 ", "P017 ", "P018 ", "P019 ", "P020 ", "P021 ", "P022 ", "P023 ", |
|
|
|
|
|
|
|
"P024 ", "P025 ", "P026 ", "Laser", "Whip ", "ScrPu", "ScrPl", "Stick", |
|
|
|
|
|
|
|
"MetCk", "P033 ", "MetBl", "BassD", "KickD", "SnaSt", "SnaD ", "Clap ", |
|
|
|
|
|
|
|
"ESnaD", "FTom2", "HHatC", "FTom1", "HHatF", "LTom ", "HHatO", "LMTom", |
|
|
|
|
|
|
|
"HMTom", "CrCym", "HTom ", "RiCym", "ChCym", "RiBel", "Tamb ", "SpCym", |
|
|
|
|
|
|
|
"CowBl", "CrCym", "VSlap", "RiCym", "HBong", "LBong", "CongD", "Conga", |
|
|
|
|
|
|
|
"Tumba", "HTimb", "LTimb", "HAgog", "LAgog", "Cabas", "Marac", "SWhis", |
|
|
|
|
|
|
|
"LWhis", "SGuir", "LGuir", "Clave", "HWood", "LWood", "HCuic", "LCuic", |
|
|
|
|
|
|
|
"MTria", "OTria", "Shakr", "Sleig", "BelTr", "Casta", "SirdD", "Sirdu", |
|
|
|
|
|
|
|
"P088 ", "P089 ", "P090 ", "SnDmR", "OcDrm", "SmDrB", "P094 ", "P095 ", |
|
|
|
|
|
|
|
"P096 ", "P097 ", "P098 ", "P099 ", "P100 ", "P101 ", "P102 ", "P103 ", |
|
|
|
|
|
|
|
"P104 ", "P105 ", "P106 ", "P107 ", "P108 ", "P109 ", "P110 ", "P111 ", |
|
|
|
|
|
|
|
"P112 ", "P113 ", "P114 ", "P115 ", "P116 ", "P117 ", "P118 ", "P119 ", |
|
|
|
|
|
|
|
"P120 ", "P121 ", "P122 ", "P123 ", "P124 ", "P125 ", "P126 ", "P127" |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
static char *notename[256] = { |
|
|
|
static char *instrumentname[128] = { /* maximum 6 characters */ |
|
|
|
|
|
|
|
"APiano", "BPiano", "EPiano", "HPiano", "E1Pian", "E2Pian", "Harpsi", "Clavic", |
|
|
|
// map from MIDI note number to octave and note name,
|
|
|
|
"Celest", "Glockn", "MusBox", "Vibrap", "Marimb", "Xyloph", "TubBel", "Dulcim", |
|
|
|
|
|
|
|
"DOrgan", "POrgan", "ROrgan", "COrgan", "dOrgan", "Accord", "Harmon", "TAccor", |
|
|
|
"-1C ","-1C#","-1D ","-1D#","-1E ","-1F ","-1F#","-1G ","-1G#","-1A ","-1A#","-1B ", |
|
|
|
"NyGuit", "StGuit", "JzGuit", "ClGuit", "MuGuit", "OvGuit", "DsGuit", "HaGuit", |
|
|
|
" 0C "," 0C#"," 0D "," 0D#"," 0E "," 0F "," 0F#"," 0G "," 0G#"," 0A "," 0A#"," 0B ", |
|
|
|
"AcBass", "FiBass", "PiBass", "FrBass", "S1Bass", "S2Bass", "y1Bass", "y2Bass", |
|
|
|
" 1C "," 1C#"," 1D "," 1D#"," 1E "," 1F "," 1F#"," 1G "," 1G#"," 1A "," 1A#"," 1B ", |
|
|
|
"Violin", "Viola ", "Cello ", "CnBass", "TrStng", "PzStng", "OrHarp", "Timpan", |
|
|
|
" 2C "," 2C#"," 2D "," 2D#"," 2E "," 2F "," 2F#"," 2G "," 2G#"," 2A "," 2A#"," 2B ", |
|
|
|
"S1Ensb", "S1Ensb", "y1Strg", "y2Strg", "ChAhhs", "VcOohs", "SyVoic", "OrcHit", |
|
|
|
" 3C "," 3C#"," 3D "," 3D#"," 3E "," 3F "," 3F#"," 3G "," 3G#"," 3A "," 3A#"," 3B ", |
|
|
|
"Trumpt", "Trombn", "Tuba ", "MuTrum", "FrHorn", "Brass ", "y1Bras", "y2Bras", |
|
|
|
" 4C "," 4C#"," 4D "," 4D#"," 4E "," 4F "," 4F#"," 4G "," 4G#"," 4A "," 4A#"," 4B ", |
|
|
|
"SopSax", "AltSax", "TenSax", "BarSax", "Oboe ", "EnHorn", "Basson", "Clarin", |
|
|
|
" 5C "," 5C#"," 5D "," 5D#"," 5E "," 5F "," 5F#"," 5G "," 5G#"," 5A "," 5A#"," 5B ", |
|
|
|
"Piccol", "Flute ", "Record", "PFlute", "BlBotl", "Shakuh", "Whistl", "Ocarin", |
|
|
|
" 6C "," 6C#"," 6D "," 6D#"," 6E "," 6F "," 6F#"," 6G "," 6G#"," 6A "," 6A#"," 6B ", |
|
|
|
"Square", "Sawtoo", "Callip", "Chiff ", "Charag", "Voice ", "Fifths", "BassLd", |
|
|
|
" 7C "," 7C#"," 7D "," 7D#"," 7E "," 7F "," 7F#"," 7G "," 7G#"," 7A "," 7A#"," 7B ", |
|
|
|
"Pad1 ", "Pad2 ", "Pad3 ", "Pad4 ", "Pad5 ", "Pad6 ", "Pad7 ", "Pad 8 ", |
|
|
|
" 8C "," 8C#"," 8D "," 8D#"," 8E "," 8F "," 8F#"," 8G "," 8G#"," 8A "," 8A#"," 8B ", |
|
|
|
"FX1 ", "FX2 ", "FX3 ", "FX4 ", "FX5 ", "FX6 ", "FX7 ", "FX8 ", |
|
|
|
" 9C "," 9C#"," 9D "," 9D#"," 9E "," 9F "," 9F#"," 9G ", |
|
|
|
"Sitar ", "Banjo ", "Shamis", "Koto ", "Kalimb", "Bagpip", "Fiddle", "Shanai", |
|
|
|
|
|
|
|
"TnkBel", "Agogo ", "StDrum", "WdBlok", "TaiDrm", "MelTom", "SynDrm", "RevCym", |
|
|
|
// or to channel 9 percussion notes as relocated by Miditones to notes 128..255
|
|
|
|
"GuitFr", "Breath", "Seashr", "BirdTw", "Phone ", "Copter", "Claps ", "Guns " |
|
|
|
|
|
|
|
|
|
|
|
"P000 ", "P001 ", "P002 ", "P003 ", "P004 ", "P005 ", "P006 ", "P007 ", |
|
|
|
|
|
|
|
"P008 ", "P009 ", "P010 ", "P011 ", "P012 ", "P013 ", "P014 ", "P015 ", |
|
|
|
|
|
|
|
"P016 ", "P017 ", "P018 ", "P019 ", "P020 ", "P021 ", "P022 ", "P023 ", |
|
|
|
|
|
|
|
"P024 ", "P025 ", "P026 ", "Laser", "Whip ", "ScrPu", "ScrPl", "Stick", |
|
|
|
|
|
|
|
"MetCk", "P033 ", "MetBl", "BassD", "KickD", "SnaSt", "SnaD ", "Clap ", |
|
|
|
|
|
|
|
"ESnaD", "FTom2", "HHatC", "FTom1", "HHatF", "LTom ", "HHatO", "LMTom", |
|
|
|
|
|
|
|
"HMTom", "CrCym", "HTom ", "RiCym", "ChCym", "RiBel", "Tamb ", "SpCym", |
|
|
|
|
|
|
|
"CowBl", "CrCym", "VSlap", "RiCym", "HBong", "LBong", "CongD", "Conga", |
|
|
|
|
|
|
|
"Tumba", "HTimb", "LTimb", "HAgog", "LAgog", "Cabas", "Marac", "SWhis", |
|
|
|
|
|
|
|
"LWhis", "SGuir", "LGuir", "Clave", "HWood", "LWood", "HCuic", "LCuic", |
|
|
|
|
|
|
|
"MTria", "OTria", "Shakr", "Sleig", "BelTr", "Casta", "SirdD", "Sirdu", |
|
|
|
|
|
|
|
"P088 ", "P089 ", "P090 ", "SnDmR", "OcDrm", "SmDrB", "P094 ", "P095 ", |
|
|
|
|
|
|
|
"P096 ", "P097 ", "P098 ", "P099 ", "P100 ", "P101 ", "P102 ", "P103 ", |
|
|
|
|
|
|
|
"P104 ", "P105 ", "P106 ", "P107 ", "P108 ", "P109 ", "P110 ", "P111 ", |
|
|
|
|
|
|
|
"P112 ", "P113 ", "P114 ", "P115 ", "P116 ", "P117 ", "P118 ", "P119 ", |
|
|
|
|
|
|
|
"P120 ", "P121 ", "P122 ", "P123 ", "P124 ", "P125 ", "P126 ", "P127" |
|
|
|
|
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/************** command-line processing *******************/ |
|
|
|
/************** command-line processing *******************/ |
|
|
|
|
|
|
|
|
|
|
|
void SayUsage(char *programName){ |
|
|
|
void SayUsage (char *programName) { |
|
|
|
static char *usage[] = { |
|
|
|
static char *usage[] = { |
|
|
|
"Display a MIDITONES bytestream", |
|
|
|
"Display a MIDITONES bytestream", |
|
|
|
"Usage: miditones_scroll <basefilename>", |
|
|
|
"Usage: miditones_scroll <basefilename>", |
|
|
|
" reads <basefilename>.bin", |
|
|
|
" reads <basefilename>.bin", |
|
|
|
" -tn displays up to n tone generators", |
|
|
|
" -tn displays up to n tone generators", |
|
|
|
" -v expects and displays volume information", |
|
|
|
" -v expects and displays volume information", |
|
|
|
" -vi expects and ignores volume information", |
|
|
|
" -vi expects and ignores volume information", |
|
|
|
" -c option creates an annotated C source file as <basefile>.c", |
|
|
|
" -c option creates an annotated C source file as <basefile>.c", |
|
|
|
"" }; |
|
|
|
"" |
|
|
|
int i=0; |
|
|
|
}; |
|
|
|
while (usage[i][0] != '\0') fprintf(stderr, "%s\n", usage[i++]); |
|
|
|
int i = 0; |
|
|
|
|
|
|
|
while (usage[i][0] != '\0') |
|
|
|
|
|
|
|
fprintf (stderr, "%s\n", usage[i++]); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
int HandleOptions(int argc,char *argv[]) { |
|
|
|
int HandleOptions (int argc, char *argv[]) { |
|
|
|
/* returns the index of the first argument that is not an option; i.e.
|
|
|
|
/* returns the index of the first argument that is not an option; i.e.
|
|
|
|
does not start with a dash or a slash*/ |
|
|
|
does not start with a dash or a slash */ |
|
|
|
|
|
|
|
|
|
|
|
int i,firstnonoption=0; |
|
|
|
int i, firstnonoption = 0; |
|
|
|
|
|
|
|
|
|
|
|
/* --- The following skeleton comes from C:\lcc\lib\wizard\textmode.tpl. */ |
|
|
|
/* --- The following skeleton comes from C:\lcc\lib\wizard\textmode.tpl. */ |
|
|
|
for (i=1; i< argc;i++) { |
|
|
|
for (i = 1; i < argc; i++) { |
|
|
|
if (argv[i][0] == '/' || argv[i][0] == '-') { |
|
|
|
if (argv[i][0] == '/' || argv[i][0] == '-') { |
|
|
|
switch (toupper(argv[i][1])) { |
|
|
|
switch (toupper (argv[i][1])) { |
|
|
|
case 'H': |
|
|
|
case 'H': |
|
|
|
case '?': |
|
|
|
case '?': |
|
|
|
SayUsage(argv[0]); |
|
|
|
SayUsage (argv[0]); |
|
|
|
exit(1); |
|
|
|
exit (1); |
|
|
|
case 'C': |
|
|
|
case 'C': |
|
|
|
codeoutput = true; |
|
|
|
codeoutput = true; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 'T': |
|
|
|
case 'T': |
|
|
|
if (sscanf(&argv[i][2],"%d",&num_tonegens) != 1 || num_tonegens <1 || num_tonegens > MAX_TONEGENS) goto opterror; |
|
|
|
if (sscanf (&argv[i][2], "%d", &num_tonegens) != 1 || num_tonegens < 1 |
|
|
|
printf("Displaying %d tone generators.\n", num_tonegens); |
|
|
|
|| num_tonegens > MAX_TONEGENS) |
|
|
|
break; |
|
|
|
goto opterror; |
|
|
|
case 'V': |
|
|
|
printf ("Displaying %d tone generators.\n", num_tonegens); |
|
|
|
expect_volume = true; |
|
|
|
|
|
|
|
if (argv[i][2] == '\0') break; |
|
|
|
|
|
|
|
if (toupper(argv[i][2]) == 'I') ignore_volume = true; |
|
|
|
|
|
|
|
else goto opterror; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* add more option switches here */ |
|
|
|
|
|
|
|
opterror: |
|
|
|
|
|
|
|
default: |
|
|
|
|
|
|
|
fprintf(stderr,"unknown option: %s\n",argv[i]); |
|
|
|
|
|
|
|
SayUsage(argv[0]); |
|
|
|
|
|
|
|
exit(4); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else { |
|
|
|
|
|
|
|
firstnonoption = i; |
|
|
|
|
|
|
|
break; |
|
|
|
break; |
|
|
|
} |
|
|
|
case 'V': |
|
|
|
} |
|
|
|
expect_volume = true; |
|
|
|
return firstnonoption; |
|
|
|
if (argv[i][2] == '\0') |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
if (toupper (argv[i][2]) == 'I') |
|
|
|
|
|
|
|
ignore_volume = true; |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
goto opterror; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* add more option switches here */ |
|
|
|
|
|
|
|
opterror: |
|
|
|
|
|
|
|
default: |
|
|
|
|
|
|
|
fprintf (stderr, "unknown option: %s\n", argv[i]); |
|
|
|
|
|
|
|
SayUsage (argv[0]); |
|
|
|
|
|
|
|
exit (4); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
firstnonoption = i; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return firstnonoption; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/*************** portable string length *****************/ |
|
|
|
/*************** portable string length *****************/ |
|
|
|
|
|
|
|
|
|
|
|
int strlength(const char *str) { |
|
|
|
int strlength (const char *str) { |
|
|
|
int i; |
|
|
|
int i; |
|
|
|
for (i=0; str[i] != '\0'; ++i) ; |
|
|
|
for (i = 0; str[i] != '\0'; ++i); |
|
|
|
return i; |
|
|
|
return i; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/*************** safe string copy *****************/ |
|
|
|
/*************** safe string copy *****************/ |
|
|
|
|
|
|
|
|
|
|
|
unsigned int strlcpy(char *dst, const char *src, unsigned int siz) { |
|
|
|
unsigned int strlcpy (char *dst, const char *src, unsigned int siz) { |
|
|
|
char *d = dst; |
|
|
|
char *d = dst; |
|
|
|
const char *s = src; |
|
|
|
const char *s = src; |
|
|
|
unsigned int n = siz; |
|
|
|
unsigned int n = siz; |
|
|
|
/* Copy as many bytes as will fit */ |
|
|
|
/* Copy as many bytes as will fit */ |
|
|
|
if (n != 0) { |
|
|
|
if (n != 0) { |
|
|
|
while (--n != 0) { |
|
|
|
while (--n != 0) { |
|
|
|
if ((*d++ = *s++) == '\0') break; |
|
|
|
if ((*d++ = *s++) == '\0') |
|
|
|
} |
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
/* Not enough room in dst, add NUL and traverse rest of src */ |
|
|
|
} |
|
|
|
if (n == 0) { |
|
|
|
/* Not enough room in dst, add NUL and traverse rest of src */ |
|
|
|
if (siz != 0) *d = '\0'; /* NUL-terminate dst */ |
|
|
|
if (n == 0) { |
|
|
|
while (*s++) ; |
|
|
|
if (siz != 0) |
|
|
|
} |
|
|
|
*d = '\0'; /* NUL-terminate dst */ |
|
|
|
return (s - src - 1); /* count does not include NUL */ |
|
|
|
while (*s++); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return (s - src - 1); /* count does not include NUL */ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/*************** safe string concatenation *****************/ |
|
|
|
/*************** safe string concatenation *****************/ |
|
|
|
|
|
|
|
|
|
|
|
unsigned int strlcat(char *dst, const char *src, unsigned int siz) { |
|
|
|
unsigned int strlcat (char *dst, const char *src, unsigned int siz) { |
|
|
|
char *d = dst; |
|
|
|
char *d = dst; |
|
|
|
const char *s = src; |
|
|
|
const char *s = src; |
|
|
|
unsigned int n = siz; |
|
|
|
unsigned int n = siz; |
|
|
|
unsigned int dlen; |
|
|
|
unsigned int dlen; |
|
|
|
/* Find the end of dst and adjust bytes left but don't go past end */ |
|
|
|
/* Find the end of dst and adjust bytes left but don't go past end */ |
|
|
|
while (n-- != 0 && *d != '\0') d++; |
|
|
|
while (n-- != 0 && *d != '\0') |
|
|
|
dlen = d - dst; |
|
|
|
d++; |
|
|
|
n = siz - dlen; |
|
|
|
dlen = d - dst; |
|
|
|
if (n == 0) return (dlen + strlength(s)); |
|
|
|
n = siz - dlen; |
|
|
|
while (*s != '\0') { |
|
|
|
if (n == 0) |
|
|
|
if (n != 1) { |
|
|
|
return (dlen + strlength (s)); |
|
|
|
*d++ = *s; |
|
|
|
while (*s != '\0') { |
|
|
|
n--; |
|
|
|
if (n != 1) { |
|
|
|
} |
|
|
|
*d++ = *s; |
|
|
|
s++; |
|
|
|
n--; |
|
|
|
} |
|
|
|
} |
|
|
|
*d = '\0'; |
|
|
|
s++; |
|
|
|
return (dlen + (s - src)); /* count does not include NUL */ |
|
|
|
} |
|
|
|
|
|
|
|
*d = '\0'; |
|
|
|
|
|
|
|
return (dlen + (s - src)); /* count does not include NUL */ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*************** Found a fatal input file format error ************************/ |
|
|
|
/*************** Found a fatal input file format error ************************/ |
|
|
|
|
|
|
|
|
|
|
|
void file_error (char *msg, unsigned char *bufptr) { |
|
|
|
void file_error (char *msg, unsigned char *bufptr) { |
|
|
|
unsigned char *ptr; |
|
|
|
unsigned char *ptr; |
|
|
|
fprintf(stderr, "\n---> file format error at position %04X (%d): %s\n", |
|
|
|
fprintf (stderr, "\n---> file format error at position %04X (%d): %s\n", |
|
|
|
(unsigned int)(bufptr-buffer), (unsigned int)(bufptr-buffer), msg); |
|
|
|
(unsigned int) (bufptr - buffer), (unsigned int) (bufptr - buffer), msg); |
|
|
|
/* print some bytes surrounding the error */ |
|
|
|
/* print some bytes surrounding the error */ |
|
|
|
ptr = bufptr - 16; |
|
|
|
ptr = bufptr - 16; |
|
|
|
if (ptr < buffer) ptr = buffer; |
|
|
|
if (ptr < buffer) |
|
|
|
for (; ptr <= bufptr+16 && ptr < buffer+buflen; ++ptr) fprintf (stderr, ptr==bufptr ? " [%02X] ":"%02X ", *ptr); |
|
|
|
ptr = buffer; |
|
|
|
fprintf(stderr, "\n"); |
|
|
|
for (; ptr <= bufptr + 16 && ptr < buffer + buflen; ++ptr) |
|
|
|
exit(8); |
|
|
|
fprintf (stderr, ptr == bufptr ? " [%02X] " : "%02X ", *ptr); |
|
|
|
|
|
|
|
fprintf (stderr, "\n"); |
|
|
|
|
|
|
|
exit (8); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/************** Output a line for the current status as we start a delay **************/ |
|
|
|
/************** Output a line for the current status as we start a delay **************/ |
|
|
|
|
|
|
|
|
|
|
|
// show the current time, status of all the tone generators, and the bytestream data that got us here
|
|
|
|
// show the current time, status of all the tone generators, and the bytestream data that got us here
|
|
|
|
|
|
|
|
|
|
|
|
void print_status(void) { |
|
|
|
void print_status (void) { |
|
|
|
if (codeoutput) fprintf (outfile, "/*"); // start comment
|
|
|
|
int gen; |
|
|
|
// print the current timestamp
|
|
|
|
bool any_instr_changed = false; |
|
|
|
fprintf (outfile, "%5d %7d.%03d ", delay, timenow/1000, timenow%1000); |
|
|
|
for (gen = 0; gen < num_tonegens; ++gen) |
|
|
|
// print the current status of all tone generators
|
|
|
|
any_instr_changed |= gen_instrument_changed[gen]; |
|
|
|
for (gen=0; gen<num_tonegens; ++gen) { |
|
|
|
if (any_instr_changed) { |
|
|
|
fprintf (outfile, "%6s", gen_note[gen] == SILENT ? " " : notename[gen_note[gen]]); |
|
|
|
if (codeoutput) |
|
|
|
if (expect_volume && !ignore_volume) if (gen_note[gen] == SILENT) fprintf (outfile, " "); |
|
|
|
fprintf (outfile, "//"); |
|
|
|
else fprintf (outfile, " v%-3d", gen_volume[gen]); |
|
|
|
fprintf (outfile, "%21s", ""); |
|
|
|
} |
|
|
|
for (gen = 0; gen < num_tonegens; ++gen) { |
|
|
|
// display the hex commands that created these changes
|
|
|
|
if (gen_instrument_changed[gen]) { |
|
|
|
fprintf (outfile, " %04X: ", (unsigned int)(lastbufptr-buffer)); // offset
|
|
|
|
gen_instrument_changed[gen] = false; |
|
|
|
if (codeoutput) fprintf (outfile, "*/ "); // end comment
|
|
|
|
fprintf (outfile, "%6s", instrumentname[gen_instrument[gen]]); |
|
|
|
for (; lastbufptr <= bufptr; ++lastbufptr) fprintf (outfile, codeoutput ? "0x%02X," : "%02X ", *lastbufptr); |
|
|
|
} else |
|
|
|
fprintf (outfile, "\n"); |
|
|
|
fprintf (outfile, "%6s", ""); |
|
|
|
lastbufptr = bufptr+1; |
|
|
|
if (expect_volume && !ignore_volume) |
|
|
|
|
|
|
|
fprintf (outfile, "%5s", ""); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
fprintf (outfile, "\n"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (codeoutput) |
|
|
|
|
|
|
|
fprintf (outfile, "/*"); // start comment
|
|
|
|
|
|
|
|
// print the current timestamp
|
|
|
|
|
|
|
|
fprintf (outfile, "%5d %7d.%03d ", delay, timenow / 1000, timenow % 1000); |
|
|
|
|
|
|
|
// print the current status of all tone generators
|
|
|
|
|
|
|
|
for (gen = 0; gen < num_tonegens; ++gen) { |
|
|
|
|
|
|
|
fprintf (outfile, "%6s", gen_note[gen] == SILENT ? " " : notename[gen_note[gen]]); |
|
|
|
|
|
|
|
if (expect_volume && !ignore_volume) |
|
|
|
|
|
|
|
if (gen_note[gen] == SILENT) |
|
|
|
|
|
|
|
fprintf (outfile, " "); |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
fprintf (outfile, " v%-3d", gen_volume[gen]); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
// display the hex commands that created these changes
|
|
|
|
|
|
|
|
fprintf (outfile, " %04X: ", (unsigned int) (lastbufptr - buffer)); // offset
|
|
|
|
|
|
|
|
if (codeoutput) |
|
|
|
|
|
|
|
fprintf (outfile, "*/ "); // end comment
|
|
|
|
|
|
|
|
for (; lastbufptr <= bufptr; ++lastbufptr) |
|
|
|
|
|
|
|
fprintf (outfile, codeoutput ? "0x%02X," : "%02X ", *lastbufptr); |
|
|
|
|
|
|
|
fprintf (outfile, "\n"); |
|
|
|
|
|
|
|
lastbufptr = bufptr + 1; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int countbits (unsigned int bitmap) { |
|
|
|
int countbits (unsigned int bitmap) { |
|
|
|
int count; |
|
|
|
int count; |
|
|
|
for (count=0; bitmap; bitmap >>= 1) |
|
|
|
for (count = 0; bitmap; bitmap >>= 1) |
|
|
|
count += bitmap & 1; |
|
|
|
count += bitmap & 1; |
|
|
|
return count; |
|
|
|
return count; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/********************* main loop ****************************/ |
|
|
|
/********************* main loop ****************************/ |
|
|
|
|
|
|
|
|
|
|
|
int main(int argc,char *argv[]) { |
|
|
|
int main (int argc, char *argv[]) { |
|
|
|
int argno, i; |
|
|
|
int argno, i; |
|
|
|
char *filebasename; |
|
|
|
char *filebasename; |
|
|
|
#define MAXPATH 80 |
|
|
|
#define MAXPATH 80 |
|
|
|
char filename[MAXPATH]; |
|
|
|
char filename[MAXPATH]; |
|
|
|
unsigned int tonegens_used; // bitmap of tone generators used
|
|
|
|
unsigned int tonegens_used; // bitmap of tone generators used
|
|
|
|
unsigned int num_tonegens_used; // count of tone generators used
|
|
|
|
unsigned int num_tonegens_used; // count of tone generators used
|
|
|
|
|
|
|
|
|
|
|
|
printf("MIDITONES_SCROLL V%s, (C) 2011,2016 Len Shustek\n", VERSION); |
|
|
|
printf ("MIDITONES_SCROLL V%s, (C) 2011,2016 Len Shustek\n", VERSION); |
|
|
|
printf("See the source code for license information.\n\n"); |
|
|
|
if (argc == 1) { /* no arguments */ |
|
|
|
if (argc == 1) { /* no arguments */ |
|
|
|
SayUsage (argv[0]); |
|
|
|
SayUsage(argv[0]); |
|
|
|
return 1; |
|
|
|
return 1; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* process options */ |
|
|
|
/* process options */ |
|
|
|
|
|
|
|
|
|
|
|
argno = HandleOptions (argc, argv); |
|
|
|
argno = HandleOptions(argc,argv); |
|
|
|
filebasename = argv[argno]; |
|
|
|
filebasename = argv[argno]; |
|
|
|
|
|
|
|
|
|
|
|
/* Open the input file */ |
|
|
|
/* Open the input file */ |
|
|
|
|
|
|
|
|
|
|
|
strlcpy (filename, filebasename, MAXPATH); |
|
|
|
strlcpy(filename, filebasename, MAXPATH); |
|
|
|
strlcat (filename, ".bin", MAXPATH); |
|
|
|
strlcat(filename, ".bin", MAXPATH); |
|
|
|
infile = fopen (filename, "rb"); |
|
|
|
infile = fopen(filename, "rb"); |
|
|
|
if (!infile) { |
|
|
|
if (!infile) { |
|
|
|
fprintf (stderr, "Unable to open input file %s", filename); |
|
|
|
fprintf(stderr, "Unable to open input file %s", filename); |
|
|
|
return 1; |
|
|
|
return 1; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* Create the output file */ |
|
|
|
/* Create the output file */ |
|
|
|
|
|
|
|
|
|
|
|
if (codeoutput) { |
|
|
|
if (codeoutput) { |
|
|
|
strlcpy (filename, filebasename, MAXPATH); |
|
|
|
strlcpy(filename, filebasename, MAXPATH); |
|
|
|
strlcat (filename, ".c", MAXPATH); |
|
|
|
strlcat(filename, ".c", MAXPATH); |
|
|
|
outfile = fopen (filename, "w"); |
|
|
|
outfile = fopen(filename, "w"); |
|
|
|
if (!infile) { |
|
|
|
if (!infile) { |
|
|
|
fprintf (stderr, "Unable to open output file %s", filename); |
|
|
|
fprintf(stderr, "Unable to open output file %s", filename); |
|
|
|
return 1; |
|
|
|
return 1; |
|
|
|
} |
|
|
|
} |
|
|
|
} else |
|
|
|
} |
|
|
|
outfile = stdout; |
|
|
|
else outfile = stdout; |
|
|
|
|
|
|
|
|
|
|
|
/* Read the whole input file into memory */ |
|
|
|
/* Read the whole input file into memory */ |
|
|
|
|
|
|
|
|
|
|
|
fseek (infile, 0, SEEK_END); /* find file size */ |
|
|
|
fseek(infile, 0, SEEK_END); /* find file size */ |
|
|
|
buflen = ftell (infile); |
|
|
|
buflen = ftell(infile); |
|
|
|
fseek (infile, 0, SEEK_SET); |
|
|
|
fseek(infile, 0, SEEK_SET); |
|
|
|
buffer = (unsigned char *) malloc (buflen + 1); |
|
|
|
buffer = (unsigned char *) malloc (buflen+1); |
|
|
|
if (!buffer) { |
|
|
|
if (!buffer) { |
|
|
|
fprintf (stderr, "Unable to allocate %ld bytes for the file", buflen); |
|
|
|
fprintf(stderr, "Unable to allocate %ld bytes for the file", buflen); |
|
|
|
return 1; |
|
|
|
return 1; |
|
|
|
} |
|
|
|
} |
|
|
|
fread (buffer, buflen, 1, infile); |
|
|
|
fread(buffer, buflen, 1, infile); |
|
|
|
fclose (infile); |
|
|
|
fclose(infile); |
|
|
|
printf ("Processing %s.bin, %ld bytes.\n", filebasename, buflen); |
|
|
|
printf("Processing %s.bin, %ld bytes\n", filebasename, buflen); |
|
|
|
if (codeoutput) { |
|
|
|
if (codeoutput) { |
|
|
|
time_t rawtime; |
|
|
|
time_t rawtime; |
|
|
|
time (&rawtime); |
|
|
|
time (&rawtime); |
|
|
|
fprintf (outfile, "// Playtune bytestream for file \"%s.bin\"", filebasename); |
|
|
|
fprintf(outfile, "// Playtune bytestream for file \"%s.bin\"", filebasename); |
|
|
|
fprintf (outfile, " created by MIDITONES_SCROLL V%s on %s\n", VERSION, |
|
|
|
fprintf(outfile, " created by MIDITONES_SCROLL V%s on %s\n", VERSION, asctime(localtime(&rawtime))); |
|
|
|
asctime (localtime (&rawtime))); |
|
|
|
fprintf(outfile, "const byte PROGMEM score [] = {\n"); |
|
|
|
fprintf (outfile, "const byte PROGMEM score [] = {\n"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* Do the titles */ |
|
|
|
/* Check for the optional self-describing file header */ |
|
|
|
|
|
|
|
|
|
|
|
fprintf(outfile, "\n"); |
|
|
|
bufptr = buffer; |
|
|
|
if (codeoutput) fprintf(outfile, "//"); |
|
|
|
{ |
|
|
|
fprintf(outfile, "duration time "); |
|
|
|
struct file_hdr_t *hdrptr = (struct file_hdr_t *) buffer; |
|
|
|
for (i=0; i< num_tonegens; ++i) |
|
|
|
if (buflen > sizeof (struct file_hdr_t) && hdrptr->id1 == 'P' && hdrptr->id2 == 't') { |
|
|
|
fprintf(outfile, expect_volume && !ignore_volume ? " gen%-5d" : " gen%-2d", i); |
|
|
|
printf ("Found Pt self-describing file header with flags %02X %02X, # tone gens = %d\n", |
|
|
|
fprintf(outfile," bytestream code\n\n"); |
|
|
|
hdrptr->f1, hdrptr->f2, hdrptr->num_tgens); |
|
|
|
for (gen=0; gen<num_tonegens; ++gen) |
|
|
|
expect_volume = hdrptr->f1 & HDR_F1_VOLUME_PRESENT; |
|
|
|
gen_note[gen] = SILENT; |
|
|
|
bufptr += hdrptr->hdr_length; |
|
|
|
tonegens_used = 0; |
|
|
|
if (codeoutput) { |
|
|
|
lastbufptr = buffer; |
|
|
|
fprintf (outfile, "'P','t', 6, 0x%02X, 0x%02X, %2d, // (Playtune file header)\n", |
|
|
|
|
|
|
|
hdrptr->f1, hdrptr->f2, hdrptr->num_tgens); |
|
|
|
/* Process the commmands sequentially */ |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
for (bufptr = buffer; bufptr < buffer+buflen; ++bufptr) { |
|
|
|
} |
|
|
|
cmd = *bufptr; |
|
|
|
|
|
|
|
if (cmd < 0x80) { //***** delay
|
|
|
|
/* Do the titles */ |
|
|
|
delay = ((unsigned int)cmd << 8) + *++bufptr; |
|
|
|
|
|
|
|
print_status(); // tone generator status now
|
|
|
|
fprintf (outfile, "\n"); |
|
|
|
timenow += delay; // advance time
|
|
|
|
if (codeoutput) |
|
|
|
} |
|
|
|
fprintf (outfile, "//"); |
|
|
|
else if (cmd != 0xf0) { // a note command
|
|
|
|
fprintf (outfile, "duration time "); |
|
|
|
gen = cmd & 0x0f; |
|
|
|
for (i = 0; i < num_tonegens; ++i) |
|
|
|
if (gen > max_tonegen_found) max_tonegen_found = gen; |
|
|
|
fprintf (outfile, expect_volume && !ignore_volume ? " gen%-5d" : " gen%-2d", i); |
|
|
|
cmd = cmd & 0xf0; |
|
|
|
fprintf (outfile, " bytestream code\n\n"); |
|
|
|
if (cmd == 0x90) { //****** note on
|
|
|
|
for (gen = 0; gen < num_tonegens; ++gen) |
|
|
|
gen_note[gen] = *++bufptr; // note number
|
|
|
|
gen_note[gen] = SILENT; |
|
|
|
tonegens_used |= 1<<gen; // record that we used this generator at least once
|
|
|
|
tonegens_used = 0; |
|
|
|
if (expect_volume) gen_volume[gen] = *++bufptr; // volume
|
|
|
|
lastbufptr = buffer; |
|
|
|
if (gen >= num_tonegens) ++notes_skipped; // won't be displaying this note
|
|
|
|
|
|
|
|
} |
|
|
|
/* Process the commmands sequentially */ |
|
|
|
else if (cmd == 0x80) { //****** note off
|
|
|
|
|
|
|
|
|
|
|
|
for (; bufptr < buffer + buflen; ++bufptr) { |
|
|
|
if (gen_note[gen] == SILENT) file_error ("tone generator not on", bufptr); |
|
|
|
cmd = *bufptr; |
|
|
|
gen_note[gen] = SILENT; |
|
|
|
if (cmd < 0x80) { /* delay */ |
|
|
|
} |
|
|
|
delay = ((unsigned int) cmd << 8) + *++bufptr; |
|
|
|
else file_error ("unknown command", bufptr); |
|
|
|
print_status (); // tone generator status now
|
|
|
|
} |
|
|
|
timenow += delay; // advance time
|
|
|
|
} |
|
|
|
} else if (cmd != 0xf0) { /* a command */ |
|
|
|
|
|
|
|
gen = cmd & 0x0f; |
|
|
|
|
|
|
|
if (gen > max_tonegen_found) |
|
|
|
/* Do the final cleanup */ |
|
|
|
max_tonegen_found = gen; |
|
|
|
|
|
|
|
cmd = cmd & 0xf0; |
|
|
|
delay = 0; |
|
|
|
if (cmd == 0x90) { /* note on */ |
|
|
|
--bufptr; |
|
|
|
gen_note[gen] = *++bufptr; // note number
|
|
|
|
if (codeoutput) --bufptr; //don't do 0xF0 for code, because we don't want the trailing comma
|
|
|
|
tonegens_used |= 1 << gen; // record that we used this generator at least once
|
|
|
|
print_status(); // print final status
|
|
|
|
if (expect_volume) |
|
|
|
if (codeoutput) { |
|
|
|
gen_volume[gen] = *++bufptr; // volume
|
|
|
|
fprintf(outfile, " 0xf0};\n"); |
|
|
|
if (gen >= num_tonegens) |
|
|
|
num_tonegens_used = countbits(tonegens_used); |
|
|
|
++notes_skipped; // won't be displaying this note
|
|
|
|
fprintf(outfile, "// This score contains %ld bytes, and %d tone generator%s used.\n", |
|
|
|
} else if (cmd == 0x80) { /* note off */ |
|
|
|
buflen, num_tonegens_used, num_tonegens_used == 1 ? " is" : "s are"); |
|
|
|
if (gen_note[gen] == SILENT) |
|
|
|
} |
|
|
|
file_error ("tone generator not on", bufptr); |
|
|
|
printf("\nAt most %u tone generators were used.\n", max_tonegen_found+1); |
|
|
|
gen_note[gen] = SILENT; |
|
|
|
if (notes_skipped) printf("%u notes were not displayed because we were told to show only %u generators.\n", notes_skipped, num_tonegens); |
|
|
|
} else if (cmd == 0xc0) { /* change instrument */ |
|
|
|
printf ("Done.\n"); |
|
|
|
gen_instrument[gen] = *++bufptr & 0x7f; |
|
|
|
|
|
|
|
gen_instrument_changed[gen] = true; |
|
|
|
|
|
|
|
} else |
|
|
|
|
|
|
|
file_error ("unknown command", bufptr); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Do the final cleanup */ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
delay = 0; |
|
|
|
|
|
|
|
--bufptr; |
|
|
|
|
|
|
|
if (codeoutput) |
|
|
|
|
|
|
|
--bufptr; //don't do 0xf0 for code, because we don't want the trailing comma
|
|
|
|
|
|
|
|
print_status (); // print final status
|
|
|
|
|
|
|
|
if (codeoutput) { |
|
|
|
|
|
|
|
fprintf (outfile, " 0xf0};\n"); |
|
|
|
|
|
|
|
num_tonegens_used = countbits (tonegens_used); |
|
|
|
|
|
|
|
fprintf (outfile, "// This score contains %ld bytes, and %d tone generator%s used.\n", |
|
|
|
|
|
|
|
buflen, num_tonegens_used, num_tonegens_used == 1 ? " is" : "s are"); |
|
|
|
|
|
|
|
} else |
|
|
|
|
|
|
|
fprintf (outfile, "\n"); |
|
|
|
|
|
|
|
printf ("At most %u tone generators were used.\n", max_tonegen_found + 1); |
|
|
|
|
|
|
|
if (notes_skipped) |
|
|
|
|
|
|
|
printf ("%u notes were not displayed because we were told to show only %u generators.\n", |
|
|
|
|
|
|
|
notes_skipped, num_tonegens); |
|
|
|
|
|
|
|
printf ("Done.\n"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|