Menu

[6e755d]: / PlayerPROKit / PPFXBusObject.m  Maximize  Restore  History

Download this file

146 lines (120 with data), 2.9 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
//
// PPFXBusObject.m
// PPMacho
//
// Created by C.W. Betts on 1/8/14.
//
//
#include <PlayerPROCore/PlayerPROCore.h>
#import "PPFXBusObject.h"
#if TARGET_OS_OSX
#import "PPPasteboardHandling.h"
#endif
#define kPPBypass @"PlayerPROKit FXBus ByPass"
#define kPPCopyID @"PlayerPROKit FXBus CopyId"
#define kPPIsActive @"PlayerPROKit FXBus Active"
@interface PPFXBusObject ()
- (instancetype)initWithCoder:(NSCoder *)aDecoder NS_DESIGNATED_INITIALIZER;
@end
@implementation PPFXBusObject
@synthesize theBus;
#if TARGET_OS_OSX
NSString * const kPPKFXBusPasteboardUTI = @"net.sourceforge.playerpro.FXBus";
static NSArray *UTIArray;
static dispatch_once_t initUTIOnceToken;
static const dispatch_block_t initUTIArray = ^{
UTIArray = @[kPPKFXBusPasteboardUTI];
};
+ (NSArray *)readableTypesForPasteboard:(NSPasteboard *)pasteboard
{
dispatch_once(&initUTIOnceToken, initUTIArray);
return UTIArray;
}
- (NSArray *)writableTypesForPasteboard:(NSPasteboard *)pasteboard
{
dispatch_once(&initUTIOnceToken, initUTIArray);
return UTIArray;
}
- (id)pasteboardPropertyListForType:(NSString *)type
{
if ([type isEqualToString:kPPKFXBusPasteboardUTI])
return [NSKeyedArchiver archivedDataWithRootObject:self];
else
return nil;
}
+ (NSPasteboardReadingOptions)readingOptionsForType:(NSString *)type pasteboard:(NSPasteboard *)pasteboard
{
if ([type isEqualToString:kPPKFXBusPasteboardUTI])
return NSPasteboardReadingAsKeyedArchive;
else
return NSPasteboardReadingAsData;
}
#endif
- (instancetype)init
{
return self = [self initWithFXBus:NULL];
}
- (instancetype)initWithFXBus:(FXBus *)set
{
if (self = [super init]) {
if (set) {
theBus = *set;
}
}
return self;
}
- (BOOL)bypass
{
return theBus.ByPass;
}
- (void)setBypass:(BOOL)bypass
{
theBus.ByPass = bypass;
}
- (short)copyID
{
return theBus.copyId;
}
- (void)setCopyID:(short)copyId
{
theBus.copyId = copyId;
}
- (BOOL)isActive
{
return theBus.Active;
}
- (void)setActive:(BOOL)active
{
theBus.Active = active;
}
#pragma mark KVO/KVC helpers
+ (NSSet*)keyPathsForValuesAffectingTheBus
{
return [NSSet setWithObjects:@"bypass", @"copyID", @"active", nil];
}
#pragma mark NSCopying protocol
- (id)copyWithZone:(NSZone *)zone
{
return [[[self class] allocWithZone:zone] initWithFXBus:&theBus];
}
#pragma mark NSCoding protocol
+ (BOOL)supportsSecureCoding
{
return YES;
}
- (instancetype)initWithCoder:(NSCoder *)aDecoder
{
if (self = [super init]) {
theBus.ByPass = [aDecoder decodeBoolForKey:kPPBypass];
theBus.Active = [aDecoder decodeBoolForKey:kPPIsActive];
theBus.copyId = [(NSNumber*)[aDecoder decodeObjectForKey:kPPCopyID] shortValue];
}
return self;
}
- (void)encodeWithCoder:(NSCoder *)aCoder
{
[aCoder encodeBool:theBus.ByPass forKey:kPPBypass];
[aCoder encodeBool:theBus.Active forKey:kPPIsActive];
[aCoder encodeObject:@(theBus.copyId) forKey:kPPCopyID];
}
@end