📄 svmain.~pas
字号:
unit svMain;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, NMUDP, JSocket, ExtCtrls, Buttons, StdCtrls, IniFiles, M2Share,
Grobal2, SDK, HUtil32, RunSock, Envir, ItmUnit, Magic, NoticeM, Guild, Event,
Castle, FrnEngn, UsrEngn, MudUtil, SyncObjs, Menus, ComCtrls, Grids, MD5Unit;
type
TFrmMain = class(TForm)
MemoLog: TMemo;
Timer1: TTimer;
RunTimer: TTimer;
DBSocket: TClientSocket;
ConnectTimer: TTimer;
StartTimer: TTimer;
SaveVariableTimer: TTimer;
CloseTimer: TTimer;
LogUDP: TNMUDP;
MainMenu: TMainMenu;
MENU_CONTROL: TMenuItem;
MENU_CONTROL_START: TMenuItem;
MENU_CONTROL_STOP: TMenuItem;
MENU_CONTROL_EXIT: TMenuItem;
MENU_CONTROL_RELOAD_CONF: TMenuItem;
MENU_CONTROL_CLEARLOGMSG: TMenuItem;
MENU_HELP: TMenuItem;
MENU_HELP_ABOUT: TMenuItem;
MENU_MANAGE: TMenuItem;
MENU_CONTROL_RELOAD: TMenuItem;
MENU_CONTROL_RELOAD_ITEMDB: TMenuItem;
MENU_CONTROL_RELOAD_MAGICDB: TMenuItem;
MENU_CONTROL_RELOAD_MONSTERDB: TMenuItem;
MENU_OPTION: TMenuItem;
MENU_OPTION_GENERAL: TMenuItem;
MENU_OPTION_SERVERCONFIG: TMenuItem;
MENU_OPTION_GAME: TMenuItem;
MENU_OPTION_FUNCTION: TMenuItem;
MENU_CONTROL_RELOAD_MONSTERSAY: TMenuItem;
MENU_CONTROL_RELOAD_DISABLEMAKE: TMenuItem;
MENU_CONTROL_GATE: TMenuItem;
MENU_CONTROL_GATE_OPEN: TMenuItem;
MENU_CONTROL_GATE_CLOSE: TMenuItem;
MENU_VIEW: TMenuItem;
MENU_VIEW_GATE: TMenuItem;
MENU_VIEW_SESSION: TMenuItem;
MENU_VIEW_ONLINEHUMAN: TMenuItem;
MENU_VIEW_LEVEL: TMenuItem;
MENU_VIEW_LIST: TMenuItem;
MENU_MANAGE_ONLINEMSG: TMenuItem;
MENU_VIEW_KERNELINFO: TMenuItem;
MENU_TOOLS: TMenuItem;
MENU_TOOLS_MERCHANT: TMenuItem;
MENU_TOOLS_NPC: TMenuItem;
MENU_OPTION_ITEMFUNC: TMenuItem;
MENU_TOOLS_MONGEN: TMenuItem;
MENU_CONTROL_RELOAD_STARTPOINT: TMenuItem;
G1: TMenuItem;
MENU_OPTION_MONSTER: TMenuItem;
MENU_TOOLS_IPSEARCH: TMenuItem;
MENU_MANAGE_CASTLE: TMenuItem;
GridGate: TStringGrid;
Panel1: TPanel;
LbUserCount: TLabel;
LbTimeCount: TLabel;
LbRunTime: TLabel;
Label20: TLabel;
Label2: TLabel;
Label1: TLabel;
procedure FormCreate(Sender: TObject);
procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean);
procedure MemoLogChange(Sender: TObject);
procedure MemoLogDblClick(Sender: TObject);
procedure MENU_CONTROL_EXITClick(Sender: TObject);
procedure MENU_CONTROL_RELOAD_CONFClick(Sender: TObject);
procedure MENU_CONTROL_CLEARLOGMSGClick(Sender: TObject);
procedure SpeedButton1Click(Sender: TObject);
procedure MENU_CONTROL_RELOAD_ITEMDBClick(Sender: TObject);
procedure MENU_CONTROL_RELOAD_MAGICDBClick(Sender: TObject);
procedure MENU_CONTROL_RELOAD_MONSTERDBClick(Sender: TObject);
procedure MENU_CONTROL_STARTClick(Sender: TObject);
procedure MENU_CONTROL_STOPClick(Sender: TObject);
procedure MENU_HELP_ABOUTClick(Sender: TObject);
procedure MENU_OPTION_SERVERCONFIGClick(Sender: TObject);
procedure MENU_OPTION_GENERALClick(Sender: TObject);
procedure MENU_OPTION_GAMEClick(Sender: TObject);
procedure MENU_OPTION_FUNCTIONClick(Sender: TObject);
procedure MENU_CONTROL_RELOAD_MONSTERSAYClick(Sender: TObject);
procedure MENU_CONTROL_RELOAD_DISABLEMAKEClick(Sender: TObject);
procedure MENU_CONTROL_GATE_OPENClick(Sender: TObject);
procedure MENU_CONTROL_GATE_CLOSEClick(Sender: TObject);
procedure MENU_CONTROLClick(Sender: TObject);
procedure MENU_VIEW_GATEClick(Sender: TObject);
procedure MENU_VIEW_SESSIONClick(Sender: TObject);
procedure MENU_VIEW_ONLINEHUMANClick(Sender: TObject);
procedure MENU_VIEW_LEVELClick(Sender: TObject);
procedure MENU_VIEW_LISTClick(Sender: TObject);
procedure MENU_MANAGE_ONLINEMSGClick(Sender: TObject);
procedure MENU_VIEW_KERNELINFOClick(Sender: TObject);
procedure MENU_TOOLS_MERCHANTClick(Sender: TObject);
procedure MENU_OPTION_ITEMFUNCClick(Sender: TObject);
procedure MENU_TOOLS_MONGENClick(Sender: TObject);
procedure MENU_CONTROL_RELOAD_STARTPOINTClick(Sender: TObject);
procedure G1Click(Sender: TObject);
procedure MENU_OPTION_MONSTERClick(Sender: TObject);
procedure MENU_TOOLS_IPSEARCHClick(Sender: TObject);
procedure MENU_MANAGE_CASTLEClick(Sender: TObject);
private
boServiceStarted :Boolean;
procedure GateSocketClientError(Sender: TObject; Socket: TCustomWinSocket; ErrorEvent: TErrorEvent; var ErrorCode: Integer);
procedure GateSocketClientDisconnect(Sender: TObject; Socket: TCustomWinSocket);
procedure GateSocketClientConnect(Sender: TObject; Socket: TCustomWinSocket);
procedure GateSocketClientRead(Sender: TObject; Socket: TCustomWinSocket);
procedure DBSocketConnect(Sender: TObject; Socket: TCustomWinSocket);
procedure DBSocketError(Sender: TObject; Socket: TCustomWinSocket; ErrorEvent: TErrorEvent; var ErrorCode: Integer);
procedure DBSocketRead(Sender: TObject; Socket: TCustomWinSocket);
procedure Timer1Timer(Sender: TObject);
procedure StartTimerTimer(Sender: TObject);
procedure CloseTimerTimer(Sender: TObject);
procedure SaveVariableTimerTimer(Sender: TObject);
procedure RunTimerTimer(Sender: TObject);
procedure ConnectTimerTimer(Sender: TObject);
procedure StartService();
procedure StopService();
procedure SaveItemNumber;
function LoadClientFile():Boolean;
procedure StartEngine;
procedure MakeStoneMines;
procedure ReloadConfig(Sender: TObject);
procedure ClearMemoLog();
procedure CloseGateSocket();
{ Private declarations }
public
GateSocket:TServerSocket;
procedure AppOnIdle (Sender: TObject; var Done: Boolean);
procedure OnProgramException(Sender: TObject; E: Exception);
procedure SetMenu(); virtual;
procedure MyMessage(var MsgData:TWmCopyData);message WM_COPYDATA;
{ Public declarations }
end;
function LoadAbuseInformation(FileName:String):Boolean;
procedure LoadServerTable();
procedure WriteConLog(MsgList:TStringList);
procedure ChangeCaptionText(Msg:PChar;nLen:Integer);stdcall;
procedure UserEngineThread(ThreadInfo:pTThreadInfo);stdcall;
procedure ProcessGameRun();
var
FrmMain: TFrmMain;
g_GateSocket: TServerSocket;
implementation
uses
LocalDB, InterServerMsg, InterMsgClient, IdSrvClient, FSrvValue,
GeneralConfig, GameConfig, FunctionConfig, ObjRobot, ViewSession,
ViewOnlineHuman, ViewLevel, ViewList, OnlineMsg, ViewKernelInfo,
ConfigMerchant, ItemSet, ConfigMonGen, EDcode, EncryptUnit,
GameCommand, MonsterConfig, RunDB, CastleManage;
var
sCaption:String;
sCaptionExtText:String;
l_dwRunTimeTick:LongWord;
boRemoteOpenGateSocket:Boolean = False;
boRemoteOpenGateSocketed:Boolean = False;
sChar:String = ' ?';
sRun:String = 'Run';
{$R *.dfm}
procedure ChangeCaptionText(Msg:PChar;nLen:Integer);stdcall;
var
sMsg:String;
begin
if (nLen > 0) and (nLen < 30) then begin
setlength(sMsg,nLen);
Move(Msg^,sMsg[1],nLen);
sCaptionExtText:=sMsg;
end;
end;
function LoadAbuseInformation(FileName:String):Boolean;
var
i:integer;
sText:String;
begin
Result:=False;
if FileExists(FileName) then begin
AbuseTextList.Clear;
AbuseTextList.LoadFromFile(FileName);
i:=0;
while (True) do begin
if AbuseTextList.Count <= i then break;
sText:=Trim(AbuseTextList.Strings[i]);
if sText = '' then begin
AbuseTextList.Delete(i);
Continue;
end;
Inc(i);
end;
Result:=True;
end;
end;
procedure LoadServerTable();//004E3E64
var
i,ii:Integer;
LoadList:TStringList;
GateList:TStringList;
SrvNetInfo:pTSrvNetInfo;
sLineText,sGateMsg:String;
sServerIdx,sIPaddr,sPort:String;
begin
for I:=0 to ServerTableList.Count -1 do begin
TList(ServerTableList.Items[I]).Free;
end;
ServerTableList.Clear;
if FileExists('.\!servertable.txt') then begin
LoadList:=TStringList.Create;
LoadList.LoadFromFile('.\!servertable.txt');
for I:=0 to LoadList.Count - 1 do begin
sLineText:=Trim(LoadList.Strings[i]);
if (sLineText <> '') and (sLineText[1] <> ';') then begin
sGateMsg:=Trim(GetValidStr3(sLineText, sGateMsg, [' ', #9]));
if sGateMsg <> '' then begin
GateList:=TStringList.Create;
for II:=0 to 30 do begin
if sGateMsg = '' then break;
sGateMsg:=Trim(GetValidStr3(sGateMsg, sIPaddr, [' ', #9]));
sGateMsg:=Trim(GetValidStr3(sGateMsg, sPort, [' ', #9]));
if (sIPaddr <> '') and (sPort <> '') then begin
GateList.AddObject(sIPaddr,TObject(Str_ToInt(sPort,0)));
end;
end;
ServerTableList.Add(GateList);
end;
end;
end;
LoadList.Free;
end else begin
ShowMessage('文件 <!servertable.txt>未找到');
end;
end;
procedure WriteConLog(MsgList:TStringList);
var
I: Integer;
Year, Month, Day, Hour, Min, Sec, MSec: Word;
sLogDir,sLogFileName:String;
LogFile:TextFile;
begin
if MsgList.Count <= 0 then exit;
DecodeDate(Date, Year, Month, Day);
DecodeTime(Time, Hour, Min, Sec, MSec);
if not DirectoryExists(g_Config.sConLogDir) then begin
//CreateDirectory(PChar(g_Config.sConLogDir),nil);
CreateDir(g_Config.sConLogDir);
end;
sLogDir:=g_Config.sConLogDir + IntToStr(Year) + '-' + IntToStr2(Month) + '-' + IntToStr2(Day);
if not DirectoryExists(sLogDir) then begin
CreateDirectory(PChar(sLogDir),nil);
end;
sLogFileName:=sLogDir + '\C-' + IntToStr(nServerIndex) + '-' + IntToStr2(Hour) + 'H' + IntToStr2((Min div 10 * 2) * 5) + 'M.txt';
AssignFile(LogFile,sLogFileName);
if not FileExists(sLogFileName) then begin
Rewrite(LogFile);
end else begin
Append(LogFile);
end;
for I := 0 to MsgList.Count - 1 do begin
WriteLn(LogFile,'1' + #9 + MsgList.Strings[I]);
end; // for
CloseFile(LogFile);
end;
procedure TFrmMain.SaveItemNumber();
var
I:Integer;
begin
try
Config.WriteInteger('Setup','ItemNumber',g_Config.nItemNumber);
Config.WriteInteger('Setup','ItemNumberEx',g_Config.nItemNumberEx);
for I := Low(g_Config.GlobalVal) to High(g_Config.GlobalVal) do begin
Config.WriteInteger('Setup','GlobalVal' + IntToStr(I),g_Config.GlobalVal[I])
end;
Config.WriteInteger('Setup','WinLotteryCount',g_Config.nWinLotteryCount);
Config.WriteInteger('Setup','NoWinLotteryCount',g_Config.nNoWinLotteryCount);
Config.WriteInteger('Setup','WinLotteryLevel1',g_Config.nWinLotteryLevel1);
Config.WriteInteger('Setup','WinLotteryLevel2',g_Config.nWinLotteryLevel2);
Config.WriteInteger('Setup','WinLotteryLevel3',g_Config.nWinLotteryLevel3);
Config.WriteInteger('Setup','WinLotteryLevel4',g_Config.nWinLotteryLevel4);
Config.WriteInteger('Setup','WinLotteryLevel5',g_Config.nWinLotteryLevel5);
Config.WriteInteger('Setup','WinLotteryLevel6',g_Config.nWinLotteryLevel6);
except
end;
end;
procedure TFrmMain.AppOnIdle (Sender: TObject; var Done: Boolean);
begin
// MainOutMessage ('空闲');
end;
procedure TFrmMain.OnProgramException (Sender: TObject; E: Exception);
begin
MainOutMessage(E.Message);
end;
procedure TFrmMain.DBSocketError(Sender: TObject; Socket: TCustomWinSocket;
ErrorEvent: TErrorEvent; var ErrorCode: Integer);
begin
ErrorCode:=0;
Socket.Close;
end;
procedure TFrmMain.DBSocketRead(Sender: TObject; Socket: TCustomWinSocket);
var
tStr:String;
begin
EnterCriticalSection(UserDBSection);
try
tStr:=Socket.ReceiveText;
g_Config.sDBSocketRecvText:=g_Config.sDBSocketRecvText + tStr;
if not g_Config.boDBSocketWorking then begin
g_Config.sDBSocketRecvText:='';
end;
finally
LeaveCriticalSection(UserDBSection);
end;
end;
procedure TFrmMain.Timer1Timer(Sender: TObject); //004E5418
var
boWriteLog :Boolean;
i :Integer;
nRow :Integer;
wHour :Word;
wMinute :Word;
wSecond :Word;
tSecond :Integer;
sSrvType :String;
tTimeCount :Currency;
GateInfo :pTGateInfo;
// sGate,tGate :String;
LogFile :TextFile;
MemoryStream:TMemoryStream;
s28:String;
begin
// Caption:=sCaption + ' [' + sCaptionExtText + ']';
Caption:= format('%s - %s',[g_sTitleName,sCaption]);
EnterCriticalSection(LogMsgCriticalSection);
try
if MemoLog.Lines.Count > 500 then MemoLog.Clear;
boWriteLog:=True;
if MainLogMsgList.Count > 0 then begin
try
if not FileExists(sLogFileName) then begin
AssignFile(LogFile,sLogFileName);
Rewrite(LogFile);
end else begin
AssignFile(LogFile,sLogFileName);
Append(LogFile);
end;
boWriteLog:=False;
except
MemoLog.Lines.Add('保存日志信息出错...');
end;
end;
for i:=0 to MainLogMsgList.Count - 1 do begin
MemoLog.Lines.Add(MainLogMsgList.Strings[i]);
if not boWriteLog then begin
Writeln(LogFile,MainLogMsgList.Strings[i]);
end;
end;
MainLogMsgList.Clear;
if not boWriteLog then CloseFile(LogFile);
for I := 0 to LogStringList.Count - 1 do begin
MemoryStream:=TMemoryStream.Create;
try
s28:='1' + #9 + IntToStr(g_Config.nServerNumber) + #9 + IntToStr(nServerIndex) + #9 + LogStringList.Strings[I];
MemoryStream.Write(s28[1],length(s28));
LogUDP.SendStream(MemoryStream);
finally
MemoryStream.Free;
end;
end;
LogStringList.Clear;
if LogonCostLogList.Count > 0 then begin
WriteConLog(LogonCostLogList);
end;
LogonCostLogList.Clear;
finally
LeaveCriticalSection(LogMsgCriticalSection);
end;
if nServerIndex = 0 then begin
sSrvType:='[M]';
end else begin
if FrmMsgClient.MsgClient.Socket.Connected then begin
sSrvType:='[S]';
end else begin
sSrvType:='[ ]';
end;
end;
//检查线程 运行时间
//g_dwEngineRunTime:=GetTickCount - g_dwEngineTick;
tSecond:=(GetTickCount() - g_dwStartTick) div 1000;
wHour:=tSecond div 3600;
wMinute:=(tSecond div 60) mod 60;
wSecond:=tSecond mod 60;
LbRunTime.Caption:= IntToStr(wHour) + ':' +
IntToStr(wMinute) + ':' +
IntToStr(wSecond) + ' ' + sSrvType;{ +
IntToStr(g_dwEngineRunTime) + g_sProcessName + '-' + g_sOldProcessName;}
LbUserCount.Caption:= '(' + IntToStr(UserEngine.MonsterCount) + ') ' +
IntToStr(UserEngine.OnlinePlayObject) + '/' +
IntToStr(UserEngine.PlayObjectCount) + '[' +
IntToStr(UserEngine.LoadPlayCount) + '/' +
IntToStr(UserEngine.m_PlayObjectFreeList.Count) + ']';
{
Label1.Caption:= 'Run' + IntToStr(nRunTimeMin) + '/' + IntToStr(nRunTimeMax) + ' ' +
'Soc' + IntToStr(g_nSockCountMin) + '/' + IntToStr(g_nSockCountMax) + ' ' +
'Usr' + IntToStr(g_nUsrTimeMin) + '/' + IntToStr(g_nUsrTimeMax);
}
Label1.Caption:= format('处理:%d/%d 传输:%d/%d 角色:%d/%d',[nRunTimeMin,nRunTimeMax,g_nSockCountMin,g_nSockCountMax,g_nUsrTimeMin,g_nUsrTimeMax]);
{
Label2.Caption:= 'Hum' + IntToStr(g_nHumCountMin) + '/' + IntToStr(g_nHumCountMax) + ' ' +
'Mon' + IntToStr(g_nMonTimeMin) + '/' + IntToStr(g_nMonTimeMax) + ' ' +
'UsrRot' + IntToStr(dwUsrRotCountMin) + '/' + IntToStr(dwUsrRotCountMax) + ' ' +
'Merch' + IntToStr(UserEngine.dwProcessMerchantTimeMin) + '/' + IntToStr(UserEngine.dwProcessMerchantTimeMax) + ' ' +
'Npc' + IntToStr(UserEngine.dwProcessNpcTimeMin) + '/' + IntToStr(UserEngine.dwProcessNpcTimeMax) + ' ' +
'(' + IntToStr(g_nProcessHumanLoopTime) + ')';
}
Label2.Caption:= format('人物:%d/%d 循环:%d/%d 交易:%d/%d 管理:%d/%d (%d)',[g_nHumCountMin,
g_nHumCountMax,
dwUsrRotCountMin,
dwUsrRotCountMax,
UserEngine.dwProcessMerchantTimeMin,
UserEngine.dwProcessMerchantTimeMax,
UserEngine.dwProcessNpcTimeMin,
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -