Skip to content
Id Software's Id-tech-4-BFG in the Ada programming language.
Ada Python GLSL
Branch: master
Clone or download
Cannot retrieve the latest commit at this time.
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
Engine Add OpenGEX parser, begin testing of Vulkan backend Apr 22, 2019
Games Add OpenGEX parser, begin testing of Vulkan backend Apr 22, 2019
Libraries
Object
Shaders
Tools
neo.gpr Add OpenGEX parser, begin testing of Vulkan backend Apr 22, 2019
readme.md Create readme.md Jul 4, 2018
runsdk.hta Further Vulkan work Dec 31, 2017

readme.md

AdaDoom3

Join the chat at https://gitter.im/AdaDoom3/Lobby

NOTE: THIS PROJECT IS MOSTLY INCOMPLETE

The aim of Ada Doom3 is to re-engineer the id-tech 4 engine with a clear dependency hierarchy, and robust tasking systems.

Planned Features:

  • Load and play doom 3 bfg levels
  • Load Valve map workshop levels
  • Native ports for Windows and SDL
  • Input support for XBox 360 controllers
  • Multi-monitor windowing
  • Threaded rendering with Vulkan
  • Responsive multi-player
  • Steam support for user accounts and achievements

Compiling

To compile with GPRBuild:

gprbuild -p -P neo.gpr

Or the Gnat Programming Studio IDE may be used by simply double clicking on the project file neo.gpr once it is installed: http://libre.adacore.com/download/

To compile with GPS click the build-all hammer button after ensuring the scenario drop boxes from the View > Scenario menu are correct.

After successfully compiling press play ▶ to run.

Using Git

Github's tutorial on installing and using commandline git: https://help.github.com/categories/54/articles

Frequent commands:

git init

git config --global user.email ""

git config --global user.name ""

git remote add origin https://github.com/AdaDoom3/AdaDoom3.git

git pull origin master

git pull origin branch

git commit -am ''

git push origin master

git push origin master:branch

Contributing

Begin adding Linux/Mac support by implementing stubbed functions/subprograms

Getting Started

To begin developing for AdaDoom3, first examine all of the “base” system and foundation components in the /Code directory.

Each package in this folder (as all packages in Ada) consists of a specification (ads) and a body file (adb). For clarity, everything but subprogram, package, protected type, and task bodies are placed in the specification (including global variables and private function prototypes) allowing an entire overview of user-important information in one file.

More to come...

Design

You can’t perform that action at this time.