Coder Social home page Coder Social logo

tera-arise / arise Goto Github PK

View Code? Open in Web Editor NEW
27.0 7.0 1.0 46.05 MB

A game resurrection project for the final build of TERA EU.

Home Page: https://tera-arise.io

License: GNU Affero General Public License v3.0

C# 99.83% Smalltalk 0.12% Shell 0.05%
csharp dotnet gaming modding server tera web client xaml avalonia

arise's Introduction

TERA Arise

TERA Arise

License Commits Build Discord


TERA Arise is a game resurrection project for the final build of TERA EU, 115.02 (r387486), which was released a couple of months prior to the game's official shutdown on June 30, 2022.

This project is still in heavy development.

Philosophy

Unlike typical server emulation projects, TERA Arise is not trying to replicate the original game. Rather, we are using the game client and assets as a base to build upon, with the goal of eventually producing a better experience than the original game. We will essentially start from scratch, with an empty data center file, and work our way from there. Our overarching design goals are laid out on our GitBook space.

Once the project progresses far enough, our goal is to run official TERA Arise servers at tera-arise.io. That said, anyone is welcome to run their own public servers, as long as the licensing terms are observed.

Usage

Building and running TERA Arise requires the following:

  • Windows 10 22H2+ or Ubuntu 22.04+
  • .NET SDK 8.0.3
  • PostgreSQL 16.0+

Development will typically require one of the following editors:

  • Visual Studio 2022
  • Visual Studio Code
  • JetBrains Rider
  • JetBrains Fleet

Note that you must clone the Git repository with the --recursive option as we make use of submodules.

Simply run ./cake (a Bash script) to build client artifacts for Windows (x64) and server artifacts for the current platform (Windows or Linux, x64 or Arm64). This will use the Debug configuration by default, which is suitable for development and debugging. Pass -c Release instead to use that configuration, resulting in an optimized build.

Note that Debug and Release configurations are orthogonal to whether the resulting artifacts are suitable for deployment; see the vendoring instructions.

You will need to set up one or more databases to run the server daemon(s). Below is one possible way to do it which will match the expectations of the default configuration files.

Create a user called arise:

CREATE USER arise PASSWORD 'arise';

Create a database called arise, owned by arise:

CREATE DATABASE arise OWNER 'arise' TEMPLATE 'template0' ENCODING 'utf8' ICU_LOCALE 'und' LOCALE_PROVIDER 'icu';

Finally, while connected to the arise database, create schemas for each kind of environment:

CREATE SCHEMA development AUTHORIZATION arise;
CREATE SCHEMA production AUTHORIZATION arise;
CREATE SCHEMA staging AUTHORIZATION arise;

(The latter two are only required for non-development deployments.)

With this setup, and assuming you have PostgreSQL listening locally, you should now be able to successfully do dotnet run --project src/daemons/uniond.

Vendoring

In order to deploy TERA Arise in non-development scenarios, it is necessary to set up a so-called vendor project. This project provides network certificates, data center parameters, and more. A default vendor project intended for development purposes is included in the vnd directory and serves as a base for customization.

The vendor project path can be overridden by passing --vendor <path> to ./cake. The recommended setup is to have a repository with the TERA Arise repository as a submodule, alongside a custom vendor project. A small build script can then invoke something like arise/cake -c Release --vendor vendor/vendor.proj.

Additionally, for the server daemons, an extra configuration file is required, named either arised.staging.json or arised.production.json depending on environment. The following is an example of a bare-bones production configuration:

{
  "Storage": {
    "ConnectionString": "Host=storage.my-tera.com; Username=arise; Password=arise; Database=production; Root Certificate=postgresql.pem; SSL Mode=VerifyCA"
  },
  "Kestrel": {
    "Certificates": {
      "Default": {
        "Path": "web.pem",
        "KeyPath": "web.key"
      }
    },
    "Endpoints": {
      "Gateway": {
        "Url": "https://my-tera.com:443"
      }
    }
  },
  "Gateway": {
    "EmailAddress": "[email protected]",
    "SendGridKey": "<SendGrid API key>"
  },
  "Game": {
    "Endpoints": [
      "0.0.0.0:7801",
      ":::7801"
    ]
  }
}

If you intend to run the separate gateway and game daemons rather than the union daemon, you can also include the service name in the file name: arise-gatewayd.json, arise-gamed.staging.json, etc.

License

Server emulation for online games has traditionally suffered from bad actors taking and modifying the open source code, running for-profit servers, and then contributing nothing back to the project. To combat this, TERA Arise is licensed under the GNU Affero General Public License 3.0. This means that anyone running TERA Arise must provide the full source code of the client and server components to users.

To be clear, this license only applies to TERA Arise itself; the original TERA game client and its assets are not subject to it.

Development

For development purposes, you will likely want to make some adjustments to the default submodule setup:

  • git submodule foreach git checkout master: Switch all submodules from detached HEAD to tracking the actual branch. Without this, commits made in submodules might be lost.
  • git submodule foreach git fetch --unshallow: Make available the entire history of all submodules. Without this, tools like git log and git blame will be largely useless.

Additionally, to verify commit signatures from other authors, you may wish to add this to your .git/config file (or similar):

[gpg.ssh]
    allowedSignersFile = allowed_signers

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.