Skip to main content

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

tui_pygame-0.1.2.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.2-py3-none-any.whl (3.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: tui_pygame-0.1.2.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.2.tar.gz
Algorithm Hash digest
SHA256 ee9297137d5a124c860826764d2255f1845836d2b70ac1894b0a19e22476580f
MD5 9657b27c817efb1fe627899d057de6ac
BLAKE2b-256 e5590a9558f0147ac73b527e9f8880d00a93c386bf07803242d29c078e17a8a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tui_pygame-0.1.2-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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 20648675d3efe93d23ab65c93f64297e23e0fbcf9fccd40a8b1531e321e12b03
MD5 072412b4439d2e7131004bfc47bf4de2
BLAKE2b-256 52adb19695088482b73e27e90bf48689a32b6be6b2b17bc93f18efa9c5e9a893

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