This commit is contained in:
CPunch 2020-08-20 22:25:53 -05:00
commit c7f9358ae5
2 changed files with 41 additions and 0 deletions

View File

@ -1,5 +1,7 @@
![](res/radiorave_logo.png)
[![AppVeyor](https://ci.appveyor.com/api/projects/status/github/OpenFusionProject/OpenFusion?svg=true)](https://ci.appveyor.com/project/Raymonf/openfusion)
OpenFusion is a landwalker server for FusionFall. It currently supports versions `beta-20100104` and `beta-20100728` of the original game.
Further documentation pending.
@ -21,6 +23,8 @@ Currently the client by default connects to a public server hosted by Cake. Chan
You have two randomized characters available to you on the Character Selection screen, one boy, one girl.
You can also make your own character and play through the tutorial. The tutorial can be skipped by pressing the ~ key.
If you want, [compiled binaries (artifacts) for each new commit can be found on AppVeyor.](https://ci.appveyor.com/project/Raymonf/openfusion)
For a more detailed overview of the game's architecture and how to configure it, read the following sections.
## Architecture

37
appveyor.yml Normal file
View File

@ -0,0 +1,37 @@
version: 'openfusion-{branch}-{build}'
image:
- Visual Studio 2019
- Ubuntu2004
platform:
- x64
configuration:
- Release
for:
-
matrix:
only:
- image: Ubuntu2004
before_build:
- mkdir -p bin
build_script:
- make
artifacts:
- path: bin
name: ubuntu20_04-bin-x64
type: zip
-
matrix:
only:
- image: Visual Studio 2019
before_build:
- cmake -B build
build_script:
- msbuild build/OpenFusion.sln /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
artifacts:
- path: bin
name: windows-vs2019-bin-x64
type: zip