1

Quick to learn is pretty important, but I need just some basic GUI tools, for Ubuntu OS but would be nice to have multi-OS compatibility. Any suggestions?

The basic dynamics of the intended game just include a text input and some set reaction
frames.

Thanks in advance.

Arger
  • 171
  • 1
  • 9
  • 2
    What is a set reaction frame? – Kevin Mar 27 '12 at 18:01
  • I guessed it means sprites drawn to coincide with the text-based interactions, but I agree some additional details would be nice, as that would take it beyond text-based. – Suboptimus Mar 27 '12 at 18:54

3 Answers3

3

You can give the game a little more flavor if you use Ren'Py rather than doing it all yourself.

Ignacio Vazquez-Abrams
  • 776,304
  • 153
  • 1,341
  • 1,358
1

Do you mean with text-based menus and graphics as well?

curses is included in the standard Python distribution.

http://en.wikipedia.org/wiki/Ncurses http://docs.python.org/library/curses.html

But perhaps that is too text-based?

Suboptimus
  • 309
  • 1
  • 6
0

For basic toolkit, I think tkinter which comes with python is okay. If you want to have graphical toolkit with more functionality, I would suggest you to take a look at wxpython which is cross-platform compatible.

Jack_of_All_Trades
  • 10,942
  • 18
  • 58
  • 88