1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2011 Werner Schweer and others
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2
// as published by the Free Software Foundation and appearing in
// the file LICENSE.GPL
//=============================================================================
#include "input.h"
#include "segment.h"
#include "part.h"
#include "staff.h"
#include "score.h"
#include "chord.h"
#include "rest.h"
#include "measure.h"
namespace Ms {
class DrumSet;
//---------------------------------------------------------
// drumset
//---------------------------------------------------------
const Drumset* InputState::drumset() const
{
if (_segment == 0 || _track == -1)
return 0;
return _segment->score()->staff(_track/VOICES)->part()->instrument(_segment->tick())->drumset();
}
//---------------------------------------------------------
// staffGroup
//---------------------------------------------------------
StaffGroup InputState::staffGroup() const
{
if (_segment == 0 || _track == -1)
return StaffGroup::STANDARD;
return _segment->score()->staff(_track/VOICES)->staffType(_segment->tick())->group();
}
//---------------------------------------------------------
// tick
//---------------------------------------------------------
Fraction InputState::tick() const
{
return _segment ? _segment->tick() : Fraction(0,1);
}
//---------------------------------------------------------
// cr
//---------------------------------------------------------
ChordRest* InputState::cr() const
{
return _segment ? toChordRest(_segment->element(_track)) : 0;
}
//---------------------------------------------------------
// update
//---------------------------------------------------------
void InputState::update(Element* e)
{
if (e == 0)
return;
if (e && e->isChord())
e = toChord(e)->upNote();
setDrumNote(-1);
if (e->isNote()) {
Note* note = toNote(e);
Chord* chord = note->chord();
setDuration(chord->durationType());
setRest(false);
setTrack(note->track());
setNoteType(note->noteType());
setBeamMode(chord->beamMode());
}
else if (e->isRest() || e->isRepeatMeasure()) {
Rest* rest = toRest(e);
if (rest->durationType().type() == TDuration::DurationType::V_MEASURE)
setDuration(TDuration::DurationType::V_QUARTER);
else
setDuration(rest->durationType());
setRest(true);
setTrack(rest->track());
setBeamMode(rest->beamMode());
setNoteType(NoteType::NORMAL);
}
if (e->isNote() || e->isRest()) {
const Instrument* instr = e->part()->instrument();
if (instr->useDrumset()) {
if (e->isNote())
setDrumNote(toNote(e)->pitch());
else
setDrumNote(-1);
}
}
}
//---------------------------------------------------------
// moveInputPos
//---------------------------------------------------------
void InputState::moveInputPos(Element* e)
{
if (e == 0)
return;
Segment* s;
if (e->isChordRest())
s = toChordRest(e)->segment();
else
s = toSegment(e);
if (s->isSegment()) {
if (s->measure()->isMMRest()) {
Measure* m = s->measure()->mmRestFirst();
s = m->findSegment(SegmentType::ChordRest, m->tick());
}
_lastSegment = _segment;
_segment = s;
}
}
//---------------------------------------------------------
// setSegment
//---------------------------------------------------------
void InputState::setSegment(Segment* s)
{
if (s && s->measure()->isMMRest()) {
Measure* m = s->measure()->mmRestFirst();
s = m->findSegment(SegmentType::ChordRest, m->tick());
}
_segment = s;
_lastSegment = s;
}
//---------------------------------------------------------
// nextInputPos
//---------------------------------------------------------
Segment* InputState::nextInputPos() const
{
Measure* m = _segment->measure();
Segment* s = _segment->next1(SegmentType::ChordRest);
for (; s; s = s->next1(SegmentType::ChordRest)) {
if (s->element(_track)) {
if (s->element(_track)->isRest() && toRest(s->element(_track))->isGap())
m = s->measure();
else
return s;
}
else if (s->measure() != m)
return s;
}
return 0;
}
//---------------------------------------------------------
// moveToNextInputPos
// TODO: special case: note is first note of tie: goto to last note of tie
//---------------------------------------------------------
void InputState::moveToNextInputPos()
{
Segment* s = nextInputPos();
_lastSegment = _segment;
if (s)
_segment = s;
}
//---------------------------------------------------------
// endOfScore
//---------------------------------------------------------
bool InputState::endOfScore() const
{
return (_lastSegment == _segment) && !nextInputPos();
}
}
|