annotate data/model/Labeller.h @ 305:fc656505c573

* Add labelling option for instants inserted through tapping (closes FR#1674184) Needs some refinement still, but it's almost functionally complete
author Chris Cannam
date Mon, 08 Oct 2007 14:44:38 +0000
parents
children 4669894a89ad
rev   line source
Chris@305 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@305 2
Chris@305 3 /*
Chris@305 4 Sonic Visualiser
Chris@305 5 An audio file viewer and annotation editor.
Chris@305 6 Centre for Digital Music, Queen Mary, University of London.
Chris@305 7 This file copyright 2006-2007 Chris Cannam and QMUL.
Chris@305 8
Chris@305 9 This program is free software; you can redistribute it and/or
Chris@305 10 modify it under the terms of the GNU General Public License as
Chris@305 11 published by the Free Software Foundation; either version 2 of the
Chris@305 12 License, or (at your option) any later version. See the file
Chris@305 13 COPYING included with this distribution for more information.
Chris@305 14 */
Chris@305 15
Chris@305 16 #ifndef _LABELLER_H_
Chris@305 17 #define _LABELLER_H_
Chris@305 18
Chris@305 19 #include "SparseModel.h"
Chris@305 20 #include "SparseValueModel.h"
Chris@305 21
Chris@305 22 #include "base/Selection.h"
Chris@305 23
Chris@305 24 #include <QObject>
Chris@305 25
Chris@305 26 #include <map>
Chris@305 27 #include <iostream>
Chris@305 28
Chris@305 29 class Labeller : public QObject
Chris@305 30 {
Chris@305 31 public:
Chris@305 32 enum ValueType {
Chris@305 33 ValueNone,
Chris@305 34 ValueFromSimpleCounter,
Chris@305 35 ValueFromCyclicalCounter,
Chris@305 36 ValueFromTwoLevelCounter,
Chris@305 37 ValueFromFrameNumber,
Chris@305 38 ValueFromRealTime,
Chris@305 39 ValueFromRealTimeDifference,
Chris@305 40 ValueFromTempo,
Chris@305 41 ValueFromExistingNeighbour,
Chris@305 42 ValueFromLabel
Chris@305 43 };
Chris@305 44
Chris@305 45 // uses:
Chris@305 46 //
Chris@305 47 // 1. when adding points to a time-value model, generate values
Chris@305 48 // for those points based on their times or labels or a counter
Chris@305 49 //
Chris@305 50 // 2. when adding a single point to a time-instant model, generate
Chris@305 51 // a label for it based on its time and that of the previous point
Chris@305 52 // or a counter
Chris@305 53 //
Chris@305 54 // 3. when adding a single point to a time-instant model, generate
Chris@305 55 // a label for the previous point based on its time and that of
Chris@305 56 // the point just added (as tempo is based on time to the next
Chris@305 57 // point, not the previous one)
Chris@305 58 //
Chris@305 59 // 4. re-label a set of points that have already been added to a
Chris@305 60 // model
Chris@305 61
Chris@305 62 Labeller(ValueType type) :
Chris@305 63 m_type(type),
Chris@305 64 m_counter(1),
Chris@305 65 m_counter2(1),
Chris@305 66 m_cycle(4),
Chris@305 67 m_dp(10),
Chris@305 68 m_rate(0) { }
Chris@305 69
Chris@305 70 Labeller(const Labeller &l) :
Chris@305 71 QObject(),
Chris@305 72 m_type(l.m_type),
Chris@305 73 m_counter(1),
Chris@305 74 m_counter2(1),
Chris@305 75 m_cycle(l.m_cycle),
Chris@305 76 m_dp(l.m_dp),
Chris@305 77 m_rate(l.m_rate) { }
Chris@305 78
Chris@305 79 virtual ~Labeller() { }
Chris@305 80
Chris@305 81 typedef std::map<ValueType, QString> TypeNameMap;
Chris@305 82 TypeNameMap getTypeNames() const {
Chris@305 83 TypeNameMap m;
Chris@305 84 m[ValueNone] = tr("No numbering");
Chris@305 85 m[ValueFromSimpleCounter] = tr("Simple counter starting from 1");
Chris@305 86 m[ValueFromCyclicalCounter] = tr("Cyclical counter starting from 1");
Chris@305 87 m[ValueFromTwoLevelCounter] = tr("Cyclical two-level counter (bar/beat)");
Chris@305 88 m[ValueFromFrameNumber] = tr("Audio sample frame number");
Chris@305 89 m[ValueFromRealTime] = tr("Time in seconds");
Chris@305 90 m[ValueFromRealTimeDifference] = tr("Duration to the following item");
Chris@305 91 m[ValueFromTempo] = tr("Tempo (bpm) based on duration to following item");
Chris@305 92 m[ValueFromExistingNeighbour] = tr("Same value as the nearest previous item");
Chris@305 93 m[ValueFromLabel] = tr("Value extracted from the item's label (where possible)");
Chris@305 94 return m;
Chris@305 95 }
Chris@305 96
Chris@305 97 ValueType getType() const { return m_type; }
Chris@305 98 void setType(ValueType type) { m_type = type; }
Chris@305 99
Chris@305 100 int getCounterValue() const { return m_counter; }
Chris@305 101 void setCounterValue(int v) { m_counter = v; }
Chris@305 102
Chris@305 103 int getSecondLevelCounterValue() const { return m_counter2; }
Chris@305 104 void setSecondLevelCounterValue(int v) { m_counter2 = v; }
Chris@305 105
Chris@305 106 int getCounterCycleSize() const { return m_cycle; }
Chris@305 107 void setCounterCycleSize(int s) {
Chris@305 108 m_cycle = s;
Chris@305 109 m_dp = 1;
Chris@305 110 while (s > 0) {
Chris@305 111 s /= 10;
Chris@305 112 m_dp *= 10;
Chris@305 113 }
Chris@305 114 }
Chris@305 115
Chris@305 116 void setSampleRate(float rate) { m_rate = rate; }
Chris@305 117
Chris@305 118 void incrementCounter() {
Chris@305 119 m_counter++;
Chris@305 120 if (m_type == ValueFromCyclicalCounter ||
Chris@305 121 m_type == ValueFromTwoLevelCounter) {
Chris@305 122 if (m_counter > m_cycle) {
Chris@305 123 m_counter = 1;
Chris@305 124 m_counter2++;
Chris@305 125 }
Chris@305 126 }
Chris@305 127 }
Chris@305 128
Chris@305 129 template <typename PointType>
Chris@305 130 void label(PointType &newPoint, PointType *prevPoint = 0) {
Chris@305 131 if (m_type == ValueNone) {
Chris@305 132 newPoint.label = "";
Chris@305 133 } else if (m_type == ValueFromTwoLevelCounter) {
Chris@305 134 newPoint.label = tr("%1.%2").arg(m_counter2).arg(m_counter);
Chris@305 135 incrementCounter();
Chris@305 136 } else {
Chris@305 137 float value = getValueFor<PointType>(newPoint, prevPoint);
Chris@305 138 if (actingOnPrevPoint() && prevPoint) {
Chris@305 139 prevPoint->label = QString("%1").arg(value);
Chris@305 140 } else {
Chris@305 141 newPoint.label = QString("%1").arg(value);
Chris@305 142 }
Chris@305 143 }
Chris@305 144 }
Chris@305 145
Chris@305 146 template <typename PointType>
Chris@305 147 void labelAll(SparseModel<PointType> &model, MultiSelection *ms) {
Chris@305 148
Chris@305 149 typename SparseModel<PointType>::PointList::iterator i;
Chris@305 150 typename SparseModel<PointType>::PointList pl(model.getPoints());
Chris@305 151
Chris@305 152 typename SparseModel<PointType>::EditCommand *command =
Chris@305 153 new typename SparseModel<PointType>::EditCommand
Chris@305 154 (&model, tr("Label Points"));
Chris@305 155
Chris@305 156 PointType prevPoint(0);
Chris@305 157
Chris@305 158 for (i = pl.begin(); i != pl.end(); ++i) {
Chris@305 159
Chris@305 160 bool inRange = true;
Chris@305 161 if (ms) {
Chris@305 162 Selection s(ms->getContainingSelection(i->frame, false));
Chris@305 163 if (s.isEmpty() || !s.contains(i->frame)) {
Chris@305 164 inRange = false;
Chris@305 165 }
Chris@305 166 }
Chris@305 167
Chris@305 168 PointType p(*i);
Chris@305 169
Chris@305 170 if (!inRange) {
Chris@305 171 prevPoint = p;
Chris@305 172 continue;
Chris@305 173 }
Chris@305 174
Chris@305 175 if (actingOnPrevPoint()) {
Chris@305 176 if (i != pl.begin()) {
Chris@305 177 command->deletePoint(prevPoint);
Chris@305 178 label<PointType>(p, &prevPoint);
Chris@305 179 command->addPoint(prevPoint);
Chris@305 180 }
Chris@305 181 } else {
Chris@305 182 command->deletePoint(p);
Chris@305 183 label<PointType>(p, &prevPoint);
Chris@305 184 command->addPoint(p);
Chris@305 185 }
Chris@305 186
Chris@305 187 prevPoint = p;
Chris@305 188 }
Chris@305 189
Chris@305 190 command->finish();
Chris@305 191 }
Chris@305 192
Chris@305 193 template <typename PointType>
Chris@305 194 void setValue(PointType &newPoint, PointType *prevPoint = 0) {
Chris@305 195 if (m_type == ValueFromExistingNeighbour) {
Chris@305 196 if (!prevPoint) {
Chris@305 197 std::cerr << "ERROR: Labeller::setValue: Previous point required but not provided" << std::endl;
Chris@305 198 } else {
Chris@305 199 newPoint.value = prevPoint->value;
Chris@305 200 }
Chris@305 201 } else {
Chris@305 202 float value = getValueFor<PointType>(newPoint, prevPoint);
Chris@305 203 if (actingOnPrevPoint() && prevPoint) {
Chris@305 204 prevPoint->value = value;
Chris@305 205 } else {
Chris@305 206 newPoint.value = value;
Chris@305 207 }
Chris@305 208 }
Chris@305 209 }
Chris@305 210
Chris@305 211 bool actingOnPrevPoint() const {
Chris@305 212 return (m_type == ValueFromRealTimeDifference ||
Chris@305 213 m_type == ValueFromTempo);
Chris@305 214 }
Chris@305 215
Chris@305 216 protected:
Chris@305 217 template <typename PointType>
Chris@305 218 float getValueFor(PointType &newPoint, PointType *prevPoint)
Chris@305 219 {
Chris@305 220 float value = 0.f;
Chris@305 221
Chris@305 222 switch (m_type) {
Chris@305 223
Chris@305 224 case ValueNone:
Chris@305 225 value = 0;
Chris@305 226 break;
Chris@305 227
Chris@305 228 case ValueFromSimpleCounter:
Chris@305 229 case ValueFromCyclicalCounter:
Chris@305 230 value = m_counter;
Chris@305 231 incrementCounter();
Chris@305 232 break;
Chris@305 233
Chris@305 234 case ValueFromTwoLevelCounter:
Chris@305 235 value = m_counter2 + double(m_counter) / double(m_dp);
Chris@305 236 incrementCounter();
Chris@305 237 break;
Chris@305 238
Chris@305 239 case ValueFromFrameNumber:
Chris@305 240 value = newPoint.frame;
Chris@305 241 break;
Chris@305 242
Chris@305 243 case ValueFromRealTime:
Chris@305 244 if (m_rate == 0.f) {
Chris@305 245 std::cerr << "ERROR: Labeller::getValueFor: Real-time conversion required, but no sample rate set" << std::endl;
Chris@305 246 } else {
Chris@305 247 value = float(newPoint.frame) / float(m_rate);
Chris@305 248 }
Chris@305 249 break;
Chris@305 250
Chris@305 251 case ValueFromRealTimeDifference:
Chris@305 252 case ValueFromTempo:
Chris@305 253 if (m_rate == 0.f) {
Chris@305 254 std::cerr << "ERROR: Labeller::getValueFor: Real-time conversion required, but no sample rate set" << std::endl;
Chris@305 255 } else if (!prevPoint) {
Chris@305 256 std::cerr << "ERROR: Labeller::getValueFor: Time difference required, but only one point provided" << std::endl;
Chris@305 257 } else {
Chris@305 258 size_t f0 = prevPoint->frame, f1 = newPoint.frame;
Chris@305 259 if (m_type == ValueFromRealTimeDifference) {
Chris@305 260 value = float(f1 - f0) / m_rate;
Chris@305 261 } else {
Chris@305 262 if (f1 > f0) {
Chris@305 263 value = (60.f * m_rate) / (f1 - f0);
Chris@305 264 }
Chris@305 265 }
Chris@305 266 }
Chris@305 267 break;
Chris@305 268
Chris@305 269 case ValueFromExistingNeighbour:
Chris@305 270 // need to deal with this in the calling function, as this
Chris@305 271 // function must handle points that don't have values to
Chris@305 272 // read from
Chris@305 273 break;
Chris@305 274
Chris@305 275 case ValueFromLabel:
Chris@305 276 if (newPoint.label != "") {
Chris@305 277 // more forgiving than QString::toFloat()
Chris@305 278 value = atof(newPoint.label.toLocal8Bit());
Chris@305 279 } else {
Chris@305 280 value = 0.f;
Chris@305 281 }
Chris@305 282 break;
Chris@305 283 }
Chris@305 284
Chris@305 285 return value;
Chris@305 286 }
Chris@305 287
Chris@305 288 ValueType m_type;
Chris@305 289 int m_counter;
Chris@305 290 int m_counter2;
Chris@305 291 int m_cycle;
Chris@305 292 int m_dp;
Chris@305 293 float m_rate;
Chris@305 294 };
Chris@305 295
Chris@305 296 #endif