I'm currently having a play around with MPL scripts (A46 Win32) and
appear to have run into an issue regarding the 'KeyPressed/ReadKey' functions in the following code:
gExitFlag := false;
repeat
write('|[X00|[Y00' + int2str(gCount));
gCount := gCount + 1;
if (keypressed()) then
begin
if ('q' = readkey()) then
gExitFlag := true;
end
until gExitFlag = true;
My first suggestion would be to update to the A47 release since I no longer have the A46 code to make a fix if we do determine a bug exists. It could be something fixed in A47 as well.
Assuming you're not trying to do more than what you're showing here you could simplify this with a single line like:
Repeat Until OneKey('Q') = 'Q';
Or
Repeat Until UpCase(ReadKey) = 'Q';
In any case, if you are going to loop like you are there I would suggest putting some minor delay in there so as to not blow up your CPU usage. Maybe a delay(10) at the bottom of the repeat loop.
This was a stripped down piece of code which contained multiple exit criteria, hence the exit bool.
Once i get A47 up, I'll test and let you know.
Great thanks! We'll get it doing what you want one way or another!
Great thanks! We'll get it doing what you want one way or another!
From what I'm able to observe: Netrunner is periodically sending the two byte hex sequence "FF F1", which is validating 'KeyPressed' and sending 'ReadKey' into a wait state. Again, this is mere supposition on my part.
Are you using the latest NetRunner? (from URL below):
www.mysticbbs.com/downloads/prealpha
And is this in Windows or Linux? I'll set up the identical test here.
Having now tested the script on A47, I'm able to confirm that the
issue continues to persist.
From what I'm able to observe: Netrunner is periodically sending the two byte hex sequence "FF F1", which is validating 'KeyPressed' and sending 'ReadKey' into a wait state. Again, this is mere supposition on my part.
Quick update:
After further digging, it appears netrunner is employing the telnet NOP command ($FF $F1) as a periodic "keep alive" signal.
Thanks I haven't had a chance to look at it yet but I will try to
remember to take a look soon.
Sysop: | Eric Oulashin |
---|---|
Location: | Beaverton, Oregon, USA |
Users: | 104 |
Nodes: | 16 (0 / 16) |
Uptime: | 00:13:39 |
Calls: | 5,853 |
Files: | 8,496 |
D/L today: |
4 files (1,285K bytes) |
Messages: | 343,768 |