-
Notifications
You must be signed in to change notification settings - Fork 0
/
OffsetAdjuster.cs
497 lines (493 loc) · 26.1 KB
/
OffsetAdjuster.cs
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
using Newtonsoft.Json.Linq;
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.Remoting.Channels;
using System.Text;
using System.Threading.Tasks;
//建立偏移调整类
public class OffsetAdjuster
{
//生成偏移计算调整部分
public JObject OffsetMove(JObject resource,int xadd,int yadd)
{
//判定是否存在偏移
if (resource.ContainsKey("x") && resource.ContainsKey("y"))
{
resource["x"] = (int)resource["x"] + xadd;
resource["y"] = (int)resource["y"] + yadd;
}
else
{
if (!resource.ContainsKey("x"))
{
resource.Property("ah").AddAfterSelf(new JProperty("x", xadd));
}
if (!resource.ContainsKey("y"))
{
resource.Property("x").AddAfterSelf(new JProperty("y", yadd));
}
}
return resource;
}
//生成偏移调整部分
public JObject OffsetAdjust(JObject rss)
{
/*JSON结构化,半完工,20240310放弃
JArray resources = JArray.Parse(rss["resources"].ToString());
foreach (JObject res in resources)
{
if ((bool)res["atlas"])
{
AtlasStruct as= new AtlasStruct((bool)res["atlas"], (int)res["width"], (int)res["height"], res["slot"].ToString(), res["id"].ToString(), res["path"], res["type"]);
}
else
{
}
}
ResourceStruct rs= new ResourceStruct(rss["id"].ToString(), rss["type"].ToString(), rss["parent"].ToString(), rss["res"].ToString(), );
*/
try
{
//卡槽自动判定
if (rss["parent"].ToString() == "UI_SeedPackets")
{
//定义x和y要增加的量
int xadd = 0;
int yadd = 0;
string selected;
ArrayList al = new ArrayList();
Console.WriteLine("请选择对应类型的卡槽结构类型以进行自定义统一计算(回车代表不进行计算)\n1.卡槽世界背景\n2.植物\n3.冷却\n4.选择框\n5.右下角标\n6.下框点线\n7.能量闪电框\n8.金银铜等级牌\n9.植物锁\n10.禁植物图标\n11.家族圆形背景\n12.家族图标\n13.未来瓷砖\n14.上框点线\n15.商店种子包");
selected = Console.ReadLine();
if (selected == "") { }
else
{
Console.WriteLine("请输入x相对原来偏移量:");
xadd = int.Parse(Console.ReadLine());
Console.WriteLine("请输入y相对原来偏移量:");
yadd = int.Parse(Console.ReadLine());
//读取resources作为JArray
JArray resources = JArray.Parse(rss["resources"].ToString());
//遍历获取各个位图信息
foreach (JObject resource in resources)
{
if (resource.ContainsKey("atlas")) { }
else
{
if (int.Parse((string)resource["aw"]) == 238 && selected == "1" && resource["id"].ToString() != "IMAGE_UI_STOREMULTI_SEEDPACKETICON" && !resource["id"].ToString().Contains("IMAGE_UI_PACKETS_TOOLS_PROJECTILE_BOWLINGBULB"))
{
//判定是否存在偏移
if (resource.ContainsKey("x"))
{
resource["x"] = (int)resource["x"] + xadd;
}
else
{
if (!resource.ContainsKey("x"))
{
resource.Property("ah").AddAfterSelf(new JProperty("x", xadd));
}
}
//20240323修改修复y无法计算问题
if (int.Parse((string)resource["ah"]) == 150 && selected == "1")
{
//判定是否存在偏移
if (resource.ContainsKey("y"))
{
resource["y"] = (int)resource["y"] + yadd;
}
else
{
if (!resource.ContainsKey("y"))
{
resource.Property("x").AddAfterSelf(new JProperty("y", yadd));
}
}
}
else if (int.Parse((string)resource["ah"]) == 151 && selected == "1")
{
//判定是否存在偏移
if (resource.ContainsKey("y"))
{
resource["y"] = (int)resource["y"] + yadd;
}
else
{
if (!resource.ContainsKey("y"))
{
resource.Property("x").AddAfterSelf(new JProperty("y", yadd));
}
}
}
else { }
}
else if (int.Parse((string)resource["aw"]) == 239 && selected == "1" && resource["id"].ToString() != "IMAGE_UI_STOREMULTI_SEEDPACKETICON" && !resource["id"].ToString().Contains("IMAGE_UI_PACKETS_TOOLS_PROJECTILE_BOWLINGBULB"))
{
//判定是否存在偏移
if (resource.ContainsKey("x"))
{
resource["x"] = (int)resource["x"] + xadd;
}
else
{
if (!resource.ContainsKey("x"))
{
resource.Property("ah").AddAfterSelf(new JProperty("x", xadd));
}
}
//20240323修改修复y无法计算问题
if (int.Parse((string)resource["ah"]) == 150 && selected == "1")
{
//判定是否存在偏移
if (resource.ContainsKey("y"))
{
resource["y"] = (int)resource["y"] + yadd;
}
else
{
if (!resource.ContainsKey("y"))
{
resource.Property("x").AddAfterSelf(new JProperty("y", yadd));
}
}
}
else if (int.Parse((string)resource["ah"]) == 151 && selected == "1")
{
//判定是否存在偏移
if (resource.ContainsKey("y"))
{
resource["y"] = (int)resource["y"] + yadd;
}
else
{
if (!resource.ContainsKey("y"))
{
resource.Property("x").AddAfterSelf(new JProperty("y", yadd));
}
}
}
else { }
}
else if (resource["id"].ToString() == "IMAGE_UI_PACKETS_COOLDOWN" && selected == "3")
{
//判定是否存在偏移
if (resource.ContainsKey("x"))
{
resource["x"] = (int)resource["x"] + xadd;
}
if (resource.ContainsKey("y"))
{
resource["y"] = (int)resource["y"] + yadd;
}
if (!resource.ContainsKey("x"))
{
resource.Property("ah").AddAfterSelf(new JProperty("x", xadd));
}
if (!resource.ContainsKey("y"))
{
resource.Property("x").AddAfterSelf(new JProperty("y", yadd));
}
}
else if (resource["id"].ToString() == "IMAGE_UI_PACKETS_SELECT" && selected == "4")
{
//判定是否存在偏移
if (resource.ContainsKey("x"))
{
resource["x"] = (int)resource["x"] + xadd;
}
if (resource.ContainsKey("y"))
{
resource["y"] = (int)resource["y"] + yadd;
}
if (!resource.ContainsKey("x"))
{
resource.Property("ah").AddAfterSelf(new JProperty("x", xadd));
}
if (!resource.ContainsKey("y"))
{
resource.Property("x").AddAfterSelf(new JProperty("y", yadd));
}
}
else if (resource["id"].ToString().Contains("_PRICE_TAB") && selected == "5")
{
//判定是否存在偏移
if (resource.ContainsKey("x"))
{
resource["x"] = (int)resource["x"] + xadd;
}
if (resource.ContainsKey("y"))
{
resource["y"] = (int)resource["y"] + yadd;
}
if (!resource.ContainsKey("x"))
{
resource.Property("ah").AddAfterSelf(new JProperty("x", xadd));
}
if (!resource.ContainsKey("y"))
{
resource.Property("x").AddAfterSelf(new JProperty("y", yadd));
}
}
else if (resource["id"].ToString().Contains("_DOTS_") && selected == "6")
{
//判定是否存在偏移
if (resource.ContainsKey("x"))
{
resource["x"] = (int)resource["x"] + xadd;
}
if (resource.ContainsKey("y"))
{
resource["y"] = (int)resource["y"] + yadd;
}
if (!resource.ContainsKey("x"))
{
resource.Property("ah").AddAfterSelf(new JProperty("x", xadd));
}
if (!resource.ContainsKey("y"))
{
resource.Property("x").AddAfterSelf(new JProperty("y", yadd));
}
}
else if (resource["id"].ToString().Contains("_ICON") && selected == "7")
{
//判定是否存在偏移
if (resource.ContainsKey("x"))
{
resource["x"] = (int)resource["x"] + xadd;
}
if (resource.ContainsKey("y"))
{
resource["y"] = (int)resource["y"] + yadd;
}
if (!resource.ContainsKey("x"))
{
resource.Property("ah").AddAfterSelf(new JProperty("x", xadd));
}
if (!resource.ContainsKey("y"))
{
resource.Property("x").AddAfterSelf(new JProperty("y", yadd));
}
}
else if (resource["id"].ToString().Contains("_LEVEL_TAB_") && selected == "8")
{
//判定是否存在偏移
if (resource.ContainsKey("x"))
{
resource["x"] = (int)resource["x"] + xadd;
}
if (resource.ContainsKey("y"))
{
resource["y"] = (int)resource["y"] + yadd;
}
if (!resource.ContainsKey("x"))
{
resource.Property("ah").AddAfterSelf(new JProperty("x", xadd));
}
if (!resource.ContainsKey("y"))
{
resource.Property("x").AddAfterSelf(new JProperty("y", yadd));
}
}
else if (resource["id"].ToString().Contains("_LOCK_SMALL") && selected == "9")
{
//判定是否存在偏移
if (resource.ContainsKey("x"))
{
resource["x"] = (int)resource["x"] + xadd;
}
if (resource.ContainsKey("y"))
{
resource["y"] = (int)resource["y"] + yadd;
}
if (!resource.ContainsKey("x"))
{
resource.Property("ah").AddAfterSelf(new JProperty("x", xadd));
}
if (!resource.ContainsKey("y"))
{
resource.Property("x").AddAfterSelf(new JProperty("y", yadd));
}
}
else if (resource["id"].ToString().Contains("_LOCKED") && selected == "10")
{
//判定是否存在偏移
if (resource.ContainsKey("x"))
{
resource["x"] = (int)resource["x"] + xadd;
}
if (resource.ContainsKey("y"))
{
resource["y"] = (int)resource["y"] + yadd;
}
if (!resource.ContainsKey("x"))
{
resource.Property("ah").AddAfterSelf(new JProperty("x", xadd));
}
if (!resource.ContainsKey("y"))
{
resource.Property("x").AddAfterSelf(new JProperty("y", yadd));
}
}
else if (resource["id"].ToString().Contains("MINTFAM_BANNER") && selected == "11")
{
//判定是否存在偏移
if (resource.ContainsKey("x"))
{
resource["x"] = (int)resource["x"] + xadd;
}
if (resource.ContainsKey("y"))
{
resource["y"] = (int)resource["y"] + yadd;
}
if (!resource.ContainsKey("x"))
{
resource.Property("ah").AddAfterSelf(new JProperty("x", xadd));
}
if (!resource.ContainsKey("y"))
{
resource.Property("x").AddAfterSelf(new JProperty("y", yadd));
}
}
else if (resource["id"].ToString().Contains("_MINTFAM_") && selected == "12")
{
//判定是否存在偏移
if (resource.ContainsKey("x"))
{
resource["x"] = (int)resource["x"] + xadd;
}
if (resource.ContainsKey("y"))
{
resource["y"] = (int)resource["y"] + yadd;
}
if (!resource.ContainsKey("x"))
{
resource.Property("ah").AddAfterSelf(new JProperty("x", xadd));
}
if (!resource.ContainsKey("y"))
{
resource.Property("x").AddAfterSelf(new JProperty("y", yadd));
}
}
else if (resource["id"].ToString().Contains("_POWERTILE_") && selected == "13")
{
//判定是否存在偏移
if (resource.ContainsKey("x"))
{
resource["x"] = (int)resource["x"] + xadd;
}
if (resource.ContainsKey("y"))
{
resource["y"] = (int)resource["y"] + yadd;
}
if (!resource.ContainsKey("x"))
{
resource.Property("ah").AddAfterSelf(new JProperty("x", xadd));
}
if (!resource.ContainsKey("y"))
{
resource.Property("x").AddAfterSelf(new JProperty("y", yadd));
}
}
else if (resource["id"].ToString() == "IMAGE_UI_PACKETS_TOOLS_TOP" && selected == "14")
{
//判定是否存在偏移
if (resource.ContainsKey("x"))
{
resource["x"] = (int)resource["x"] + xadd;
}
if (resource.ContainsKey("y"))
{
resource["y"] = (int)resource["y"] + yadd;
}
if (!resource.ContainsKey("x"))
{
resource.Property("ah").AddAfterSelf(new JProperty("x", xadd));
}
if (!resource.ContainsKey("y"))
{
resource.Property("x").AddAfterSelf(new JProperty("y", yadd));
}
}
else if (resource["id"].ToString().Contains("IMAGE_UI_STOREMULTI_") && selected == "15")
{
//判定是否存在偏移
if (resource.ContainsKey("x"))
{
resource["x"] = (int)resource["x"] + xadd;
}
if (resource.ContainsKey("y"))
{
resource["y"] = (int)resource["y"] + yadd;
}
if (!resource.ContainsKey("x"))
{
resource.Property("ah").AddAfterSelf(new JProperty("x", xadd));
}
if (!resource.ContainsKey("y"))
{
resource.Property("x").AddAfterSelf(new JProperty("y", yadd));
}
}
else if (selected == "2")
{
if (int.Parse((string)resource["aw"]) == 238 && !resource["id"].ToString().Contains("IMAGE_UI_PACKETS_TOOLS_PROJECTILE_BOWLINGBULB")) { }
else if (int.Parse((string)resource["aw"]) == 239 && !resource["id"].ToString().Contains("IMAGE_UI_PACKETS_TOOLS_PROJECTILE_BOWLINGBULB")) { }
else if (int.Parse((string)resource["ah"]) == 150) { }
else if (int.Parse((string)resource["ah"]) == 151) { }
else if (resource["id"].ToString() == "IMAGE_UI_PACKETS_COOLDOWN") { }
else if (resource["id"].ToString() == "IMAGE_UI_PACKETS_SELECT") { }
else if (resource["id"].ToString().Contains("_PRICE_TAB")) { }
else if (resource["id"].ToString().Contains("_DOTS_")) { }
else if (resource["id"].ToString().Contains("_ICON")) { }
else if (resource["id"].ToString().Contains("_LEVEL_TAB_")) { }
else if (resource["id"].ToString().Contains("_LOCK_SMALL")) { }
else if (resource["id"].ToString().Contains("_LOCKED")) { }
else if (resource["id"].ToString().Contains("MINTFAM_BANNER")) { }
else if (resource["id"].ToString().Contains("_MINTFAM_")) { }
else if (resource["id"].ToString().Contains("_POWERTILE_")) { }
else if (resource["id"].ToString() == "IMAGE_UI_PACKETS_TOOLS_TOP") { }
else if (resource["id"].ToString().Contains("IMAGE_UI_STOREMULTI_")) { }
else
{
//判定是否存在偏移
if (resource.ContainsKey("x"))
{
resource["x"] = (int)resource["x"] + xadd;
}
if (resource.ContainsKey("y"))
{
resource["y"] = (int)resource["y"] + yadd;
}
if (!resource.ContainsKey("x"))
{
resource.Property("ah").AddAfterSelf(new JProperty("x", xadd));
}
if (!resource.ContainsKey("y"))
{
resource.Property("x").AddAfterSelf(new JProperty("y", yadd));
}
}
}
else { }
}
}
Console.WriteLine("本次计算完成");
rss["resources"] = resources;
OffsetAdjust(rss);
}
}
else { }
}
catch
{
Console.WriteLine("OffsetAdjust ERROR!");
//提示按任意键继续
Console.WriteLine("Press any key to continue...");
//输入任意键退出
Console.ReadLine();
}
return rss;
}
}