49 lines
1.0 KiB
Objective-C
49 lines
1.0 KiB
Objective-C
#import "GBColorCell.h"
|
|
|
|
static inline double scale_channel(uint8_t x)
|
|
{
|
|
x &= 0x1f;
|
|
return x / 31.0;
|
|
}
|
|
|
|
@implementation GBColorCell
|
|
{
|
|
NSInteger _integerValue;
|
|
}
|
|
|
|
- (void)setObjectValue:(id)objectValue
|
|
{
|
|
|
|
_integerValue = [objectValue integerValue];
|
|
uint8_t r = _integerValue & 0x1F,
|
|
g = (_integerValue >> 5) & 0x1F,
|
|
b = (_integerValue >> 10) & 0x1F;
|
|
super.objectValue = [[NSAttributedString alloc] initWithString:[NSString stringWithFormat:@"$%04x", (uint16_t)(_integerValue & 0x7FFF)] attributes:@{
|
|
NSForegroundColorAttributeName: r * 3 + g * 4 + b * 2 > 120? [NSColor blackColor] : [NSColor whiteColor]
|
|
}];
|
|
}
|
|
|
|
- (NSInteger)integerValue
|
|
{
|
|
return _integerValue;
|
|
}
|
|
|
|
- (int)intValue
|
|
{
|
|
return (int)_integerValue;
|
|
}
|
|
|
|
|
|
- (NSColor *) backgroundColor
|
|
{
|
|
uint16_t color = self.integerValue;
|
|
return [NSColor colorWithRed:scale_channel(color) green:scale_channel(color >> 5) blue:scale_channel(color >> 10) alpha:1.0];
|
|
}
|
|
|
|
- (BOOL)drawsBackground
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
@end
|