28 September 2021 by jr101dallas
⇠ Back to PostsCoding
Actual motion is good so rather than continuing to plan, let’s slap some paint on the walls.
Current State
At the moment, I’ve got a solution utopia.sln
, and two projects added to it, physics.csproj
and physics-test.csproj
. I don’t need to get my complicated plan running right now with the library facades, or even worry about the things my selected libraries do. I can start working on my model of what happens in my logic and skip the other pieces. SadConsole does display stuff, so I’ll avoid what things look like for a moment. GoRogue does mapping and object tracking, so I’ll avoid questions of proximity for a moment.
What’s Left
When I cut out the location and proximity quesions of GoRogue, and visual representation and layering of SadConsole, what do I still need to do?
- combat interaction (when to attack can be filled in when proximity exists)
- inventory (for now I won’t “show” wearing armor in the display)
- dialog (again, proximity later)
- shopping (proximity later)
- enemies and merchants to fight and bargain with
There are probably others, but these give us something to start with.
tags: code - plan