mysticbbs/mystic/bbs_nodeinfo.pas

262 lines
6.8 KiB
ObjectPascal
Raw Normal View History

2012-02-22 00:41:08 -08:00
Unit bbs_NodeInfo;
2012-02-13 16:50:48 -08:00
{$I M_OPS.PAS}
Interface
2012-02-22 00:41:08 -08:00
Function Is_User_Online (Name : String) : Word;
2012-02-13 16:50:48 -08:00
Procedure Show_Whos_Online;
Procedure Send_Node_Message (MsgType: Byte; Data: String; Room: Byte);
Function CheckNodeMessages : Boolean;
2012-02-22 00:41:08 -08:00
Procedure Set_Node_Action (Action: String);
2012-02-13 16:50:48 -08:00
Implementation
Uses
m_DateTime,
m_Strings,
bbs_Common,
bbs_Core,
bbs_User;
2012-02-22 00:41:08 -08:00
Function Is_User_Online (Name: String) : Word;
2012-02-13 16:50:48 -08:00
Var
TempChat : ChatRec;
Count : Word;
Begin
2012-02-22 00:41:08 -08:00
Result := 0;
2012-02-13 16:50:48 -08:00
For Count := 1 to Config.INetTNNodes Do Begin
2012-02-13 16:50:48 -08:00
Assign (ChatFile, Config.DataPath + 'chat' + strI2S(Count) + '.dat');
2012-02-22 00:41:08 -08:00
2012-02-13 16:50:48 -08:00
{$I-} Reset(ChatFile); {$I+}
2012-02-22 00:41:08 -08:00
2012-02-13 16:50:48 -08:00
If IoResult <> 0 Then Continue;
2012-02-22 00:41:08 -08:00
2012-02-13 16:50:48 -08:00
Read (ChatFile, TempChat);
Close (ChatFile);
If (Count <> Session.NodeNum) and (TempChat.Active) and (TempChat.Name = Name) Then Begin
2012-02-22 00:41:08 -08:00
Result := Count;
2012-02-13 16:50:48 -08:00
Exit;
End;
End;
End;
Procedure Set_Node_Action (Action: String);
Begin
Assign (ChatFile, Config.DataPath + 'chat' + strI2S(Session.NodeNum) + '.dat');
ReWrite (ChatFile);
If Action <> '' Then Begin
Chat.Active := True;
Chat.Name := Session.User.ThisUser.Handle;
Chat.Location := Session.User.ThisUser.City;
Chat.Action := Action;
Chat.Gender := Session.User.ThisUser.Gender;
Chat.Age := DaysAgo(Session.User.ThisUser.Birthday) DIV 365;
If Session.LocalMode Then
Chat.Baud := 'LOCAL' {++lang}
Else
Chat.Baud := 'TELNET'; {++lang}
End Else Begin
Chat.Active := False;
Chat.Invisible := False;
Chat.Available := False;
Chat.Age := 0;
Chat.Gender := '?';
End;
Write (ChatFile, Chat);
Close (ChatFile);
{$IFDEF WIN32}
Screen.SetWindowTitle (WinConsoleTitle + strI2S(Session.NodeNum) + ' - ' + Session.User.ThisUser.Handle + ' - ' + Action);
{$ENDIF}
End;
Procedure Show_Whos_Online;
Var
TChat : ChatRec;
2012-02-22 00:41:08 -08:00
Count : Word;
2012-02-13 16:50:48 -08:00
Begin
Session.io.OutFullLn (Session.GetPrompt(138));
2012-02-22 00:41:08 -08:00
For Count := 1 to Config.INetTNNodes Do Begin
Assign (ChatFile, Config.DataPath + 'chat' + strI2S(Count) + '.dat');
2012-02-13 16:50:48 -08:00
{$I-} Reset(ChatFile); {$I+}
2012-02-22 00:41:08 -08:00
2012-02-13 16:50:48 -08:00
If IoResult <> 0 Then Continue;
2012-02-22 00:41:08 -08:00
2012-02-13 16:50:48 -08:00
Read (ChatFile, TChat);
Close (ChatFile);
If TChat.Active and ((Not TChat.Invisible) or (TChat.Invisible and Session.User.Access(Config.AcsSeeInvis))) Then Begin
2012-02-22 00:41:08 -08:00
Session.io.PromptInfo[1] := strI2S(Count);
2012-02-13 16:50:48 -08:00
Session.io.PromptInfo[2] := TChat.Name;
Session.io.PromptInfo[3] := TChat.Action;
Session.io.PromptInfo[4] := TChat.Location;
Session.io.PromptInfo[5] := TChat.Baud;
Session.io.PromptInfo[6] := TChat.Gender;
Session.io.PromptInfo[7] := strI2S(TChat.Age);
Session.io.PromptInfo[8] := Session.io.OutYN(TChat.Available);
2012-02-22 00:41:08 -08:00
2012-02-13 16:50:48 -08:00
Session.io.OutFullLn (Session.GetPrompt(139));
End Else Begin
2012-02-22 00:41:08 -08:00
Session.io.PromptInfo[1] := strI2S(Count);
2012-02-13 16:50:48 -08:00
Session.io.OutFullLn (Session.GetPrompt(268));
End;
End;
Session.io.OutFull (Session.GetPrompt(140));
End;
Procedure Send_Node_Message (MsgType: Byte; Data: String; Room: Byte);
Var
ToNode : Byte;
A, B, C : Byte;
Temp : ChatRec;
Str : String[3];
Begin
If Data = '' Then Begin
Repeat
Session.io.OutFull (Session.GetPrompt(146));
Str := Session.io.GetInput(3, 3, 12, '');
If Str = '?' Then Show_Whos_Online Else Break;
Until False;
ToNode := strS2I(Str);
If (ToNode < 0) or (ToNode > Config.INetTNNodes) Then Begin
2012-02-13 16:50:48 -08:00
Session.io.OutFullLn (Session.GetPrompt(147));
Exit;
End;
B := ToNode;
C := ToNode;
End Else Begin
If Pos(';', Data) = 0 Then Exit;
2012-02-22 00:41:08 -08:00
2012-02-13 16:50:48 -08:00
ToNode := strS2I(Copy(Data, 1, Pos(';', Data)-1));
2012-02-22 00:41:08 -08:00
2012-02-13 16:50:48 -08:00
Delete (Data, 1, Pos(';', Data));
2012-02-22 00:41:08 -08:00
2012-02-13 16:50:48 -08:00
If ToNode = 0 Then Begin
B := 1;
C := Config.INetTNNodes;
2012-02-13 16:50:48 -08:00
If MsgType = 3 Then MsgType := 2;
End Else Begin
B := ToNode;
C := ToNode;
End;
End;
For A := B to C Do Begin
2012-02-22 00:41:08 -08:00
FileMode := 66;
2012-02-13 16:50:48 -08:00
Assign (ChatFile, Config.DataPath + 'chat' + strI2S(A) + '.dat');
2012-02-22 00:41:08 -08:00
2012-02-13 16:50:48 -08:00
{$I-} Reset (ChatFile); {$I+}
2012-02-22 00:41:08 -08:00
2012-02-13 16:50:48 -08:00
If IoResult = 0 Then Begin
2012-02-22 00:41:08 -08:00
Read (ChatFile, Temp);
2012-02-13 16:50:48 -08:00
Close (ChatFile);
If (Not Temp.Active) and (ToNode > 0) Then Begin
Session.io.OutFullLn (Session.GetPrompt(147));
Exit;
End;
If (Not Temp.Available) and not (MsgType in [1, 4..7]) and (ToNode > 0) Then Begin
Session.io.OutFullLn (Session.GetPrompt(395));
Exit;
End;
If Temp.Active and (Temp.Available or Temp.InChat) Then Begin
If Data = '' Then Begin
2012-02-22 00:41:08 -08:00
Session.io.PromptInfo[1] := Temp.Name;
2012-02-13 16:50:48 -08:00
Session.io.PromptInfo[2] := strI2S(A);
2012-02-22 00:41:08 -08:00
2012-02-13 16:50:48 -08:00
Session.io.OutFullLn (Session.GetPrompt(148));
2012-02-22 00:41:08 -08:00
2012-02-13 16:50:48 -08:00
NodeMsg.Message := Session.io.GetInput(79, 79, 11, '');
End Else
NodeMsg.Message := Data;
If NodeMsg.Message = '' Then Exit;
NodeMsg.FromNode := Session.NodeNum;
NodeMsg.ToWho := Temp.Name;
NodeMsg.MsgType := MsgType;
NodeMsg.Room := Room;
NodeMsg.FromWho := Session.User.ThisUser.Handle;
FileMode := 66;
2012-02-22 00:41:08 -08:00
Assign (NodeMsgFile, Config.SystemPath + 'temp' + strI2S(A) + PathChar + 'chat.tmp');
2012-02-13 16:50:48 -08:00
{$I-} Reset (NodeMsgFile); {$I+}
2012-02-22 00:41:08 -08:00
2012-02-13 16:50:48 -08:00
If IoResult <> 0 Then ReWrite(NodeMsgFile);
Seek (NodeMsgFile, FileSize(NodeMsgFile));
Write (NodeMsgFile, NodeMsg);
Close (NodeMsgFile);
End;
End;
End;
End;
Function CheckNodeMessages : Boolean;
Var
Str : String;
Begin
Result := False;
FileMode := 66;
Assign (NodeMsgFile, Session.TempPath + 'chat.tmp');
{$I-} Reset (NodeMsgFile); {$I+}
If IoResult <> 0 Then Exit;
// 2 = system broadcast message (ie, not from user, from mystic)
// 3 = user to user node message
While Not Eof(NodeMsgFile) Do Begin
Result := True;
Read (NodeMsgFile, NodeMsg);
Session.io.PromptInfo[1] := NodeMsg.FromWho;
Session.io.PromptInfo[2] := strI2S(NodeMsg.FromNode);
Case NodeMsg.MsgType of
2 : Begin
Session.io.OutFullLn (Session.GetPrompt(179) + NodeMsg.Message);
Session.io.OutFullLn (Session.GetPrompt(180));
End;
3 : Begin
Session.io.OutFullLn (Session.GetPrompt(144) + '|CR' + NodeMsg.Message);
Session.io.OutFull (Session.GetPrompt(145));
End;
End;
End;
Close (NodeMsgFile);
Erase (NodeMsgFile);
If Result And (NodeMsg.MsgType = 3) Then
If Session.io.OneKey(#13 + 'R', True) = 'R' Then Begin
Session.io.OutFullLn(Session.GetPrompt(360));
Str := Session.io.GetInput(79, 79, 11, '');
If Str <> '' Then Send_Node_Message(3, Session.io.PromptInfo[2] + ';' + Str, 0);
End;
End;
2012-02-13 16:50:48 -08:00
End.