aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-25 15:03:13 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-25 15:03:13 -0400
commitdcdc83d274c122fcfa601b98791e80eae711da33 (patch)
treec04417936cd1ce3f4bfb50934e3580a5d79f5ae6 /README.md
parenta3009ec0079769837dcbd690b0fb1ba54d379a85 (diff)
Started basic README outline
Diffstat (limited to 'README.md')
-rw-r--r--README.md80
1 files changed, 78 insertions, 2 deletions
diff --git a/README.md b/README.md
index f9699b7..f8312d9 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,78 @@
-# gamedev2
-gamedev but better
+gamedev2
+========
+
+gamedev2 is a reincarnation of a previous
+ (project)[github.com/tcsullivan/gamedev] created by
+ (Andy Belle-Isle)[github.com/drumsetmonkey] and
+ (Clyne Sullivan)[github.com/tcsullivan].
+
+After a long time developing (gamedev)[github.com/tcsullivan/gamedev],
+we decided a large amount of the codebase was rather messy and inefficient.
+Instead of rewriting gamedev piece by piece, we decided that the final
+product would be of a much higher quality if the project was restarted from
+scratch.
+
+## Goal
+-------
+The goal of gamedev2 is to create a commercial-grade video game in which content
+can be created through the use of scripting languages such as Lua. One of the
+things that sets gamedev2 apart from many other indie games is that gamedev2
+is an engine in itself. By creating the engine behind the game, we are able to
+implement only the necessary features needed to make gamedev2 run smoothly
+without the extra bloat brought on by a general purpose game engine.
+
+## Features (Planned)
+---------------------
+* Fully modifiable through the use of scripting languages
+* Multiplayer
+
+## Libraries
+------------
+The libraries used to develop gamedev2 are as follows:
+* SDL2
+* OpenGL
+* GLEW
+* GLU
+* Lua
+* EntityX
+* FreeType 2
+
+
+## Building gamedev2
+--------------------
+### Build Requirements
+gamedev2 is actively developed on Linux, so the Windows build process may not
+be as simple as the Linux requirements listed below.
+In order to build gamedev2 the following programs are needed:
+* Make
+* g++ (version >7)
+* 64-Bit OS support
+
+### Linux
+In order to build gamedev2 on Linux, the process is fairly simple.
+1. First cd into the root gamedev2 directory
+```
+cd gamedev
+```
+
+2. EntityX must be build first before the rest of gamedev2
+```
+cd lib/entityx
+make
+cd ../..
+```
+
+3. To build gamedev2 itself the following can be run:
+```
+make
+```
+In order to make gamedev2 using multiple threads, the following can be run:
+```
+make -jN
+```
+with 'N' being the number of threads to use while building.
+
+4. Once built, gamedev2 can be run with
+```
+./main
+```