forked from vfr/Reader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReaderThumbsView.m
More file actions
545 lines (394 loc) · 15.2 KB
/
ReaderThumbsView.m
File metadata and controls
545 lines (394 loc) · 15.2 KB
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
//
// ReaderThumbsView.m
// Reader v2.8.6
//
// Created by Julius Oklamcak on 2011-09-01.
// Copyright © 2011-2015 Julius Oklamcak. All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
// of the Software, and to permit persons to whom the Software is furnished to
// do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
#import "ReaderThumbsView.h"
@interface ReaderThumbsView () <UIScrollViewDelegate, UIGestureRecognizerDelegate>
@end
@implementation ReaderThumbsView
{
CGPoint lastContentOffset;
ReaderThumbView *touchedCell;
NSMutableArray *thumbCellsQueue;
NSMutableArray *thumbCellsVisible;
NSInteger _thumbsX, _thumbsY, _thumbX;
CGSize _thumbSize, _lastViewSize;
NSUInteger _thumbCount;
BOOL canUpdate;
}
#pragma mark - Properties
@synthesize delegate;
#pragma mark - ReaderThumbsView instance methods
- (instancetype)initWithFrame:(CGRect)frame
{
if ((self = [super initWithFrame:frame]))
{
self.scrollsToTop = NO;
self.autoresizesSubviews = NO;
self.delaysContentTouches = NO;
self.alwaysBounceVertical = YES;
self.contentMode = UIViewContentModeRedraw;
self.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
self.backgroundColor = [UIColor clearColor];
[super setDelegate:self]; // Set the superclass UIScrollView delegate
thumbCellsQueue = [NSMutableArray new]; thumbCellsVisible = [NSMutableArray new]; // Cell management arrays
UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTapGesture:)];
//tapGesture.numberOfTouchesRequired = 1; tapGesture.numberOfTapsRequired = 1; tapGesture.delegate = self;
[self addGestureRecognizer:tapGesture];
UILongPressGestureRecognizer *pressGesture = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handlePressGesture:)];
pressGesture.minimumPressDuration = 0.8; //pressGesture.numberOfTouchesRequired = 1; pressGesture.delegate = self;
[self addGestureRecognizer:pressGesture];
lastContentOffset = CGPointMake(CGFLOAT_MIN, CGFLOAT_MIN);
}
return self;
}
- (void)requeueThumbCell:(ReaderThumbView *)tvCell
{
[thumbCellsQueue addObject:tvCell];
[thumbCellsVisible removeObject:tvCell];
tvCell.tag = NSIntegerMin; tvCell.hidden = YES;
[tvCell reuse]; // Reuse the cell
}
- (void)requeueAllThumbCells
{
if (thumbCellsVisible.count > 0)
{
NSArray *visible = [thumbCellsVisible copy];
for (ReaderThumbView *tvCell in visible)
{
[self requeueThumbCell:tvCell];
}
}
}
- (ReaderThumbView *)dequeueThumbCellWithFrame:(CGRect)frame
{
ReaderThumbView *theCell = nil;
if (thumbCellsQueue.count > 0) // Reuse existing cell
{
theCell = [thumbCellsQueue objectAtIndex:0];
[thumbCellsQueue removeObjectAtIndex:0]; // Dequeue it
theCell.frame = frame; // Position the reused cell
}
else // Allocate a brand new thumb cell subclass for our use
{
theCell = [delegate thumbsView:self thumbCellWithFrame:frame];
//assert([theCell isKindOfClass:[ReaderThumbView class]]);
theCell.tag = NSIntegerMin; theCell.hidden = YES;
[self insertSubview:theCell atIndex:0]; // Add
}
[thumbCellsVisible addObject:theCell];
return theCell;
}
- (NSMutableIndexSet *)visibleIndexSetForContentOffset
{
CGFloat minY = self.contentOffset.y; // Content offset
CGFloat maxY = (minY + self.bounds.size.height - 1.0f);
NSInteger startRow = (minY / _thumbSize.height); // Start row
NSInteger finalRow = (maxY / _thumbSize.height); // Final row
NSInteger startIndex = (startRow * _thumbsX); // Start index
NSInteger finalIndex = (finalRow * _thumbsX); // Final index
finalIndex += (_thumbsX - 1); // Last index value in last row
NSInteger maximumIndex = (_thumbCount - 1); // Maximum index value
if (finalIndex > maximumIndex) finalIndex = maximumIndex; // Limit it
NSRange indexRange = NSMakeRange(startIndex, (finalIndex - startIndex + 1));
return [NSMutableIndexSet indexSetWithIndexesInRange:indexRange];
}
- (ReaderThumbView *)thumbCellContainingPoint:(CGPoint)point
{
ReaderThumbView *theCell = nil;
for (ReaderThumbView *tvCell in thumbCellsVisible)
{
if (CGRectContainsPoint(tvCell.frame, point) == true)
{
theCell = tvCell; break; // Found it
}
}
return theCell;
}
- (CGRect)thumbCellFrameForIndex:(NSInteger)index
{
CGRect thumbRect; thumbRect.size = _thumbSize;
NSInteger thumbY = ((index / _thumbsX) * _thumbSize.height); // X, Y
NSInteger thumbX = (((index % _thumbsX) * _thumbSize.width) + _thumbX);
thumbRect.origin.x = thumbX; thumbRect.origin.y = thumbY;
return thumbRect;
}
- (void)updateContentSize:(NSUInteger)thumbCount
{
canUpdate = NO; // Disable updates
if (thumbCount > 0) // Have some thumbs
{
CGFloat bw = self.bounds.size.width;
_thumbsX = (bw / _thumbSize.width);
if (_thumbsX < 1) _thumbsX = 1;
_thumbsY = (thumbCount / _thumbsX);
if ((_thumbsX * _thumbsY) < thumbCount) _thumbsY++;
CGFloat tw = (_thumbsX * _thumbSize.width);
CGFloat th = (_thumbsY * _thumbSize.height);
if (tw < bw)
_thumbX = ((bw - tw) * 0.5f);
else
_thumbX = 0; // Reset
if (tw < bw) tw = bw; // Limit
[self setContentSize:CGSizeMake(tw, th)];
}
else // Zero (0) thumbs
{
[self setContentSize:CGSizeZero];
}
canUpdate = YES; // Enable updates
}
- (void)layoutSubviews
{
if (CGSizeEqualToSize(_lastViewSize, CGSizeZero) == true)
{
_lastViewSize = self.bounds.size; // Initial view size
}
else
if (CGSizeEqualToSize(_lastViewSize, self.bounds.size) == false)
{
_lastViewSize = self.bounds.size; // Track the view size
[self updateContentSize:_thumbCount]; // Update the content size
NSMutableArray *requeueCells = [NSMutableArray array]; // Requeue cell list
NSMutableIndexSet *visibleIndexSet = [self visibleIndexSetForContentOffset];
for (ReaderThumbView *tvCell in thumbCellsVisible) // Enumerate visible cells
{
NSInteger index = tvCell.tag; // Get the cell's index value
if ([visibleIndexSet containsIndex:index] == YES) // Visible cell
{
tvCell.frame = [self thumbCellFrameForIndex:index]; // Frame
[visibleIndexSet removeIndex:index]; // Remove from set
}
else // Add it to the list of cells to requeue
{
[requeueCells addObject:tvCell];
}
}
for (ReaderThumbView *tvCell in requeueCells) // Enumerate requeue cells
{
[self requeueThumbCell:tvCell]; // Requeue the thumb cell
}
[visibleIndexSet enumerateIndexesUsingBlock: // Enumerate visible indexes
^(NSUInteger index, BOOL *stop)
{
CGRect thumbRect = [self thumbCellFrameForIndex:index]; // Frame
ReaderThumbView *tvCell = [self dequeueThumbCellWithFrame:thumbRect];
[delegate thumbsView:self updateThumbCell:tvCell forIndex:index];
tvCell.tag = index; tvCell.hidden = NO; // Tag and show it
}
];
}
}
- (void)setThumbSize:(CGSize)thumbSize
{
if (CGSizeEqualToSize(_thumbSize, CGSizeZero) == true)
{
if (CGSizeEqualToSize(thumbSize, CGSizeZero) == false)
{
_thumbSize = thumbSize; // Set the maximum thumb size
}
}
}
- (void)reloadThumbsCenterOnIndex:(NSInteger)index
{
assert(delegate != nil); // Check delegate
assert(CGSizeEqualToSize(_thumbSize, CGSizeZero) == false);
if (self.decelerating == YES) // Stop scroll view movement
{
[self setContentOffset:self.contentOffset animated:NO];
}
CGPoint newContentOffset = CGPointZero; // At top
lastContentOffset = CGPointMake(CGFLOAT_MIN, CGFLOAT_MIN);
[self requeueAllThumbCells]; // Start off fresh
_thumbCount = 0; // Reset the thumb count to zero
NSUInteger thumbCount = [delegate numberOfThumbsInThumbsView:self];
[self updateContentSize:thumbCount]; _thumbCount = thumbCount;
if (thumbCount > 0) // Have some thumbs
{
NSInteger boundsHeight = self.bounds.size.height;
NSInteger maxY = (self.contentSize.height - boundsHeight);
NSInteger minY = 0; maxY--; if (maxY < minY) maxY = minY; // Limits
if (index < 0) index = 0; else if (index > thumbCount) index = (thumbCount - 1);
NSInteger thumbY = ((index / _thumbsX) * _thumbSize.height); // Thumb Y
NSInteger offsetY = (thumbY - (boundsHeight / 2) + (_thumbSize.height / 2));
if (offsetY < minY) offsetY = minY; else if (offsetY > maxY) offsetY = maxY;
newContentOffset.y = offsetY; // Calculated content offset Y position
}
newContentOffset.y -= self.contentInset.top; // Content inset adjust
if (CGPointEqualToPoint(self.contentOffset, newContentOffset) == false)
[self setContentOffset:newContentOffset animated:NO];
else
[self scrollViewDidScroll:self];
[self flashScrollIndicators];
}
- (void)reloadThumbsContentOffset:(CGPoint)newContentOffset
{
assert(delegate != nil); // Check delegate
assert(CGSizeEqualToSize(_thumbSize, CGSizeZero) == false);
if (self.decelerating == YES) // Stop scroll view movement
{
[self setContentOffset:self.contentOffset animated:NO];
}
lastContentOffset = CGPointMake(CGFLOAT_MIN, CGFLOAT_MIN);
[self requeueAllThumbCells]; // Start off fresh
_thumbCount = 0; // Reset the thumb count to zero
NSUInteger thumbCount = [delegate numberOfThumbsInThumbsView:self];
[self updateContentSize:thumbCount]; _thumbCount = thumbCount;
if (thumbCount > 0) // Have some thumbs
{
NSInteger boundsHeight = self.bounds.size.height;
NSInteger maxY = (self.contentSize.height - boundsHeight);
NSInteger minY = 0; maxY--; if (maxY < minY) maxY = minY; // Limits
NSInteger offsetY = newContentOffset.y; // Requested content offset Y
if (offsetY < minY) offsetY = minY; else if (offsetY > maxY) offsetY = maxY;
newContentOffset.y = offsetY; newContentOffset.x = 0.0f; // Validated
}
else // Zero (0) thumbs
{
newContentOffset = CGPointZero;
}
newContentOffset.y -= self.contentInset.top; // Content inset adjust
if (CGPointEqualToPoint(self.contentOffset, newContentOffset) == false)
[self setContentOffset:newContentOffset animated:NO];
else
[self scrollViewDidScroll:self];
[self flashScrollIndicators];
}
- (void)refreshThumbWithIndex:(NSInteger)index
{
for (ReaderThumbView *tvCell in thumbCellsVisible) // Enumerate visible cells
{
if (tvCell.tag == index) // Found a visible thumb cell with the index value
{
if ([delegate respondsToSelector:@selector(thumbsView:refreshThumbCell:forIndex:)])
{
[delegate thumbsView:self refreshThumbCell:tvCell forIndex:index]; // Refresh
}
break;
}
}
}
- (void)refreshVisibleThumbs
{
for (ReaderThumbView *tvCell in thumbCellsVisible) // Enumerate visible cells
{
if ([delegate respondsToSelector:@selector(thumbsView:refreshThumbCell:forIndex:)])
{
[delegate thumbsView:self refreshThumbCell:tvCell forIndex:tvCell.tag]; // Refresh
}
}
}
- (CGPoint)insetContentOffset
{
CGPoint insetContentOffset = self.contentOffset; // Offset
insetContentOffset.y += self.contentInset.top; // Inset adjust
return insetContentOffset; // Adjusted content offset
}
#pragma mark - UIGestureRecognizer action methods
- (void)handleTapGesture:(UITapGestureRecognizer *)recognizer
{
if (recognizer.state == UIGestureRecognizerStateRecognized) // Handle the tap
{
CGPoint point = [recognizer locationInView:recognizer.view]; // Tap location
ReaderThumbView *tvCell = [self thumbCellContainingPoint:point]; // Look for cell
if (tvCell != nil) [delegate thumbsView:self didSelectThumbWithIndex:tvCell.tag];
}
}
- (void)handlePressGesture:(UILongPressGestureRecognizer *)recognizer
{
if (recognizer.state == UIGestureRecognizerStateBegan) // Handle the press
{
if ([delegate respondsToSelector:@selector(thumbsView:didPressThumbWithIndex:)])
{
CGPoint point = [recognizer locationInView:recognizer.view]; // Press location
ReaderThumbView *tvCell = [self thumbCellContainingPoint:point]; // Look for cell
if (tvCell != nil) [delegate thumbsView:self didPressThumbWithIndex:tvCell.tag];
}
}
}
#pragma mark - UIScrollViewDelegate methods
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
if ((canUpdate == YES) && (_thumbCount > 0)) // Check flag and thumb count
{
if (CGPointEqualToPoint(scrollView.contentOffset, lastContentOffset) == false)
{
lastContentOffset = scrollView.contentOffset; // Work around a 'feature'
CGRect visibleBounds = self.bounds; // Visible bounds in the scroll view
NSMutableArray *requeueCells = [NSMutableArray array]; // Requeue cell list
NSMutableIndexSet *visibleCellSet = [NSMutableIndexSet indexSet]; // Visible set
for (ReaderThumbView *tvCell in thumbCellsVisible) // Enumerate visible cells
{
if (CGRectIntersectsRect(tvCell.frame, visibleBounds) == true)
[visibleCellSet addIndex:tvCell.tag];
else
[requeueCells addObject:tvCell];
}
for (ReaderThumbView *tvCell in requeueCells) // Enumerate requeue cells
{
[self requeueThumbCell:tvCell]; // Requeue the thumb cell
}
NSMutableIndexSet *visibleIndexSet = [self visibleIndexSetForContentOffset];
[visibleIndexSet enumerateIndexesUsingBlock: // Enumerate visible indexes
^(NSUInteger index, BOOL *stop)
{
if ([visibleCellSet containsIndex:index] == NO) // Index not visible
{
CGRect thumbRect = [self thumbCellFrameForIndex:index]; // Frame
ReaderThumbView *tvCell = [self dequeueThumbCellWithFrame:thumbRect];
[delegate thumbsView:self updateThumbCell:tvCell forIndex:index];
tvCell.tag = index; tvCell.hidden = NO; // Tag and show it
}
}
];
}
}
}
#pragma mark - UIResponder instance methods
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
[super touchesBegan:touches withEvent:event]; // Message superclass
if (touchedCell != nil) { [touchedCell showTouched:NO]; touchedCell = nil; }
if (touches.count == 1) // Show selection on single touch
{
UITouch *touch = [touches anyObject]; // Get touch from set
CGPoint point = [touch locationInView:touch.view]; // Touch location
ReaderThumbView *tvCell = [self thumbCellContainingPoint:point]; // Look for cell
if (tvCell != nil) { touchedCell = tvCell; [touchedCell showTouched:YES]; }
}
}
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event
{
[super touchesCancelled:touches withEvent:event]; // Message superclass
if (touchedCell != nil) { [touchedCell showTouched:NO]; touchedCell = nil; }
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
[super touchesEnded:touches withEvent:event]; // Message superclass
if (touchedCell != nil) { [touchedCell showTouched:NO]; touchedCell = nil; }
}
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
[super touchesMoved:touches withEvent:event]; // Message superclass
}
@end