Geometry Dash server reimplementation in Crystal
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Jill 4f1fec7fe5
wip level length measure
2 weeks ago
.vscode custom song system more-or-less outlined 5 months ago
db/migrations basic notifications impl for back-end 5 months ago
docs polish up html endpoint stuff 5 months ago
public refactor level parsing slightly 2 weeks ago
src wip level length measure 2 weeks ago
.editorconfig some minor refactoring 5 months ago
.env.example change default db location 5 months ago
.gitignore basic song downloader backend 5 months ago
LICENSE some minor refactoring 5 months ago
README.md config readme appendum 5 months ago
config.example.toml remove a couple of todos 5 months ago
flake.lock update flake 3 weeks ago
flake.nix fix? flake 3 weeks ago
shard.lock migrate to athena for web routing 3 weeks ago
shard.yml migrate to athena for web routing 3 weeks ago
shards.nix update flake 5 months ago

README.md

crystal-gauntlet

a Geometry Dash server reimplementation in Crystal, focusing on speed and 1:1 recreations of vanilla GD features

this project is still in its very early stages. you can see a rough estimate of the current progress in this issue.

why?

i was highly disappointed with the lack of options in private server choices - the two most well known ones that i noticed were Cvolton's GDPS which has very little customization and some of the most atrocious code i've seen in a while (though i can't really blame it, being written in PHP), and Realistik's buzzword-filled Python GDPS which i find hard to believe is seriously trying to sell itself with docker and mongodb.

i was also disappointed with the sheer simplicity of servers - most will get data and serve data and that's about it, but looking into how they're implemented made me realize many security pitfalls in Geometry Dash's server structure. for instance - even if you're storing the amount of objects a level has, you're trusting the client that they've given you an accurate count, and they could really have way more, making games unexpectedly severely lag or crash.

additionally, the lack of configuration compelled me even more to write my own solution, so one night of considering XKCD 927 later, here we are

features

  • crystal gauntlet is cross-compatible with many SQL engines - while SQLite will recieve the most amount of support due to the sheer ease it gives when debugging, PostgreSQL, MySQL, etc. are also supported
  • being written in Crystal, it's compiled, lightweight and extremely fast - a typical getGJLevels request will take about ~700µs, authorization is highly cached and will typically have no impact on requests and extensive amounts of effort are done to ensure the sql database structure is as efficient as it can get
  • crystal gauntlet is highly configurable letting you enforce object limits, ban certain objects, disable certain song reuploading sources and much more
  • it takes the time to parse uploaded levels to make sure nothing malicious gets through, and it gets away with it performance-wise, too
  • it utilizes yt-dlp and ffmpeg to let you reupload songs from YouTube, SoundCloud, and 1700+ other sources, all of which can be toggled on or off

build

shards install && shards build

configuration

copy .env.example to .env and fill it out, same for config.example.toml -> config.toml

by default, the config emulates vanilla GD servers as closely as possible, but you'll likely want to change it - most options have comments detailing what exactly they do

setup

run bin/crystal-gauntlet migrate (or shards run -- migrate)

schemas are highly unstable so you will be offered 0 support in migrating databases for now, however in the future you'll want to run this each time you update

then bin/crystal-gauntlet (or shards run) to start the server

attributions & credits

real

real

real