mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-12-27 04:29:37 +00:00
56 lines
890 B
Objective-C
56 lines
890 B
Objective-C
#import "ElementUWRD.h"
|
|
|
|
#define SIZE_ON_DISK (2)
|
|
|
|
@implementation ElementUWRD
|
|
|
|
- (id)copyWithZone:(NSZone *)zone
|
|
{
|
|
ElementUWRD *element = [super copyWithZone:zone];
|
|
[element setValue:value];
|
|
return element;
|
|
}
|
|
|
|
- (void)readDataFrom:(TemplateStream *)stream
|
|
{
|
|
UInt16 tmp;
|
|
[stream readAmount:SIZE_ON_DISK toBuffer:&tmp];
|
|
value = CFSwapInt16BigToHost(tmp);
|
|
}
|
|
|
|
- (unsigned int)sizeOnDisk
|
|
{
|
|
return SIZE_ON_DISK;
|
|
}
|
|
|
|
- (void)writeDataTo:(TemplateStream *)stream
|
|
{
|
|
UInt16 tmp = CFSwapInt16HostToBig(value);
|
|
[stream writeAmount:SIZE_ON_DISK fromBuffer:&tmp];
|
|
}
|
|
|
|
- (void)setValue:(UInt16)v
|
|
{
|
|
value = v;
|
|
}
|
|
|
|
- (UInt16)value
|
|
{
|
|
return value;
|
|
}
|
|
|
|
- (NSString*)stringValue
|
|
{
|
|
return [NSString stringWithFormat:@"%hu", value];
|
|
}
|
|
|
|
- (void)setStringValue:(NSString *)str
|
|
{
|
|
char cstr[256];
|
|
char *endPtr = cstr + 255;
|
|
strncpy(cstr, [str cString], 255);
|
|
value = strtoul(cstr, &endPtr, 10);
|
|
}
|
|
|
|
@end
|