-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.cs
More file actions
759 lines (680 loc) · 28.5 KB
/
main.cs
File metadata and controls
759 lines (680 loc) · 28.5 KB
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
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
namespace BunWulfModsPublic
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Text.RegularExpressions;
using CommandLine;
using Eco.Core.Plugins.Interfaces;
using Eco.Core.Utils;
public class CLIEntryPoint
{
// This only works on my machine >:D
public static readonly string WindowsServerDirectory = Path.Combine(
new string[]
{
"C:\\",
"Program Files (x86)",
"Steam",
"steamapps",
"common",
"Eco",
"Eco_Data",
"Server",
}
);
[Verb("BunWulfEducational")]
public class BunWulfEducationalOpts { }
[Verb("BunWulfStructural")]
public class BunWulfStructuralOpts { }
public static void Main(string[] args)
{
_ = Parser
.Default.ParseArguments<BunWulfEducationalOpts, BunWulfStructuralOpts>(args)
.WithParsed<BunWulfEducationalOpts>(_ =>
BunWulfEducational.Initialize(WindowsServerDirectory)
)
.WithParsed<BunWulfStructuralOpts>(_ => Console.WriteLine("TODO"));
}
}
public class BunWulfEducationalPluginEntrypoint
: IModKitPlugin,
IServerPlugin,
IInitializablePlugin,
IModInit
{
public void Initialize(TimedTask timer) => BunWulfEducational.Initialize();
public override string ToString() => "BunWulfEducational";
public string GetStatus() => "Loaded BunWulfEducational";
public string GetCategory() => "BunWulf";
public static ModRegistration Register() =>
new()
{
ModName = "BunWulfEducational",
ModDescription = "TODO",
ModDisplayName = "BunWulf Educational",
};
}
public static class BunWulfEducational
{
// Tier Extraction then Skill Level Replacement
private static readonly string TierExtractionPattern = @".*Tier\((\d)\).*";
private static readonly string RequiresSkillLevelPattern = @"RequiresSkill.*?(\d)";
private static readonly string RequiresSkillLevelReplacement =
@"RequiresSkill(typeof(LibrarianSkill), $1";
// Skill Extraction then Skill Replacement
private static readonly string SkillExtractionPattern = @"(\w+)LavishResourcesTalent";
private static readonly string SkillReplacement = "Librarian";
// Recipe Replacement
private static readonly string SkillBookRecipePattern = @"(\w+SkillBookRecipe)";
private static readonly string ResearchPaperRecipePattern = @"(\w+Research\w+Recipe)";
private static readonly string RecipeReplacement = "Librarian$1";
// Description Replacement
public static readonly string ResearchPaperDescriptionPattern =
@"([\w\s]+? Research Paper \w+?)";
public static readonly string SkillBookDescriptionPattern = @"([\w\s]+? Skill Book)";
private static readonly string DescriptionReplacement = "Librarian $1";
// Labor Replacement
private static readonly string LaborPattern = @"typeof\((?!LibrarianSkill)\w+Skill\)";
private static readonly string LaborReplacement = "typeof(LibrarianSkill)";
// Namespace replacement
private static readonly string NamespacePattern = @"namespace .*";
private static readonly string NamespaceReplacement = "namespace BunWulfEducational";
// Using replacement
private static readonly string FirstGameplayUsingPattern =
@"using Eco.Gameplay.Items.Recipes;";
private static readonly string FirstGameplayUsingReplacement =
"using Eco.Gameplay.Items.Recipes;\n using Eco.Mods.TechTree;";
private static readonly string SecondGameplayUsingPattern =
@"using Gameplay.Systems.TextLinks;";
private static readonly string SecondGameplayUsingReplacement =
@"using Eco.Gameplay.Systems.TextLinks;";
private static readonly string ThirdGameplayUsingPattern = @"using Eco.Gameplay.Players;";
private static readonly string ThirdGameplayUsingReplacement =
"using Eco.Gameplay.Players;\n using Eco.Mods.TechTree;";
// Experience Replacement
private static readonly string ExperiencePattern =
@"this.ExperienceOnCraft = \d+(\.\d+f?|f)?";
private static readonly string ExperienceReplacement = "this.ExperienceOnCraft = $1";
// Simple Computer Lab and Laser Replacements
private static readonly string ComputerLabPattern =
@"RecipeVariant.RegisterDefault<ComputerLabRecipe>(DifficultySettingsConfig.EndgameRecipesNormal);";
private static readonly string LaserPattern =
@"RecipeVariant.RegisterDefault<LaserRecipe>(DifficultySettingsConfig.EndgameRecipesNormal);";
// Default Skill Book Replacement
// The "" + is for readability, it's a no-op
private static readonly string DefaultSkillBookExtractor =
"" + @"RegisterDefault<(?!Librarian)(\w+)SkillBookRecipe>";
private static readonly string DefaultSkillBookPattern =
"" + @"RegisterDefault<$1SkillBookRecipe>";
private static readonly string DefaultSkillBookReplacement =
"" + "RegisterDefault<Librarian$1SkillBookRecipe>";
// Expensive Skill Book Replacement
private static readonly string ExpensiveSkillBookExtractor =
"" + @"Register<(?!Librarian)(\w+)SkillBookRecipe>";
private static readonly string ExpensiveSkillBookPattern =
"" + @"Register<$1SkillBookRecipe>";
private static readonly string ExpensiveSkillBookReplacement =
"" + "Register<Librarian$1SkillBookRecipe>";
public static void Initialize(string? sourcebaseDirectory = null)
{
sourcebaseDirectory ??= Directory.GetCurrentDirectory();
Console.WriteLine(
"[BunWulfEducational] Initializing with base directory: " + sourcebaseDirectory
);
WriteTechDirectory(sourcebaseDirectory);
WriteItemDirectory(sourcebaseDirectory);
WriteRecipeDirectory(sourcebaseDirectory);
WriteDifficultRecipes(sourcebaseDirectory);
}
private static void WriteTechDirectory(string sourcebaseDirectory)
{
string coreTechDirectory = Path.Combine(
sourcebaseDirectory,
"Mods",
"__core__",
"AutoGen",
"Tech"
);
string targetTechDirectory = Path.Combine(
Directory.GetCurrentDirectory(),
"Mods",
"UserCode",
"BunWulfEducational",
"Recipes",
"Tech"
);
Console.WriteLine("[BunWulfEducational] core tech directory: " + coreTechDirectory);
Console.WriteLine("[BunWulfEducational] target tech directory: " + targetTechDirectory);
foreach (string file in Directory.EnumerateFiles(coreTechDirectory))
{
bool found;
string fileName = Path.GetFileName(file);
// string sourceFilePath = Path.Combine(coreTechDirectory, fileName);
// Console.WriteLine("[BunWulfEducational] reading " + sourceFilePath);
string fileData = File.ReadAllText(file);
Match tierMatch = Regex.Match(fileData, TierExtractionPattern);
if (tierMatch.Success)
{
string tier = tierMatch.Groups[1].Value;
int experience = 50 * int.Parse(tier);
fileData = fileData.Replace(
"this.LaborInCalories",
"this.ExperienceOnCraft = "
+ experience
+ ";\n this.LaborInCalories"
);
}
// Set the RequiresSkill level to the tier, and replace with LibrarianSkill
fileData = TextProcessing.ExtractThenReplaceRegex(
fileData,
fileName,
TierExtractionPattern,
extractedValue => (int.Parse(extractedValue) + 1).ToString(),
RequiresSkillLevelPattern,
RequiresSkillLevelReplacement
);
// Remove the skill itself so we don't duplicate
fileData = TextProcessing.RemovePattern(
fileData,
fileName,
TextProcessing.SkillPattern
);
// Remove the skill book so we don't duplicate
fileData = TextProcessing.RemovePattern(
fileData,
fileName,
TextProcessing.SkillBookPattern
);
// Remove the skill scroll so we don't duplicate
fileData = TextProcessing.RemovePattern(
fileData,
fileName,
TextProcessing.SkillScrollPattern
);
// Replace with LibrarianSkill labor
(fileData, found) = TextProcessing.StaticReplacePattern(
fileData,
fileName,
LaborPattern,
LaborReplacement
);
if (!found)
{
// If the pattern is not found, we likely aren't in a recipe file
// so we skip the file.
// Console.WriteLine("[BunWulfEducational]\tskipping write for " + fileName);
continue;
}
// Replace the namespace with BunWulfEducational
(fileData, found) = TextProcessing.StaticReplacePattern(
fileData,
fileName,
NamespacePattern,
NamespaceReplacement
);
if (!found)
{
throw new InvalidOperationException(
$"Namespace pattern not found in {fileName}"
);
}
// Fixes using statements
(fileData, found) = TextProcessing.StaticReplacePattern(
fileData,
fileName,
FirstGameplayUsingPattern,
FirstGameplayUsingReplacement
);
if (!found)
{
throw new InvalidOperationException($"Using pattern not found in {fileName}");
}
// Updates description
fileData = Regex.Replace(
fileData,
SkillBookDescriptionPattern,
DescriptionReplacement
);
fileData = Regex.Replace(fileData, SkillBookRecipePattern, RecipeReplacement);
string targetFilePath = Path.Combine(targetTechDirectory, fileName);
Console.WriteLine("[BunWulfEducational] \twriting " + targetFilePath);
_ = Directory.CreateDirectory(targetTechDirectory);
File.WriteAllText(targetFilePath, fileData);
}
}
private static void WriteDifficultRecipes(string sourcebaseDirectory)
{
string sourceFilePath = Path.Combine(
sourcebaseDirectory,
"Mods",
"__core__",
"Systems",
"DifficultyBasedRecipeVariants.cs"
);
string targetFilePath = Path.Combine(
Directory.GetCurrentDirectory(),
"Mods",
"UserCode",
"BunWulfEducational",
"Systems",
"DifficultyBasedRecipeVariants.cs"
);
string targetDirectory = Path.GetDirectoryName(targetFilePath);
Console.WriteLine("[BunWulfEducational] reading: " + sourceFilePath);
string fileData = File.ReadAllText(sourceFilePath);
// fileData = fileData.Replace(ComputerLabPattern, "");
// fileData = fileData.Replace(LaserPattern, "");
while (true)
{
// keep replacing until the data stops changing
string previousFileData = fileData;
fileData = TextProcessing.ExtractThenReplaceRegex(
fileData,
sourceFilePath,
DefaultSkillBookExtractor,
extractedValue => extractedValue,
DefaultSkillBookPattern,
DefaultSkillBookReplacement
);
if (fileData == previousFileData)
{
break;
}
}
while (true)
{
// keep replacing until the data stops changing
string previousFileData = fileData;
fileData = TextProcessing.ExtractThenReplaceRegex(
fileData,
sourceFilePath,
ExpensiveSkillBookExtractor,
extractedValue => extractedValue,
ExpensiveSkillBookPattern,
ExpensiveSkillBookReplacement
);
if (fileData == previousFileData)
{
break;
}
}
// Replace the namespace with BunWulfEducational
(fileData, _) = TextProcessing.StaticReplacePattern(
fileData,
sourceFilePath,
NamespacePattern,
NamespaceReplacement
);
// Fixes using statements
(fileData, _) = TextProcessing.StaticReplacePattern(
fileData,
sourceFilePath,
ThirdGameplayUsingPattern,
ThirdGameplayUsingReplacement
);
Console.WriteLine("[BunWulfEducational] writing " + targetFilePath);
_ = Directory.CreateDirectory(targetDirectory);
File.WriteAllText(targetFilePath, fileData);
}
private static void WriteItemDirectory(string sourcebaseDirectory)
{
string coreItemDirectory = Path.Combine(
sourcebaseDirectory,
"Mods",
"__core__",
"AutoGen",
"Item"
);
string targetItemDirectory = Path.Combine(
Directory.GetCurrentDirectory(),
"Mods",
"UserCode",
"BunWulfEducational",
"Recipes",
"Item"
);
WriteResearchPapers(coreItemDirectory, targetItemDirectory);
}
private static void WriteRecipeDirectory(string sourcebaseDirectory)
{
string coreRecipeDirectory = Path.Combine(
sourcebaseDirectory,
"Mods",
"__core__",
"AutoGen",
"Recipe"
);
string targetRecipeDirectory = Path.Combine(
Directory.GetCurrentDirectory(),
"Mods",
"UserCode",
"BunWulfEducational",
"Recipes",
"Recipe"
);
WriteResearchPapers(coreRecipeDirectory, targetRecipeDirectory);
}
private static void WriteResearchPapers(string coreDirectory, string targetDirectory)
{
Console.WriteLine("[BunWulfEducational] core item directory: " + coreDirectory);
Console.WriteLine("[BunWulfEducational] target item directory: " + targetDirectory);
foreach (string file in Directory.EnumerateFiles(coreDirectory))
{
bool found;
if (!file.Contains("ResearchPaper"))
{
continue;
}
string fileName = Path.GetFileName(file);
// string sourceFilePath = Path.Combine(coreDirectory, fileName);
// Console.WriteLine("[BunWulfEducational] reading " + sourceFilePath);
int techLevel = 0;
if (file.Contains("Basic"))
{
techLevel = 1;
}
else if (file.Contains("Advanced"))
{
techLevel = 3;
}
else if (file.Contains("Modern"))
{
techLevel = 5;
}
int experience = 0;
if (file.Contains("Basic"))
{
experience = 2;
}
else if (file.Contains("Advanced"))
{
experience = 4;
}
else if (file.Contains("Modern"))
{
experience = 16;
}
string fileData = File.ReadAllText(file);
fileData = TextProcessing.RemovePattern(
fileData,
fileName,
TextProcessing.ItemPattern
);
fileData = Regex.Replace(
fileData,
RequiresSkillLevelPattern,
RequiresSkillLevelReplacement.Replace("$1", techLevel.ToString())
);
fileData = Regex.Replace(
fileData,
ExperiencePattern,
ExperienceReplacement.Replace("$1", experience.ToString())
);
fileData = Regex.Replace(fileData, ResearchPaperRecipePattern, RecipeReplacement);
fileData = Regex.Replace(
fileData,
ResearchPaperDescriptionPattern,
DescriptionReplacement
);
(fileData, _) = TextProcessing.StaticReplacePattern(
fileData,
fileName,
LaborPattern,
LaborReplacement
);
(fileData, found) = TextProcessing.StaticReplacePattern(
fileData,
fileName,
NamespacePattern,
NamespaceReplacement
);
if (!found)
{
throw new InvalidOperationException(
$"Namespace pattern not found in {fileName}"
);
}
(fileData, found) = TextProcessing.StaticReplacePattern(
fileData,
fileName,
FirstGameplayUsingPattern,
FirstGameplayUsingReplacement
);
if (!found)
{
throw new InvalidOperationException($"Using pattern not found in {fileName}");
}
(fileData, found) = TextProcessing.StaticReplacePattern(
fileData,
fileName,
SecondGameplayUsingPattern,
SecondGameplayUsingReplacement
);
if (!found) { }
// Replace Skill => Librarian, requires an extractor though
fileData = TextProcessing.ExtractThenReplaceString(
fileData,
fileName,
SkillExtractionPattern,
SkillReplacement
);
// Remove Lavish Resources, which librarian does not have
fileData = fileData.Replace(", typeof(LibrarianLavishResourcesTalent)", "");
// Remove Focused Speed, which librarian does not have
fileData = fileData.Replace(", typeof(LibrarianFocusedSpeedTalent)", "");
// Remove Parallel Spped, which librarian does not have
fileData = fileData.Replace(", typeof(LibrarianParallelSpeedTalent)", "");
string targetFilePath = Path.Combine(targetDirectory, fileName);
Console.WriteLine("[BunWulfEducational] \twriting " + targetFilePath);
_ = Directory.CreateDirectory(targetDirectory);
File.WriteAllText(targetFilePath, fileData);
}
}
}
public class TextProcessing
{
public static readonly string ItemPattern = @".*(class \w+Item) .*";
public static readonly string BlockPattern = @".*(class \w+Block) .*";
public static readonly string SkillPattern = @".*(class \w+Skill) .*";
public static readonly string SkillBookPattern = @".*(class \w+SkillBook) .*";
public static readonly string SkillScrollPattern = @".*(class \w+SkillScroll) .*";
// public static (string, bool) RemoveLine(string recipeData, string file, string pattern)
// {
// string[] recipeLines = recipeData.Split(new[] { '\n' }, StringSplitOptions.None);
// foreach (string line in recipeLines)
// {
// Match match = Regex.Match(line, pattern);
// if (match.Success)
// {
// recipeData = recipeData.Replace(line, "");
// return (recipeData, true);
// }
// }
// return (recipeData, false);
// }
public static (string, bool) StaticReplacePattern(
string recipeData,
string file,
string pattern,
string replacement
)
{
Match match = Regex.Match(recipeData, pattern);
if (match.Success)
{
Console.WriteLine(
$"[BunWulfEducational]\tReplacing {match.Value} with {replacement}"
);
recipeData = recipeData.Replace(match.Value, replacement);
}
else
{
Console.WriteLine(
$"[BunWulfEducational]\tCouldn't find pattern {pattern} in {file}"
);
}
return (recipeData, match.Success);
}
public static string ExtractThenReplaceRegex(
string recipeData,
string file,
string extractor,
Func<string, string> extractionProcessor,
string pattern,
string replacement
)
{
Match extractorMatch = Regex.Match(recipeData, extractor);
string extractedValue;
if (extractorMatch.Success)
{
extractedValue = extractionProcessor(extractorMatch.Groups[1].Value);
Console.WriteLine($"[BunWulfEducational]\tExtracted {extractedValue}");
}
else
{
return recipeData;
}
// Inside of recipeData, replace pattern with replacement, using
// extractedValue as the input value into the replacement.
Console.WriteLine(
$"[BunWulfEducational]\tInterpolating {extractedValue} into {replacement}"
);
// replacementInterpolated = RegisterDefault<LibrarianSmeltingSkillBookRecipe>
string replacementInterpolated = replacement.Replace("$1", extractedValue);
// interpolate into the pattern as well
string patternInterpolated = pattern.Replace("$1", extractedValue);
Console.WriteLine(
$"[BunWulfEducational]\tReplacing {patternInterpolated} with {replacementInterpolated}"
);
recipeData = Regex.Replace(recipeData, patternInterpolated, replacementInterpolated);
return recipeData;
}
public static string ExtractThenReplaceString(
string recipeData,
string file,
string extractor,
string pattern
)
{
Console.WriteLine($"working on {file}");
Match extractorMatch = Regex.Match(recipeData, extractor);
string extractedValue;
if (extractorMatch.Success)
{
extractedValue = extractorMatch.Groups[1].Value;
}
else
{
return recipeData;
}
recipeData = recipeData.Replace(extractedValue, pattern);
return recipeData;
}
public static string RemovePattern(string recipeData, string file, string pattern)
{
string[] recipeLines = recipeData.Split(new[] { '\n' }, StringSplitOptions.None);
foreach (string line in recipeLines)
{
Match match = Regex.Match(line, pattern);
if (match.Success)
{
recipeData = RemoveClass(recipeData, file, line.Trim(), match.Groups[1].Value);
}
}
return recipeData;
}
public static string RemoveClass(
string recipeData,
string file,
string key,
string className
)
{
List<string> recipeLines =
new(recipeData.Split(new[] { '\n' }, StringSplitOptions.None));
// Console.WriteLine($"[BunWulfEducational]\tRemoving \"{className}\" from recipe");
// Step 1: Identify the line where the class starts.
int classStartLine = -1;
for (int line = 0; line < recipeLines.Count; line++)
{
if (recipeLines[line].Contains(className))
{
classStartLine = line;
break;
}
}
if (classStartLine == -1)
{
// Console.WriteLine(
// $"[BunWulfEducational]\t\tCouldn't find {className} in {file}:{key}"
// );
}
// Console.WriteLine(
// $"[BunWulfEducational]\t\tFound \"{className}\" at line {classStartLine}"
// );
// Step 2: Move class start line upwards if the class has any annotations.
for (int index = classStartLine; index >= 0; index--)
{
string line = recipeLines[index].Trim();
if (line.StartsWith("["))
{
classStartLine = index;
}
else if (recipeLines[index].Contains(className))
{
continue;
}
else
{
break;
}
}
// Console.WriteLine(
// $"[BunWulfEducational]\t\tMoved class start line to {classStartLine} due to annotations"
// );
// Step 3: Count brackets to find the end of the class.
int bracketCount = 0;
int classStartIndex = recipeData.IndexOf(className);
bool bracketsStarted = false;
int classEndIndex = 0;
for (int index = classStartIndex; index < recipeData.Length; index++)
{
char ch = recipeData[index];
if (ch == '{')
{
bracketCount++;
bracketsStarted = true;
}
else if (ch == '}')
{
bracketCount--;
}
else if (bracketsStarted && bracketCount == 0)
{
classEndIndex = index;
break;
}
}
if (bracketCount != 0 || classEndIndex == 0)
{
// Console.WriteLine(
// $"[BunWulfEducational]\t\tCouldn't find end of class in {file}:{key}"
// );
}
int classEndLine = recipeData[..classEndIndex].Split('\n').Length;
// Console.WriteLine(
// $"[BunWulfEducational]\t\tClass end bracket found at line {classEndLine}"
// );
// Step 4: Remove the lines from the start to the end of the class.
// Console.WriteLine(
// $"[BunWulfEducational]\t\tRemoving lines {classStartLine} to {classEndLine}"
// );
recipeLines.RemoveRange(classStartLine, classEndLine - classStartLine);
// Step -1: Join the lines back together to get a single string.
recipeData = string.Join("\n", recipeLines);
return recipeData;
}
}
}