views:

47

answers:

2

I want to make a very simple "escape the room" game. I was hoping for something that looks something like this. You would see images of some room and you click around to move or to add things to inventory. Then, you can select something in your inventory to use that item with something on the screen. During the whole game there would be a text box describing what is happening (probably in really broken English instead of Japanese).

I am looking for something that can be quite simple. I would prefer to have the ability to play sound (probably mp3's) when something happens. It can be web-based or a downloaded executable or .jar file. It doesn't have to be perfect, just a proof-of-concept really.

What is the best approach to get this game working with minimal effort? Are there some libraries that can help? I have plenty of Java experience and some C++, PHP, and others. I'd rather avoid Windows-based technology as I primarily run Linux. I am willing to learn other languages if they have a huge advantage.

+2  A: 

Pygame gives you pretty much everything you need for a game like this in one convenient box. Cross-platform even.

Ignacio Vazquez-Abrams
A: 

PyGame would probably be a good fit.

slomojo