Day 11 is all about the big numbers, and doing it in Unreal didn’t help me at all. Some horrible input handing, and some nasty gotchas. It’s all in C++.
Author: Thad
Advent of Code in Unreal Engine Day 10
After two days of C++ I think its time to get back into Blueprint for Day 10.
Advent of Code in Unreal Engine Day 9
Day 9 of Advent of Code has chain of elements following each other on a grid, and as with Advent of Code in Unreal Engine Day 8 I have stuck with using C++ and a TDD-lite approach, within Unreal.
Advent of Code in Unreal Engine Day 8
In day 8 we are looking at a grid and comparing the heights of trees in four directions, along the column and row, first to determine visibility, and then to calculate a “scenic score”.
Advent of Code in Unreal Engine Day 7
For Day 7 I will be misusing Unreal’s scene graph as a proxy for the file-system hierarchy described by the puzzle.
Advent of Code in Unreal Engine Day 6
After yesterdays Blueprints it’s time for a C++ palate cleanser with a side order of Unit Testing.
Advent of Code in Unreal Engine Day 5
With the components set up, one for each stack, parsed from the puzzle input, the remaining lines from the puzzle are processed one at a time in the actor Event Tick.
Advent of Code in Unreal Engine Day 4
Day 4 has us splitting a string into 4 integers, and then implementing some range-tests. This presents no serious complications in blueprint.
Advent of Code in Unreal Engine Day 3
It is a Saturday morning, and I want to get this finished before I go about my day, so my first step is to write some C++.
Advent of Code in Unreal Engine Day 2
I used Strings Mapped to Enumerations, and Enum Switches, and broke the problem into Reading a Line (string) into a Round (struct), and Scoring the Round.