Compare commits
4 Commits
18bb578c97
...
adfb17b7df
Author | SHA1 | Date | |
---|---|---|---|
adfb17b7df | |||
6c011ac657 | |||
c517cbd45e | |||
b26e02d582 |
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,4 +1,5 @@
|
|||||||
Project/Intermediate
|
Project/Binaries
|
||||||
|
Project/Intermediate
|
||||||
Project/Saved/Crashes
|
Project/Saved/Crashes
|
||||||
Project/Saved/SourceControl
|
Project/Saved/SourceControl
|
||||||
Project/Saved/ShaderDebugInfo
|
Project/Saved/ShaderDebugInfo
|
||||||
|
@ -7,14 +7,13 @@ The project is organized as a monolothic module with an auxillary editor module.
|
|||||||
Implementation design perfs:
|
Implementation design perfs:
|
||||||
|
|
||||||
* Keep data structures and codepaths flat with minimal abstraction patterns
|
* Keep data structures and codepaths flat with minimal abstraction patterns
|
||||||
* Lift to more specific or generalized code-pathsonly when necessary
|
* Lift to more specific or generalized code-paths only when necessary
|
||||||
* Minimize distinct code-paths
|
|
||||||
* Use classes as "filters", keep things "mega-structed"
|
|
||||||
* Use composition for large sets of entiites (when possible).
|
|
||||||
* Never pre-emtively make interfaces or interface-like patterns
|
|
||||||
* Keep everything data-wise in the runtime unless there is a measurable performance cost.
|
* Keep everything data-wise in the runtime unless there is a measurable performance cost.
|
||||||
* Some exploratory optimizations for educational purposes.
|
* Some exploratory optimizations for educational purposes.
|
||||||
* Plugins are installed in the engine repo unless not possible.
|
* Plugins are installed in the engine repo unless not possible.
|
||||||
* Code almost exclusively in C++ for everything but cosmetics (this is an engineering portfolio piece).
|
* Code almost exclusively in C++ for everything but cosmetics (this is an engineering portfolio piece).
|
||||||
* Keep static module functions within C++ namesapces and have the in BP function libraries to expose to BPs.
|
* 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).
|
* Perfer stage-metaprogramming to C++ compiler provided templating (when possible).
|
||||||
|
|
||||||
|
The latest version is hosted on : [https://git.cozyair.dev/ed/GASATHON](https://git.cozyair.dev/ed/GASATHON)
|
||||||
|
For now the github is out of date due to lfs issues (I'm eventually just going to push a repo or corrections without lfs for this site)
|
||||||
|
Loading…
Reference in New Issue
Block a user