-
Notifications
You must be signed in to change notification settings - Fork 1
/
MGOLCell.m
executable file
·54 lines (44 loc) · 950 Bytes
/
MGOLCell.m
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
//
// MGOLCell.m
// MyGameOfLife
//
// Created by Eneko Alonso on 1/6/08.
// Copyright 2008 Eneko Alonso. All rights reserved.
//
#import "MGOLCell.h"
@implementation MGOLCell
-(id)init
{
NSLog(@"MGOLCell init");
[super init];
[self setPosition:NSMakePoint(0, 0)];
return self;
}
- (NSPoint)position
{
return position;
}
- (void)setPosition:(NSPoint)newPosition
{
NSLog(@"MGOLCell setPosition");
position = newPosition;
}
- (NSString *)description
{
return [NSString stringWithFormat:@"cell: %0f, %0f\n", position.x, position.y];
}
- (void)encodeWithCoder:(NSCoder *)coder
{
NSLog(@"MGOLCell encodeWithCoder");
[coder encodePoint:position forKey:@"MGOLCellPositionKey"];
}
- (id)initWithCoder:(NSCoder *)coder
{
NSLog(@"MGOLCell initWithCoder");
if (self = [super init])
{
[self setPosition:[coder decodePointForKey:@"MGOLCellPositionKey"]];
}
return self;
}
@end