An open source third person action RPG with multiplayer support.
Go to file
Relintai 8a9152c59c Fix the setup script for osx. 2019-12-14 00:03:29 +01:00
game Update everything to the latest. 2019-12-13 09:39:43 +01:00
pictures Added notes on how to export the model from blender. 2019-11-24 16:33:11 +01:00
vscode-cpp
.gitignore Fix the setup script for osx. 2019-12-14 00:03:29 +01:00
Build_Android_Templates.bat
Build_Android_Templates_Release.bat
Build_JavaScript.bat
Build_WIndows_Templates_rel.bat
Build_Windows-Minimal.bat
Build_Windows.bat
Build_Windows2.bat
Build_Windows_Debug.bat
Build_Windows_MinGW.bat
Build_Windows_Templates.bat
EngineSetup.bat
HEADS Update everything again. 2019-12-13 23:04:18 +01:00
LICENSE
README.md Fix typo. 2019-11-24 16:35:37 +01:00
SConstruct Fix the setup script for osx. 2019-12-14 00:03:29 +01:00
Visual_Studio_Project.bat
build_all.bat
build_android_templates.sh
build_android_templates.sh~
build_android_templates_release.sh Android release template build script. 2019-12-12 23:31:47 +01:00
build_ios.sh
build_ios_release.sh
build_javascript_release.bat
build_linux.sh
build_linux_j2.sh
build_linux_templates_release.sh Update to Readme.md. 2019-11-22 17:41:35 +01:00
build_osx.sh
build_uwp.bat
editor.bat
editor.sh
engine_setup.sh

README.md

Broken Seals

The project requires a few custom engine modules to run! read the Editing the game part!

Keep in mind, that most of the work went into the engine modules so far, and the style itself.

A 3D third person RPG. With both multiplayer, and singleplayer capabilities.

The main gameplay-loop goal is to create an experience with enough complexity and depth, that can rival the more old-school MMO- and action rpgs, because nowadays I feel like that is something that got lost.

I want the game to run on every platform, without sacrificing from the gameplay. From the testing I've done this is not even an issue.

This game (with the engine modules) was ported from unity, because it kind of hit the limits of that engine. (Not rendering-wise)

  • Basically imagine having about 20 assembly definitions, a main assembly definition, which are just a bunch of interfaces, and everything
  • dependency-injecting itself into it, and still having a 30-ish second compile time, while constantly running into unfixable bugs, and
  • having to work around "simple" problems, like implementing a networking solution on top of LLAPI. Alone.

And the reason for me to tell you is:

-Implementing spells did not get too much priority in this version, meaning like half of them doesn't work at all. -In the other version I tried to have bindings for controllers, so that they can use lots of spells, it works, and it's not bad at all, but it's not yet implemented into this one. (It was pretty much implemented as bindable control keys) -Sounds were not implemented at all yet. -With the graphics I only worked to get the style itself right.

Except for these features however, this version is way more advanced, than the unity one! c++, and godot conventions allowed me to change the code design into something that is pretty much on an another level feature-potential wise.

So it will not take long to implement most if the missing features themselves, as the basic scaffolding is there already.

Now all of these will get higher priority.

Screenshots

Initial OS Release Screen 1 Initial OS Release Screen 2

Note: Before going open source I removed the assets which was derived from paid stuff, which means the game doesn't look like this anymore. The new textures will need to be cleaned up / improved. It will be done soon. I'll change the screenshots when that's done. The reason to use these screens is to convey the style I'm going for.

Editing the game

In order for you to open the game in the editor you will need a custom built version, which can be downloaded from the releases tab, or if you want to build it, chech the Compiling section.

Once you have the proper editor, you should also grab the addons.

You will need scons installed. Scons is required to build godot aswell, so the official godot docs already contain information on how to set it up here.

in the project's folder call:

scons t=all_addons

Note that if you built the editor yourself (a.k.a you already ran the command scons), you will already have these, and you can skip this step.

Project architecture

This is the main game, it has scripts so compiling, and setting up the engine is really easy.

To be able to open this project you will need a few engine modules compiled into godot, (The setup script will grab these) namely:

https://github.com/Relintai/world_generator.git

https://github.com/Relintai/entity_spell_system.git

https://github.com/Relintai/ui_extensions.git

https://github.com/Relintai/voxelman.git

https://github.com/Relintai/texture_packer.git

https://github.com/Relintai/godot_fastnoise.git

These modules should be more like core modules. Game specific c++ features will go to a different module. I'll set it up soon.

Compiling

Before compiling, in the project's folder just run scons, it will set every dependency up. Like:

scons

I still have the old setup scripts in the repository, in case the scons command fails: EngineSetup.bat on windows, or engine_setup.sh on linux/osx.

And then just compile godot as usual. Note I have a bunch of scripts to do it in the root of the project, you can just select the one you need.

Official docs for compiling GODOT

Pulling upstream changes

After you pull changes, just run scons, it will update the dependencies.

Editing/Exporting the model

To edit the model you will need blender, and the better collada exporter plugin for it.

If you edit the model (the armature), and want to export it, you will need to do it with these settings:

Export settings

I recommend, that before exporting, you set the action back to the rest action, like

Export Action

this will usually eliminate the import issue below.

Sometimes when the model gets imported into godot it will look like this:

Export Error (I'll add an in-editor screenshot aswell when it happens again)

Usually the simplest fix is to just export again (since blender is probably still open). I was also able to fix it by changins some settings and clicking reimport a few times in the inspector. But exportin again is usually the fastest.

I haven't been able to figure out what causes this yet.