All Projects → jdmclark → gorc

jdmclark / gorc

Licence: Apache-2.0 License
Early-development Jedi Knight: Dark Forces 2 game engine recreation

Programming Languages

C++
36643 projects - #6 most used programming language
CMake
9771 projects

Projects that are alternatives of or similar to gorc

Polymer
🎨 graphics + interaction engine
Stars: ✭ 243 (+150.52%)
Mutual labels:  game-engine
Fxtutorials
A collection of JavaFX tutorials from my channel on YouTube
Stars: ✭ 252 (+159.79%)
Mutual labels:  game-engine
kero
Kero is a Source Engine game engine client implementation written in Go.
Stars: ✭ 25 (-74.23%)
Mutual labels:  game-engine
Ml Games
Machine learning games. Use combination of genetic algorithms and neural networks to control the behaviour of in-game objects.
Stars: ✭ 247 (+154.64%)
Mutual labels:  game-engine
Px3d
Experimental pixel 3d engine
Stars: ✭ 252 (+159.79%)
Mutual labels:  game-engine
Cocos2d X
Cocos2d-x is a suite of open-source, cross-platform, game-development tools used by millions of developers all over the world.
Stars: ✭ 15,713 (+16098.97%)
Mutual labels:  game-engine
Luascript
Lua language support for Godot Engine
Stars: ✭ 240 (+147.42%)
Mutual labels:  game-engine
prj-openSonicSMS
Engine of Sonic The Hedgehog - Master System
Stars: ✭ 32 (-67.01%)
Mutual labels:  game-engine
Simplerenderengine
Small C++14 render engine
Stars: ✭ 253 (+160.82%)
Mutual labels:  game-engine
DiligentFX
High-level rendering components
Stars: ✭ 116 (+19.59%)
Mutual labels:  game-engine
Panda3d
Powerful, mature open-source cross-platform game engine for Python and C++, developed by Disney and CMU
Stars: ✭ 3,035 (+3028.87%)
Mutual labels:  game-engine
Octopuskit
2D ECS game engine in 100% Swift + SwiftUI for iOS, macOS, tvOS
Stars: ✭ 246 (+153.61%)
Mutual labels:  game-engine
RamenEngine
A game engine written in SwiftForth.
Stars: ✭ 53 (-45.36%)
Mutual labels:  game-engine
Ecere Sdk
Ecere SDK (eC Language, Ecere IDE, Cross platform GUI, graphics, and more) — http://ec-lang.org —
Stars: ✭ 244 (+151.55%)
Mutual labels:  game-engine
Yggdrasil-Legacy
Experimental Vulkan Renderer / Game Engine written in C++20.
Stars: ✭ 20 (-79.38%)
Mutual labels:  game-engine
Sucle
Common Lisp Voxel Game Engine
Stars: ✭ 239 (+146.39%)
Mutual labels:  game-engine
Nico
Nim Game Framework based on Pico-8
Stars: ✭ 254 (+161.86%)
Mutual labels:  game-engine
RTCLI.Runtime
A Runtime implementation of ECMA-335 Common Language Infrastructure that is specifically designed for real-time applications.
Stars: ✭ 19 (-80.41%)
Mutual labels:  game-engine
magnum-integration
Integration libraries for the Magnum C++11/C++14 graphics engine
Stars: ✭ 75 (-22.68%)
Mutual labels:  game-engine
taklib
A scala library for the Tak board game
Stars: ✭ 16 (-83.51%)
Mutual labels:  game-engine

Gorc

Build Status Coverage Status Coverity Scan Build Status

Gorc is an early-development Dark Forces II game engine recreation. The goal of the Gorc project is to replace the original game executable, allowing the original singleplayer and multiplayer levels to be played on new platforms.

Developing

Dependencies

  • Standard C++14 compiler (GCC 7)
  • CMake 3.8 or better
  • SFML 2.1
  • Boost
  • Gcovr 3.2
  • Dark Forces II

Quick Start

Building

  • Build the entire project from the project root:
cmake -DCMAKE_BUILD_TYPE=Release .
make -j4

Testing

The test harness is an executable named boc. It was built as part of the previous step, and is located in the pkg/bin directory.

  • Run all tests: run boc test from the project root.

or

  • Run a subset of tests: run boc test from a component source directory.

or

  • Run a specific test: run boc from the test directory.

Test Coverage

Gorc uses the gcov coverage tool. The Gorc build system provides special options for coverage report generation. Use the following command to quickly generate a complete coverage report with an instrumented build.

  • Run boc test coverage-report from the project root.

The Gorc project has adopted a 100% line coverage policy to encourage the development of highly testable code. The test coverage report must show 100% line coverage before any code changes will be accepted.

Running

One-Time Setup

Before running Gorc, you must copy your Dark Forces II original episode and resource directories into the game directory in the root of this repository. Gorc will not work without these directories. This step only needs to be done once.

Run Client

Gorc does not currently allow you to play through the levels normally. You must manually specify an episode GOB and a level filename on the command line.

For example, to play the first level you would run:

pkg/bin/client --episode game/episode/jk1.gob --level 01narshadda.jkl

Other episodes and levels can be played by using appropriate --episode and --level options.

If you do not know the level filenames inside an episode, you can use the included gob utility to list them:

pkg/bin/gob --file game/episode/jk1.gob --extract episode.jk
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].