From 54a750bc36c0f09633a798efea242ba831058228 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Sat, 13 Apr 2024 06:02:06 -0400 Subject: [PATCH] Update readme again --- Readme.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Readme.md b/Readme.md index 7b809fb..3813d97 100644 --- a/Readme.md +++ b/Readme.md @@ -7,8 +7,12 @@ The project is organized as a monolothic module with an auxillary editor module. Implementation design perfs: * Flat data structures with abstraction patterns only when necessary. + * Minimize distinct code-paths + * Use classes as "filters", keep things "mega-structed" + * Never pre-emtively make interfaces or interface-like patterns * Keep everything data-wise in the runtime unless there is a measurable performance cost. * Some exploratory optimizations for educational purposes. * Plugins are installed in the engine repo unless not possible. * Code almost exclusively in C++ for everything but cosmetics (this is a engineering portfolio). * Keep static module functions within C++ namesapces and have the in BP function libraries to expose to BPs. +* Perfer stage-metaprogramming to C++ compiler provided templating (when possible).