Generic command key handler

Post a reply


This question is a means of preventing automated form submissions by spambots.
Smilies
:smile: :sad: :eek: :shock: :cool: :-x :razz: :oops: :evil: :twisted: :wink: :idea: :arrow: :neutral: :mrgreen:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Generic command key handler

by rld » Fri Jul 29, 2011 8:59 am

One place where this sort of thing would be useful is in a game that had different 'modes' with different command sets for each mode.

For example, in a sci-fi themed game you might spend part of the time in your spaceship and part of the time exploring planets on foot. So you might have one command set for 'in space':

Attack
Look
Status
Dock
Radio
Hyperdrive
...etc...

and then a more typical command set for 'on foot':

Attack
Get
Drop
Look
Use
Return to Ship
...

Or if you had a game where the player could transform into different creatures with different abilities. For example, if the player transformed into a dragon, the commands available might be:

Attack
Look
Breathe Fire
Eat

by rld » Thu Jul 28, 2011 10:06 am

Well, as a general principle, flexibility is always good, but...

a) I kind of want to stay away from the function keys, because many of them have predefined meanings to the underlying OS, or to DosBox.

b) If you take the existing (non-debug, etc.) command list from ACK, you have (assuming I haven't forgotten any):

A - Attack
B - Board
C - Cast
D - Drop
E
F
G - Get
H
I - Info/Inventory
J
K
L - Look
M
N
O
P
Q
R - Ready
S
T - Talk
U - Use
V
W
X - Exit
Y
Z

So, there are 15 unused alphas, and then we add 10 digits, so at most you could implement *twenty-five* additional commands with this, assuming you don't scrap/reuse any of the existing command keys.

That's probably sufficient; I have a hard time imagining an ACK-style game for which that was not enough commands.

Re: Generic command key handler

by Tdarcos » Thu Jul 28, 2011 8:22 am

rld wrote: Are there any other keys that should be added?
Most people don't realize that a PC has FORTY EIGHT function keys. F1-F12, Shift F1-Shift F12, Alt F1-Alt F12 and Control F1-Control F12.

I wouldn't touch F1 because it's the help key, and the other keys often used are F6 and F10 in various incantations. So all the versions of F3-F5 and F7-F9 gives 24 macro combinations.

Also, a similar rule applies to the letters, of the 26 letters plus the 12 across the top, there are Control and Alt versions.

If you want to test, you can check for shift at the same time as an ALT or CTRL function key. Differentiating between right and left shift is another flavor.

Generic command key handler

by rld » Tue Jul 26, 2011 2:04 pm

In the vein of the 'extra command' options which lets you add new keys which run specified macros, I would like to add a more generalized way to add/replace commands handled in an ACK game.

Basically, the mechanism would let you (using macro commands) configure any key to trigger a macro when pressed, instead of its normal game function. The differences between this and the 'extra command' mechanism would be:
- This could override the functions of normal game commands
- No limit on the number of keys that can have commands defined
- Set up by a macro (extended DRAW) command instead of in the configuration editor, which means it can be changed on-the-fly during a game

The keys that I want to hook into this mechanism are all digit keys (0-9) and all alpha keys (A-Z), and Space. Are there any other keys that should be added? Most of the punctuation keys already have specified debugging or 'under the hood' command meanings, so I want to steer away from those unless there's a good reason.

Top