/** * Prompts user for a line of text from standard input and returns * it as a string (char *), sans trailing line ending. Supports * CR (\r), LF (\n), and CRLF (\r\n) as line endings. If user * inputs only a line ending, returns "", not NULL. Returns NULL * upon error or no input whatsoever (i.e., just EOF). Stores string * on heap, but library's destructor frees memory on program's exit. */
// Converts a fraction formatted as X/Y to eighths intduration(string fraction) { string X = strtok(fraction, "/"); int x = atoi(X); string Y = strtok(NULL, "/"); int y = atoi(Y); int output = x * pow(2, 3 - log2(y)) ; return output; }
// Calculates frequency (in Hz) of a note intfrequency(string note) { // set octave to store how to */ 2 // set half to store whether or not should * 2 ^ 1/12 // set hame to store how much it relate to A int octave = 4; int half = 0; int name = 0; // if the note is semi like A#4 if (strlen(note) == 3) { //get octave on A#4,minus char '4' octave = note[2] - '4'; // set half = 1 if # if (note[1] == '#') { half = 1; } // set half = -1 if b if (note[1] == 'b') { half = -1; } } // if no semi, the length of note is 2, like A4 if (strlen(note) == 2) { //get octave octave = note[1] - '4'; } // get name by char note[0] switch (note[0]) { case'C': name = -9; break; case'D': name = -7; break; case'E': name = -5; break; case'F': name = -4; break; case'G': name = -2; break; case'A': name = 0; break; case'B': name = 2; } //calculate the frequency and return the int output int freq = 0; freq = round(440 * pow(2.00, (name + half) / 12 + octave)); return freq; } // Determines whether a string represents a rest boolis_rest(string s) { // if it is "" return false if (strncmp(s, "", 1)) { returnfalse; } else { returntrue; } }
intmain(int argc, string argv[]) { // Check command line arguments if (argc != 2) { fprintf(stderr, "Usage: synthesize FILE\n"); return1; } string filename = argv[1]; // Open file for writing song s = song_open(filename); // Expect notes from user until EOF while (true) { // Expect note stringline = get_string(""); // Check for EOF if (line == NULL) { break; } // Check if line is rest if (is_rest(line)) { rest_write(s, 1); } else { // Parse line into note and duration string note = strtok(line, "@"); string fraction = strtok(NULL, "@"); // Write note to song note_write(s, frequency(note), duration(fraction)); } } // Close file song_close(s); }
intmain(int argc, string argv[]) { // Override default octave if specified at command line int octave = OCTAVE; if (argc == 2) { octave = atoi(argv[1]); if (octave < 0 || octave > 8) { //unvalid input actave fprintf(stderr, "Invalid octave\n"); return1; } } elseif (argc > 2) { //too much arguments fprintf(stderr, "Usage: notes [OCTAVE]\n"); return1; }
// Open file for writing song s = song_open("notes.wav");
// Add each semitone for (int i = 0, n = sizeof(NOTES) / sizeof(string); i < n; i++) { // Append octave to note char note[4]; sprintf(note, "%s%i", NOTES[i], octave);
// Calculate frequency of note int f = frequency(note);