Skip to content

Commit 92de199

Browse files
Initial structure for memory engine data structures
0 parents  commit 92de199

28 files changed

+1346
-0
lines changed

.github/dependabot.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
10+
schedule:
11+
interval: "daily"

.github/workflows/python.yml

+112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
name: Python Package
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- '*'
8+
tags:
9+
- '*'
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
name: Wheel
15+
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v2
19+
with:
20+
fetch-depth: 0
21+
submodules: 'recursive'
22+
23+
- name: Set up Python
24+
uses: actions/setup-python@v2
25+
with:
26+
python-version: "3.9"
27+
28+
- name: Install Python packages
29+
run: python -m pip install --upgrade build pip
30+
31+
- name: build wheel
32+
run: python -m build --wheel
33+
34+
- name: build sdist
35+
run: python -m build --sdist
36+
37+
- name: Store the packages
38+
uses: actions/upload-artifact@v2
39+
with:
40+
name: python-package-distributions
41+
path: dist
42+
43+
test:
44+
needs:
45+
- build
46+
47+
runs-on: ubuntu-latest
48+
name: Test Python ${{ matrix.python.version }}
49+
strategy:
50+
fail-fast: false
51+
matrix:
52+
python:
53+
- {version: '3.8', wheel: 'cp38-cp38'}
54+
- {version: '3.9', wheel: 'cp39-cp39'}
55+
- {version: '3.10', wheel: 'cp310-cp310'}
56+
57+
steps:
58+
- name: Checkout
59+
uses: actions/checkout@v2
60+
with:
61+
fetch-depth: 0
62+
submodules: 'recursive'
63+
64+
- name: remove code outside of wheel
65+
run: rm -rf mercury_engine_data_structures
66+
shell: bash
67+
68+
- name: Set up Python
69+
uses: actions/setup-python@v2
70+
with:
71+
python-version: ${{ matrix.python.version }}
72+
73+
- name: Download all the dists
74+
uses: actions/download-artifact@v2
75+
with:
76+
name: python-package-distributions
77+
path: dist/
78+
79+
- name: Install Python packages
80+
run: python -m pip install --upgrade pip pytest
81+
82+
- name: install built wheel
83+
run: python -m pip install dist/*.whl
84+
shell: bash
85+
86+
- name: test
87+
run: python -m pytest test/
88+
89+
pypi:
90+
runs-on: 'ubuntu-latest'
91+
needs:
92+
- test
93+
94+
steps:
95+
- name: Download all the dists
96+
uses: actions/download-artifact@v2
97+
with:
98+
name: python-package-distributions
99+
path: dist/
100+
101+
- name: Publish 📦 to TestPyPI
102+
if: ${{ github.ref == 'refs/heads/main' }}
103+
uses: pypa/gh-action-pypi-publish@master
104+
with:
105+
password: ${{ secrets.testpypi_password }}
106+
repository_url: https://test.pypi.org/legacy/
107+
108+
- name: Publish 📦 to PyPI
109+
if: ${{ startsWith(github.ref, 'refs/tags/') }}
110+
uses: pypa/gh-action-pypi-publish@master
111+
with:
112+
password: ${{ secrets.pypi_password }}

.gitignore

+135
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
pip-wheel-metadata/
24+
share/python-wheels/
25+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
MANIFEST
29+
30+
# PyInstaller
31+
# Usually these files are written by a python script from a template
32+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
33+
*.manifest
34+
*.spec
35+
36+
# Installer logs
37+
pip-log.txt
38+
pip-delete-this-directory.txt
39+
40+
# Unit test / coverage reports
41+
htmlcov/
42+
.tox/
43+
.nox/
44+
.coverage
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*.cover
50+
*.py,cover
51+
.hypothesis/
52+
.pytest_cache/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
local_settings.py
61+
db.sqlite3
62+
db.sqlite3-journal
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
target/
76+
77+
# Jupyter Notebook
78+
.ipynb_checkpoints
79+
80+
# IPython
81+
profile_default/
82+
ipython_config.py
83+
84+
# pyenv
85+
.python-version
86+
87+
# pipenv
88+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
90+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
91+
# install all needed dependencies.
92+
#Pipfile.lock
93+
94+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
95+
__pypackages__/
96+
97+
# Celery stuff
98+
celerybeat-schedule
99+
celerybeat.pid
100+
101+
# SageMath parsed files
102+
*.sage.py
103+
104+
# Environments
105+
.env
106+
.venv
107+
env/
108+
venv/
109+
ENV/
110+
env.bak/
111+
venv.bak/
112+
113+
# Spyder project settings
114+
.spyderproject
115+
.spyproject
116+
117+
# Rope project settings
118+
.ropeproject
119+
120+
# mkdocs documentation
121+
/site
122+
123+
# mypy
124+
.mypy_cache/
125+
.dmypy.json
126+
dmypy.json
127+
128+
# Pyre type checker
129+
.pyre/
130+
131+
# PyCharm
132+
/.idea
133+
134+
# Version
135+
mercury_engine_data_structures/version.py

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Henrique Gemignani Passos Lima
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Mercury Engine Data Structures
2+
Construct type definitions for Mercury Engine
3+
4+
| Format | Samus Returns (Read) | Samus Returns (Write) | Dread (Read) | Dread (Write) |
5+
| -------- | -------------------- | --------------------- | ------------ | ------------- |
6+
| PAK | ✗ | ✗ | ✓ | ✓ |
7+
8+
9+
## Example Usage
10+
11+
```python
12+
# TODO
13+
```

mercury_engine_data_structures/__init__.py

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from retro_data_structures import cli
2+
3+
if __name__ == "__main__":
4+
cli.main()

mercury_engine_data_structures/adapters/__init__.py

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from construct import Adapter, Int32ub, Enum
2+
3+
4+
class EnumAdapter(Adapter):
5+
def __init__(self, enum_class, subcon=Int32ub):
6+
super().__init__(Enum(subcon, enum_class))
7+
self._enum_class = enum_class
8+
9+
def _decode(self, obj, context, path):
10+
return self._enum_class[obj]
11+
12+
def _encode(self, obj, context, path):
13+
return obj.name
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
from construct import Adapter, AdaptationError
2+
3+
4+
class OffsetAdapter(Adapter):
5+
# stores offsets as indices
6+
7+
def _get_table(self, context):
8+
raise NotImplementedError()
9+
10+
def _get_table_length(self, context):
11+
raise NotImplementedError()
12+
13+
def _get_base_offset(self, context):
14+
return 0
15+
16+
def _get_item_size(self, item):
17+
return item.size
18+
19+
def _decode(self, obj, context, path):
20+
table = self._get_table(context)
21+
offset = obj
22+
size = self._get_base_offset(context)
23+
24+
for i in range(self._get_table_length(context)):
25+
if size == offset:
26+
return i
27+
if size > offset:
28+
raise AdaptationError("No string begins at the requested offset!")
29+
30+
item = table[i]
31+
size += self._get_item_size(item)
32+
33+
def _encode(self, obj, context, path):
34+
table = self._get_table(context)
35+
index = obj
36+
size = self._get_base_offset(context)
37+
38+
for i in range(self._get_table_length(context)):
39+
if i == index:
40+
return size
41+
42+
item = table[i]
43+
size += self._get_item_size(item)

0 commit comments

Comments
 (0)