-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCorModScanner.m
executable file
·268 lines (150 loc) · 8.67 KB
/
CorModScanner.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
262
263
264
265
266
267
268
//
// CorModScanner.m
// CorTool
//
// Created by Frigid on 3/8/10.
// Copyright 2010 OmniGreat Software Co.. All rights reserved.
//
#import "CorModScanner.h"
@implementation CorModScanner
- (void)setCCApp:(NSBundle *) newCCApp
{
CCApp = newCCApp;
}
- (NSBundle *)CCApp
{
return CCApp;
}
- (NSArray *)getModArray
{
NSFileManager *FileManager = [[NSFileManager defaultManager] autorelease];
if (![FileManager fileExistsAtPath: [[self.CCApp resourcePath] stringByAppendingString: @"/Disabled_Mods/"]])
[FileManager createDirectoryAtPath: [[self.CCApp resourcePath] stringByAppendingString: @"/Disabled_Mods/"] attributes: nil];
NSArray *EnabledMods = [self scanInFolder: [[self.CCApp resourcePath] stringByAppendingString: @"/"] withStatus: YES];
NSArray *DisabledMods = [self scanInFolder: [[self.CCApp resourcePath] stringByAppendingString: @"/Disabled_Mods/"] withStatus: NO];
NSArray *Mods = [EnabledMods arrayByAddingObjectsFromArray: DisabledMods];
return Mods;
}
- (NSArray *)scanInFolder: (NSString *)Path withStatus: (BOOL)Enabled
{
NSArray *BuiltInMods = [NSArray arrayWithObjects: @"Base.rte", @"Browncoats.rte", @"Coalition.rte", @"Dummy.rte", @"Missions.rte", @"Ronin.rte",
@"Tutorial.rte", @"Undead.rte", @"Whitebots.rte", @"Wildlife.rte", nil];
NSMutableArray *Mods = [[[NSMutableArray alloc] init] autorelease];
NSFileManager *FileManager = [[NSFileManager defaultManager] autorelease];
if (![FileManager fileExistsAtPath: Path isDirectory: NULL])
[FileManager createDirectoryAtPath: Path attributes: nil];
NSArray *ModsAtPath = [FileManager directoryContentsAtPath: Path];
for (int i = 0; i < [ModsAtPath count]; i++)
{
NSString *ModFolder = [ModsAtPath objectAtIndex: i];
BOOL IsBuiltIn = FALSE;
for (int v = 0; v < [BuiltInMods count]; v++)
{
NSString *BuiltInMod = [BuiltInMods objectAtIndex: v];
if ([ModFolder isEqualToString: BuiltInMod])
IsBuiltIn = TRUE;
}
if ([[ModFolder pathExtension] isEqualToString: @"rte"] && !IsBuiltIn)
{
NSString *ModName = [[[NSString alloc] init] autorelease];
NSImage *ModIcon = nil;
ModName = [self valueForEntry: @"ModuleName" inIniFile: [Path stringByAppendingString: [ModFolder stringByAppendingString: @"/index.ini"]]];
if (ModName == nil)
ModName = [[ModFolder componentsSeparatedByString: [@"." stringByAppendingString: [ModFolder pathExtension]]] objectAtIndex: 0];
/////// Boilerplate code!
NSString *ModIconPath = [[[NSString alloc] init] autorelease];
NSString *FileContents = [NSString stringWithContentsOfFile: [Path stringByAppendingString: [ModFolder stringByAppendingString: @"/index.ini"]] usedEncoding: nil error: NULL];
unsigned Length = [FileContents length];
unsigned LineStart = 0, LineEnd = 0, ContentsEnd = 0;
NSMutableArray *FileLines = [[[NSMutableArray alloc] init] autorelease];
NSRange CurrentRange;
while (LineEnd < Length)
{
[FileContents getLineStart: &LineStart end: &LineEnd
contentsEnd: &ContentsEnd forRange:NSMakeRange(LineEnd, 0)];
CurrentRange = NSMakeRange(LineStart, ContentsEnd - LineStart);
[FileLines addObject:[FileContents substringWithRange:CurrentRange]];
}
BOOL HasEntry = NO;
BOOL IconLineFound = NO;
//for (NSString *Line in FileLines)
for (int i = 0; i < [FileLines count]; i++)
{
NSString *Line = [FileLines objectAtIndex: i];
NSString *FilteredLine = [[Line componentsSeparatedByString: @"//"] objectAtIndex:0];
if (![FilteredLine isEqualToString: @""] && IconLineFound)
{
ModIconPath = [[[FilteredLine componentsSeparatedByString:@"="] objectAtIndex: 1] stringByTrimmingCharactersInSet: [NSCharacterSet whitespaceCharacterSet]];
break;
}
if([[[[FilteredLine componentsSeparatedByString: @"="] objectAtIndex:0] stringByTrimmingCharactersInSet: [NSCharacterSet whitespaceCharacterSet]] isEqualToString: @"IconFile"])
{
HasEntry = YES;
IconLineFound = YES;
}
}
if (!HasEntry)
ModIconPath = nil;
/////// End boilerplate.
if (ModIconPath != nil && [FileManager fileExistsAtPath: [Path stringByAppendingString: [@"/" stringByAppendingString: ModIconPath]] isDirectory: NULL])
ModIcon = [self makeTransparent: [[[NSImage alloc] initByReferencingFile: [Path stringByAppendingString: [@"/" stringByAppendingString: ModIconPath]]] autorelease]];
else
ModIcon = [[[NSImage alloc] initByReferencingFile: [[NSBundle mainBundle] pathForResource: @"noicon" ofType: @"png"]] autorelease];
NSMutableDictionary *ModEntry = [[[NSMutableDictionary alloc] init] autorelease];
[ModEntry setObject: [NSNumber numberWithBool: Enabled] forKey: @"modIsEnabled"];
[ModEntry setObject: ModIcon forKey: @"modIcon"];
[ModEntry setObject: ModName forKey: @"modName"];
[ModEntry setObject: ModFolder forKey: @"modFolder"];
[Mods addObject: ModEntry];
}
}
return Mods;
}
- (NSString *)valueForEntry: (NSString *)Entry inIniFile: (NSString *)File
{
NSString *Value = [[[NSString alloc] init] autorelease];
NSString *FileContents = [NSString stringWithContentsOfFile: File usedEncoding: nil error: NULL];
unsigned Length = [FileContents length];
unsigned LineStart = 0, LineEnd = 0, ContentsEnd = 0;
NSMutableArray *FileLines = [[[NSMutableArray alloc] init] autorelease];
NSRange CurrentRange;
while (LineEnd < Length) {
[FileContents getLineStart: &LineStart end: &LineEnd
contentsEnd: &ContentsEnd forRange:NSMakeRange(LineEnd, 0)];
CurrentRange = NSMakeRange(LineStart, ContentsEnd - LineStart);
[FileLines addObject:[FileContents substringWithRange:CurrentRange]];
}
BOOL HasEntry = NO;
for (int i = 0; i < [FileLines count]; i++)
{
NSString *Line = [FileLines objectAtIndex: i];
NSString *FilteredLine = [[Line componentsSeparatedByString: @"//"] objectAtIndex:0];
if ([[[[FilteredLine componentsSeparatedByString: @"="] objectAtIndex:0] stringByTrimmingCharactersInSet: [NSCharacterSet whitespaceCharacterSet]] isEqualToString: Entry])
{
HasEntry = YES;
Value = [[[FilteredLine componentsSeparatedByString:@"="] objectAtIndex: 1] stringByTrimmingCharactersInSet: [NSCharacterSet whitespaceCharacterSet]];
}
}
if (!HasEntry)
Value = nil;
return Value;
}
- (NSImage *)makeTransparent: (NSImage *)Source
{
NSBitmapImageRep *Bitmap = [[[NSBitmapImageRep alloc] initWithData: [Source TIFFRepresentation]] autorelease];
NSSize ImageSize = [Bitmap size];
int Samples = ImageSize.height * [Bitmap bytesPerRow];
unsigned char *BitmapData = [Bitmap bitmapData];
int SamplesPerPixel = [Bitmap samplesPerPixel];
int StartSample = [Bitmap bitmapFormat] & NSAlphaFirstBitmapFormat ? 1 : 0;
for (int i = StartSample; i < Samples; i = i + SamplesPerPixel) {
if (BitmapData[i] == 255.0 && BitmapData[i + 1] == 0 && BitmapData[i + 2] == 255.0)
{
BitmapData[i + 1] = 255.0;
}
}
NSImage *NewImage = [[[NSImage alloc] initWithSize: [Bitmap size]] autorelease];
[NewImage addRepresentation: Bitmap];
return NewImage;
}
@end