Skip to content

jvidziunas/Eldritch2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Eldritch2 Test Repository

As of right now most of the project is still in a preliminary stage and everything should be considered in an extremely volatile/unfinished state.

Additionally, the project is not currently buildable from a direct Git clone; you will need to acquire the Steamworks SDK and place it in extern/Steamworks before the project will compile. If you'd like to get a copy of the executable, (currently tested/running under 64-bit Windows only) let me know and I'll send something your way! Be warned, it's pretty boring right now.

What is Eldritch2?

It's a classic hobby 3D game engine project, written in C++. Watch out Unreal/Unity! Quips aside, there are some interesting things going on here involving pretty cutting-edge work scheduling and cooperative multitasking. I can production-test interesting research so your project doesn't have to!

Lots of the architectural decisions here are also centered around shooters and action RPGs, at least out of the box.

External Dependencies

With the exception of Steamworks, all of these libraries are added as Git submodules and as such will be downloaded by running $ git submodule init and $ git submodule update from within the solution root.

Project Structure

At a high level, project directories are arranged in a hierarchy. Shared or engine-related files live in the /src/ subdirectory, and the current set of planned tools each have their own special sibling folder named according to the pattern /src_<Tool Name>/. Style conventions dictate that while tools may include files from the main project, tools should not include files from other tools; this is enforced to a limited degree by project include path settings and VS property sheet inheritance mechanisms.

Program Structure

The main() method for the any given project lives in /<Project Source Directory>/<Project Name>.<Platform>.cpp.