Web page to search for GBF assets.
Click Here to access it.
- Python 3.11.
- Run
pip install -r requirements.txt
in a command prompt. - See requirements.txt for a list of third-party modules.
The project consists of a single HTML, javascript and css files.
Github Pages are used for hosting but it can technically be hosted anywhere.
Two of the JSON files in the json
folder are the core of the system:
- changelog.json is the first file loaded upon opening the page. It contains the timestamp of the last update and a list of recently updated elements.
- data.json is loaded next and contains the data used to catalog all the assets, and more.
Others JSON files are used for debug or update purpose:
- job_data_export.json is used to quickly link some MC jobs to their weapon animations using the built-in CLI.
- manual_lookup.json is used to fill lookup entries without wiki data.
More JSON files not specified here might appear in this folder.
This script is in charge of updating the JSON files.
Do note than using it can be time and bandwidth consuming and the code isn't always optimized (especially for recent additions).
Running python updater.py
without any parameters will give you an up-to-date list of parameters, but here's a description of them at the time of writing this README:
Start parameters:
-wait
: Wait for GBF to update before running.-nochange
: Disable changes to changelog.json "new" list.-stats
: Displaydata.json
statistics before quitting.
Action parameters (Only one of those can be used at a time):
-run
: Look for new content. If new content is found, it will automatically run-update
,-event
,-thumb
,-relation
and-lookup
. Can append a list of element to-update
.-update
: Update the content for specified IDs. Example usage:python updater.py-update 3040000000 3040001000
to update those two characters. Usable with all ten digit IDs, boss IDs and indexed background IDs. It will run-lookup
after.-job
: Check for new MC jobs. Time consuming and not always accurate.-jobedit
: Open theJOB EDIT
CLI, allowing you to manually edit the job data.-lookup
: Force update the lookup table. Time consuming.-lookupfix
: Open a CLI to manually add lookup data to elements without any. Last resort option.-scenenpc
: Update scene datas for NPCs. Very time consuming.-scenechara
: Update scene datas for characters. Very time consuming.-sceneskin
: Update scene datas for outfits. Very time consuming.-scenefull
: Update scene datas for characters, outfits and NPCs. Very time consuming.-scenesort
: Sort scene datas for every elements. It's called automatically in most cases but this is a way to trigger it manually.-thumb
: Check thumbnail data for NPCs.-sound
: Update sound datas for characters, outfits and NPCs. Very time consuming.-partner
: Update all partner datas. Very time consuming.-enemy
: Update all enemy datas. Time consuming.-missingnpc
: Update all missing npc datas. Time consuming.-adduncap
: Add a list of element ID and they will automatically be checked the next time-run
or-update
is used.-addpending
: Add a list of character/skin/npc ID to the pending list for scene/sound updates.-runpending
: Run scene/sound updates for the pending lists of character/skin/npc IDs. Can be Time consuming.-story
: Update main story datas. Can addall
to update existing chapters and/or a number to limit set manually the last chapter number.-event
: Update event datas. Time consuming.-eventedit
: Open theEVENT EDIT
CLI, allowing you to add event thumbnail, update skycompass arts and more.-buff
: Update all buff datas. Time consuming.-bg
: Update all background datas. Time consuming.
- Use one of the
server
scripts to start a Python HTTP server and test the project locally, in your web browser. - On other OS, just run
python-m http.server
in a terminal, in the project folder. - GBFAP is the sister project, dealing with character animations.
- For developpers, I documented some things in this file.