Skip to main content

A library for implementing something similar to Pygame in the command line.

Project description

TUI_pygame

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_pygame
import time

# Initialize the game screen
TUI_pygame.initialize()

# Main game loop
while True:
    if not TUI_pygame.run():
        break
    TUI_pygame.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_pygame.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

tui_pygame-0.1.4.tar.gz (3.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tui_pygame-0.1.4-py3-none-any.whl (3.8 kB view details)

Uploaded Python 3

File details

Details for the file tui_pygame-0.1.4.tar.gz.

File metadata

  • Download URL: tui_pygame-0.1.4.tar.gz
  • Upload date:
  • Size: 3.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for tui_pygame-0.1.4.tar.gz
Algorithm Hash digest
SHA256 e8832a4ddd7a27590f9cfc98ffa39faac7bce879ac565486f3697ffd08230089
MD5 af4b1e4e3d82a824293be7f74ee12c47
BLAKE2b-256 897ea46d669c591ec999c111aea72c86340432b32d601d76d90a047ac7ec55fa

See more details on using hashes here.

File details

Details for the file tui_pygame-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: tui_pygame-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 3.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for tui_pygame-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 43dd9540e477eb8a094cb158a81309929b52dd27417a4ae1421130595b21436a
MD5 0ca28cb295c7d9e03ec83436adffbb65
BLAKE2b-256 5cb1327b2f6b306ed186fe5be8e00edce17fc05c648065163d5cc31325b0c9a4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page