DEPARTMENT OF COMPUTING

CS 3005: Programming in C++

Score Editor (Writer)

Introduction

In this assignment you will start the ability to write score files from the score editor program. This will be apparent to users through a new command.

We will also add support for instruments to the score editor program. This includes user commands to add, edit, and list instruments. It also includes additions to reading and writing score files that that have instruments.

Future assignments will continue to add functionality to the program.

Syntax in the .score file for an instrument

This format was designed to be read using the C++ standard library’s >> operator. All values are whitespace delimited. By context, your code should be able to determine whether the next value is a std::string or a double.

The INSTRUMENT keyword must always be followed by the instrument name.

The INSTRUMENT description must always contain a WAVEFORM and an ENVELOPE. These may be complete descriptions of new waveforms and envelopes, or they may be a identifiers for a waveform and an envelope that have previously been described. “Previously described” means it has been already added to the score. This can happen because the waveform or envelope was described in an earlier INSTRUMENT description, or it was described earlier in the file, outside of an instrument, or it was added to the MusicalScore object before the score file was read.

INSTRUMENT with full Waveform and Envelope descriptions

INSTRUMENT piano-left
  WAVEFORM piano-sawtooth sawtooth
    AMPLITUDE 0.87
  WAVEFORM-END

  ENVELOPE piano-adsr ADSR
    MAXIMUM-AMPLITUDE 0.25
    ATTACK-SECONDS 0.01
    DECAY-SECONDS 0.02
    SUSTAIN-AMPLITUDE 0.5
    RELEASE-SECONDS 0.03
  ENVELOPE-END

INSTRUMENT-END

INSTRUMENT with minimal Waveform and Envelope descriptions

INSTRUMENT piano-right
  WAVEFORM piano-sine sine
  WAVEFORM-END

  ENVELOPE piano-ad AD
  ENVELOPE-END

INSTRUMENT-END

Sample SCORE file

SCORE

    WAVEFORM piano-square square
      AMPLITUDE 0.77
    WAVEFORM-END

    WAVEFORM piano-sawtooth sawtooth
      AMPLITUDE 0.87
    WAVEFORM-END

    ENVELOPE piano-ar AR
      ATTACK-SECONDS 0.02
      SUSTAIN-AMPLITUDE 0.75
      RELEASE-SECONDS 0.03
    ENVELOPE-END

    ENVELOPE piano-adsr ADSR
      ATTACK-SECONDS 0.01
      DECAY-SECONDS 0.02
      SUSTAIN-AMPLITUDE 0.5
      RELEASE-SECONDS 0.03
    ENVELOPE-END

  INSTRUMENT piano-right
    WAVEFORM piano-square square
      AMPLITUDE 0.77
    WAVEFORM-END

    ENVELOPE piano-ar AR
      ATTACK-SECONDS 0.02
      SUSTAIN-AMPLITUDE 0.75
      RELEASE-SECONDS 0.03
    ENVELOPE-END

  INSTRUMENT-END

  INSTRUMENT piano-left
    WAVEFORM piano-sawtooth sawtooth
      AMPLITUDE 0.87
    WAVEFORM-END

    ENVELOPE piano-adsr ADSR
      ATTACK-SECONDS 0.01
      DECAY-SECONDS 0.02
      SUSTAIN-AMPLITUDE 0.5
      RELEASE-SECONDS 0.03
    ENVELOPE-END

  INSTRUMENT-END

SCORE-END

Notes on the ScoreReader::readInstrument method

Notes on the ScoreWriter::writeScore method

Notes on the ScoreWriter::writeInstrument method

Notes on the ScoreWriter::writeWaveform method

Notes on the ScoreWriter::writeEnvelope method

Assignment

Here are the new commands that are required for this assignment. Previous commands are still required.

Command Prefixable? Function Description
score-write no writeScoreUI Write score to score file.
score-list-instruments no listScoreInstrumentsUI List instruments in the score.
score-add-instrument no addScoreInstrumentUI Add instrument to the score.
score-edit-instrument no editScoreInstrumentUI Edit instrument in the score.

Example Session

$ ./program-score-editor/score_editor 
Choice? menu
Options are:
  # - Skip to end of line (comment).
  comment - Skip to end of line (comment).
  echo - Echo back the arguments given.
  help - Display help message.
  menu - Display help message.
  quit - Terminate the program.
  score-add-envelope - Add envelope to the score.
  score-add-instrument - Add instrument to the score.
  score-add-waveform - Add waveform to the score.
  score-edit-envelope - Edit envelope in the score.
  score-edit-instrument - Edit instrument in the score.
  score-edit-waveform - Edit waveform in the score.
  score-list-envelopes - List envelopes in the score.
  score-list-instruments - List instruments in the score.
  score-list-waveforms - List waveforms in the score.
  score-read - Read score from file.
  score-write - Write score to score file.

Choice? score-add-waveform
Waveform name: sin1
Waveform type: sine
Amplitude: 0.80
Choice? score-add-waveform
Waveform name: squ2
Waveform type: square
Amplitude: 0.82
Choice? score-add-envelope
Envelope name: ad1
Envelope type: AD
Maximum amplitude: 0.75
Attack seconds: 0.011
Choice? score-add-envelope
Envelope name: adsr4
Envelope type: ADSR
Maximum amplitude: 0.78
Attack seconds: 0.016
Decay seconds: 0.017
Sustain amplitude: 0.57
Release seconds: 0.018
Choice? score-add-instrument
Instrument name: ins1
Waveform name: sin1
Envelope name: ad1
Choice? score-add-instrument
Instrument name: ins2
Waveform name: squ2
Envelope name: adsr4
Choice? score-list-instruments
ins1 : sin1 ad1
ins2 : squ2 adsr4
Choice? score-edit-instrument
Instrument name: ins1
Waveform name: squ2
Envelope name: ad1
Choice? score-edit-instrument
Instrument name: ins2
Waveform name: squ2
Envelope name: ad1
Choice? score-list-instruments
ins1 : squ2 ad1
ins2 : squ2 ad1
Choice? score-write
Filename: demo.score
Choice? quit

The output file: demo.score.

Programming Requirements

Update library-score/MusicalScore.{h,cpp}

We will add to the MusicalScore class by adding the Instrumentarium collection. Future assignments will add more to the class.

MusicalScore Class

This class will store all of the information for a piece of music.

Data Members:

public Methods:

Update library-score-io/ScoreReader.{h,cpp}

We will update the ScoreReader class by adding the ability to read Instrument objects. Future assignments will add more to the class.

ScoreReader Class

This class will eventually read all of the information for a piece of music from the .score file format.

Data Members:

No data members are required.

public Methods:

Create library-score-io/ScoreWriter.{h,cpp}

We will create the ScoreWriter class with the ability to write the currently existing score elements. Future assignments will add more to the class.

ScoreWrite Class

This class will eventually write all of the information for a piece of music from the .score file format.

Data Members:

No data members are required.

public Methods:

Update library-commands/score_editor_aux.{h,cpp}

Commands created for the score editor program will go here. We’ll make a few in this assignment, and add more in future assignments.

Functions:

Additional Documentation

Grading Instructions

To receive credit for this assignment:

Extra Challenges (Not Required)

TBA

Last Updated 04/02/2025