@@ -12,7 +12,7 @@ namespace AdventOfCodeSupport;
12
12
[ MemoryDiagnoser ]
13
13
public abstract partial class AdventBase
14
14
{
15
- private AdventSolutions _adventSolutions = null ! ;
15
+ private AdventSolutions ? _adventSolutions ;
16
16
private InputBlock ? _input ;
17
17
private Dictionary < string , string > ? _bag ;
18
18
private string ? _part1 ;
@@ -38,7 +38,6 @@ public abstract partial class AdventBase
38
38
/// Answer for part 1. Will run <see cref="Part1"/> to calculate the answer if not already done.
39
39
/// </summary>
40
40
/// <exception cref="InvalidOperationException">Thrown if <see cref="Part1"/> method fails to set answer.</exception>
41
-
42
41
public string Part1Answer
43
42
{
44
43
get
@@ -88,7 +87,7 @@ protected InputBlock Input
88
87
get
89
88
{
90
89
if ( _input is not null ) return _input ;
91
- var inputPattern = _adventSolutions . InputPattern ;
90
+ var inputPattern = _adventSolutions ? . InputPattern ?? "yyyy/Inputs/dd.txt" ;
92
91
inputPattern = inputPattern . Replace ( "yyyy" , $ "{ Year } ") ;
93
92
inputPattern = inputPattern . Replace ( "dd" , $ "{ Day : D2} ") ;
94
93
try
@@ -114,15 +113,7 @@ Please ensure input is saved to "Project Root/{inputPattern}"
114
113
/// <summary>
115
114
/// Registers self with AdventSolutions.
116
115
/// </summary>
117
- protected AdventBase ( )
118
- {
119
- // Do nothing, handled from AdventSolutions.
120
- }
121
-
122
- /// <summary>
123
- /// Registers self with AdventSolutions.
124
- /// </summary>
125
- internal void LoadYearDay ( AdventSolutions adventSolutions )
116
+ internal void LoadYearDay ( AdventSolutions ? adventSolutions )
126
117
{
127
118
_adventSolutions = adventSolutions ;
128
119
var type = GetType ( ) ;
@@ -133,7 +124,7 @@ internal void LoadYearDay(AdventSolutions adventSolutions)
133
124
134
125
var split = type ! . FullName ! . Split ( '.' ) ;
135
126
ClassName = split [ ^ 1 ] ;
136
- if ( _adventSolutions . ClassNamePattern is null )
127
+ if ( _adventSolutions ? . ClassNamePattern is null )
137
128
{
138
129
var dayMatches = DayPattern ( ) . Matches ( split [ ^ 1 ] ) ;
139
130
var yearMatches = YearPattern ( ) . Matches ( split [ ^ 2 ] ) ;
@@ -180,6 +171,7 @@ protected virtual void InternalOnLoad() { }
180
171
[ Benchmark ]
181
172
public void OnLoad ( )
182
173
{
174
+ if ( Year == 0 ) LoadYearDay ( null ) ;
183
175
InternalOnLoad ( ) ;
184
176
}
185
177
@@ -190,6 +182,7 @@ public void OnLoad()
190
182
[ Benchmark ]
191
183
public AdventBase Part1 ( )
192
184
{
185
+ if ( Year == 0 ) LoadYearDay ( null ) ;
193
186
if ( ! _onLoad )
194
187
{
195
188
InternalOnLoad ( ) ;
@@ -207,6 +200,7 @@ public AdventBase Part1()
207
200
[ Benchmark ]
208
201
public AdventBase Part2 ( )
209
202
{
203
+ if ( Year == 0 ) LoadYearDay ( null ) ;
210
204
if ( ! _onLoad )
211
205
{
212
206
InternalOnLoad ( ) ;
@@ -243,7 +237,7 @@ public AdventBase Part2()
243
237
244
238
private async Task DownloadAnswers ( )
245
239
{
246
- var client = new AdventClient ( _adventSolutions , this ) ;
240
+ var client = new AdventClient ( _adventSolutions ! , this ) ;
247
241
var answers = await client . DownloadAnswersAsync ( this , _testHtmlLookup ) ;
248
242
_checkedPart1 = answers . Part1 ;
249
243
_checkedPart2 = answers . Part2 ;
@@ -270,7 +264,7 @@ private async Task DownloadAnswers()
270
264
/// </summary>
271
265
public async Task DownloadInputAsync ( )
272
266
{
273
- var client = new AdventClient ( _adventSolutions , this ) ;
267
+ var client = new AdventClient ( _adventSolutions ! , this ) ;
274
268
await client . DownloadInputAsync ( this ) ;
275
269
}
276
270
@@ -289,7 +283,7 @@ public async Task DownloadInputAsync()
289
283
}
290
284
if ( _part1 is null ) Part1 ( ) ;
291
285
if ( _part1 is null ) throw new Exception ( "Cannot submit a null answer for Part 1" ) ;
292
- var client = new AdventClient ( _adventSolutions , this ) ;
286
+ var client = new AdventClient ( _adventSolutions ! , this ) ;
293
287
return await client . SubmitAnswerAsync ( this , 1 , _part1 , _testHtmlSubmit ) ;
294
288
}
295
289
@@ -308,7 +302,7 @@ public async Task DownloadInputAsync()
308
302
}
309
303
if ( _part2 is null ) Part2 ( ) ;
310
304
if ( _part2 is null ) throw new Exception ( "Cannot submit a null answer for Part 2" ) ;
311
- var client = new AdventClient ( _adventSolutions , this ) ;
305
+ var client = new AdventClient ( _adventSolutions ! , this ) ;
312
306
return await client . SubmitAnswerAsync ( this , 2 , _part2 , _testHtmlSubmit ) ;
313
307
}
314
308
0 commit comments