A toy implementation of the FusionFall Packet Protocol in Go
Go to file
CPunch f4b17906ce more protocol/service refactor
- removed protocol.Event: CNPeers now send protocol.PacketEvents
- peer uData is held in CNPeer, use SetUserData() and UserData() to
set/read it
- Service.PacketHandler calback has changed, removed uData:
switched calls to peer.SetUserData() and peer.UserData() where appropriate
- service.Service lots of tidying up, removed dependence on old
protocol.Event.
- service.Service && protocol.CNPeer now accept a cancelable context.
hooray graceful shutdowns and unit tests!
- general cleanup
2023-12-01 00:56:34 -06:00
.github/workflows fix workflow event trigger 2023-11-26 17:00:37 -06:00
cmd more protocol/service refactor 2023-12-01 00:56:34 -06:00
config added NPCs; added tdata submodule 2023-06-27 00:36:02 -05:00
internal more protocol/service refactor 2023-12-01 00:56:34 -06:00
login more protocol/service refactor 2023-12-01 00:56:34 -06:00
shard more protocol/service refactor 2023-12-01 00:56:34 -06:00
tdata@cc65dbb402 added NPCs; added tdata submodule 2023-06-27 00:36:02 -05:00
tools genstructs.py: refactor; use match/case statement 2023-11-22 16:02:00 -06:00
.gitignore removed test.db 2023-03-09 15:33:39 -06:00
.gitmodules added NPCs; added tdata submodule 2023-06-27 00:36:02 -05:00
Dockerfile dockerfile: switch to scratch 2023-06-20 18:33:29 -05:00
README.md better readme 2023-08-23 18:38:14 -05:00
build.sh Switched to redis/postgres, major refactoring 2023-06-22 01:53:38 -05:00
compose.yaml added NPCs; added tdata submodule 2023-06-27 00:36:02 -05:00
go.mod test: started internal/db test cases 2023-11-21 13:58:59 -06:00
go.sum test: started internal/db test cases 2023-11-21 13:58:59 -06:00

README.md

gopenfusion

A toy implementation of the Fusionfall Packet Protocol and accompanying services, written in Go.

Landwalker demo

An implementation of a landwalker server is located in login/ && shard/. This includes a functional login server and a dummy shard (supporting the minimum amount of packets necessary). There is minimal support for NPCs, and minimal support for player interaction (chat & player movement being mostly it).

Startup the environment using

$ chmod +x ./build.sh && ./build.sh
$ docker compose up

The environment consists of a shard service, login service, redis && postgres containers. redis is used to pass login metadata between the login and shard services, while postgres is just used to store player accounts and characters.

login server is hosted at 127.0.0.1:23000, just join from your favorite client

Generating structures

Dump and decompile the Assembly - CSharp.dll assembly from the fusionfall main.unity3d, using a tool like ilspycmd. The full output source can then be passed to genstructs.py script located in tools/, which will handle scraping constants and calculating structure padding. See the script for details on usage.