📄 exhost0.pas
字号:
(***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is TurboPower Async Professional
*
* The Initial Developer of the Original Code is
* TurboPower Software
*
* Portions created by the Initial Developer are Copyright (C) 1991-2002
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* ***** END LICENSE BLOCK ***** *)
{*********************************************************}
{* EXHOST0.PAS 4.06 *}
{*********************************************************}
{**********************Description************************}
{* Demonstrates how to processs strings from incoming *}
{* data. This example works together with ExLogin *}
{* to show how a host program might request a user *}
{* name and password and process the returned *}
{* values using triggers. *}
{*********************************************************}
unit Exhost0;
interface
uses
WinTypes, WinProcs, SysUtils, Messages, Classes, Graphics, Controls,
Forms, Dialogs, AdPort, StdCtrls, OoMisc, ADTrmEmu, AdMdm;
type
TForm1 = class(TForm)
ApdComPort1: TApdComPort;
Button1: TButton;
AdTerminal1: TAdTerminal;
AdModem1: TAdModem;
procedure ApdComPort1TriggerAvail(CP: TObject; Count: Word);
procedure Button1Click(Sender: TObject);
procedure ApdModem1ModemIsConnected(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
BufferString : String;
WhatAmIDoing : Word;
end;
{states we can be in waiting for data}
const
BuildingUserName = 1;
BuildingPassword = 2;
NormalCharacterReads = 3;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.ApdComPort1TriggerAvail(CP: TObject; Count: Word);
var
c : Char;
i : Word;
begin
for i := 1 to Count do begin
c := ApdComPort1.GetChar;
case WhatAmIDoing of
BuildingUserName :
begin
BufferString := BufferString + c;
if c = #13 then begin
{validate the username here}
{....}
{now we can reinitialize the buffer}
BufferString := '';
{and send a request for the password}
ApdComPort1.Output := 'password?'#13;
{and wait for ExLogin to respond}
WhatAmIDoing := BuildingPassword;
end;
end;
BuildingPassword :
begin
BufferString := BufferString + c;
if c = #13 then begin
{validate the password here}
{....}
{now we can reinitialize the buffer}
BufferString := '';
{and do whatever is the next step after password}
{(ExLogin expects us to send one more "?")}
ApdComPort1.Output := '?'#13;
{...}
WhatAmIDoing := NormalCharacterReads;
end;
end;
NormalCharacterReads:
{...process other messages or normal characters here...}
end;
end;
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
AdModem1.AutoAnswer;
end;
procedure TForm1.ApdModem1ModemIsConnected(Sender: TObject);
begin
{send the request for the username}
WhatAmIDoing := BuildingUserName;
ApdComPort1.Output := 'Username?';
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -