Scrolling Game Development Kit Forum

SGDK Version 1 => Script => Topic started by: Bulbaboy on 2006-07-12, 06:07:11 PM

Title: Getting text input from the keyboard - couple little snags
Post by: Bulbaboy on 2006-07-12, 06:07:11 PM
Hi again, been a while.  I need to get text input from the keyboard (or, better yet, from speech-to-text, but that's besides the point) for the project I'm currently working on, and I've got a few problems.

First off, I'd appreciate if someone could tell me how to implement backspace functionality - for those who know Perl, I believe it would be the equivalent of the "chop" function there.  You know, just something to cut off the last character in a string.  I suppose I might be able to figure this out myself, but it'd be nice to know how it's most easily done (and not have to deal with the MSDN docs as much).

Second, I notice that when I press Q, GameDev quits, just as if I had pressed escape.  Is there any way to turn this off without editing GameDev's source code, or am I screwed (in this case) unless I either learn enough to modify GameDev and/or switch to another program?  Assuming, of course, that I'll actually wind up wanting to use that letter.

Third, a more minor thing.  I'm currently using Variable = Variable & Chr(KeyCode), assuming that KeyCode is between 32 and 126 inclusive, but I notice that only works correctly for letters, numbers and the spacebar (and the letters are all uppercase).  Any easy way to make it print whatever key I press, or should I just change it so that it has to be space, a letter or a number for Chr(KeyCode) to go off?

And, last, but certainly not least, if someone's already got a sample script ready for just this kind of thing, could you guys tell me so I don't go reinventing the wheel, please ;)?
Title: Re: Getting text input from the keyboard - couple little snags
Post by: bluemonkmn on 2006-07-13, 05:44:00 AM
Wheel: already invented

Code: here -  http://sourceforge.net/docman/display_doc.php?docid=26344&group_id=9970 (http://sourceforge.net/docman/display_doc.php?docid=26344&group_id=9970)

Fix for "Q" key: Add this to the Select Case statement in the ProcessKeyDown function:
Code: [Select]
Case 81
  ProjectObj.GamePlayer.bQuit = False

I gotta admit that last one had me scared.  I thought there was no way to stop GameDev from quitting when you pressed Q and I was thinking "oh no, do I have to release a 1.4.7 for such a stupid mistake!?" but then I was relieved in looking at the source code to find this small hole through which I could control the quitting behavior.
Title: Re: Getting text input from the keyboard - couple little snags
Post by: Bulbaboy on 2006-07-14, 03:24:53 PM
Cools, thanks, glad someone did it already.

And btw, that Q fix is to be inserted in the script file, right?  If so, it makes me very happy - sure, it takes a little extra effort, but not nearly as much as having to figure out how to recompile GameDev.  Now to just figure out if I need to use Q ;)...  Still prevents trouble if someone accidentally types Q instead of an A or W, though.
Title: Re: Getting text input from the keyboard - couple little snags
Post by: bluemonkmn on 2006-07-14, 04:57:18 PM
Yes, it goes in the script, not the GameDev code.
Title: Re: Getting text input from the keyboard - couple little snags
Post by: Bulbaboy on 2006-07-14, 08:50:16 PM
It seems odd that it would work that way, but it's cool none-the-less.
Title: Re: Getting text input from the keyboard - couple little snags
Post by: bluemonkmn on 2006-07-15, 06:57:07 AM
If it helps you understand why that works, here's what happens: