t0by
April 16th, 2003, 07:30 AM
Hello all.
Do you know if it is possible to make a game with a display which
is "immobile"?
In other words, I have a console application with display which does not scroll when user gives commands. Is this possible?
If so, how? (I'm thinking about Windows, text based game, but
other alternatives are also welcome).
I'm writing the code with c++ and I have the game basics done.
For example, I have a game board which looks like this:
XXXXX
XXXXX
XXXXX
XXXXX
Give coordinate:
When user gives a coordinate, (0,0) the board stays at the same place (doesn't scroll forward), but draws '0', now the board is situated in the same place on display with this stuff on it:
0XXXX
XXXXX
XXXXX
XXXXX
Give coordinate:
BR,
Toby
Do you know if it is possible to make a game with a display which
is "immobile"?
In other words, I have a console application with display which does not scroll when user gives commands. Is this possible?
If so, how? (I'm thinking about Windows, text based game, but
other alternatives are also welcome).
I'm writing the code with c++ and I have the game basics done.
For example, I have a game board which looks like this:
XXXXX
XXXXX
XXXXX
XXXXX
Give coordinate:
When user gives a coordinate, (0,0) the board stays at the same place (doesn't scroll forward), but draws '0', now the board is situated in the same place on display with this stuff on it:
0XXXX
XXXXX
XXXXX
XXXXX
Give coordinate:
BR,
Toby