Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Your questions seems to be "How do I make a video game with minimal effort?" which is outside the scope of StackOverflow. I'd suggest trying at gamedev.stackexchange.com – meagar Oct 20 '10 at 2:14
@meagar You should link that link :) – alex Oct 20 '10 at 2:15

2 Answers

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

share|improve this answer

PyGame would probably be a good fit.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.