mima-engine 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mima-engine might be problematic. Click here for more details.
- {mima_engine-0.1.0 → mima_engine-0.1.1}/PKG-INFO +3 -2
- {mima_engine-0.1.0 → mima_engine-0.1.1}/pyproject.toml +9 -3
- mima_engine-0.1.1/src/mima/__init__.py +1 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima_engine.egg-info/PKG-INFO +3 -2
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima_engine.egg-info/requires.txt +2 -0
- mima_engine-0.1.0/src/mima/backend/__init__.py +0 -1
- {mima_engine-0.1.0 → mima_engine-0.1.1}/README.md +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/setup.cfg +0 -0
- {mima_engine-0.1.0/src/mima → mima_engine-0.1.1/src/mima/backend}/__init__.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/backend/pygame_assets.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/backend/pygame_audio.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/backend/pygame_backend.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/backend/pygame_events.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/collision.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/engine.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/maps/__init__.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/maps/template.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/maps/tile.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/maps/tile_animation.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/maps/tile_info.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/maps/tile_layer.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/maps/tiled/__init__.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/maps/tiled/tiled_layer.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/maps/tiled/tiled_map.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/maps/tiled/tiled_object.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/maps/tiled/tiled_objectgroup.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/maps/tiled/tiled_template.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/maps/tiled/tiled_tile.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/maps/tiled/tiled_tileset.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/maps/tilemap.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/maps/tileset.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/maps/tileset_info.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/maps/transition_map.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/__init__.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/animated_sprite.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/attribute_effect.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/attributes.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/creature.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/dynamic.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/effects/__init__.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/effects/colorize_screen.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/effects/light.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/effects/walking_on_grass.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/effects/walking_on_water.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/loader.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/projectile.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/sprite.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/world/__init__.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/world/color_gate.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/world/color_switch.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/world/container.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/world/floor_switch.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/world/gate.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/world/light_source.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/world/logic_gate.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/world/movable.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/world/oneway.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/world/pickup.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/world/switch.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/objects/world/teleport.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scene_engine.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/__init__.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/command.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/__init__.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/add_quest.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/change_map.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/close_dialog.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/give_item.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/give_resource.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/move_map.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/move_to.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/oneway_move.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/parallel.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/play_sound.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/present_item.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/progress_quest.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/quit_game.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/save_game.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/screen_fade.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/serial.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/set_facing_direction.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/set_spawn_map.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/show_choices.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/show_dialog.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/commands/take_coins.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/scripts/script_processor.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/states/__init__.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/states/game_state.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/states/quest.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/types/__init__.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/types/alignment.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/types/blend.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/types/damage.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/types/direction.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/types/gate_color.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/types/graphic_state.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/types/keys.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/types/mode.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/types/nature.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/types/object.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/types/start.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/types/terrain.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/types/weapon_slot.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/usables/__init__.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/usables/item.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/usables/weapon.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/util/__init__.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/util/colors.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/util/constants.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/util/functions.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/util/input_defaults.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/util/logging.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/util/property.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/util/runtime_config.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/view/__init__.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/view/camera.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima/view/scene.py +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima_engine.egg-info/SOURCES.txt +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima_engine.egg-info/dependency_links.txt +0 -0
- {mima_engine-0.1.0 → mima_engine-0.1.1}/src/mima_engine.egg-info/top_level.txt +0 -0
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mima-engine
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: A game engine based on pygame.
|
|
5
5
|
Author-email: Stephan Balduin <stephan.balduin@mailbox.org>
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
7
7
|
Classifier: License :: OSI Approved :: MIT License
|
|
8
8
|
Requires-Python: >=3.8
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
|
-
|
|
10
|
+
Provides-Extra: pygame
|
|
11
|
+
Requires-Dist: pygame-ce; extra == "pygame"
|
|
11
12
|
|
|
12
13
|
# Mima Engine
|
|
13
14
|
|
|
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
|
|
|
5
5
|
|
|
6
6
|
[project]
|
|
7
7
|
name = "mima-engine"
|
|
8
|
-
|
|
8
|
+
dynamic = ["version"]
|
|
9
9
|
authors = [
|
|
10
10
|
{ name="Stephan Balduin", email="stephan.balduin@mailbox.org" },
|
|
11
11
|
]
|
|
@@ -16,7 +16,13 @@ classifiers = [
|
|
|
16
16
|
"Programming Language :: Python :: 3",
|
|
17
17
|
"License :: OSI Approved :: MIT License",
|
|
18
18
|
]
|
|
19
|
-
dependencies = [
|
|
20
|
-
|
|
19
|
+
dependencies = []
|
|
20
|
+
|
|
21
|
+
[project.optional-dependencies]
|
|
22
|
+
pygame = [
|
|
23
|
+
"pygame-ce"
|
|
21
24
|
]
|
|
22
25
|
|
|
26
|
+
[tool.setuptools.dynamic]
|
|
27
|
+
version = {attr = "mima.__version__"}
|
|
28
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.1"
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mima-engine
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: A game engine based on pygame.
|
|
5
5
|
Author-email: Stephan Balduin <stephan.balduin@mailbox.org>
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
7
7
|
Classifier: License :: OSI Approved :: MIT License
|
|
8
8
|
Requires-Python: >=3.8
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
|
-
|
|
10
|
+
Provides-Extra: pygame
|
|
11
|
+
Requires-Dist: pygame-ce; extra == "pygame"
|
|
11
12
|
|
|
12
13
|
# Mima Engine
|
|
13
14
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|