annotate base/ZoomConstraint.h @ 48:b1d51d0521c3

* update TODO, some tidying
author Chris Cannam
date Mon, 20 Mar 2006 11:37:45 +0000
parents 070e9e1e40ea
children 39ae3dee27b9
rev   line source
Chris@0 1 /* -*- c-basic-offset: 4 -*- vi:set ts=8 sts=4 sw=4: */
Chris@0 2
Chris@0 3 /*
Chris@0 4 A waveform viewer and audio annotation editor.
Chris@2 5 Chris Cannam, Queen Mary University of London, 2005-2006
Chris@0 6
Chris@0 7 This is experimental software. Not for distribution.
Chris@0 8 */
Chris@0 9
Chris@0 10 #ifndef _ZOOM_CONSTRAINT_H_
Chris@0 11 #define _ZOOM_CONSTRAINT_H_
Chris@0 12
Chris@0 13 #include <stdlib.h>
Chris@0 14
Chris@0 15 /**
Chris@0 16 * ZoomConstraint is a simple interface that describes a limitation on
Chris@0 17 * the available zoom sizes for a view, for example based on cache
Chris@0 18 * strategy or a (processing) window-size limitation.
Chris@0 19 *
Chris@12 20 * The default ZoomConstraint imposes no actual constraint except for
Chris@12 21 * a nominal maximum.
Chris@0 22 */
Chris@0 23
Chris@0 24 class ZoomConstraint
Chris@0 25 {
Chris@0 26 public:
Chris@27 27 virtual ~ZoomConstraint() { }
Chris@27 28
Chris@0 29 enum RoundingDirection {
Chris@0 30 RoundDown,
Chris@0 31 RoundUp,
Chris@0 32 RoundNearest
Chris@0 33 };
Chris@0 34
Chris@0 35 /**
Chris@0 36 * Given the "ideal" block size (frames per pixel) for a given
Chris@0 37 * zoom level, return the nearest viable block size for this
Chris@0 38 * constraint.
Chris@0 39 *
Chris@0 40 * For example, if a block size of 1523 frames per pixel is
Chris@0 41 * requested but the underlying model only supports value
Chris@0 42 * summaries at powers-of-two block sizes, return 1024 or 2048
Chris@0 43 * depending on the rounding direction supplied.
Chris@0 44 */
Chris@0 45 virtual size_t getNearestBlockSize(size_t requestedBlockSize,
Chris@0 46 RoundingDirection = RoundNearest)
Chris@0 47 const
Chris@0 48 {
Chris@12 49 if (requestedBlockSize > getMaxZoomLevel()) return getMaxZoomLevel();
Chris@12 50 else return requestedBlockSize;
Chris@0 51 }
Chris@12 52
Chris@12 53 virtual size_t getMaxZoomLevel() const { return 262144; }
Chris@0 54 };
Chris@0 55
Chris@0 56 #endif
Chris@0 57