A library for making simple 2D games, an advanced version for Emeral
Project description
Emeralx is a Python package for creating small games, developed based on Pygame, with the aim of changing the loop-refresh method to a multithreaded approach. The Emeralx library is suitable for making 2D games and currently has four modules: display, events, image, and entity, with more modules planned for development. Emeralx is currently in the beta version.
Installation
Before downloading the Emeralx library, you must ensure that Python is already installed on your computer, and the Python version should be above 3.7. Version 3.7 is only the minimum requirement, and some advanced functions may not be available when using it. Once you have installed Python, you can use the following command to install the Emeralx library from the command line.
pip install emeralx
After installing the Emeralx library, you can use the following command to ensure that the library was installed successfully.
pip list
If the Python library ‘Emeralx’ appears in the list, it means you have successfully installed it.
Help
Our documentation is actively being written. To view the basic help documentation, please write the following code in your Python program.
import emeralx
help(emeralx)
Quick Start
· Basic framework:
import emeralx
window=emeralx.display.Window() # Create a window object.
room=emeralx.display.Room(window) # Create a room on the window.
room.set_caption("NewGame") # Set caption for the room, which will show on title bar.
room.switch() # Switch to the window.
window.listen() # Window Mainloop.
· Create a Animation of sprite and show it on window
import emeralx
window=emeralx.display.Window() # Create a window.
room=emeralx.display.Room(window) # Create a room.
room.switch()
img=emeralx.image.Animation(path="xxx.gif")
sp=emeralx.entity.Sprite(room,img,position=(0,0)) # Create a sprite object.
emeralx.events.When(window,emeralx.events.EACH_FRAME_STEP()).do(lambda:sp.next_texture()) # Change to next texture.
window.listen() # Mainloop.
· Draw a text on the window
import emeralx
window=emeralx.display.Window() # Create a window.
room=emeralx.display.Room(window) # Create a room.
room.switch()
text=emeralx.canvas.Text("Hello World!",(0,0))
room.place(text) # Put the text on the room and display on window.
window.listen() # Mainloop.
Changelog
· 0.8.0 beta version : Develop the four main Python packages and have the ability to create basic games.
· 0.8.2 beta version : Fixed the bug that prevented packages from being imported.
· 0.8.5 beta version : Added some methods to the Sprite object, and added a Camera object to the display module.
· 0.9.1 beta version : Added the audio module and canvas module, and moved the window coordinate origin to the center.
· 0.9.2 beta version : Fixed some small bugs.
License
MIT License - Check the LICENSE file for details.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file emeralx-0.9.2.tar.gz.
File metadata
- Download URL: emeralx-0.9.2.tar.gz
- Upload date:
- Size: 663.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1eb9a1a64f701e2248e7bb3db333eb1f33506ffff5a7302b3bdf9ad88de3cc0
|
|
| MD5 |
ae9551c50bd8dbaac6163e9fe7e440ba
|
|
| BLAKE2b-256 |
a34622cc43ff12a4a21bb21f7b83457e52276a21a98930fa290e4462557e1291
|
File details
Details for the file emeralx-0.9.2-py3-none-any.whl.
File metadata
- Download URL: emeralx-0.9.2-py3-none-any.whl
- Upload date:
- Size: 678.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
735c589aa298a6fa82d396a106e9c250a09155f5c0411f128422afcb5632a1e5
|
|
| MD5 |
3edf2ad16d5f56af309f2705e8f0112f
|
|
| BLAKE2b-256 |
809f69df715e243300139273c1c5237139e5e8a39636ad9257a14b0137d22b07
|