Go to file
Alula 971a9ef673
more carets
2020-09-05 06:43:14 +02:00
src more carets 2020-09-05 06:43:14 +02:00
.gitignore initial commit 2020-08-18 18:46:07 +02:00
Cargo.toml initial organya implementation 2020-09-03 00:58:11 +02:00
LICENSE initial commit 2020-08-18 18:46:07 +02:00
README.md readme update 2020-09-05 01:47:17 +02:00

README.md

doukutsu-rs

A re-implementation of Cave Story (Doukutsu Monogatari) engine written in Rust, aiming for behavior accuracy and cleaner code. Later plans might involve turning it into a fully-featured modding tool with live debugging and stuff.

The project is still in a very early state and nowhere near being playable. Expect lots of breaking changes and bugs

Join the Discord server

Data files

doukutsu-rs project does not re-distribute any copyrighted files.

The engine should work fine with CSE2-Enhanced or NXEngine(-evo) modified freeware data files and Cave Story+ (Nicalis commercial release, loading is supported but note we're not going to reverse engineer it or support it's features) data files.

Vanilla Cave Story does not work yet because some important data files are embedded inside executable and we don't have an extractor yet.

Where to get them?

Freeware

Cave Story+

  • PC release - Copy data folder from installation directory (guide for Steam) to the runtime directory.
  • Switch release - While some support is implemented, hacking consoles and extracting cartridge content is a kind of gray legal area so I will leave it to you...

Roadmap

  • Rendering
    • Backdrops
    • Tilemap
    • Player and it's animations
    • Carets
    • Bullets
    • NPCs
    • Text
    • HUD
  • Text scripts (TSC)
    • Initial implementation
    • Execution of basic subset of opcodes and game conversations
    • Full implementation of opcodes
    • Shift-JIS encoding support
  • Audio
    • Organya BGM playback
    • Text script bindings
    • CS+ style .ogg BGM playback
    • PixTone SFX
  • NPCs/entities
    • Initial implementation
    • Miscellaneous entities
    • First Cave
    • Mimiga Village
    • Egg Corridor
  • Weapons
    • Initial implementation
    • Polar Star
  • Modding enhancements and built-in tools
    • Debugger
    • Level editor
    • Texture auto-reload mode for spriters
  • Optional enhanced graphics effects

(tbd)

Mandatory screenshots

Freeware data files:

freeware

Cave Story+ data files:

cs+

why rust, it's a hipster language lol

The project is a result of me wanting to build something in a new programming language for memes.

I had an idea of writing my own CS engine long time before and I would've very likely picked C++17/20 and SDL2, but after all I've picked Rust instead because it seemed quite interesting for me.

Would 90% of end-users running this thing care about the programming language software was written in? After all who tf cares if the performance is the same (and maybe a slightly better), but you also get a lot of various benefits?

Credits

  • Studio Pixel for Cave Story
  • Cave Story Tribute Site - for LOTS of useful resources related to the game.
  • Clownacy for CSE2 - some game logic reference / mutual help in reverse engineering bitfields and other shit.
  • CSMC - a helpful Cave Story modding community
  • LunarLambda - for reimplementing Organya in Rust, which is used by us as .org playback engine.
  • NXEngine - an another OSS rewrite of Cave Story engine I took some inspiration from.