forked from rileytestut/N64iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRecentController.m
261 lines (203 loc) · 5.33 KB
/
RecentController.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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
#import "SOApplication.h"
@implementation RecentController
- (void)dealloc {
[ super dealloc ];
}
- (void)viewDidLoad {
[super viewDidLoad];
self.navigationItem.hidesBackButton = YES;
}
-(void)awakeFromNib
{
self.navigationItem.hidesBackButton = YES;
// always put any sort of initializations in here. They will only be called once.
adNotReceived = 0;
[self getRecent];
}
- (void)reload
{
[tableview reloadData];
}
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
self.navigationItem.hidesBackButton = YES;
}
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
}
- (void)viewWillDisappear:(BOOL)animated {
}
- (void)viewDidDisappear:(BOOL)animated {
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
}
- (NSString*)getDocumentsDirectory
{
#ifdef APPSTORE_BUILD
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex: 0];
return documentsDirectory;
#else
return @"/Applications/n64ios.app";
#endif
}
- (void)addRecent:(NSString*)thisPath {
if(thisPath)
{
[recentArray addObject:[NSDictionary dictionaryWithObjectsAndKeys:
thisPath, @"path",
nil]];
if([recentArray count] > 7)
{
[recentArray removeObjectAtIndex:1];
}
[tableview reloadData];
}
else
{
return;
}
NSString *path=[[self getDocumentsDirectory] stringByAppendingPathComponent:@"recent.bin"];
NSData *plistData;
NSString *error;
plistData = [NSPropertyListSerialization dataFromPropertyList:recentArray
format:NSPropertyListBinaryFormat_v1_0
errorDescription:&error];
if(plistData)
{
NSLog(@"No error creating plist data.");
[plistData writeToFile:path atomically:NO];
}
else
{
NSLog(error);
[error release];
}
}
- (void)getRecent {
NSString *path=[[self getDocumentsDirectory] stringByAppendingPathComponent:@"recent.bin"];
NSData *plistData;
id plist;
NSString *error;
NSPropertyListFormat format;
plistData = [NSData dataWithContentsOfFile:path];
plist = [NSPropertyListSerialization propertyListFromData:plistData
mutabilityOption:NSPropertyListImmutable
format:&format
errorDescription:&error];
if(!plist)
{
NSLog(error);
[error release];
recentArray = [[NSMutableArray alloc] init];
}
else
{
recentArray = [[NSMutableArray alloc] initWithArray:plist];
}
}
// *** Tablesource stuffs.
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
// Number of sections is the number of region dictionaries
#ifdef WITH_ADS
if(recentArray==nil) {
return 1;
} else {
return 2;
}
#else
return 1;
#endif
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
if(recentArray==nil) {
return 1;
}
#ifdef WITH_ADS
if(section < 1)
{
return 1;
}
#endif
return [recentArray count];
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
#ifdef WITH_ADS
if(indexPath.section < 1) {
return 55.0; // this is the height of the ad
}
#endif
return 44.0; // this is the generic cell height
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell;
#ifdef WITH_ADS
if(indexPath.section < 1)
{
cell = [tableview dequeueReusableCellWithIdentifier:@"adCell"];
/*
if(cell != nil)
{
[cell release];
cell = nil;
}
*/
if(cell == nil)
{
cell = [[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"adCell"];
// Request an ad for this table view cell
altAds = [SOApp.delegate getAdViewWithIndex:2];
[cell.contentView addSubview:altAds];
}
else
{
altAds = [SOApp.delegate getAdViewWithIndex:2];
[cell.contentView addSubview:altAds];
}
cell.text = @"";
}
else
#endif
{
cell = [tableview dequeueReusableCellWithIdentifier:@"cell"];
if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"cell"] autorelease];
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
label.numberOfLines = 1;
label.adjustsFontSizeToFitWidth = YES;
label.minimumFontSize = 9.0f;
label.lineBreakMode = UILineBreakModeMiddleTruncation;
label.tag = 1;
[cell.contentView addSubview:label];
[label release];
}
cell.accessoryType = UITableViewCellAccessoryNone;
if([[[recentArray objectAtIndex:indexPath.row] objectForKey:@"path"] compare:@""] != NSOrderedSame)
{
UILabel* tempLabel = (UILabel *)[cell viewWithTag:1];
tempLabel.text = [[[recentArray objectAtIndex:indexPath.row] objectForKey:@"path"] lastPathComponent];
}
}
// Set up the cell
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
#ifdef WITH_ADS
if( indexPath.section < 1 )
{
return;
}
#endif
[tableview deselectRowAtIndexPath:indexPath animated:YES];
char *cListingsPath;
if([[[recentArray objectAtIndex:indexPath.row] objectForKey:@"path"] compare:@""] != NSOrderedSame )
{
cListingsPath = (char*)[[[recentArray objectAtIndex:indexPath.row] objectForKey:@"path"] UTF8String];
}
[SOApp.nowPlayingView startEmu:cListingsPath];
[SOApp.delegate switchToNowPlaying];
//[tabBar didMoveToWindowNowPlaying];
}
@end