https://github.com/jopadan/awesomechasm
Chasm: The Rift PC game resource collection.
https://github.com/jopadan/awesomechasm
List: awesomechasm
3d-formats 3d-models chasm chasm-the-rift decompiler engine file-formats game-resources mod pascal-language reverse-engineering
Last synced: 10 days ago
JSON representation
Chasm: The Rift PC game resource collection.
- Host: GitHub
- URL: https://github.com/jopadan/awesomechasm
- Owner: jopadan
- License: mit
- Created: 2025-01-31T12:59:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-10-22T16:49:38.000Z (10 months ago)
- Last Synced: 2025-10-22T18:34:33.623Z (10 months ago)
- Topics: 3d-formats, 3d-models, chasm, chasm-the-rift, decompiler, engine, file-formats, game-resources, mod, pascal-language, reverse-engineering
- Homepage: https://www.chasm3d.com
- Size: 20.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AwesomeChasm
Chasm: The Rift PC game resource collection.
## Official Releases
- [Chasm: The Rift](https://www.mobygames.com/game/2691/chasm-the-rift/)
## Ports
- [Chasm-Reverse Panzerchasm](https://github.com/Panzerschrek/Chasm-Reverse)
- [OpenChasm](https://github.com/alexey-lysiuk/OpenChasm)
- [Chasm: The Rift Portable Staging](https://www.moddb.com/games/chasm-the-rift/downloads/chasm-portable-staging)
- [Zrift Chasm in Doom - Legacy Edition](https://www.moddb.com/mods/zrift-chasm-in-doom-legacy-edition/downloads/zrift-chasm-in-doom-legacy-edition-v11)
## Formats
- [glcar3o](https://github.com/jopadan/glcar3o/wiki)
- [Shikadi Modding Wiki](https://moddingwiki.shikadi.net/wiki/Chasm:_The_Rift)
- [The Shadow Zone](https://discord.com/channels/768103789411434586/1374778669612007527)
- [Chasm Modding Toolkit Package](https://discord.com/channels/768103789411434586/1374842906002718803)
## Modding
- [Chasm: The Rift Archive](https://www.chasm3d.com/)
- [The Shadow Zone Invite](https://discord.gg/f85Cz4FaXP/)
- [The Shadow Zone](https://discord.com/channels/768103789411434586/1374778669612007527)
- [OpenSesame](https://discord.com/channels/768103789411434586/1374929171263918080)
- [moddb](https://www.moddb.com/games/chasm-the-rift)
- [Chasm: The Rift Pack](https://steamcommunity.com/sharedfiles/filedetails/?id=3128742113)
- [Chasm: The Rift - 3OVIEW.EXE DOS model viewer](https://www.chasm3d.com/files/dump/CDEMOf.zip)
- [Autodesk Animator](https://github.com/AnimatorPro)
- [Noesis .3O/.CAR 3D model viewer/converter](https://richwhitehouse.com/index.php?content=inc_stream.php)
## Music
- [Chasm: The Rift - FLAC OST music](https://www.chasm3d.com/files/music/flac/)
## Links
- [Chasm: The Rift - Website Recreation by Effektus](http://chasm.atspace.eu/)
## Reverse Engineering
- [Peganza Pascal Analyzer](https://www.peganza.com/)
- [A Deep Dive into the Turbo Pascal Compiled Code](https://github.com/daelsepara/turbo-pascal-assembly)
- [Awesome Pascal](https://github.com/Fr0sT-Brutal/awesome-pascal)
- [TDInfo Parser for IDA](https://github.com/ramikg/tdinfo-parser)
- [Duncan Murdoch's Programs](https://www.murdoch-sutherland.com/programs/index.htm)
- [Rebuild of Turbo Pascal exe missing TPU modules](https://comp.lang.pascal.borland.narkive.com/1B3WeJkX/rebuild-of-turbo-pascal-exe-missing-tpu-modules)
- [Reverse Engineering Delphi Binaries in Ghidra with Dhrake](https://blag.nullteilerfrei.de/2019/12/23/reverse-engineering-delphi-binaries-in-ghidra-with-dhrake/)
- [Hachoir is a Python library to view and edit a binary stream field by field](https://github.com/vstinner/hachoir)
- [Kaitai Struct: declarative language to generate binary data parsers](https://github.com/kaitai-io/kaitai_struct)
## Similiar Pascal Games
### [HROT](https://en.wikipedia.org/wiki/Hrot)
- [HROT Demo](https://www.gog.com/en/game/hrot_demo)
- [HROT CLI Tools](https://github.com/joshuaskelly/hrot-cli-tools)
```cpp
/* HROT .PAK FILE FORMAT */
namespace hrot::pak
{
struct header
{
c8<4> magic = "HROT"
u32 names;
u32 count; // 128 is file count
};
struct entry
{
c8<120> name; // terminated with 0x00
u32 pos;
u32 len;
};
};
```
## Similiar C++ Games
### [Perilous Warp](https://crystice.com/perilous-warp/)