219 lines
6.0 KiB
Plaintext
219 lines
6.0 KiB
Plaintext
// This file Copyright © 2006-2022 Transmission authors and contributors.
|
|
// It may be used under the MIT (SPDX: MIT) license.
|
|
// License text can be found in the licenses/ folder.
|
|
|
|
#include <libtransmission/transmission.h>
|
|
#include <libtransmission/utils.h>
|
|
|
|
#import "PiecesView.h"
|
|
#import "Torrent.h"
|
|
#import "InfoWindowController.h"
|
|
|
|
#define MAX_ACROSS 18
|
|
#define BETWEEN 1.0
|
|
|
|
#define HIGH_PEERS 30
|
|
|
|
enum
|
|
{
|
|
PIECE_NONE,
|
|
PIECE_SOME,
|
|
PIECE_HIGH_PEERS,
|
|
PIECE_FINISHED,
|
|
PIECE_FLASHING
|
|
};
|
|
|
|
@interface PiecesView ()
|
|
|
|
@property(nonatomic) int8_t* fPieces;
|
|
|
|
@property(nonatomic) NSColor* fGreenAvailabilityColor;
|
|
@property(nonatomic) NSColor* fBluePieceColor;
|
|
|
|
@property(nonatomic) NSInteger fNumPieces;
|
|
@property(nonatomic) NSInteger fAcross;
|
|
@property(nonatomic) NSInteger fWidth;
|
|
@property(nonatomic) NSInteger fExtraBorder;
|
|
|
|
@end
|
|
|
|
@implementation PiecesView
|
|
|
|
- (void)awakeFromNib
|
|
{
|
|
//store box colors
|
|
self.fGreenAvailabilityColor = [NSColor colorWithCalibratedRed:0.0 green:1.0 blue:0.4 alpha:1.0];
|
|
self.fBluePieceColor = [NSColor colorWithCalibratedRed:0.0 green:0.4 blue:0.8 alpha:1.0];
|
|
|
|
//actually draw the box
|
|
self.torrent = nil;
|
|
}
|
|
|
|
- (void)dealloc
|
|
{
|
|
tr_free(_fPieces);
|
|
}
|
|
|
|
- (void)setTorrent:(Torrent*)torrent
|
|
{
|
|
[self clearView];
|
|
|
|
_torrent = (torrent && !torrent.magnet) ? torrent : nil;
|
|
if (_torrent)
|
|
{
|
|
//determine relevant values
|
|
_fNumPieces = MIN(_torrent.pieceCount, MAX_ACROSS * MAX_ACROSS);
|
|
_fAcross = ceil(sqrt(_fNumPieces));
|
|
|
|
CGFloat const width = self.bounds.size.width;
|
|
_fWidth = (width - (_fAcross + 1) * BETWEEN) / _fAcross;
|
|
_fExtraBorder = (width - ((_fWidth + BETWEEN) * _fAcross + BETWEEN)) / 2;
|
|
}
|
|
|
|
NSImage* back = [[NSImage alloc] initWithSize:self.bounds.size];
|
|
[back lockFocus];
|
|
|
|
NSGradient* gradient = [[NSGradient alloc] initWithStartingColor:[NSColor colorWithCalibratedWhite:0.0 alpha:0.4]
|
|
endingColor:[NSColor colorWithCalibratedWhite:0.2 alpha:0.4]];
|
|
[gradient drawInRect:self.bounds angle:90.0];
|
|
[back unlockFocus];
|
|
|
|
self.image = back;
|
|
|
|
[self setNeedsDisplay];
|
|
}
|
|
|
|
- (void)clearView
|
|
{
|
|
tr_free(self.fPieces);
|
|
self.fPieces = NULL;
|
|
}
|
|
|
|
- (void)updateView
|
|
{
|
|
if (!self.torrent)
|
|
{
|
|
return;
|
|
}
|
|
|
|
//determine if first time
|
|
BOOL const first = self.fPieces == NULL;
|
|
if (first)
|
|
{
|
|
self.fPieces = (int8_t*)tr_malloc(self.fNumPieces * sizeof(int8_t));
|
|
}
|
|
|
|
int8_t* pieces = NULL;
|
|
float* piecesPercent = NULL;
|
|
|
|
BOOL const showAvailablity = [NSUserDefaults.standardUserDefaults boolForKey:@"PiecesViewShowAvailability"];
|
|
if (showAvailablity)
|
|
{
|
|
pieces = (int8_t*)tr_malloc(self.fNumPieces * sizeof(int8_t));
|
|
[self.torrent getAvailability:pieces size:self.fNumPieces];
|
|
}
|
|
else
|
|
{
|
|
piecesPercent = (float*)tr_malloc(self.fNumPieces * sizeof(float));
|
|
[self.torrent getAmountFinished:piecesPercent size:self.fNumPieces];
|
|
}
|
|
|
|
NSImage* image = self.image;
|
|
|
|
NSRect fillRects[self.fNumPieces];
|
|
NSColor* fillColors[self.fNumPieces];
|
|
|
|
NSInteger usedCount = 0;
|
|
|
|
for (NSInteger index = 0; index < self.fNumPieces; index++)
|
|
{
|
|
NSColor* pieceColor = nil;
|
|
|
|
if (showAvailablity ? pieces[index] == -1 : piecesPercent[index] == 1.0)
|
|
{
|
|
if (first || self.fPieces[index] != PIECE_FINISHED)
|
|
{
|
|
if (!first && self.fPieces[index] != PIECE_FLASHING)
|
|
{
|
|
pieceColor = NSColor.orangeColor;
|
|
self.fPieces[index] = PIECE_FLASHING;
|
|
}
|
|
else
|
|
{
|
|
pieceColor = self.fBluePieceColor;
|
|
self.fPieces[index] = PIECE_FINISHED;
|
|
}
|
|
}
|
|
}
|
|
else if (showAvailablity ? pieces[index] == 0 : piecesPercent[index] == 0.0)
|
|
{
|
|
if (first || self.fPieces[index] != PIECE_NONE)
|
|
{
|
|
pieceColor = NSColor.whiteColor;
|
|
self.fPieces[index] = PIECE_NONE;
|
|
}
|
|
}
|
|
else if (showAvailablity && pieces[index] >= HIGH_PEERS)
|
|
{
|
|
if (first || self.fPieces[index] != PIECE_HIGH_PEERS)
|
|
{
|
|
pieceColor = self.fGreenAvailabilityColor;
|
|
self.fPieces[index] = PIECE_HIGH_PEERS;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
//always redraw "mixed"
|
|
CGFloat percent = showAvailablity ? (CGFloat)pieces[index] / HIGH_PEERS : piecesPercent[index];
|
|
NSColor* fullColor = showAvailablity ? self.fGreenAvailabilityColor : self.fBluePieceColor;
|
|
pieceColor = [NSColor.whiteColor blendedColorWithFraction:percent ofColor:fullColor];
|
|
self.fPieces[index] = PIECE_SOME;
|
|
}
|
|
|
|
if (pieceColor)
|
|
{
|
|
NSInteger const across = index % self.fAcross;
|
|
NSInteger const down = index / self.fAcross;
|
|
fillRects[usedCount] = NSMakeRect(
|
|
across * (self.fWidth + BETWEEN) + BETWEEN + self.fExtraBorder,
|
|
image.size.width - (down + 1) * (self.fWidth + BETWEEN) - self.fExtraBorder,
|
|
self.fWidth,
|
|
self.fWidth);
|
|
fillColors[usedCount] = pieceColor;
|
|
|
|
usedCount++;
|
|
}
|
|
}
|
|
|
|
if (usedCount > 0)
|
|
{
|
|
[image lockFocus];
|
|
NSRectFillListWithColors(fillRects, fillColors, usedCount);
|
|
[image unlockFocus];
|
|
[self setNeedsDisplay];
|
|
}
|
|
|
|
tr_free(pieces);
|
|
tr_free(piecesPercent);
|
|
}
|
|
|
|
- (BOOL)acceptsFirstMouse:(NSEvent*)event
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
- (void)mouseDown:(NSEvent*)event
|
|
{
|
|
if (self.torrent)
|
|
{
|
|
BOOL const availability = ![NSUserDefaults.standardUserDefaults boolForKey:@"PiecesViewShowAvailability"];
|
|
[NSUserDefaults.standardUserDefaults setBool:availability forKey:@"PiecesViewShowAvailability"];
|
|
|
|
[self sendAction:self.action to:self.target];
|
|
}
|
|
|
|
[super mouseDown:event];
|
|
}
|
|
|
|
@end
|