A library for implementing something similar to Pygame in the command line.
Project description
TUI_game
A simple Text-Based User Interface (TUI) game framework for creating terminal-based games. This module allows you to create a text-based game with mouse control, character placement, and screen updates.
Features
- Initialize screen dimensions based on user input.
- Control a mouse cursor using 'w', 's', 'a', 'd' keys.
- Place characters at specific coordinates on the screen.
- Refresh the screen to reflect changes.
- Exit the game loop gracefully.
Installation
To install TUI_pygame, you can use pip:
pip install TUI_pygame
Usage
Basic Example
Here's a basic example of how to use the TUI-game module:
import TUI_game
import time
# Initialize the game screen
TUI_pygame.initialize()
# Main game loop
while True:
if not TUI_game.run():
break
TUI_game.update_screen()
time.sleep(0.001) # Add a brief delay to prevent the program from running too fast
Customizing the Game Loop
You can also customize the game loop by adding your own logic:
import TUI_pygame
import time
# Initialize the game screen
TUI_pygame.initialize()
# Custom game loop
while True:
# Place a character at a specific position
TUI_pygame.place_character('X', (5, 5))
# Move the mouse cursor
TUI_pygame.move_mouse('w')
# Process user input
if not TUI_pygame.run():
break
# Update the screen
TUI_game.update_screen()
# Add a brief delay
time.sleep(0.001)
Functions
initialize()
Initializes the screen dimensions and content. This function must be called before entering the game loop.
run()
Processes user input and returns True to continue the game loop or False to exit.
update_screen()
Refreshes the screen to reflect changes.
place_character(character, position)
Places a character at the specified coordinates on the screen.
move_mouse(direction)
Moves the mouse cursor in the specified direction ('w', 's', 'a', 'd').
Contributing
Contributions are welcome! If you have any suggestions or improvements, please feel free to open an issue or submit a pull request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
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 tui_pygame-0.1.1.tar.gz.
File metadata
- Download URL: tui_pygame-0.1.1.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3032be7fc3f6908d4e8a92aa448a9ed9a3a5d9fb9398746f9e9a5dc0766cc7d
|
|
| MD5 |
0c8393e41395c11acc56285368331c20
|
|
| BLAKE2b-256 |
cf889ce926fbd28f8e573f75c17fb176076da1771ba0076251f27dd769fba488
|
File details
Details for the file tui_pygame-0.1.1-py3-none-any.whl.
File metadata
- Download URL: tui_pygame-0.1.1-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54bf6718fc12b319c3f1f0ec9152485a3392bd7b66884249ef9a0fa016ed665d
|
|
| MD5 |
0e40072857ccc589f04061eeecb2e6df
|
|
| BLAKE2b-256 |
3d3b09758be06deab08dad9ec14b4cb8e564b70092116dccfc85eb4fe28265ef
|