3

通过编写 MIDI 处理程序自学 Java。程序需要做的一件事是在 MIDI 音符编号和它们相应的紧凑字符串表示之间来回转换。我看着使用枚举设置,但由于命名限制,你不能做类似的事情

c-1, c#-1, ...  g9;

因为尖锐和负面(是的,我遵循让你最终得到一个负八度的惯例:P)。

必须在允许的内容和我想要的内容之间进行转换似乎很笨拙。

CNEG1("c-1"),
CSNEG1("c#-1"),
DNEG1("d-1"),
...
G9("g9");

所以我想出了下面的静态导入方案,它工作正常。但是,我想了解更多关于如何使用枚举的信息,而且我有一种预感,它们实际上可能更适合这项任务——只要我能更好地理解其中的来龙去脉。所以这就是我的问题:任何人都可以想出一种优雅的方式来使用枚举方案提供相同的功能吗?此外,这样做会有强有力的论据吗?

public abstract class MethodsAndConstants {

    public static final String TONICS[] = {"c","c#","d","d#","e","f","f#","g","g#","a","a#","b"};
    static final NoteMap notemap = new NoteMap();

    static class NoteMap{
        static String map[] = new String[128];

        NoteMap() {
            for (int i = 0; i < 128; i++){
                int octave = i/12 - 1;
                String tonic = MethodsAndConstants.TONICS[i%12];
                map[i] = tonic + octave;
            }
        }   
    }

    public static int convert_midi_note(String name){
        return indexOf(NoteMap.map, name);
    }

    public static String convert_midi_note(int note_num){   
        return NoteMap.map[note_num];
    }

    public static int indexOf(String[] a, String item){
        return java.util.Arrays.asList(a).indexOf(item);
    }       
}

编辑 - - - - - - - - - - - - - - - - - - - - -

经过深思熟虑,我认为在这种特殊情况下,枚举毕竟可能是矫枉过正。我最终可能只是在这里使用这个代码,同样的静态导入方法,但不再需要像上面的 NoteMap 业务这样的东西。

note_num -> 名称转换非常简单,而 name -> note_num 的东西只是很好的字符串解析乐趣。

public abstract class MethodsAndConstants {
    public static final String[] TONICS = {"c","c#","d","d#","e","f","f#","g","g#","a","a#","b"};

    static String convert(int i) {
        String tonic = MethodsAndConstants.TONICS[i%12];
        int octave = (i / 12) - 1;
        return tonic + octave;
    }

    static int convert(String s) {
        int tonic = java.util.Arrays.asList(MethodsAndConstants.TONICS).indexOf(s.substring(0,1));
        if (s.contains("#")) tonic += 1;
        int octave = Integer.parseInt(s.substring(s.length()-1));
        if (s.contains("-")) octave -= 2;   // case octave = -1
        int note_num = ((octave + 1) * 12) + tonic;
        return note_num;
    }
}
4

2 回答 2

3

您可以使用枚举来表示音高,但我可能会尝试在类中封装音高

public class Pitch {

    private final int octave;
    private final Note note;

    public enum Note {
        C("C",4), CSHARP("C#/Db",5), DFLAT("C#/Db",5), //and so on

        private final String thePitch;
        private final int midiAdjust;

        private Note(final String thePitch, final int midiAdjust) {
            this.thePitch = thePitch;
            this.midiAdjust = midiAdjust;
        }

        String getThePitch() {
            return thePitch;
        }

        int getMidiAdjust() {
            return midiAdjust;
        }
    }

    public Pitch(Note note, int octave) {
        this.note = note;
        this.octave = octave;
    }

    public int getMidiNumber(){
        return 12*octave + note.getMidiAdjust();
    }

}

这将解释这样一个事实,即音符(C、C#、D、D#、E...)将成为重复集之一,但您可以拥有各种八度音阶,在这种情况下由int. 它会大大减小你的enum.

编辑:我在这里添加了几行作为一个想法。您可以将第二个参数传递给枚举的构造函数,以允许您返回代表音高的 MIDI 数字。在这篇文章中,我假设 MIDI 表示的最小数字是 A,但我可能错了。此外,12*octave它旨在为每个增量添加一个完整的八度音阶。你可能需要稍微调整一下,因为我看到你正在使用那个奇怪的符号。

于 2012-05-06T06:03:45.737 回答
1

像这样的东西:

public enum Note {
    CNEG1("c-1"), CSNEG1("c#-1"), DNEG1("d-1");

    private final String tonicOctave;

    private Note(final String tonicOctave) {
        this.tonicOctave = tonicOctave;
    }

    public String getTonicOctave() {
        return this.tonicOctave;
    }

    public static Note fromTonicOctave(final String val) {
        for (final Note note: Note.values()) {
            if (note.getTonicOctave().equals(val)) {
                return note;
            }
        }
        return null;
    }
}

请注意,您可以在枚举中包含任意数量的参数,因此如果您需要将主音和八度音分开,您可以。

于 2012-05-06T05:49:40.287 回答