Skip to content

redpenguinyt/gemini-py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gemini Engine

PyPI version Stars Last commit Code size Downloads Issues

Gemini Engine is a monospace 2D ASCII rendering engine. It includes collisions, layers, inputs and the ability to handle solid objects as well as ascii art. Examples can be found on the GeminiExamples github

WARNING: It’s important to use a monospace font in the terminal for the engine to render images properly

Quick start

Gemini Engine can be installed using pip:

python3 -m pip install -U gemini-engine

If you want to run the latest version of the code, you can install from github:

python3 -m pip install -U git+https://github.com/redpenguinyt/GeminiEngine.git@latest

Now that you have installed the library, instance a Scene and an Entity, then render the scene

from gemini import Scene, Entity

scene = Scene(size=(20,10))
entity = Entity(pos=(5,5), size=(2,1), parent=scene)

scene.render()

You should get something like this in your console: Gemini example 1

Look at that! You just made your first Gemini project! Now try adding a while loop to the end of your code

from gemini import Scene, Entity, sleep

scene = Scene(size=(20,10))
entity = Entity(pos=(5,5), size=(2,1), parent=scene)

while True:
	entity.move((1,0))
	scene.render()
	sleep(.1)

Now the entity should be moving across the screen! When the entity goes out of the screen's bounds it will loop back round to the other side.

Sprites

The code below will animate a car moving across the screen:

from gemini import Scene, Sprite, sleep

car_image = """
  ______
 /|_||_\`.__
(¶¶¶_¶¶¶¶_¶_\\
=`-(_)--(_)-'
"""

scene = Scene((30,10), is_main_scene=True)
car = Sprite((5,5), car_image)

while True:
	scene.render()
	car.move(1,0)
	sleep(.1)