L
L
lazyvasya2282020-06-10 06:54:44
Python
lazyvasya228, 2020-06-10 06:54:44

How to write a chat from the game SUPERHOT?

I played the game SUPERHOT and the moment has passed when you are offered to participate in the chat. A feature of this chat was that the player presses any buttons on the keyboard, but the text pre-written by the developer is displayed. I create one program where I want to insert a similar construction in a certain place. Can you help with the structure of this piece of code?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
O
o5a, 2020-06-10
@o5a

It will depend on the OS. Under Windows, you can, for example, do this

import msvcrt
import sys

text = "This is just a long text"
for c in text:
    while True:
        if msvcrt.kbhit():
            msvcrt.getch()
            print(c, end='', flush=True)
            break

sys.stdout.flush()

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question