Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View fdeitylink's full-sized avatar
😈
git push --force

Eloise Christian fdeitylink

😈
git push --force
  • Rochester Institute of Technology
View GitHub Profile
@fdeitylink
fdeitylink / Bavi_H Notes URL.txt
Last active May 27, 2021 13:50
Organya FIle Format Specs
Original URL: http://rnhart.net/orgmaker/
Wayback Machine (in case site goes down): https://web.archive.org/web/20161204035709/http://rnhart.net/orgmaker/
@fdeitylink
fdeitylink / CS Research.md
Last active November 10, 2019 08:35
Aggregation of research on Cave Story's file formats and important hacks for modding

Cave Story Research Compendium

A guide to Cave Story's file formats and important hacks

by fdeitylink

Last updated 2019-10-23

Rationale

  • Learning more about Cave Story for my own edification
  • File formats & important hacks weren't all published and collected
@fdeitylink
fdeitylink / tsc.cpp
Last active July 1, 2017 01:37
Converts Cave Story TSC files to plaintext files and back
/*
TSC Converter v1.0
A command-line program that converts Cave Story TSC files to plaintext files and back
Created by FDeityLink
Released under public domain
-- Must be compiled with the C++11 standard --
Instructions for use:
-Supply a file directory as an argument or in the program itself - the program auto-detects format and converts accordingly.
@fdeitylink
fdeitylink / pxe.cpp
Last active August 31, 2016 00:17
Reads and prints out contents of a Cave Story PXE file
#include <iostream>
#include <fstream>
#include <cstdint>
#include <cstring>
int main(const int argc, const char* argv[]) {
using namespace std;
if (argc <= 1) {
cerr << "No file provided" << endl;
return 1;