Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
5k views

How to build your own point-and-click adventure game

Anyone who is a fan of the Monkey Island series of adventure games from the early 90's will know how enjoyable and addictive this genre of computer games are. Are there any tools out there that ...
3
votes
2answers
158 views

State management in adventure games

I have been thinking about making a point'n'click adventure game. The problem I have been running into is representing the game logic and state in a generic(and not butt ugly) way. Game State: You ...
2
votes
2answers
142 views

Simple Natural Language Parser in Objective-C

I'm building this app for Mac OS X v10.6 I'm building a text-based adventure and I've created a very simple natural language parser that can process the commands that the user types. So far it works ...
2
votes
1answer
63 views

Pushing item locations in Casting SPELs

I'm going through Casting SPELs in Lisp and this is the proposed solution to handling picking up objects: (define *location* 'living-room) (define *object-locations* '((whiskey-bottle living-room) ...
1
vote
1answer
72 views

Bitmap disappearing when program is minimized

I'm a student for c++ game-programming. We have to program a textadventure on console for windows. We get points for the implementation of bitmaps. I have the following code to Display the bitmap. It ...
1
vote
1answer
135 views

I'm making a python text-adventure. Need help making an 'inventory'

I'm making a python text adventure. It is based off of ex41 in Learn Python the Hard Way, so it is somewhat similar. My question, however, has nothing to do with that exercise. I'm trying to make ...
0
votes
1answer
202 views

JAVA: 2D Game Adventure. Collision Detection problem

This is about animation in JAVA. I had success when using same dimension on all picture. But if i keep all picture dimension on same size(width and height) i get some bug which when player punch. ...
0
votes
1answer
131 views

text adventure help: correct track, save game [closed]

I'm writing this game right now. its going to be a small text adventure type game. i would like to know if what im doing is the right path to take in building a game like this. How would i include a ...