Skip to content

connorhsm/ahap.info

Repository files navigation

ahap.info

Another Hour Another Life Crafting Reference

https://ahap.info

Forked from Onetech for One Hour One Life

This site is built using the game data directly from the game data repository. It shows the relationships between items, and lets you explore how things are crafted.

Unlike the wiki, which contains "wisdom" about the game, this site contains only "knowledge".

Build Setup

The project is split into two parts:

  • A node script that processes the latest data from the game data repository
  • The site itself, built in VueJS

Site

# install dependencies npm clean-install # serve with hot reload at localhost:8080 and edge.localhost:8080 npm run dev # build for production with minification npm run build

For detailed explanation on how things work, consult the docs for vue-loader.

Processing Script

The script is under the folder process. It will pull the latest data from the game data repository (if provided download as a command line argument), and then generate JSON files for the objects. It will also composite the sprites and create PNGs for each object in the game.

To get it running, you will need to install ImageMagick, Canvas dependencies, and SoX and then:

cd process # install dependencies npm clean-install cd .. # run script including downloading latest data and processing sprites node process download # if you want to re-process the sprites without downloading data node process sprites # if you want to re-process the sounds without downloading data node process sounds # or process without generating sprites node process

Modded Support

If you have a modded version of OneLifeData7, consider forking this repository and setting these environment variables before processing:

export ONETECH_MOD_NAME="My Awesome Mod"export ONETECH_MOD_URL="https://my-awesome-mod.com"export ONETECH_PROCESS_GIT_PATH="/path/to/my/awesome-mod-data"# orexport ONETECH_PROCESS_GIT_URL="https://github.com/my/awesome-mod-data"

After you have run the process and build scripts, push the changes up to your own fork. If you want to use GitHub Pages, you will need to remove static from .gitignore, and then you can go to the GitHub project settings and setup GitHub Pages to use the master branch. This will make the site publicly accessible.

About

Automated Crafting Guide for Another Hour Another Planet

Resources

License

Stars

Watchers

Forks

Languages

  • Vue52.8%
  • JavaScript46.0%
  • Other1.2%