Provides predictions for scroll and lunar events in the MMO Aberoth
Project description
Aberoth Ephemeris
A Python module that provides information about upcoming scroll events and moon phases in the MMORPG Aberoth. If you're looking for an easy way to get the predictions from this module in a more human readable form without creating having to your own application, check out the Ephemeris Discord Bot.
Installing
The module can be downloaded from PyPI using
pip install aberoth-ephemeris
or you can download the latest release from GitHub
Use Example
Once you've installed the module, it can be used like so
from aberoth_ephemeris import Ephemeris
import time
# number of milliseconds in a day
ms_1day = 86400000
# four days before the current time
startTime = round((time.time() * 1000) + -4 * ms_1day)
# 35 days after the current time
endTime = round((time.time() * 1000) + 35 * ms_1day)
ephemeris = Ephemeris(
# the epoch time in ms that prediction calculations will start from
start=round((time.time() * 1000) + -4 * 86400000),
# the epoch time in ms that scroll prediction calculations will stop at
end=round((time.time() * 1000) + 35 * 86400000),
# the number of cycles into the future that the moon phases are calculated for
numMoonCycles=8,
# adds discord timestamp to ephemeris event information if True
discordTimestamps=False,
# indicates that calculations should be split between multiple processes/cores
multiProcess=True,
# indicates number of cores to use, automatically uses all cores if None
numCores = None,
# None indicates that the built in orb variables should be used
varFile = None
)
The start and stop times are just examples and any time may be used so long as the start time is before the stop time.
By default, built in orb variables are used for predictions. If you wish to use your own variables you can pass the path to your own variables file into varFile as a string. See the gathering your own variables section for details on how you might gather your own variables.
Optionally, a web server may be run to intake auto-calibration data from a separate script. To do so, run the following code on a separate thread or process
from waitress import serve
from aberoth_ephemeris import app
# serve on separate thread or process
serve(app, host="0.0.0.0", port=5000, threads=1)
When valid calibration data is received over HTTP request, the variables used to predict alignments are updated and used the next time an ephemeris object is created or the ephemeris event cache is recreated.
Make sure to configure a .env file containing a pass key named UPDATE_KEY
for the http server request.
Example .env
UPDATE_KEY={verification key for HTTP server}
An excellent separate script that can be used to gather and send live calibration data to this module is the Ephemeris Overheard Hook made by GitHub user jvandag. It is built on GitHub user ashnel3's Overheard Scraper which scrapes the Aberoth overheard page to find changes in scroll state, moon phase, time of day, and number of players online.
For formatting of this HTTP message refer to this example fetch request.
Event Structure
The calculated scroll events are stored in the Ephemeris.scrollEventsCache
property which is formatted as follows
[
(
timestamp,
{
"newGlows": glowList, # list of orb names
"newDarks": darkList, # list of orb names
"returnedToNormal": returnedToNormal, # list of orb names
"discordTS": f"<t:{int(np.floor(timestamp/1000))}:D> <t:{int(np.floor(timestamp/1000))}:T>"
}
),
...
]
# Possible orb names: ["Shadow", "White", "Black", "Green", "Red", "Purple", "Yellow", "Cyan", "Blue"]
# discordTS is only present if enabled when creating the Ephemeris instance
The calculated moon phases are stored in the Ephemeris.moonCyclesCache
property which is formatted as follows
[
(
currentTime,
{
"phase": phase,
"discordTS": f"<t:{int(np.floor(currentTime/1000))}:D> <t:{int(np.floor(currentTime/1000))}:t>",
},
),
...
]
# Possible phases: ["new", "waxing_crescent", "first_quarter", "waxing_gibbous", "full", "waning_gibbous", "third_quarter", "waning_crescent"]
# discordTS is only present if enabled when creating the Ephemeris instance
Gathering your own variables
If you do not already have a moderate understanding of how Aberoth events happen, it would be helpful to read the wiki page on the Aberoth solar system.
Most variables are close to the real-life values provided by NASA but not exact. These make a good starting point for calibrating variables. Conversely, you could also gather experimental data from the Aberoth orb room as well as some reference points using the Ephemeris Overheard Hook or something similar. Some notes on how to do this with experimental data can be found here. When it comes to refining/calibrating these variables, it is important to create a system that can tell you how a change affects the whole system, not just the specific alignment event you're looking at. Here is an example spreadsheet that shows how you might set up such a system. To help better your understanding of this spreadsheet, it would still be useful to read the notes on gathering the variables with experimental data as it covers some of the more in-depth details on how the solar system works that aren't mentioned elsewhere.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file aberoth-ephemeris-1.0.1.tar.gz
.
File metadata
- Download URL: aberoth-ephemeris-1.0.1.tar.gz
- Upload date:
- Size: 21.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d72bc80403b1b49c5238229fe386626c23be710ae7103f58ef050cd3ed2e481f |
|
MD5 | 2364f5967e918af5eed4e98c3eedd976 |
|
BLAKE2b-256 | de74c5614e68f1349ae9191d741f9c38b14a11971208245f97962594643f3959 |
File details
Details for the file aberoth_ephemeris-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: aberoth_ephemeris-1.0.1-py3-none-any.whl
- Upload date:
- Size: 20.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc29b3f579ddb00939a7d96dd06c42e7cd7b455f62d3e95e06c773da7f79100e |
|
MD5 | a0274093a3a19504932a377c4c23cd3f |
|
BLAKE2b-256 | 45b353985d8a616065d2da657155011fb3758a35db6bea7ff2c22fedf2d20fb2 |